From d203437a24e45ddecc50541d820b72375a4c1e9e Mon Sep 17 00:00:00 2001 From: Evgeny Fadeev Date: Fri, 7 Oct 2011 16:42:08 -0300 Subject: moved animateHashes() to utils.js --- askbot/skins/default/media/js/utils.js | 15 ++++++++++++++- askbot/skins/default/templates/blocks/bottom_scripts.html | 1 + askbot/skins/default/templates/main_page/javascript.html | 11 ----------- askbot/skins/default/templates/question.html | 2 -- 4 files changed, 15 insertions(+), 14 deletions(-) diff --git a/askbot/skins/default/media/js/utils.js b/askbot/skins/default/media/js/utils.js index f80f906b..2b2579ab 100644 --- a/askbot/skins/default/media/js/utils.js +++ b/askbot/skins/default/media/js/utils.js @@ -12,6 +12,19 @@ var copyAltToTitle = function(sel){ sel.attr('title', sel.attr('alt')); }; +var animateHashes = function(){ + var id_value = window.location.hash; + if (id_value != ""){ + var previous_color = $(id_value).css('background-color'); + $(id_value).css('backgroundColor', '#FFF8C6'); + $(id_value) + .animate({backgroundColor: '#ff7f2a'}, 500) + .animate({backgroundColor: '#FFF8C6'}, 500, function(){ + $(id_value).css('backgroundColor', previous_color); + }); + } +}; + var getUniqueWords = function(value){ var words = $.trim(value).split(/\s+/); var uniques = new Object(); @@ -389,4 +402,4 @@ if(!this.JSON){this.JSON={}}(function(){function f(n){return n<10?"0"+n:n}if(typ (function(){var a={getSelection:function(){var b=this.jquery?this[0]:this;return(("selectionStart" in b&&function(){var c=b.selectionEnd-b.selectionStart;return{start:b.selectionStart,end:b.selectionEnd,length:c,text:b.value.substr(b.selectionStart,c)}})||(document.selection&&function(){b.focus();var d=document.selection.createRange();if(d==null){return{start:0,end:b.value.length,length:0}}var c=b.createTextRange();var e=c.duplicate();c.moveToBookmark(d.getBookmark());e.setEndPoint("EndToStart",c);return{start:e.text.length,end:e.text.length+d.text.length,length:d.text.length,text:d.text}})||function(){return{start:0,end:b.value.length,length:0}})()},replaceSelection:function(){var b=this.jquery?this[0]:this;var c=arguments[0]||"";return(("selectionStart" in b&&function(){b.value=b.value.substr(0,b.selectionStart)+c+b.value.substr(b.selectionEnd,b.value.length);return this})||(document.selection&&function(){b.focus();document.selection.createRange().text=c;return this})||function(){b.value+=c;return this})()}};jQuery.each(a,function(b){jQuery.fn[b]=this})})(); //our custom autocompleter var AutoCompleter=function(a){var b={autocompleteMultiple:true,multipleSeparator:" ",inputClass:"acInput",loadingClass:"acLoading",resultsClass:"acResults",selectClass:"acSelect",queryParamName:"q",limitParamName:"limit",extraParams:{},lineSeparator:"\n",cellSeparator:"|",minChars:2,maxItemsToShow:10,delay:400,useCache:true,maxCacheLength:10,matchSubset:true,matchCase:false,matchInside:true,mustMatch:false,preloadData:false,selectFirst:false,stopCharRegex:/\s+/,selectOnly:false,formatItem:null,onItemSelect:false,autoFill:false,filterResults:true,sortResults:true,sortFunction:false,onNoMatch:false};this.options=$.extend({},b,a);this.cacheData_={};this.cacheLength_=0;this.selectClass_="jquery-autocomplete-selected-item";this.keyTimeout_=null;this.lastKeyPressed_=null;this.lastProcessedValue_=null;this.lastSelectedValue_=null;this.active_=false;this.finishOnBlur_=true;this.options.minChars=parseInt(this.options.minChars,10);if(isNaN(this.options.minChars)||this.options.minChars<1){this.options.minChars=2}this.options.maxItemsToShow=parseInt(this.options.maxItemsToShow,10);if(isNaN(this.options.maxItemsToShow)||this.options.maxItemsToShow<1){this.options.maxItemsToShow=10}this.options.maxCacheLength=parseInt(this.options.maxCacheLength,10);if(isNaN(this.options.maxCacheLength)||this.options.maxCacheLength<1){this.options.maxCacheLength=10}if(this.options.preloadData===true){this.fetchRemoteData("",function(){})}};inherits(AutoCompleter,WrappedElement);AutoCompleter.prototype.decorate=function(a){this._element=a;this._element.attr("autocomplete","off");this._results=$("
").hide();if(this.options.resultsClass){this._results.addClass(this.options.resultsClass)}this._results.css({position:"absolute"});$("body").append(this._results);this.setEventHandlers()};AutoCompleter.prototype.setEventHandlers=function(){var a=this;a._element.keydown(function(b){a.lastKeyPressed_=b.keyCode;switch(a.lastKeyPressed_){case 38:b.preventDefault();if(a.active_){a.focusPrev()}else{a.activate()}return false;break;case 40:b.preventDefault();if(a.active_){a.focusNext()}else{a.activate()}return false;break;case 9:case 13:if(a.active_){b.preventDefault();a.selectCurrent();return false}break;case 27:if(a.active_){b.preventDefault();a.finish();return false}break;default:a.activate()}});a._element.blur(function(){if(a.finishOnBlur_){setTimeout(function(){a.finish()},200)}})};AutoCompleter.prototype.position=function(){var a=this._element.offset();this._results.css({top:a.top+this._element.outerHeight(),left:a.left})};AutoCompleter.prototype.cacheRead=function(d){var f,c,b,a,e;if(this.options.useCache){d=String(d);f=d.length;if(this.options.matchSubset){c=1}else{c=f}while(c<=f){if(this.options.matchInside){a=f-c}else{a=0}e=0;while(e<=a){b=d.substr(0,c);if(this.cacheData_[b]!==undefined){return this.cacheData_[b]}e++}c++}}return false};AutoCompleter.prototype.cacheWrite=function(a,b){if(this.options.useCache){if(this.cacheLength_>=this.options.maxCacheLength){this.cacheFlush()}a=String(a);if(this.cacheData_[a]!==undefined){this.cacheLength_++}return this.cacheData_[a]=b}return false};AutoCompleter.prototype.cacheFlush=function(){this.cacheData_={};this.cacheLength_=0};AutoCompleter.prototype.callHook=function(c,b){var a=this.options[c];if(a&&$.isFunction(a)){return a(b,this)}return false};AutoCompleter.prototype.activate=function(){var b=this;var a=function(){b.activateNow()};var c=parseInt(this.options.delay,10);if(isNaN(c)||c<=0){c=250}if(this.keyTimeout_){clearTimeout(this.keyTimeout_)}this.keyTimeout_=setTimeout(a,c)};AutoCompleter.prototype.activateNow=function(){var a=this.getValue();if(a!==this.lastProcessedValue_&&a!==this.lastSelectedValue_){if(a.length>=this.options.minChars){this.active_=true;this.lastProcessedValue_=a;this.fetchData(a)}}};AutoCompleter.prototype.fetchData=function(b){if(this.options.data){this.filterAndShowResults(this.options.data,b)}else{var a=this;this.fetchRemoteData(b,function(c){a.filterAndShowResults(c,b)})}};AutoCompleter.prototype.fetchRemoteData=function(c,e){var d=this.cacheRead(c);if(d){e(d)}else{var a=this;if(this._element){this._element.addClass(this.options.loadingClass)}var b=function(g){var f=false;if(g!==false){f=a.parseRemoteData(g);a.options.data=f;a.cacheWrite(c,f)}if(a._element){a._element.removeClass(a.options.loadingClass)}e(f)};$.ajax({url:this.makeUrl(c),success:b,error:function(){b(false)}})}};AutoCompleter.prototype.setOption=function(a,b){this.options[a]=b};AutoCompleter.prototype.setExtraParam=function(b,c){var a=$.trim(String(b));if(a){if(!this.options.extraParams){this.options.extraParams={}}if(this.options.extraParams[a]!==c){this.options.extraParams[a]=c;this.cacheFlush()}}};AutoCompleter.prototype.makeUrl=function(e){var a=this;var b=this.options.url;var d=$.extend({},this.options.extraParams);if(this.options.queryParamName===false){b+=encodeURIComponent(e)}else{d[this.options.queryParamName]=e}if(this.options.limitParamName&&this.options.maxItemsToShow){d[this.options.limitParamName]=this.options.maxItemsToShow}var c=[];$.each(d,function(f,g){c.push(a.makeUrlParam(f,g))});if(c.length){b+=b.indexOf("?")==-1?"?":"&";b+=c.join("&")}return b};AutoCompleter.prototype.makeUrlParam=function(a,b){return String(a)+"="+encodeURIComponent(b)};AutoCompleter.prototype.splitText=function(a){return String(a).replace(/(\r\n|\r|\n)/g,"\n").split(this.options.lineSeparator)};AutoCompleter.prototype.parseRemoteData=function(c){var h,b,f,d,g;var e=[];var b=this.splitText(c);for(f=0;f""){if(typeof c!=="object"){c={}}if(this.options.filterResults){h=String(b);g=String(l);if(!this.options.matchCase){h=h.toLowerCase();g=g.toLowerCase()}a=g.indexOf(h);if(this.options.matchInside){a=a>-1}else{a=a===0}}else{a=true}if(a){f.push({value:l,data:c})}}}if(this.options.sortResults){f=this.sortResults(f,b)}if(this.options.maxItemsToShow>0&&this.options.maxItemsToShowc){return 1}if(d");var f,l,j,a,h=false,d=false;var c=e.length;for(f=0;f"+this.showResult(l.value,l.data)+"");j.data("value",l.value);j.data("data",l.data);j.click(function(){var i=$(this);k.selectItem(i)}).mousedown(function(){k.finishOnBlur_=false}).mouseup(function(){k.finishOnBlur_=true});g.append(j);if(h===false){h=String(l.value);d=j;j.addClass(this.options.firstItemClass)}if(f==c-1){j.addClass(this.options.lastItemClass)}}this.position();this._results.html(g).show();a=this._results.outerWidth()-this._results.width();this._results.width(this._element.outerWidth()-a);$("li",this._results).hover(function(){k.focusItem(this)},function(){});if(this.autoFill(h,b)){this.focusItem(d)}};AutoCompleter.prototype.showResult=function(b,a){if($.isFunction(this.options.showResult)){return this.options.showResult(b,a)}else{return b}};AutoCompleter.prototype.autoFill=function(e,c){var b,a,d,f;if(this.options.autoFill&&this.lastKeyPressed_!=8){b=String(e).toLowerCase();a=String(c).toLowerCase();d=e.length;f=c.length;if(b.substr(0,f)===a){this._element.val(e);this.selectRange(f,d);return true}}return false};AutoCompleter.prototype.focusNext=function(){this.focusMove(+1)};AutoCompleter.prototype.focusPrev=function(){this.focusMove(-1)};AutoCompleter.prototype.focusMove=function(a){var b,c=$("li",this._results);a=parseInt(a,10);for(var b=0;b=c.length){b=c.length-1}}a=$(c[b])}else{a=$(b)}if(a){a.addClass(this.selectClass_).addClass(this.options.selectClass)}}};AutoCompleter.prototype.selectCurrent=function(){var a=$("li."+this.selectClass_,this._results);if(a.length==1){this.selectItem(a)}else{this.finish()}};AutoCompleter.prototype.selectItem=function(d){var c=d.data("value");var b=d.data("data");var a=this.displayValue(c,b);this.lastProcessedValue_=a;this.lastSelectedValue_=a;this.setValue(a);this.setCaret(a.length);this.callHook("onItemSelect",{value:c,data:b});this.finish()};AutoCompleter.prototype.isContentChar=function(a){if(a.match(this.options.stopCharRegex)){return false}else{if(a===this.options.multipleSeparator){return false}else{return true}}};AutoCompleter.prototype.getValue=function(){var c=this._element.getSelection();var d=this._element.val();var f=c.start;var e=f;for(cpos=f;cpos>=0;cpos=cpos-1){if(cpos===d.length){continue}var b=d.charAt(cpos);if(!this.isContentChar(b)){break}e=cpos}var a=f;for(cpos=f;cpos Date: Fri, 7 Oct 2011 16:45:41 -0300 Subject: updated the changelog --- askbot/doc/source/changelog.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/askbot/doc/source/changelog.rst b/askbot/doc/source/changelog.rst index d58b415f..f5013742 100644 --- a/askbot/doc/source/changelog.rst +++ b/askbot/doc/source/changelog.rst @@ -7,6 +7,7 @@ Changes in Askbot * Allow pre-population of tags via ask a questions link (Adolfo) * Make answering own question one click harder (Adolfo) * Bootstrap mode (Adolfo, Evgeny) +* Color-animated urls with the hash fragments (Adolfo) 0.7.24 ------ -- cgit v1.2.3-1-g7c22 From 62459952e4328a5a24f20a753dc82620bc4333b8 Mon Sep 17 00:00:00 2001 From: Evgeny Fadeev Date: Sat, 8 Oct 2011 04:16:03 -0400 Subject: rebuilt askbot locales --- .gitignore | 1 + .tx/config | 6 +- MANIFEST.in | 1 + askbot/locale/de/LC_MESSAGES/django.mo | Bin 61199 -> 50109 bytes askbot/locale/de/LC_MESSAGES/django.po | 6863 +++++++++++++++---------- askbot/locale/de/LC_MESSAGES/djangojs.mo | Bin 0 -> 408 bytes askbot/locale/de/LC_MESSAGES/djangojs.po | 65 + askbot/locale/en/LC_MESSAGES/django.mo | Bin 21637 -> 20706 bytes askbot/locale/en/LC_MESSAGES/django.po | 2724 ++++++---- askbot/locale/en/LC_MESSAGES/djangojs.mo | Bin 0 -> 407 bytes askbot/locale/en/LC_MESSAGES/djangojs.po | 65 + askbot/locale/es/LC_MESSAGES/django.mo | Bin 33760 -> 31301 bytes askbot/locale/es/LC_MESSAGES/django.po | 6693 ++++++++++++++---------- askbot/locale/es/LC_MESSAGES/djangojs.mo | Bin 0 -> 408 bytes askbot/locale/es/LC_MESSAGES/djangojs.po | 65 + askbot/locale/fi/LC_MESSAGES/django.mo | Bin 61264 -> 51493 bytes askbot/locale/fi/LC_MESSAGES/django.po | 6406 ++++++++++++++--------- askbot/locale/fi/LC_MESSAGES/djangojs.mo | Bin 0 -> 408 bytes askbot/locale/fi/LC_MESSAGES/djangojs.po | 65 + askbot/locale/fr/LC_MESSAGES/django.mo | Bin 92933 -> 88376 bytes askbot/locale/fr/LC_MESSAGES/django.po | 2917 +++++++---- askbot/locale/fr/LC_MESSAGES/djangojs.mo | Bin 0 -> 407 bytes askbot/locale/fr/LC_MESSAGES/djangojs.po | 65 + askbot/locale/it/LC_MESSAGES/django.mo | Bin 98205 -> 82876 bytes askbot/locale/it/LC_MESSAGES/django.po | 6475 ++++++++++++++--------- askbot/locale/it/LC_MESSAGES/djangojs.mo | Bin 0 -> 408 bytes askbot/locale/it/LC_MESSAGES/djangojs.po | 65 + askbot/locale/ja/LC_MESSAGES/django.mo | Bin 41516 -> 37520 bytes askbot/locale/ja/LC_MESSAGES/django.po | 6966 ++++++++++++++----------- askbot/locale/ja/LC_MESSAGES/djangojs.mo | Bin 0 -> 401 bytes askbot/locale/ja/LC_MESSAGES/djangojs.po | 65 + askbot/locale/ko/LC_MESSAGES/django.mo | Bin 0 -> 19986 bytes askbot/locale/ko/LC_MESSAGES/django.po | 6323 +++++++++++++++++++++++ askbot/locale/ko/LC_MESSAGES/djangojs.mo | Bin 0 -> 401 bytes askbot/locale/ko/LC_MESSAGES/djangojs.po | 65 + askbot/locale/kr/LC_MESSAGES/django.mo | Bin 22403 -> 0 bytes askbot/locale/kr/LC_MESSAGES/django.po | 5570 -------------------- askbot/locale/pt_BR/LC_MESSAGES/django.mo | Bin 0 -> 8806 bytes askbot/locale/pt_BR/LC_MESSAGES/django.po | 6133 ++++++++++++++++++++++ askbot/locale/pt_BR/LC_MESSAGES/djangojs.mo | Bin 0 -> 407 bytes askbot/locale/pt_BR/LC_MESSAGES/djangojs.po | 65 + askbot/locale/ro/LC_MESSAGES/django.mo | Bin 87643 -> 83286 bytes askbot/locale/ro/LC_MESSAGES/django.po | 2916 +++++++---- askbot/locale/ro/LC_MESSAGES/djangojs.mo | Bin 0 -> 472 bytes askbot/locale/ro/LC_MESSAGES/djangojs.po | 66 + askbot/locale/ru/LC_MESSAGES/django.mo | Bin 140015 -> 129267 bytes askbot/locale/ru/LC_MESSAGES/django.po | 4138 +++++++++------ askbot/locale/ru/LC_MESSAGES/djangojs.mo | Bin 619 -> 1407 bytes askbot/locale/ru/LC_MESSAGES/djangojs.po | 78 +- askbot/locale/sr/LC_MESSAGES/django.mo | Bin 42484 -> 37548 bytes askbot/locale/sr/LC_MESSAGES/django.po | 6697 ++++++++++++++---------- askbot/locale/sr/LC_MESSAGES/djangojs.mo | Bin 0 -> 482 bytes askbot/locale/sr/LC_MESSAGES/djangojs.po | 66 + askbot/locale/tr/LC_MESSAGES/django.mo | Bin 66724 -> 54328 bytes askbot/locale/tr/LC_MESSAGES/django.po | 6651 ++++++++++++++---------- askbot/locale/tr/LC_MESSAGES/djangojs.mo | Bin 0 -> 407 bytes askbot/locale/tr/LC_MESSAGES/djangojs.po | 65 + askbot/locale/vi/LC_MESSAGES/django.mo | Bin 18986 -> 17130 bytes askbot/locale/vi/LC_MESSAGES/django.po | 5973 ++++++++++++--------- askbot/locale/vi/LC_MESSAGES/djangojs.mo | Bin 0 -> 401 bytes askbot/locale/vi/LC_MESSAGES/djangojs.po | 65 + askbot/locale/zh-tw/LC_MESSAGES/django.mo | Bin 41021 -> 33183 bytes askbot/locale/zh-tw/LC_MESSAGES/django.po | 6629 ++++++++++++++---------- askbot/locale/zh-tw/LC_MESSAGES/djangojs.mo | Bin 0 -> 402 bytes askbot/locale/zh-tw/LC_MESSAGES/djangojs.po | 65 + askbot/locale/zh_CN/LC_MESSAGES/django.mo | Bin 101257 -> 85081 bytes askbot/locale/zh_CN/LC_MESSAGES/django.po | 7401 ++++++++++++++++----------- askbot/locale/zh_CN/LC_MESSAGES/djangojs.mo | Bin 0 -> 401 bytes askbot/locale/zh_CN/LC_MESSAGES/djangojs.po | 65 + 69 files changed, 61679 insertions(+), 36859 deletions(-) create mode 100644 askbot/locale/de/LC_MESSAGES/djangojs.mo create mode 100644 askbot/locale/de/LC_MESSAGES/djangojs.po create mode 100644 askbot/locale/en/LC_MESSAGES/djangojs.mo create mode 100644 askbot/locale/en/LC_MESSAGES/djangojs.po create mode 100644 askbot/locale/es/LC_MESSAGES/djangojs.mo create mode 100644 askbot/locale/es/LC_MESSAGES/djangojs.po create mode 100644 askbot/locale/fi/LC_MESSAGES/djangojs.mo create mode 100644 askbot/locale/fi/LC_MESSAGES/djangojs.po create mode 100644 askbot/locale/fr/LC_MESSAGES/djangojs.mo create mode 100644 askbot/locale/fr/LC_MESSAGES/djangojs.po create mode 100644 askbot/locale/it/LC_MESSAGES/djangojs.mo create mode 100644 askbot/locale/it/LC_MESSAGES/djangojs.po create mode 100644 askbot/locale/ja/LC_MESSAGES/djangojs.mo create mode 100644 askbot/locale/ja/LC_MESSAGES/djangojs.po create mode 100644 askbot/locale/ko/LC_MESSAGES/django.mo create mode 100644 askbot/locale/ko/LC_MESSAGES/django.po create mode 100644 askbot/locale/ko/LC_MESSAGES/djangojs.mo create mode 100644 askbot/locale/ko/LC_MESSAGES/djangojs.po delete mode 100644 askbot/locale/kr/LC_MESSAGES/django.mo delete mode 100644 askbot/locale/kr/LC_MESSAGES/django.po create mode 100644 askbot/locale/pt_BR/LC_MESSAGES/django.mo create mode 100644 askbot/locale/pt_BR/LC_MESSAGES/django.po create mode 100644 askbot/locale/pt_BR/LC_MESSAGES/djangojs.mo create mode 100644 askbot/locale/pt_BR/LC_MESSAGES/djangojs.po create mode 100644 askbot/locale/ro/LC_MESSAGES/djangojs.mo create mode 100644 askbot/locale/ro/LC_MESSAGES/djangojs.po create mode 100644 askbot/locale/sr/LC_MESSAGES/djangojs.mo create mode 100644 askbot/locale/sr/LC_MESSAGES/djangojs.po create mode 100644 askbot/locale/tr/LC_MESSAGES/djangojs.mo create mode 100644 askbot/locale/tr/LC_MESSAGES/djangojs.po create mode 100644 askbot/locale/vi/LC_MESSAGES/djangojs.mo create mode 100644 askbot/locale/vi/LC_MESSAGES/djangojs.po create mode 100644 askbot/locale/zh-tw/LC_MESSAGES/djangojs.mo create mode 100644 askbot/locale/zh-tw/LC_MESSAGES/djangojs.po create mode 100644 askbot/locale/zh_CN/LC_MESSAGES/djangojs.mo create mode 100644 askbot/locale/zh_CN/LC_MESSAGES/djangojs.po diff --git a/.gitignore b/.gitignore index 0375e009..f4c8a613 100755 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ *.swp *.log db +rebuild-locales.pl cache/?? run *.wsgi diff --git a/.tx/config b/.tx/config index ddc84185..97c5769c 100644 --- a/.tx/config +++ b/.tx/config @@ -1,8 +1,12 @@ [main] host = https://www.transifex.net -[askbot.txo] +[askbot.askbot-translation-part1] file_filter = askbot/locale//LC_MESSAGES/django.po source_file = askbot/locale/en/LC_MESSAGES/django.po source_lang = en +[askbot.askbot-translation-part2] +file_filter = askbot/locale//LC_MESSAGES/djangojs.po +source_file = askbot/locale/en/LC_MESSAGES/djangojs.po +source_lang = en diff --git a/MANIFEST.in b/MANIFEST.in index c6e22075..72c4fd65 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -17,6 +17,7 @@ exclude settings.py exclude manage.py exclude __init__.py exclude urls.py +exclude rebuild-locales.pl exclude askbot/upfiles/*.* exclude askbot/upfiles/avatars/* recursive-exclude askbot/doc/build/* diff --git a/askbot/locale/de/LC_MESSAGES/django.mo b/askbot/locale/de/LC_MESSAGES/django.mo index c663d35a..668a17c4 100644 Binary files a/askbot/locale/de/LC_MESSAGES/django.mo and b/askbot/locale/de/LC_MESSAGES/django.mo differ diff --git a/askbot/locale/de/LC_MESSAGES/django.po b/askbot/locale/de/LC_MESSAGES/django.po index 1493a05a..6258885f 100644 --- a/askbot/locale/de/LC_MESSAGES/django.po +++ b/askbot/locale/de/LC_MESSAGES/django.po @@ -5,93 +5,119 @@ # msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: 0.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-11-29 16:37-0600\n" +"POT-Creation-Date: 2011-10-08 02:23-0500\n" "PO-Revision-Date: 2010-05-06 02:23\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" +"Language: \n" "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" "X-Translated-Using: django-rosetta 0.5.3\n" -#: exceptions.py:9 +#: exceptions.py:13 #, fuzzy msgid "Sorry, but anonymous visitors cannot access this function" msgstr "Gastbenutzer können nicht abstimmen" -#: feed.py:22 +#: feed.py:26 feed.py:100 msgid " - " msgstr "-" -#: feed.py:22 +#: feed.py:26 +#, fuzzy +msgid "Individual question feed" +msgstr "Individuell ausgewählte Fragen" + +#: feed.py:100 msgid "latest questions" msgstr "Neueste Fragen" -#: forms.py:54 skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:40 -#: skins/default/templates/question_edit_tips.html:45 +#: forms.py:74 +#, fuzzy +msgid "select country" +msgstr "Zugang löschen" + +#: forms.py:83 +msgid "Country" +msgstr "" + +#: forms.py:91 +#, fuzzy +msgid "Country field is required" +msgstr "Dieses Feld wird benötigt" + +#: forms.py:104 skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:38 +#: skins/default/templates/blocks/question_edit_tips.html:43 msgid "title" msgstr "Titel" -#: forms.py:55 +#: forms.py:105 msgid "please enter a descriptive title for your question" msgstr "Bitte geben Sie einen Aussagekräftigen Titel für Ihre Frage ein." -#: forms.py:60 +#: forms.py:110 msgid "title must be > 10 characters" msgstr "Der Titel muß länger als 10 Zeichen sein." -#: forms.py:69 +#: forms.py:119 msgid "content" msgstr "Inhalt" -#: forms.py:75 +#: forms.py:125 msgid "question content must be > 10 characters" msgstr "Der Fragentext muß länger als 10 Buchstaben sein." -#: forms.py:84 skins/default/templates/header.html:83 +#: forms.py:134 skins/default/templates/macros.html:660 +#: skins/default/templates/macros.html:672 +#: skins/default/templates/blocks/header.html:25 msgid "tags" msgstr "Tags" -#: forms.py:86 +#: forms.py:136 msgid "" "Tags are short keywords, with no spaces within. Up to five tags can be used." msgstr "" "Tags sind kurze Stichwörter. Sie dürfen keine Leerzeichen enthalten. Bis zu " "fünf Tags können vergeben werden." -#: forms.py:93 skins/default/templates/question_retag.html:78 +#: forms.py:164 skins/default/templates/question_retag.html:58 msgid "tags are required" msgstr "Mindestens ein Tag muß gesetzt sein." -#: forms.py:102 +#: forms.py:173 #, 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:111 +#: forms.py:181 +#, python-format +msgid "At least one of the following tags is required : %(tags)s" +msgstr "" + +#: forms.py:190 #, 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:119 +#: forms.py:198 msgid "use-these-chars-in-tags" msgstr "Diese Buchstaben dürfen in Tags vorkommen" -#: forms.py:130 -#: skins/default/templates/unused/question_summary_list_roll.html:26 -#: skins/default/templates/unused/question_summary_list_roll.html:38 -msgid "community wiki" -msgstr "Community Wiki" +#: forms.py:233 +msgid "community wiki (karma is not awarded & many others can edit wiki post)" +msgstr "" -#: forms.py:131 +#: forms.py:234 msgid "" "if you choose community wiki option, the question and answer do not generate " "points and name of author will not be shown" @@ -100,11 +126,11 @@ msgstr "" "Antworten keine Bewertungspunkte vergeben, und der Name des Autors wird " "nicht angezeigt." -#: forms.py:147 +#: forms.py:250 msgid "update summary:" msgstr "Zusammenfassung der Überarbeitung:" -#: forms.py:148 +#: forms.py:251 msgid "" "enter a brief summary of your revision (e.g. fixed spelling, grammar, " "improved style, this field is optional)" @@ -113,288 +139,442 @@ msgstr "" "Rechtschreibung, Tippfehler korrigiert, Grammatik, Stil verbessert) " "Freiwillige Angabe." -#: forms.py:161 +#: forms.py:327 msgid "Enter number of points to add or subtract" msgstr "" -#: forms.py:175 const/__init__.py:219 +#: forms.py:341 const/__init__.py:245 msgid "approved" msgstr "" -#: forms.py:176 const/__init__.py:220 +#: forms.py:342 const/__init__.py:246 msgid "watched" msgstr "" -#: forms.py:177 const/__init__.py:221 +#: forms.py:343 const/__init__.py:247 #, fuzzy msgid "suspended" msgstr "aktualisiert" -#: forms.py:178 const/__init__.py:222 +#: forms.py:344 const/__init__.py:248 msgid "blocked" msgstr "" -#: forms.py:180 const/__init__.py:218 +#: forms.py:346 +#, fuzzy +msgid "administrator" +msgstr "Ihr Forumsteam" + +#: forms.py:347 const/__init__.py:244 #, fuzzy msgid "moderator" msgstr "benutzer-moderieren/" -#: forms.py:200 +#: forms.py:367 #, fuzzy msgid "Change status to" msgstr "Tags ändern" -#: forms.py:227 +#: forms.py:394 msgid "which one?" msgstr "" -#: forms.py:248 +#: forms.py:415 #, fuzzy msgid "Cannot change own status" msgstr "Über selbst verfaßte Beiträge kann nicht abgestimmt werden" -#: forms.py:254 +#: forms.py:421 msgid "Cannot turn other user to moderator" msgstr "" -#: forms.py:261 +#: forms.py:428 msgid "Cannot change status of another moderator" msgstr "" -#: forms.py:267 +#: forms.py:434 +#, fuzzy +msgid "Cannot change status to admin" +msgstr "Über selbst verfaßte Beiträge kann nicht abgestimmt werden" + +#: forms.py:440 #, python-format -msgid "If you wish to change %(username)s's status, " +msgid "" +"If you wish to change %(username)s's status, please make a meaningful " +"selection." msgstr "" -#: forms.py:276 +#: forms.py:449 msgid "Subject line" msgstr "" -#: forms.py:283 +#: forms.py:456 #, fuzzy msgid "Message text" msgstr "Nachrichtentext:" -#: forms.py:360 +#: forms.py:542 msgid "Your name:" msgstr "Ihr Name:" -#: forms.py:361 +#: forms.py:543 msgid "Email (not shared with anyone):" msgstr "Ihre E-Mail-Adresse (wird nicht angezeigt):" -#: forms.py:362 +#: forms.py:544 msgid "Your message:" msgstr "Ihre Nachricht:" -#: forms.py:449 -msgid "this email does not have to be linked to gravatar" +#: forms.py:581 +#, fuzzy +msgid "ask anonymously" +msgstr "Anonym" + +#: forms.py:583 +msgid "Check if you do not want to reveal your name when asking this question" +msgstr "" + +#: forms.py:743 +msgid "" +"You have asked this question anonymously, if you decide to reveal your " +"identity, please check this box." +msgstr "" + +#: forms.py:747 +msgid "reveal identity" +msgstr "" + +#: forms.py:805 +msgid "" +"Sorry, only owner of the anonymous question can reveal his or her identity, " +"please uncheck the box" +msgstr "" + +#: forms.py:818 +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:856 +#, fuzzy +msgid "this email will be linked to gravatar" msgstr "Diese E-Mail muß nicht mit Gravatar verknüpft werden." -#: forms.py:456 +#: forms.py:863 msgid "Real name" msgstr "Echter Name" -#: forms.py:463 +#: forms.py:870 msgid "Website" msgstr "Website" -#: forms.py:470 -msgid "Location" -msgstr "Ort" +#: forms.py:877 +msgid "City" +msgstr "" + +#: forms.py:886 +msgid "Show country" +msgstr "" -#: forms.py:477 +#: forms.py:891 msgid "Date of birth" msgstr "Geburtsdatum" -#: forms.py:478 +#: forms.py:892 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:484 +#: forms.py:898 msgid "Profile" msgstr "Profil" -#: forms.py:493 +#: forms.py:907 msgid "Screen name" msgstr "Nickname" -#: forms.py:518 forms.py:519 +#: forms.py:938 forms.py:939 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:525 +#: forms.py:946 msgid "Choose email tag filter" msgstr "E-Mail-Tag-Filter festlegen" -#: forms.py:564 +#: forms.py:993 msgid "Asked by me" msgstr "Von mir gefragt" -#: forms.py:567 +#: forms.py:996 msgid "Answered by me" msgstr "Von mir beantwortet" -#: forms.py:570 +#: forms.py:999 msgid "Individually selected" msgstr "Individuell ausgewählt" -#: forms.py:573 +#: forms.py:1002 msgid "Entire forum (tag filtered)" msgstr "Das ganze Forum (Tag-gefiltert)" -#: forms.py:577 +#: forms.py:1006 msgid "Comments and posts mentioning me" msgstr "" -#: forms.py:635 +#: forms.py:1085 msgid "okay, let's try!" msgstr "Okay, versuchen wir's!" -#: forms.py:636 +#: forms.py:1086 msgid "no community email please, thanks" msgstr "Ich möchte gar keine E-Mails erhalten, danke" -#: forms.py:640 +#: forms.py:1090 msgid "please choose one of the options above" msgstr "Bitte wählen Sie eine der obenstehenden Optionen aus" -#: urls.py:42 +#: urls.py:53 msgid "about/" msgstr "ueber/" -#: urls.py:43 conf/site_settings.py:79 +#: urls.py:54 msgid "faq/" msgstr "faq/" -#: urls.py:44 +#: urls.py:55 msgid "privacy/" msgstr "datenschutz/" -#: urls.py:45 -msgid "logout/" -msgstr "logout/" - -#: urls.py:47 urls.py:52 +#: urls.py:57 urls.py:62 msgid "answers/" msgstr "antworten/" -#: urls.py:47 urls.py:68 urls.py:164 +#: urls.py:57 urls.py:83 urls.py:198 msgid "edit/" msgstr "bearbeiten/" -#: urls.py:52 urls.py:98 +#: urls.py:62 urls.py:113 msgid "revisions/" msgstr "revisionen/" -#: urls.py:58 urls.py:63 urls.py:68 urls.py:73 urls.py:78 urls.py:83 -#: urls.py:88 urls.py:93 urls.py:98 +#: urls.py:68 urls.py:78 urls.py:83 urls.py:88 urls.py:93 urls.py:98 +#: urls.py:103 urls.py:108 urls.py:113 urls.py:285 +#: skins/default/templates/question.html:508 msgid "questions/" msgstr "fragen/" -#: urls.py:63 +#: urls.py:78 msgid "ask/" msgstr "frage/" -#: urls.py:73 +#: urls.py:88 #, fuzzy msgid "retag/" msgstr "tags/" -#: urls.py:78 +#: urls.py:93 msgid "close/" msgstr "schliessen/" -#: urls.py:83 +#: urls.py:98 msgid "reopen/" msgstr "oeffnen/" -#: urls.py:88 +#: urls.py:103 msgid "answer/" msgstr "antwort/" -#: urls.py:93 +#: urls.py:108 skins/default/templates/question.html:508 msgid "vote/" msgstr "abstimmen/" -#: urls.py:114 -msgid "command/" -msgstr "befehl/" - -#: urls.py:130 -msgid "question/" -msgstr "frage/" - -#: urls.py:135 +#: urls.py:144 msgid "tags/" msgstr "tags/" -#: urls.py:140 urls.py:146 -msgid "mark-tag/" -msgstr "tag-markieren/" - -#: urls.py:140 -msgid "interesting/" -msgstr "interessant/" - -#: urls.py:146 -msgid "ignored/" -msgstr "ignoriert/" - -#: urls.py:152 -msgid "unmark-tag/" -msgstr "tag-entfernen/" +#: urls.py:187 +msgid "subscribe-for-tags/" +msgstr "" -#: urls.py:158 urls.py:164 urls.py:169 +#: urls.py:192 urls.py:198 urls.py:204 urls.py:212 +#: skins/default/templates/main_page/javascript.html:23 msgid "users/" msgstr "benutzer/" -#: urls.py:174 urls.py:179 +#: urls.py:205 +#, fuzzy +msgid "subscriptions/" +msgstr "E-Mail-Abonnements" + +#: urls.py:217 +msgid "users/update_has_custom_avatar/" +msgstr "" + +#: urls.py:222 urls.py:227 msgid "badges/" msgstr "auszeichnungen/" -#: urls.py:184 +#: urls.py:232 msgid "messages/" msgstr "nachrichten/" -#: urls.py:184 +#: urls.py:232 msgid "markread/" msgstr "gelesen_markieren/" -#: urls.py:199 +#: urls.py:248 msgid "upload/" msgstr "upload/" -#: urls.py:200 -msgid "search/" -msgstr "suche/" - -#: urls.py:201 +#: urls.py:249 msgid "feedback/" msgstr "feedback/" -#: urls.py:202 setup_templates/settings.py:182 -#: skins/default/templates/authopenid/signin.html:249 +#: urls.py:291 skins/default/templates/question.html:506 +#: skins/default/templates/main_page/javascript.html:22 +msgid "question/" +msgstr "frage/" + +#: urls.py:298 setup_templates/settings.py:202 +#: skins/default/templates/authopenid/providers_javascript.html:7 msgid "account/" msgstr "zugang/" -#: conf/email.py:12 +#: conf/badges.py:12 +#, fuzzy +msgid "Badge settings" +msgstr "einstellungen" + +#: conf/badges.py:21 +msgid "Disciplined: minimum upvotes for deleted post" +msgstr "" + +#: conf/badges.py:30 +msgid "Peer Pressure: minimum downvotes for deleted post" +msgstr "" + +#: conf/badges.py:39 +msgid "Teacher: minimum upvotes for the answer" +msgstr "" + +#: conf/badges.py:48 +msgid "Nice Answer: minimum upvotes for the answer" +msgstr "" + +#: conf/badges.py:57 +msgid "Good Answer: minimum upvotes for the answer" +msgstr "" + +#: conf/badges.py:66 +msgid "Great Answer: minimum upvotes for the answer" +msgstr "" + +#: conf/badges.py:75 +msgid "Nice Question: minimum upvotes for the question" +msgstr "" + +#: conf/badges.py:84 +msgid "Good Question: minimum upvotes for the question" +msgstr "" + +#: conf/badges.py:93 +msgid "Great Question: minimum upvotes for the question" +msgstr "" + +#: conf/badges.py:102 +#, fuzzy +msgid "Popular Question: minimum views" +msgstr "populäre Frage" + +#: conf/badges.py:111 +#, fuzzy +msgid "Notable Question: minimum views" +msgstr "Bemerkenswerte Frage" + +#: conf/badges.py:120 +#, fuzzy +msgid "Famous Question: minimum views" +msgstr "Berühmte Frage" + +#: conf/badges.py:129 +msgid "Self-Learner: minimum answer upvotes" +msgstr "" + +#: conf/badges.py:138 +msgid "Civic Duty: minimum votes" +msgstr "" + +#: conf/badges.py:147 +msgid "Enlightened Duty: minimum upvotes" +msgstr "" + +#: conf/badges.py:156 +msgid "Guru: minimum upvotes" +msgstr "" + +#: conf/badges.py:165 +msgid "Necromancer: minimum upvotes" +msgstr "" + +#: conf/badges.py:174 +msgid "Necromancer: minimum delay in days" +msgstr "" + +#: conf/badges.py:183 +msgid "Associate Editor: minimum number of edits" +msgstr "" + +#: conf/badges.py:192 +#, fuzzy +msgid "Favorite Question: minimum stars" +msgstr "Favoritenfrage" + +#: conf/badges.py:201 +#, fuzzy +msgid "Stellar Question: minimum stars" +msgstr "Exzellente Frage" + +#: conf/badges.py:210 +msgid "Commentator: minimum comments" +msgstr "" + +#: conf/badges.py:219 +msgid "Taxonomist: minimum tag use count" +msgstr "" + +#: conf/badges.py:228 +msgid "Enthusiast: minimum days" +msgstr "" + +#: conf/email.py:14 msgid "Email and email alert settings" msgstr "" -#: conf/email.py:20 +#: conf/email.py:22 +#, fuzzy +msgid "Prefix for the email subject line" +msgstr "Willkommen im Forum" + +#: conf/email.py:24 +msgid "" +"This setting takes default from the django settingEMAIL_SUBJECT_PREFIX. A " +"value entered here will overridethe default." +msgstr "" + +#: conf/email.py:36 msgid "Maximum number of news entries in an email alert" msgstr "" -#: conf/email.py:30 +#: conf/email.py:46 msgid "Default news notification frequency" msgstr "" -#: conf/email.py:32 +#: conf/email.py:48 msgid "" "This option currently defines default frequency of emailed updates in the " "following five categories: questions asked by user, answered by user, " @@ -402,34 +582,83 @@ msgid "" "posts mentioning the user and comment responses" msgstr "" -#: conf/email.py:47 +#: conf/email.py:62 +#, fuzzy +msgid "Send periodic reminders about unanswered questions" +msgstr "Es gibt hier keine unbeantworteten Fragen" + +#: conf/email.py:64 +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) and an IMAP server with a dedicated inbox " +"must be configured " +msgstr "" + +#: conf/email.py:78 +#, fuzzy +msgid "Days before starting to send reminders about unanswered questions" +msgstr "Es gibt hier keine unbeantworteten Fragen" + +#: conf/email.py:89 +msgid "" +"How often to send unanswered question reminders (in days between the " +"reminders sent)." +msgstr "" + +#: conf/email.py:101 +msgid "Max. number of reminders to send about unanswered questions" +msgstr "" + +#: conf/email.py:113 msgid "Require email verification before allowing to post" msgstr "" -#: conf/email.py:48 +#: conf/email.py:114 msgid "" "Active email verification is done by sending a verification key in email" msgstr "" -#: conf/email.py:57 +#: conf/email.py:123 #, fuzzy msgid "Allow only one account per email address" msgstr "Ihre E-Mail-Adresse (wird nie veröffentlicht)" -#: conf/email.py:66 +#: conf/email.py:132 msgid "Fake email for anonymous user" msgstr "" -#: conf/email.py:67 +#: conf/email.py:133 msgid "Use this setting to control gravatar for email-less user" msgstr "" -#: conf/email.py:76 +#: conf/email.py:142 #, fuzzy -msgid "Prefix for the email subject line" -msgstr "Willkommen im Forum" +msgid "Allow posting questions by email" +msgstr "" +"Sie können Ihre Frage formulieren, ohne sich " +"vorher anmelden zu müssen. 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:144 +msgid "" +"Before enabling this setting - please fill out IMAP settings in the settings." +"py file" +msgstr "" + +#: conf/email.py:155 +msgid "Replace space in emailed tags with dash" +msgstr "" + +#: conf/email.py:157 +msgid "" +"This setting applies to tags written in the subject line of questions asked " +"by email" +msgstr "" -#: conf/external_keys.py:11 +#: conf/external_keys.py:10 msgid "Keys to connect the site with external services like Facebook, etc." msgstr "" @@ -440,90 +669,114 @@ msgstr "" #: conf/external_keys.py:20 #, python-format msgid "" -"This key helps google index your site please obtain is at google webmasters tools site" +"This key helps google index your site please obtain is at google webmasters tools site" msgstr "" -#: conf/external_keys.py:34 +#: conf/external_keys.py:35 msgid "Google Analytics key" msgstr "" -#: conf/external_keys.py:36 +#: conf/external_keys.py:37 #, python-format msgid "" -"Obtain is at Google Analytics site, if you wish " -"to use Google Analytics to monitor your site" +"Obtain is at Google Analytics site, if you wish to " +"use Google Analytics to monitor your site" msgstr "" -#: conf/external_keys.py:49 +#: conf/external_keys.py:50 msgid "Enable recaptcha (keys below are required)" msgstr "" -#: conf/external_keys.py:58 +#: conf/external_keys.py:59 msgid "Recaptcha public key" msgstr "" -#: conf/external_keys.py:66 +#: conf/external_keys.py:67 msgid "Recaptcha private key" msgstr "" -#: conf/external_keys.py:68 +#: conf/external_keys.py:69 +#, 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 recaptcha.net" +"robots. Please get this and a public key at the %(url)s" msgstr "" -#: conf/external_keys.py:80 +#: conf/external_keys.py:81 msgid "Facebook public API key" msgstr "" -#: conf/external_keys.py:82 +#: conf/external_keys.py:83 +#, python-format msgid "" "Facebook API key and Facebook secret allow to use Facebook Connect login " -"method at your site. Please obtain these keys at facebook create app site" +"method at your site. Please obtain these keys at facebook create app site" msgstr "" -#: conf/external_keys.py:95 +#: conf/external_keys.py:96 msgid "Facebook secret key" msgstr "" -#: conf/external_keys.py:103 +#: conf/external_keys.py:104 msgid "Twitter consumer key" msgstr "" -#: conf/external_keys.py:105 conf/external_keys.py:126 +#: conf/external_keys.py:106 +#, python-format msgid "" -"Please register your forum at twitter applications site" +"Please register your forum at twitter applications site" msgstr "" -#: conf/external_keys.py:116 +#: conf/external_keys.py:117 msgid "Twitter consumer secret" msgstr "" -#: conf/external_keys.py:124 +#: conf/external_keys.py:125 msgid "LinkedIn consumer key" msgstr "" -#: conf/external_keys.py:137 +#: conf/external_keys.py:127 +#, python-format +msgid "" +"Please register your forum at LinkedIn developer site" +msgstr "" + +#: conf/external_keys.py:138 msgid "LinkedIn consumer secret" msgstr "" -#: conf/external_keys.py:145 -msgid "User LDAP authentication for the password login" +#: conf/external_keys.py:146 +msgid "ident.ca consumer key" msgstr "" -#: conf/external_keys.py:154 +#: conf/external_keys.py:148 +#, python-format +msgid "" +"Please register your forum at Identi.ca applications " +"site" +msgstr "" + +#: conf/external_keys.py:159 +msgid "ident.ca consumer secret" +msgstr "" + +#: conf/external_keys.py:167 +msgid "Use LDAP authentication for the password login" +msgstr "" + +#: conf/external_keys.py:176 msgid "LDAP service provider name" msgstr "" -#: conf/external_keys.py:162 +#: conf/external_keys.py:184 msgid "URL for the LDAP service" msgstr "" -#: conf/external_keys.py:170 +#: conf/external_keys.py:192 #, fuzzy msgid "Explain how to change LDAP password" msgstr "Passwort ändern" @@ -543,171 +796,444 @@ msgid "" msgstr "" #: conf/flatpages.py:30 -msgid "Text of the Q&A forum Privacy Policy (html format)" +msgid "Text of the Q&A forum FAQ page (html format)" msgstr "" #: conf/flatpages.py:33 msgid "" "Save, then use HTML validator on " -"the \"privacy\" page to check your input." +"the \"faq\" page to check your input." msgstr "" -#: conf/forum_data_rules.py:12 -msgid "Settings for askbot data entry and display" +#: conf/flatpages.py:44 +msgid "Text of the Q&A forum Privacy Policy (html format)" msgstr "" -#: conf/forum_data_rules.py:20 -msgid "Check to enable community wiki feature" +#: conf/flatpages.py:47 +msgid "" +"Save, then use HTML validator on " +"the \"privacy\" page to check your input." msgstr "" -#: conf/forum_data_rules.py:29 -msgid "Maximum length of tag (number of characters)" +#: conf/forum_data_rules.py:11 +msgid "Data entry and display" msgstr "" -#: conf/forum_data_rules.py:39 -msgid "Default max number of comments to display under posts" +#: conf/forum_data_rules.py:20 +#, python-format +msgid "" +"Enable embedding videos. Note: please read read this first." msgstr "" -#: conf/forum_data_rules.py:50 -#, python-format -msgid "Maximum comment length, must be < %(max_len)s" +#: conf/forum_data_rules.py:31 +msgid "Check to enable community wiki feature" msgstr "" -#: conf/forum_data_rules.py:60 -msgid "Minimum length of search term for Ajax search" +#: conf/forum_data_rules.py:40 +msgid "Allow asking questions anonymously" msgstr "" -#: conf/forum_data_rules.py:61 -msgid "Must match the corresponding database backend setting" +#: conf/forum_data_rules.py:42 +msgid "" +"Users do not accrue reputation for anonymous questions and their identity is " +"not revealed until they change their mind" msgstr "" -#: conf/forum_data_rules.py:70 -msgid "Maximum number of tags per question" +#: conf/forum_data_rules.py:54 +msgid "Allow posting before logging in" msgstr "" -#: conf/forum_data_rules.py:82 -msgid "Number of questions to list by default" +#: conf/forum_data_rules.py:56 +msgid "" +"Check if you want to allow users start posting questions or answers before " +"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 "" -#: conf/forum_data_rules.py:92 +#: conf/forum_data_rules.py:71 #, fuzzy -msgid "What should \"unanswered question\" mean?" -msgstr "unanswered questions" +msgid "Allow swapping answer with question" +msgstr "Frage beantworten" -#: conf/markup.py:15 -msgid "Markup formatting" +#: conf/forum_data_rules.py:73 +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 "" -#: conf/markup.py:29 -msgid "Enable code-friendly Markdown" +#: conf/forum_data_rules.py:85 +msgid "Maximum length of tag (number of characters)" msgstr "" -#: conf/markup.py:31 +#: conf/forum_data_rules.py:93 +#, fuzzy +msgid "Mandatory tags" +msgstr "tags aktualisiert" + +#: conf/forum_data_rules.py:96 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 " -"\"MathJax support\" implicitly turns this feature on, because underscores " -"are heavily used in LaTeX input." +"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/markup.py:46 -msgid "Mathjax support (rendering of LaTeX)" +#: conf/forum_data_rules.py:108 +msgid "Force lowercase the tags" msgstr "" -#: conf/markup.py:48 -#, python-format +#: conf/forum_data_rules.py:110 msgid "" -"If you enable this feature, mathjax must be " -"installed in directory %(dir)s" +"Attention: after checking this, please back up the database, and run a " +"management command: python manage.py fix_question_tags to " +"globally rename the tags" msgstr "" -#: conf/markup.py:63 -msgid "Base url of MathJax deployment" +#: conf/forum_data_rules.py:124 +msgid "Format of tag list" msgstr "" -#: conf/markup.py:65 +#: conf/forum_data_rules.py:126 msgid "" -"Note - MathJax is not included with askbot - 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 "" - -#: conf/minimum_reputation.py:11 -msgid "Minimum reputation required to perform actions" +"Select the format to show tags in, either as a simple list, or as a tag cloud" msgstr "" -#: conf/minimum_reputation.py:20 +#: conf/forum_data_rules.py:138 #, fuzzy -msgid "Upvote" -msgstr "Positiv bewerten" +msgid "Use wildcard tags" +msgstr "Tags" -#: conf/minimum_reputation.py:29 -#, fuzzy -msgid "Downvote" -msgstr "Negativ bewerten" +#: conf/forum_data_rules.py:140 +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/minimum_reputation.py:38 -#, fuzzy -msgid "Flag offensive" -msgstr "Als beleidigend melden" +#: conf/forum_data_rules.py:153 +msgid "Default max number of comments to display under posts" +msgstr "" -#: conf/minimum_reputation.py:47 -#, fuzzy -msgid "Leave comments" -msgstr "Kommentare hinzufügen" +#: conf/forum_data_rules.py:164 +#, python-format +msgid "Maximum comment length, must be < %(max_len)s" +msgstr "" -#: conf/minimum_reputation.py:56 -msgid "Delete comments posted by others" +#: conf/forum_data_rules.py:174 +msgid "Limit time to edit comments" msgstr "" +#: conf/forum_data_rules.py:176 +msgid "If unchecked, there will be no time limit to edit the comments" +msgstr "" + +#: conf/forum_data_rules.py:187 +msgid "Minutes allowed to edit a comment" +msgstr "" + +#: conf/forum_data_rules.py:188 +msgid "To enable this setting, check the previous one" +msgstr "" + +#: conf/forum_data_rules.py:197 +msgid "Save comment by pressing key" +msgstr "" + +#: conf/forum_data_rules.py:206 +msgid "Minimum length of search term for Ajax search" +msgstr "" + +#: conf/forum_data_rules.py:207 +msgid "Must match the corresponding database backend setting" +msgstr "" + +#: conf/forum_data_rules.py:216 +msgid "Do not make text query sticky in search" +msgstr "" + +#: conf/forum_data_rules.py:218 +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:231 +msgid "Maximum number of tags per question" +msgstr "" + +#: conf/forum_data_rules.py:243 +msgid "Number of questions to list by default" +msgstr "" + +#: conf/forum_data_rules.py:253 +#, fuzzy +msgid "What should \"unanswered question\" mean?" +msgstr "unanswered questions" + +#: conf/license.py:12 +#, fuzzy +msgid "License settings" +msgstr "einstellungen" + +#: conf/license.py:19 +msgid "Show license clause in the site footer" +msgstr "" + +#: conf/license.py:28 +msgid "Short name for the license" +msgstr "" + +#: conf/license.py:37 +msgid "Full name of the license" +msgstr "" + +#: conf/license.py:38 +msgid "Creative Commons Attribution Share Alike 3.0" +msgstr "" + +#: conf/license.py:46 +msgid "Add link to the license page" +msgstr "" + +#: conf/license.py:55 +#, fuzzy +msgid "License homepage" +msgstr "Zurück zur Startseite" + +#: conf/license.py:57 +msgid "URL of the official page with all the license legal clauses" +msgstr "" + +#: conf/license.py:67 +msgid "Use license logo" +msgstr "" + +#: conf/license.py:76 +msgid "License logo image" +msgstr "" + +#: conf/login_providers.py:12 +msgid "Login provider setings" +msgstr "" + +#: conf/login_providers.py:20 +msgid "" +"Show alternative login provider buttons on the password \"Sign Up\" page" +msgstr "" + +#: conf/login_providers.py:29 +msgid "Always display local login form and hide \"Askbot\" button." +msgstr "" + +#: conf/login_providers.py:38 +msgid "Activate to allow login with self-hosted wordpress site" +msgstr "" + +#: conf/login_providers.py:39 +msgid "" +"to activate this feature you must fill out the wordpress xml-rpc setting " +"bellow" +msgstr "" + +#: conf/login_providers.py:48 +msgid "" +"Fill it with the wordpress url to the xml-rpc, normally http://mysite.com/" +"xmlrpc.php" +msgstr "" + +#: conf/login_providers.py:49 +msgid "" +"To enable, go to Settings->Writing->Remote Publishing and check the box for " +"XML-RPC" +msgstr "" + +#: conf/login_providers.py:60 +msgid "Upload your icon" +msgstr "" + +#: conf/login_providers.py:90 +#, python-format +msgid "Activate %(provider)s login" +msgstr "" + +#: conf/login_providers.py:95 +#, python-format +msgid "" +"Note: to really enable %(provider)s login some additional parameters will " +"need to be set in the \"External keys\" section" +msgstr "" + +#: conf/markup.py:14 +msgid "Markup formatting" +msgstr "" + +#: conf/markup.py:39 +msgid "Enable code-friendly Markdown" +msgstr "" + +#: conf/markup.py:41 +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 " +"\"MathJax support\" implicitly turns this feature on, because underscores " +"are heavily used in LaTeX input." +msgstr "" + +#: conf/markup.py:56 +msgid "Mathjax support (rendering of LaTeX)" +msgstr "" + +#: conf/markup.py:58 +#, python-format +msgid "" +"If you enable this feature, mathjax must be " +"installed on your server in its own directory." +msgstr "" + +#: conf/markup.py:72 +msgid "Base url of MathJax deployment" +msgstr "" + +#: conf/markup.py:74 +msgid "" +"Note - MathJax is not included with askbot - 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 "" + +#: conf/markup.py:89 +msgid "Enable autolinking with specific patterns" +msgstr "" + +#: conf/markup.py:91 +msgid "" +"If you enable this feature, the application will be able to detect patterns " +"and auto link to URLs" +msgstr "" + +#: conf/markup.py:104 +msgid "Regexes to detect the link patterns" +msgstr "" + +#: conf/markup.py:106 +msgid "" +"Enter valid regular expressions for the patters, one per line. For example " +"to detect a bug pattern like #bug123, use the following regex: #bug(\\d+). " +"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 "" + +#: conf/markup.py:125 +msgid "URLs for autolinking" +msgstr "" + +#: conf/markup.py:127 +msgid "" +"Here, please enter url templates for the patterns entered in the previous " +"setting, also one entry per line. Make sure that number of lines in " +"this setting and the previous one are the same 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 "" + +#: conf/minimum_reputation.py:11 +msgid "Minimum reputation required to perform actions" +msgstr "" + +#: conf/minimum_reputation.py:20 +#, fuzzy +msgid "Upvote" +msgstr "Positiv bewerten" + +#: conf/minimum_reputation.py:29 +#, fuzzy +msgid "Downvote" +msgstr "Negativ bewerten" + +#: conf/minimum_reputation.py:38 +#, fuzzy +msgid "Answer own question immediately" +msgstr "Eigene Frage beantworten" + +#: conf/minimum_reputation.py:47 +#, fuzzy +msgid "Accept own answer" +msgstr "Beliebige Antworten bearbeiten" + +#: conf/minimum_reputation.py:56 +#, fuzzy +msgid "Flag offensive" +msgstr "Als beleidigend melden" + #: conf/minimum_reputation.py:65 #, fuzzy +msgid "Leave comments" +msgstr "Kommentare hinzufügen" + +#: conf/minimum_reputation.py:74 +msgid "Delete comments posted by others" +msgstr "" + +#: conf/minimum_reputation.py:83 +#, fuzzy msgid "Delete questions and answers posted by others" msgstr "" "Beliebige Fragen und Antworten löschen und weitere Moderationsfunktionen" -#: conf/minimum_reputation.py:74 +#: conf/minimum_reputation.py:92 #, fuzzy msgid "Upload files" msgstr "dateien/" -#: conf/minimum_reputation.py:83 +#: conf/minimum_reputation.py:101 #, fuzzy msgid "Close own questions" msgstr "Frage schließen" -#: conf/minimum_reputation.py:92 +#: conf/minimum_reputation.py:110 msgid "Retag questions posted by other people" msgstr "" -#: conf/minimum_reputation.py:101 +#: conf/minimum_reputation.py:119 #, fuzzy msgid "Reopen own questions" msgstr "Frage wieder eröffnen" -#: conf/minimum_reputation.py:110 +#: conf/minimum_reputation.py:128 #, fuzzy msgid "Edit community wiki posts" msgstr "Als \"Community Wiki\" markierte Fragen beantworten" -#: conf/minimum_reputation.py:119 +#: conf/minimum_reputation.py:137 msgid "Edit posts authored by other people" msgstr "" -#: conf/minimum_reputation.py:128 +#: conf/minimum_reputation.py:146 #, fuzzy msgid "View offensive flags" msgstr "als beleidigend/illegal gemeldet" -#: conf/minimum_reputation.py:137 +#: conf/minimum_reputation.py:155 #, fuzzy msgid "Close questions asked by others" msgstr "Fragen mit Tag '%(tag)s' anzeigen" -#: conf/minimum_reputation.py:146 +#: conf/minimum_reputation.py:164 msgid "Lock posts" msgstr "" +#: conf/minimum_reputation.py:173 +msgid "Remove rel=nofollow from own homepage" +msgstr "" + +#: conf/minimum_reputation.py:175 +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 "" + #: conf/reputation_changes.py:12 msgid "Reputation loss and gain rules" msgstr "" @@ -769,56 +1295,169 @@ msgstr "" msgid "Loss for post owner when upvote is canceled" msgstr "" -#: conf/site_settings.py:13 +#: conf/sidebar_main.py:11 +msgid "Sidebar widget settings - main page" +msgstr "" + +#: conf/sidebar_main.py:18 conf/sidebar_profile.py:18 +#: conf/sidebar_question.py:18 +msgid "Custom sidebar header" +msgstr "" + +#: conf/sidebar_main.py:21 conf/sidebar_profile.py:21 +#: conf/sidebar_question.py:21 +msgid "" +"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." +msgstr "" + +#: conf/sidebar_main.py:34 +msgid "Show avatar block in sidebar" +msgstr "" + +#: conf/sidebar_main.py:36 +msgid "Uncheck this if you want to hide the avatar block from the sidebar " +msgstr "" + +#: conf/sidebar_main.py:47 +msgid "Limit how many avatars will be displayed on the sidebar" +msgstr "" + +#: conf/sidebar_main.py:57 +msgid "Show tag selector in sidebar" +msgstr "" + +#: conf/sidebar_main.py:59 +msgid "" +"Uncheck this if you want to hide the options for choosing interesting and " +"ignored tags " +msgstr "" + +#: conf/sidebar_main.py:70 +msgid "Show tag list/cloud in sidebar" +msgstr "" + +#: conf/sidebar_main.py:72 +msgid "" +"Uncheck this if you want to hide the tag cloud or tag list from the sidebar " +msgstr "" + +#: conf/sidebar_main.py:83 conf/sidebar_profile.py:34 +#: conf/sidebar_question.py:74 +msgid "Custom sidebar footer" +msgstr "" + +#: conf/sidebar_main.py:86 conf/sidebar_profile.py:37 +#: conf/sidebar_question.py:77 +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 "" + +#: conf/sidebar_profile.py:11 +msgid "Sidebar widget settings - profile page" +msgstr "" + +#: conf/sidebar_question.py:11 +msgid "Sidebar widget settings - question page" +msgstr "" + +#: conf/sidebar_question.py:34 +msgid "Show tag list in sidebar" +msgstr "" + +#: conf/sidebar_question.py:36 +msgid "Uncheck this if you want to hide the tag list from the sidebar " +msgstr "" + +#: conf/sidebar_question.py:47 +msgid "Show meta information in sidebar" +msgstr "" + +#: conf/sidebar_question.py:49 +msgid "" +"Uncheck this if you want to hide the meta information about the question " +"(post date, views, last updated). " +msgstr "" + +#: conf/sidebar_question.py:61 +#, fuzzy +msgid "Show related questions in sidebar" +msgstr "Verwandte / ähnliche Fragen" + +#: conf/sidebar_question.py:63 +#, fuzzy +msgid "Uncheck this if you want to hide the list of related questions. " +msgstr "Klicken Sie, um die ältesten bearbeiteten Fragen zu sehen" + +#: conf/site_modes.py:63 +#, fuzzy +msgid "Site modes" +msgstr "Titel" + +#: conf/site_modes.py:72 +msgid "Activate a \"Bootstrap\" mode" +msgstr "" + +#: conf/site_modes.py:74 +msgid "" +"Bootstrap mode lowers reputation and certain badge thresholds, to values, " +"more suitable for the smaller communities, WARNING: your " +"current value for Minimum reputation, Bagde Settings and Vote Rules will be " +"changed after you modify this setting." +msgstr "" + +#: conf/site_settings.py:11 msgid "Q&A forum website parameters and urls" msgstr "" -#: conf/site_settings.py:21 +#: conf/site_settings.py:19 #, fuzzy msgid "Site title for the Q&A forum" msgstr "Grüße vom Forumsteam" -#: conf/site_settings.py:30 +#: conf/site_settings.py:28 msgid "Comma separated list of Q&A site keywords" msgstr "" -#: conf/site_settings.py:40 +#: conf/site_settings.py:37 msgid "Copyright message to show in the footer" msgstr "" -#: conf/site_settings.py:50 +#: conf/site_settings.py:47 msgid "Site description for the search engines" msgstr "" -#: conf/site_settings.py:58 -#, fuzzy -msgid "Askbot" -msgstr "Über" - -#: conf/site_settings.py:59 +#: conf/site_settings.py:56 msgid "Short name for your Q&A forum" msgstr "" -#: conf/site_settings.py:69 +#: conf/site_settings.py:66 msgid "Base URL for your Q&A forum, must start with http or https" msgstr "" -#: conf/site_settings.py:82 -msgid "Link shown in the greeting message shown to the anonymous user" +#: conf/site_settings.py:77 +msgid "Check to enable greeting for anonymous user" msgstr "" -#: conf/site_settings.py:85 -msgid "" -"If you change this url from the default - then you will also probably want " -"to adjust translation of the following string: " +#: conf/site_settings.py:88 +msgid "Text shown in the greeting message shown to the anonymous user" +msgstr "" + +#: conf/site_settings.py:92 +msgid "Use HTML to format the message " msgstr "" -#: conf/site_settings.py:98 +#: conf/site_settings.py:101 #, fuzzy msgid "Feedback site URL" msgstr "Feedback" -#: conf/site_settings.py:100 +#: conf/site_settings.py:103 msgid "If left empty, a simple internal feedback form will be used instead" msgstr "" @@ -931,23 +1570,33 @@ msgstr "" msgid "Foreground color for accepted answer" msgstr "" -#: conf/skin_general_settings.py:15 +#: conf/skin_general_settings.py:14 msgid "Skin and User Interface settings" msgstr "" -#: conf/skin_general_settings.py:22 +#: conf/skin_general_settings.py:21 msgid "Q&A site logo" msgstr "" -#: conf/skin_general_settings.py:24 +#: conf/skin_general_settings.py:23 msgid "To change the logo, select new file, then submit this whole form." msgstr "" -#: conf/skin_general_settings.py:38 +#: conf/skin_general_settings.py:37 +msgid "Show logo" +msgstr "" + +#: 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 msgid "Site favicon" msgstr "" -#: conf/skin_general_settings.py:40 +#: conf/skin_general_settings.py:53 #, python-format msgid "" "A small 16x16 or 32x32 pixel icon image used to distinguish your site in the " @@ -955,64 +1604,230 @@ msgid "" "href=\"%(favicon_info_url)s\">this page." msgstr "" -#: conf/skin_general_settings.py:56 +#: conf/skin_general_settings.py:71 msgid "Password login button" msgstr "" -#: conf/skin_general_settings.py:58 +#: conf/skin_general_settings.py:73 msgid "" "An 88x38 pixel image that is used on the login screen for the password login " "button." msgstr "" -#: conf/skin_general_settings.py:73 +#: conf/skin_general_settings.py:88 msgid "Show all UI functions to all users" msgstr "" -#: conf/skin_general_settings.py:75 +#: conf/skin_general_settings.py:90 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:90 +#: conf/skin_general_settings.py:105 #, fuzzy msgid "Select skin" msgstr "Version auswählen" -#: conf/skin_general_settings.py:99 -msgid "Skin media revision number" +#: conf/skin_general_settings.py:116 +msgid "Customize HTML " +msgstr "" + +#: conf/skin_general_settings.py:125 +msgid "Custom portion of the HTML " msgstr "" -#: conf/skin_general_settings.py:101 +#: conf/skin_general_settings.py:127 msgid "" -"Increment this number when you change image in skin media or stylesheet. " -"This helps avoid showing your users outdated images from their browser cache." +"To use this option, check \"Customize HTML <HEAD>\" " +"above. Contents of this box will be inserted into the <HEAD> portion " +"of the HTML output, where elements such as <script>, <link>, <" +"meta> may be added. Please, keep in mind that adding external javascript " +"to the <HEAD> 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. Note: if you do use this setting, " +"please test the site with the W3C HTML validator service." msgstr "" -#: conf/social_sharing.py:10 -msgid "Sharing content on social networks" +#: conf/skin_general_settings.py:149 +msgid "Custom header additions" msgstr "" -#: conf/social_sharing.py:18 -msgid "Check to enable sharing of questions on Twitter and Facebook" +#: conf/skin_general_settings.py:151 +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 " +"headerin the HTML format. When customizing the site header (as well as " +"footer and the HTML <HEAD>), use the HTML validation service to make " +"sure that your input is valid and works well in all browsers." msgstr "" -#: conf/user_settings.py:10 -#, fuzzy -msgid "User policy settings" +#: conf/skin_general_settings.py:166 +msgid "Site footer mode" +msgstr "" + +#: conf/skin_general_settings.py:168 +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:185 +msgid "Custom footer (HTML format)" +msgstr "" + +#: conf/skin_general_settings.py:187 +msgid "" +"To enable this function, please select option 'customize' " +"in the \"Site footer mode\" above. Use this area to enter contents of the " +"footer in the HTML format. When customizing the site footer (as well as the " +"header and HTML <HEAD>), use the HTML validation service to make sure " +"that your input is valid and works well in all browsers." +msgstr "" + +#: conf/skin_general_settings.py:202 +msgid "Apply custom style sheet (CSS)" +msgstr "" + +#: conf/skin_general_settings.py:204 +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:216 +msgid "Custom style sheet (CSS)" +msgstr "" + +#: conf/skin_general_settings.py:218 +msgid "" +"To use this function, 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 \"<forum url>/custom.css\", where the \"<forum url> part " +"depends (default is empty string) on the url configuration in your urls.py." +msgstr "" + +#: conf/skin_general_settings.py:234 +msgid "Add custom javascript" +msgstr "" + +#: conf/skin_general_settings.py:237 +msgid "Check to enable javascript that you can enter in the next field" +msgstr "" + +#: conf/skin_general_settings.py:247 +msgid "Custom javascript" +msgstr "" + +#: conf/skin_general_settings.py:249 +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 \"<forum url>/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 (to " +"enable your custom code, check \"Add custom javascript\" option " +"above)." +msgstr "" + +#: conf/skin_general_settings.py:267 +msgid "Skin media revision number" +msgstr "" + +#: conf/skin_general_settings.py:269 +msgid "Will be set automatically but you can modify it if necessary." +msgstr "" + +#: conf/skin_general_settings.py:280 +msgid "Hash to update the media revision number automatically." +msgstr "" + +#: conf/skin_general_settings.py:284 +msgid "Will be set automatically, it is not necesary to modify manually." +msgstr "" + +#: conf/social_sharing.py:10 +msgid "Sharing content on social networks" +msgstr "" + +#: conf/social_sharing.py:18 +#, fuzzy +msgid "Check to enable sharing of questions on Twitter" +msgstr "Diese Frage wieder eröffnen" + +#: conf/social_sharing.py:27 +msgid "Check to enable sharing of questions on Facebook" +msgstr "" + +#: conf/social_sharing.py:36 +msgid "Check to enable sharing of questions on LinkedIn" +msgstr "" + +#: conf/social_sharing.py:45 +msgid "Check to enable sharing of questions on Identi.ca" +msgstr "" + +#: conf/social_sharing.py:54 +msgid "Check to enable sharing of questions on Google+" +msgstr "" + +#: conf/spam_and_moderation.py:9 +msgid "Spam control and content moderation" +msgstr "" + +#: conf/spam_and_moderation.py:16 +msgid "Enable Akismet spam detection(keys below are required)" +msgstr "" + +#: conf/spam_and_moderation.py:19 +#, python-format +msgid "To get an Akismet key please visit Akismet site" +msgstr "" + +#: conf/spam_and_moderation.py:29 +msgid "Akismet key for spam detection" +msgstr "" + +#: conf/user_settings.py:11 +#, fuzzy +msgid "User settings" msgstr "" "Unsere Website benötigt Cookies, um technisch einwandfrei zu funktionieren." -#: conf/user_settings.py:18 +#: conf/user_settings.py:19 msgid "Allow editing user screen name" msgstr "" #: conf/user_settings.py:28 +#, fuzzy +msgid "Allow account recovery by email" +msgstr "Ihre E-Mail-Adresse (wird nie veröffentlicht)" + +#: conf/user_settings.py:37 +msgid "Allow adding and removing login methods" +msgstr "" + +#: conf/user_settings.py:47 msgid "Minimum allowed length for screen name" msgstr "" +#: conf/user_settings.py:57 +msgid "Default Gravatar icon type" +msgstr "" + +#: conf/user_settings.py:59 +msgid "" +"This option allows you to set the default avatar type for email addresses " +"without associated gravatar images. For more information, please visit this page." +msgstr "" + +#: conf/user_settings.py:69 +msgid "Name for the Anonymous user" +msgstr "" + #: conf/vote_rules.py:13 msgid "Limits applicable to votes and moderation flags" msgstr "" @@ -1034,295 +1849,434 @@ msgid "Number of days to allow canceling votes" msgstr "" #: conf/vote_rules.py:58 -msgid "Number of flags required to automatically hide posts" +msgid "Number of days required before answering own question" msgstr "" #: conf/vote_rules.py:67 +msgid "Number of flags required to automatically hide posts" +msgstr "" + +#: conf/vote_rules.py:76 msgid "Number of flags required to automatically delete posts" msgstr "" -#: const/__init__.py:9 +#: const/__init__.py:10 msgid "duplicate question" msgstr "Duplikat" -#: const/__init__.py:10 +#: const/__init__.py:11 msgid "question is off-topic or not relevant" msgstr "Die Frage geht am Thema vorbei oder ist nicht relevant " -#: const/__init__.py:11 +#: const/__init__.py:12 msgid "too subjective and argumentative" msgstr "Zu subjektiv und zu diskussionen verleitend" -#: const/__init__.py:12 +#: const/__init__.py:13 msgid "not a real question" msgstr "Keine echte Frage" -#: const/__init__.py:13 +#: const/__init__.py:14 msgid "the question is answered, right answer was accepted" msgstr "" "The Frage wurde beantwortet, die korrekte Antwort als \"Akzeptiert\" " "markiert." -#: const/__init__.py:14 +#: const/__init__.py:15 msgid "question is not relevant or outdated" msgstr "Die Frage ist nicht relevant oder inzwischen veraltet." -#: const/__init__.py:15 +#: const/__init__.py:16 msgid "question contains offensive or malicious remarks" msgstr "Die Frage enthält beleidigende oder illegale Formulierungen" -#: const/__init__.py:16 +#: const/__init__.py:17 msgid "spam or advertising" msgstr "Spam oder Werbung" -#: const/__init__.py:17 +#: const/__init__.py:18 msgid "too localized" msgstr "Zu eng gefaßt" -#: const/__init__.py:40 +#: const/__init__.py:41 msgid "newest" msgstr "neueste" -#: const/__init__.py:41 skins/default/templates/users.html:25 -#: skins/default/templates/users.html:26 +#: const/__init__.py:42 skins/default/templates/users.html:26 msgid "oldest" msgstr "älteste" -#: const/__init__.py:42 +#: const/__init__.py:43 msgid "active" msgstr "aktiv" -#: const/__init__.py:43 +#: const/__init__.py:44 msgid "inactive" msgstr "inaktiv" -#: const/__init__.py:44 +#: const/__init__.py:45 msgid "hottest" msgstr "heißeste" -#: const/__init__.py:45 +#: const/__init__.py:46 msgid "coldest" msgstr "kälteste" -#: const/__init__.py:46 +#: const/__init__.py:47 msgid "most voted" msgstr "am häufigsten positiv bewertet" -#: const/__init__.py:47 +#: const/__init__.py:48 msgid "least voted" msgstr "am seltensten positiv bewertet" -#: const/__init__.py:48 +#: const/__init__.py:49 msgid "relevance" msgstr "Relevanz" -#: const/__init__.py:55 skins/default/templates/questions.html:14 -#: skins/default/templates/user_inbox.html:47 +#: const/__init__.py:57 skins/default/templates/main_page/tab_bar.html:10 +#: skins/default/templates/user_profile/user_inbox.html:50 msgid "all" msgstr "alle" -#: const/__init__.py:56 skins/default/templates/questions.html:19 +#: const/__init__.py:58 skins/default/templates/main_page/tab_bar.html:15 msgid "unanswered" msgstr "unbeantwortet" -#: const/__init__.py:57 skins/default/templates/questions.html:25 +#: const/__init__.py:59 msgid "favorite" msgstr "Favorit" -#: const/__init__.py:70 +#: const/__init__.py:64 +#, fuzzy +msgid "list" +msgstr "Tag-Liste" + +#: const/__init__.py:65 +msgid "cloud" +msgstr "" + +#: const/__init__.py:78 #, fuzzy msgid "Question has no answers" msgstr "Fragen, die ich beantwortet habe" -#: const/__init__.py:71 +#: const/__init__.py:79 #, fuzzy msgid "Question has no accepted answers" msgstr "Fragen, die ich beantwortet habe" -#: const/__init__.py:111 +#: const/__init__.py:121 #, fuzzy msgid "asked a question" msgstr "Frage stellen" -#: const/__init__.py:112 +#: const/__init__.py:122 #, fuzzy msgid "answered a question" msgstr "Unbeantwortete" -#: const/__init__.py:113 +#: const/__init__.py:123 msgid "commented question" msgstr "kommentierte Frage" -#: const/__init__.py:114 +#: const/__init__.py:124 msgid "commented answer" msgstr "kommentierte Antwort" -#: const/__init__.py:115 +#: const/__init__.py:125 msgid "edited question" msgstr "überarbeitete Frage" -#: const/__init__.py:116 +#: const/__init__.py:126 msgid "edited answer" msgstr "überarbeitete Antwort" -#: const/__init__.py:117 +#: const/__init__.py:127 msgid "received award" msgstr "Auszeichnung erhalten" -#: const/__init__.py:118 +#: const/__init__.py:128 msgid "marked best answer" msgstr "als beste Antwort markiert" -#: const/__init__.py:119 +#: const/__init__.py:129 msgid "upvoted" msgstr "positiv bewertet" -#: const/__init__.py:120 +#: const/__init__.py:130 msgid "downvoted" msgstr "negativ bewertet" -#: const/__init__.py:121 +#: const/__init__.py:131 msgid "canceled vote" msgstr "Bewertung zurückgezogen" -#: const/__init__.py:122 +#: const/__init__.py:132 msgid "deleted question" msgstr "Frage gelöscht" -#: const/__init__.py:123 +#: const/__init__.py:133 msgid "deleted answer" msgstr "Antwort gelöscht" -#: const/__init__.py:124 +#: const/__init__.py:134 msgid "marked offensive" msgstr "als beleidigend/illegal gemeldet" -#: const/__init__.py:125 +#: const/__init__.py:135 msgid "updated tags" msgstr "tags aktualisiert" -#: const/__init__.py:126 +#: const/__init__.py:136 msgid "selected favorite" msgstr "Favorit ausgewählt" -#: const/__init__.py:127 +#: const/__init__.py:137 msgid "completed user profile" msgstr "Benutzerprofil komplettiert" -#: const/__init__.py:128 +#: const/__init__.py:138 msgid "email update sent to user" msgstr "E-Mail-Update an Benutzer versandt" -#: const/__init__.py:129 +#: const/__init__.py:141 +#, fuzzy +msgid "reminder about unanswered questions sent" +msgstr "Unbeantwortete Fragen anzeigen" + +#: const/__init__.py:143 msgid "mentioned in the post" msgstr "" -#: const/__init__.py:180 +#: const/__init__.py:194 msgid "question_answered" msgstr "Frage beantwortet" -#: const/__init__.py:181 +#: const/__init__.py:195 msgid "question_commented" msgstr "Frage kommentiert" -#: const/__init__.py:182 +#: const/__init__.py:196 msgid "answer_commented" msgstr "Antwort kommentiert" -#: const/__init__.py:183 +#: const/__init__.py:197 msgid "answer_accepted" msgstr "Antwort akzeptiert" -#: const/__init__.py:187 +#: const/__init__.py:201 msgid "[closed]" msgstr "[geschlossen]" -#: const/__init__.py:188 +#: const/__init__.py:202 msgid "[deleted]" msgstr "[gelöscht]" -#: const/__init__.py:189 views/readers.py:549 +#: const/__init__.py:203 views/readers.py:614 msgid "initial version" msgstr "ursprüngliche Version" -#: const/__init__.py:190 +#: const/__init__.py:204 msgid "retagged" msgstr "Tags verändert" -#: const/__init__.py:195 -msgid "exclude ignored tags" +#: const/__init__.py:212 +msgid "off" +msgstr "" + +#: const/__init__.py:213 +#, fuzzy +msgid "exclude ignored" msgstr "Ignorierte Tags ausschließen" -#: const/__init__.py:196 -msgid "allow only selected tags" -msgstr "Nur ausgewählte Tags erlauben" +#: const/__init__.py:214 +#, fuzzy +msgid "only selected" +msgstr "Individuell ausgewählt" -#: const/__init__.py:200 +#: const/__init__.py:218 msgid "instantly" msgstr "" -#: const/__init__.py:201 +#: const/__init__.py:219 msgid "daily" msgstr "täglich" -#: const/__init__.py:202 +#: const/__init__.py:220 msgid "weekly" msgstr "wöchentlich" -#: const/__init__.py:203 +#: const/__init__.py:221 msgid "no email" msgstr "Keine E-Mail" +#: const/__init__.py:228 +msgid "identicon" +msgstr "" + +#: const/__init__.py:229 +#, fuzzy +msgid "mystery-man" +msgstr "gestern" + +#: const/__init__.py:230 +msgid "monsterid" +msgstr "" + +#: const/__init__.py:231 +#, fuzzy +msgid "wavatar" +msgstr "Wie verändert man sein Profilbild (Avatar) und was ist Gravatar?" + +#: const/__init__.py:232 +msgid "retro" +msgstr "" + +#: const/__init__.py:279 skins/default/templates/badges.html:37 +msgid "gold" +msgstr "Gold" + +#: const/__init__.py:280 skins/default/templates/badges.html:46 +msgid "silver" +msgstr "Silber" + +#: const/__init__.py:281 skins/default/templates/badges.html:53 +msgid "bronze" +msgstr "Bronze" + +#: const/__init__.py:293 +msgid "None" +msgstr "" + +#: const/__init__.py:294 +msgid "Gravatar" +msgstr "" + +#: const/__init__.py:295 +msgid "Uploaded Avatar" +msgstr "" + +#: const/message_keys.py:15 +#, fuzzy +msgid "most relevant questions" +msgstr "Stellen Sie nur Fragen, die für dieses Forum relevant sind." + +#: const/message_keys.py:16 +#, fuzzy +msgid "click to see most relevant questions" +msgstr "Klicken Sie, um die höchstbewerteten Fragen anzuzeigen" + +#: const/message_keys.py:17 +#, fuzzy +msgid "by relevance" +msgstr "Relevanz" + +#: const/message_keys.py:18 +msgid "click to see the oldest questions" +msgstr "Klicken Sie, um die ältesten Fragen zu sehen" + #: const/message_keys.py:19 -#, python-format -msgid "First time here? Check out the FAQ!" -msgstr "Zum ersten Mal hier? Häufige Fragen lesen!" +#, fuzzy +msgid "by date" +msgstr "Update" + +#: const/message_keys.py:20 +msgid "click to see the newest questions" +msgstr "Klicken Sie, um die neuesten Fragen zu sehen" + +#: const/message_keys.py:21 +msgid "click to see the least recently updated questions" +msgstr "Klicken Sie, um die ältesten bearbeiteten Fragen zu sehen" + +#: const/message_keys.py:22 +#, fuzzy +msgid "by activity" +msgstr "aktiv" + +#: const/message_keys.py:23 +msgid "click to see the most recently updated questions" +msgstr "Klicken Sie, um die jüngst bearbeiteten Fragen zu sehen" -#: deps/django_authopenid/forms.py:116 deps/django_authopenid/views.py:137 +#: const/message_keys.py:24 +#, fuzzy +msgid "click to see the least answered questions" +msgstr "Klicken Sie, um die ältesten Fragen zu sehen" + +#: const/message_keys.py:25 +#, fuzzy +msgid "by answers" +msgstr "Antworten" + +#: const/message_keys.py:26 +#, fuzzy +msgid "click to see the most answered questions" +msgstr "Klicken Sie, um die höchstbewerteten Fragen anzuzeigen" + +#: const/message_keys.py:27 +msgid "click to see least voted questions" +msgstr "am wenigsten positiv bewertete Fragen" + +#: const/message_keys.py:28 +#, fuzzy +msgid "by votes" +msgstr "Stimmen" + +#: const/message_keys.py:29 +msgid "click to see most voted questions" +msgstr "Klicken Sie, um die höchstbewerteten Fragen anzuzeigen" + +#: deps/django_authopenid/backends.py:88 +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 msgid "i-names are not supported" msgstr "i-names werden nicht unterstützt." -#: deps/django_authopenid/forms.py:237 +#: deps/django_authopenid/forms.py:233 #, fuzzy, python-format msgid "Please enter your %(username_token)s" msgstr "Bitte geben Sie Ihren Benutzernamen ein." -#: deps/django_authopenid/forms.py:263 +#: deps/django_authopenid/forms.py:259 #, fuzzy msgid "Please, enter your user name" msgstr "Bitte geben Sie Ihren Benutzernamen ein." -#: deps/django_authopenid/forms.py:267 +#: deps/django_authopenid/forms.py:263 #, fuzzy msgid "Please, enter your password" msgstr "Bitte geben Sie Ihr Passwort ein." -#: deps/django_authopenid/forms.py:274 deps/django_authopenid/forms.py:278 +#: deps/django_authopenid/forms.py:270 deps/django_authopenid/forms.py:274 #, fuzzy msgid "Please, enter your new password" msgstr "Bitte geben Sie Ihr Passwort ein." -#: deps/django_authopenid/forms.py:289 +#: deps/django_authopenid/forms.py:285 msgid "Passwords did not match" msgstr "" -#: deps/django_authopenid/forms.py:301 +#: deps/django_authopenid/forms.py:297 #, python-format msgid "Please choose password > %(len)s characters" msgstr "" -#: deps/django_authopenid/forms.py:336 +#: deps/django_authopenid/forms.py:335 msgid "Current password" msgstr "Momentanes Passwort" -#: deps/django_authopenid/forms.py:347 +#: deps/django_authopenid/forms.py:346 msgid "" "Old password is incorrect. Please enter the correct " "password." msgstr "" "Das alte Passwort ist falsch. Bitte geben Sie das richtige Passwort ein." -#: deps/django_authopenid/forms.py:400 +#: deps/django_authopenid/forms.py:399 msgid "Sorry, we don't have this email address in the database" msgstr "" @@ -1334,218 +2288,213 @@ msgstr "Ihr Benutzername (Pflichtfeld)" msgid "Incorrect username." msgstr "Ungültiger Benutzername." -#: deps/django_authopenid/urls.py:10 deps/django_authopenid/urls.py:11 -#: deps/django_authopenid/urls.py:12 deps/django_authopenid/urls.py:15 -#: deps/django_authopenid/urls.py:18 setup_templates/settings.py:182 +#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12 +#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:202 msgid "signin/" msgstr "einloggen/" -#: deps/django_authopenid/urls.py:11 -msgid "newquestion/" -msgstr "frage_stellen/" - -#: deps/django_authopenid/urls.py:12 -msgid "newanswer/" -msgstr "antworten/" - -#: deps/django_authopenid/urls.py:13 +#: deps/django_authopenid/urls.py:10 msgid "signout/" msgstr "ausloggen/" -#: deps/django_authopenid/urls.py:15 +#: deps/django_authopenid/urls.py:12 msgid "complete/" msgstr "fertig/" -#: deps/django_authopenid/urls.py:18 +#: deps/django_authopenid/urls.py:15 #, fuzzy msgid "complete-oauth/" msgstr "fertig/" -#: deps/django_authopenid/urls.py:22 +#: deps/django_authopenid/urls.py:19 msgid "register/" msgstr "registrieren/" -#: deps/django_authopenid/urls.py:24 +#: deps/django_authopenid/urls.py:21 msgid "signup/" msgstr "registrieren/" -#: deps/django_authopenid/urls.py:32 +#: deps/django_authopenid/urls.py:25 +msgid "logout/" +msgstr "logout/" + +#: deps/django_authopenid/urls.py:30 #, fuzzy msgid "recover/" msgstr "oeffnen/" -#: deps/django_authopenid/util.py:196 +#: deps/django_authopenid/util.py:378 #, fuzzy, python-format msgid "%(site)s user name and password" msgstr "Bitte geben Sie Benutzernamen und Passwort ein." -#: deps/django_authopenid/util.py:202 -#: skins/default/templates/authopenid/signin.html:124 +#: deps/django_authopenid/util.py:384 +#: skins/default/templates/authopenid/signin.html:108 msgid "Create a password-protected account" msgstr "" -#: deps/django_authopenid/util.py:203 +#: deps/django_authopenid/util.py:385 #, fuzzy msgid "Change your password" msgstr "Passwort ändern" -#: deps/django_authopenid/util.py:265 +#: deps/django_authopenid/util.py:473 msgid "Sign in with Yahoo" msgstr "" -#: deps/django_authopenid/util.py:272 +#: deps/django_authopenid/util.py:480 #, fuzzy msgid "AOL screen name" msgstr "Nickname" -#: deps/django_authopenid/util.py:280 +#: deps/django_authopenid/util.py:488 #, fuzzy msgid "OpenID url" msgstr "OpenID-URL:" -#: deps/django_authopenid/util.py:297 -#, fuzzy -msgid "MyOpenid user name" -msgstr "nach Benutzernamen" - -#: deps/django_authopenid/util.py:305 deps/django_authopenid/util.py:313 +#: deps/django_authopenid/util.py:517 #, fuzzy msgid "Flickr user name" msgstr "Benutzername" -#: deps/django_authopenid/util.py:321 +#: deps/django_authopenid/util.py:525 #, fuzzy msgid "Technorati user name" msgstr "Bitte einen Benutzernamen eingeben" -#: deps/django_authopenid/util.py:329 +#: deps/django_authopenid/util.py:533 msgid "WordPress blog name" msgstr "" -#: deps/django_authopenid/util.py:337 +#: deps/django_authopenid/util.py:541 msgid "Blogger blog name" msgstr "" -#: deps/django_authopenid/util.py:345 +#: deps/django_authopenid/util.py:549 msgid "LiveJournal blog name" msgstr "" -#: deps/django_authopenid/util.py:353 +#: deps/django_authopenid/util.py:557 #, fuzzy msgid "ClaimID user name" msgstr "Benutzername" -#: deps/django_authopenid/util.py:361 +#: deps/django_authopenid/util.py:565 #, fuzzy msgid "Vidoop user name" msgstr "Benutzername" -#: deps/django_authopenid/util.py:369 +#: deps/django_authopenid/util.py:573 #, fuzzy msgid "Verisign user name" msgstr "Benutzername" -#: deps/django_authopenid/util.py:393 +#: deps/django_authopenid/util.py:608 #, fuzzy, python-format msgid "Change your %(provider)s password" msgstr "Passwort ändern" -#: deps/django_authopenid/util.py:397 +#: deps/django_authopenid/util.py:612 #, python-format msgid "Click to see if your %(provider)s signin still works for %(site_name)s" msgstr "" -#: deps/django_authopenid/util.py:406 +#: deps/django_authopenid/util.py:621 #, python-format msgid "Create password for %(provider)s" msgstr "" -#: deps/django_authopenid/util.py:410 +#: deps/django_authopenid/util.py:625 #, fuzzy, python-format msgid "Connect your %(provider)s account to %(site_name)s" msgstr "Neue OpenID mit einem bestehenden Benutzerzugang verknüpfen" -#: deps/django_authopenid/util.py:419 +#: deps/django_authopenid/util.py:634 #, fuzzy, python-format msgid "Signin with %(provider)s user name and password" msgstr "Bitte geben Sie Benutzernamen und Passwort ein." -#: deps/django_authopenid/util.py:426 +#: deps/django_authopenid/util.py:641 #, python-format msgid "Sign in with your %(provider)s account" msgstr "" -#: deps/django_authopenid/views.py:144 +#: deps/django_authopenid/views.py:158 #, python-format msgid "OpenID %(openid_url)s is invalid" msgstr "OpenID %(openid_url)s ist ungültig" -#: deps/django_authopenid/views.py:256 deps/django_authopenid/views.py:399 -#: deps/django_authopenid/views.py:427 +#: deps/django_authopenid/views.py:270 deps/django_authopenid/views.py:415 +#: deps/django_authopenid/views.py:443 #, 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:349 +#: deps/django_authopenid/views.py:365 #, fuzzy msgid "Your new password saved" msgstr "Ihr Passwort wurde geändert." -#: deps/django_authopenid/views.py:511 +#: deps/django_authopenid/views.py:469 +msgid "The login password combination was not correct" +msgstr "" + +#: deps/django_authopenid/views.py:573 msgid "Please click any of the icons below to sign in" msgstr "" -#: deps/django_authopenid/views.py:513 +#: deps/django_authopenid/views.py:575 msgid "Account recovery email sent" msgstr "" -#: deps/django_authopenid/views.py:516 +#: deps/django_authopenid/views.py:578 msgid "Please add one or more login methods." msgstr "" -#: deps/django_authopenid/views.py:518 +#: deps/django_authopenid/views.py:580 msgid "If you wish, please add, remove or re-validate your login methods" msgstr "" -#: deps/django_authopenid/views.py:520 +#: deps/django_authopenid/views.py:582 msgid "Please wait a second! Your account is recovered, but ..." msgstr "" -#: deps/django_authopenid/views.py:522 +#: deps/django_authopenid/views.py:584 msgid "Sorry, this account recovery key has expired or is invalid" msgstr "" -#: deps/django_authopenid/views.py:578 +#: deps/django_authopenid/views.py:657 #, python-format msgid "Login method %(provider_name)s does not exist" msgstr "" -#: deps/django_authopenid/views.py:584 +#: deps/django_authopenid/views.py:663 #, 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:675 +#: deps/django_authopenid/views.py:754 #, python-format msgid "Your %(provider)s login works fine" msgstr "" -#: deps/django_authopenid/views.py:973 deps/django_authopenid/views.py:979 +#: deps/django_authopenid/views.py:1065 deps/django_authopenid/views.py:1071 #, python-format msgid "your email needs to be validated see %(details_url)s" msgstr "" "Sie müssen Ihre E-Mail-Adresse bestätigen. Mehr Informationenhier." -#: deps/django_authopenid/views.py:1000 -msgid "Email verification subject line" -msgstr "Bestätigung Ihrer E-Mail-Adresse" +#: deps/django_authopenid/views.py:1092 +#, 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:1065 +#: deps/django_authopenid/views.py:1162 msgid "Please check your email and visit the enclosed link." msgstr "" @@ -1554,25 +2503,25 @@ msgstr "" msgid "Site" msgstr "Titel" -#: deps/livesettings/values.py:107 +#: deps/livesettings/values.py:106 #, fuzzy msgid "Base Settings" msgstr "einstellungen" -#: deps/livesettings/values.py:214 +#: deps/livesettings/values.py:213 msgid "Default value: \"\"" msgstr "" -#: deps/livesettings/values.py:221 +#: deps/livesettings/values.py:220 msgid "Default value: " msgstr "" -#: deps/livesettings/values.py:224 +#: deps/livesettings/values.py:223 #, python-format msgid "Default value: %s" msgstr "" -#: deps/livesettings/values.py:589 +#: deps/livesettings/values.py:601 #, fuzzy, python-format msgid "Allowed image file types are %(types)s" msgstr "Erlaubte Dateitypen: '%(file_types)s'" @@ -1590,7 +2539,7 @@ msgstr "Ort" #: deps/livesettings/templates/livesettings/group_settings.html:11 #: deps/livesettings/templates/livesettings/site_settings.html:23 -#: skins/default/templates/authopenid/signin.html:142 +#: skins/default/templates/authopenid/signin.html:132 msgid "Change password" msgstr "Passwort ändern" @@ -1655,71 +2604,69 @@ msgstr "" msgid "Uncollapse all" msgstr "" -#: deps/recaptcha_django/__init__.py:19 deps/recaptcha_django/__init__.py:80 -msgid "Unknown error." -msgstr "" - -#: deps/recaptcha_django/__init__.py:20 deps/recaptcha_django/__init__.py:21 -msgid "ReCAPTCHA is wrongly configured." -msgstr "" - -#: deps/recaptcha_django/__init__.py:22 -msgid "Bad reCAPTCHA challenge parameter." -msgstr "" +#: importers/stackexchange/management/commands/load_stackexchange.py:141 +msgid "Congratulations, you are now an Administrator" +msgstr "Gratulation, Sie sind jetzt Administrator" -#: deps/recaptcha_django/__init__.py:23 -msgid "The CAPTCHA solution was incorrect." +#: 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 "" -#: deps/recaptcha_django/__init__.py:24 -msgid "Bad reCAPTCHA verification parameters." +#: management/commands/post_emailed_questions.py:35 +msgid "" +"

To ask by email, please:

\n" +"
    \n" +"
  • Format the subject line as: [Tag1; Tag2] Question title
  • \n" +"
  • Type details of your question into the email body
  • \n" +"
\n" +"

Note that tags may consist of more than one word, and tags\n" +"may be separated by a semicolon or a comma

\n" msgstr "" -#: deps/recaptcha_django/__init__.py:25 -msgid "Provided reCAPTCHA API keys are not valid for this domain." +#: management/commands/post_emailed_questions.py:55 +#, python-format +msgid "" +"

Sorry, there was an error posting your question please contact the " +"%(site)s administrator

" msgstr "" -#: deps/recaptcha_django/__init__.py:26 -msgid "ReCAPTCHA could not be reached." +#: management/commands/post_emailed_questions.py:61 +#, python-format +msgid "" +"

Sorry, in order to post questions on %(site)s by email, please register first

" msgstr "" -#: deps/recaptcha_django/__init__.py:73 -msgid "Invalid request" +#: management/commands/post_emailed_questions.py:69 +msgid "" +"

Sorry, your question could not be posted due to insufficient privileges " +"of your user account

" msgstr "" -#: importers/stackexchange/management/commands/load_stackexchange.py:125 -msgid "Congratulations, you are now an Administrator" -msgstr "Gratulation, Sie sind jetzt Administrator" - -#: management/commands/send_email_alerts.py:105 +#: management/commands/send_email_alerts.py:411 #, python-format -msgid "\" and \"%s\"" -msgstr "" +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:108 -#, fuzzy -msgid "\" and more" -msgstr "Mehr Informationen" - -#: management/commands/send_email_alerts.py:113 -#, 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:467 +#: 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] "

Hallo %(name)s,

Es gibt neues zu einer Frage:

" msgstr[1] "

Hallo %(name)s,

Es gibt neues zu %(num)d Fragen:

" -#: management/commands/send_email_alerts.py:484 +#: management/commands/send_email_alerts.py:438 msgid "new question" msgstr "Neue Frage" -#: management/commands/send_email_alerts.py:501 +#: management/commands/send_email_alerts.py:455 #, fuzzy msgid "" "Please visit the askbot and see what's new! Could you spread the word about " @@ -1729,7 +2676,7 @@ 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:513 +#: management/commands/send_email_alerts.py:465 #, fuzzy msgid "" "Your most frequent subscription setting is 'daily' on selected questions. If " @@ -1740,7 +2687,7 @@ msgstr "" "\"täglich\". Sollten Sie mehr als eine E-Mail pro Tag bekommen, " "benachrichtigen Sie uns bitte." -#: management/commands/send_email_alerts.py:519 +#: management/commands/send_email_alerts.py:471 #, fuzzy msgid "" "Your most frequent subscription setting is 'weekly' if you are receiving " @@ -1751,7 +2698,7 @@ msgstr "" "\"wöchentlich\". Sollten Sie mehr als eine E-Mail pro Woche bekommen, " "benachrichtigen Sie uns bitte." -#: management/commands/send_email_alerts.py:525 +#: 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. " @@ -1759,502 +2706,73 @@ msgstr "" "Aus technischen Gründen kann es manchmal vorkommen, daß Sie Links empfangen, " "die Sie bereits gesehen haben. " -#: management/commands/send_email_alerts.py:530 +#: management/commands/send_email_alerts.py:490 #, fuzzy, python-format msgid "" -"go to %(email_settings_link)s to change frequency of email updates or %" -"(admin_email)s administrator" +"go to %(email_settings_link)s to change frequency of email updates or " +"%(admin_email)s administrator" msgstr "" "

Sie können die Häufigkeit, mit der Sie Benachrichtigungen erhalten, " "jederzeit hier einstellen oder sie gänzlich " "abschalten.
Falls Sie diese Nachricht irrtümlich erhalten haben, " "informieren Sie uns bitte unter %(email)s.

" -#: migrations/0005_install_badges.py:11 -msgid "Disciplined" -msgstr "Diszipliniert" - -#: migrations/0005_install_badges.py:11 -msgid "disciplined" -msgstr "diszipliniert" - -#: migrations/0005_install_badges.py:11 -msgid "Deleted own post with score of 3 or higher" -msgstr "Eigenen Beitrag mit 3 oder mehr positiven Bewertungen gelöscht" - -#: migrations/0005_install_badges.py:12 -msgid "Peer Pressure" -msgstr "Gruppenzwang" - -#: migrations/0005_install_badges.py:12 -msgid "peer-pressure" -msgstr "gruppenzwang" - -#: migrations/0005_install_badges.py:12 -msgid "Deleted own post with score of -3 or lower" -msgstr "Eigenen Beitrag mit mehr als 3 negativen Bewertungen gelöscht" - -#: migrations/0005_install_badges.py:13 -msgid "Nice answer" -msgstr "Nette Antwort" - -#: migrations/0005_install_badges.py:13 -msgid "nice-answer" -msgstr "nette-antwort/" - -#: migrations/0005_install_badges.py:13 -msgid "Answer voted up 10 times" -msgstr "Benutzer hat positive Bewertungen abgegeben" - -#: migrations/0005_install_badges.py:14 -msgid "Nice Question" -msgstr "Fragen" - -#: migrations/0005_install_badges.py:14 -msgid "nice-question" -msgstr "nette-frage/" - -#: migrations/0005_install_badges.py:14 -msgid "Question voted up 10 times" -msgstr "Benutzer hat positive Bewertungen abgegeben" - -#: migrations/0005_install_badges.py:15 -msgid "Pundit" -msgstr "Experte" - -#: migrations/0005_install_badges.py:15 -msgid "pundit" -msgstr "experte" - -#: migrations/0005_install_badges.py:15 -msgid "Left 10 comments with score of 10 or more" -msgstr "Hat 10 Kommentare mit einer Bewertung von 10 oder mehr hinterlassen" - -#: migrations/0005_install_badges.py:16 -msgid "Popular Question" -msgstr "populäre Frage" - -#: migrations/0005_install_badges.py:16 -msgid "popular-question" -msgstr "populaere-frage" - -#: migrations/0005_install_badges.py:16 -msgid "Asked a question with 1,000 views" -msgstr "Hat Frage mit mindestens 1.000 Einblendungen gestellt" - -#: migrations/0005_install_badges.py:17 -msgid "Citizen patrol" -msgstr "Engagierter Bürger" - -#: migrations/0005_install_badges.py:17 -msgid "citizen-patrol" -msgstr "engagierter-buerger" - -#: migrations/0005_install_badges.py:17 -msgid "First flagged post" -msgstr "Erster gemeldeter Beitrag" - -#: migrations/0005_install_badges.py:18 -msgid "Cleanup" -msgstr "Putzaktion" - -#: migrations/0005_install_badges.py:18 -msgid "cleanup" -msgstr "putzaktion" - -#: migrations/0005_install_badges.py:18 -msgid "First rollback" -msgstr "Erster Rollback (Rückkehr zur Vorversion eines Beitrags)" - -#: migrations/0005_install_badges.py:19 -msgid "Critic" -msgstr "Kritiker" - -#: migrations/0005_install_badges.py:19 -msgid "critic" -msgstr "kritiker" - -#: migrations/0005_install_badges.py:19 -msgid "First down vote" -msgstr "Erste negative Bewertung" - -#: migrations/0005_install_badges.py:20 -msgid "Editor" -msgstr "Redakteur" - -#: migrations/0005_install_badges.py:20 -msgid "editor" -msgstr "redakteur" - -#: migrations/0005_install_badges.py:20 -msgid "First edit" -msgstr "Erste Bearbeitung eines Beitrags" - -#: migrations/0005_install_badges.py:21 -msgid "Organizer" -msgstr "Organisierer" - -#: migrations/0005_install_badges.py:21 -msgid "organizer" -msgstr "Organisator" - -#: migrations/0005_install_badges.py:21 -msgid "First retag" -msgstr "Erste Tag-Bearbeitung" - -#: migrations/0005_install_badges.py:22 -msgid "Scholar" -msgstr "Lernender" - -#: migrations/0005_install_badges.py:22 -msgid "scholar" -msgstr "lernender" - -#: migrations/0005_install_badges.py:22 -msgid "First accepted answer on your own question" -msgstr "Erste Antwort auf eine eigene Frage akzeptiert" - -#: migrations/0005_install_badges.py:23 -msgid "Student" -msgstr "Schüler" - -#: migrations/0005_install_badges.py:23 -msgid "student" -msgstr "schueler" - -#: migrations/0005_install_badges.py:23 -msgid "Asked first question with at least one up vote" -msgstr "Hat erste Frage mit mindestens einer positiven Bewertung gestellt" - -#: migrations/0005_install_badges.py:24 -msgid "Supporter" -msgstr "Unterstützer" - -#: migrations/0005_install_badges.py:24 -msgid "supporter" -msgstr "unterstuetzer" - -#: migrations/0005_install_badges.py:24 -msgid "First up vote" -msgstr "Erste positive Bewertung" - -#: migrations/0005_install_badges.py:25 -msgid "Teacher" -msgstr "Lehrer" - -#: migrations/0005_install_badges.py:25 -msgid "teacher" -msgstr "Suche" - -#: migrations/0005_install_badges.py:25 -msgid "Answered first question with at least one up vote" -msgstr "Hat erste Frage mit mindestens einer positiven Bewertung beantwortet" - -#: migrations/0005_install_badges.py:26 -msgid "Autobiographer" -msgstr "Autobiograph" - -#: migrations/0005_install_badges.py:26 -msgid "autobiographer" -msgstr "autobiograph" - -#: migrations/0005_install_badges.py:26 -msgid "Completed all user profile fields" -msgstr "Benutzerprofil komplettiert" - -#: migrations/0005_install_badges.py:27 -msgid "Self-Learner" -msgstr "Eigenständig lernender" - -#: migrations/0005_install_badges.py:27 -msgid "self-learner" -msgstr "eigenstaendig-lernender" - -#: migrations/0005_install_badges.py:27 -msgid "Answered your own question with at least 3 up votes" -msgstr "" -"Eigene Frage beantwortet und mindestens 3 positive Bewertungen dafür erhalten" - -#: migrations/0005_install_badges.py:28 -msgid "Great Answer" -msgstr "Sehr gute Antwort" - -#: migrations/0005_install_badges.py:28 -msgid "great-answer" -msgstr "sehr-gute-antwort" - -#: migrations/0005_install_badges.py:28 -msgid "Answer voted up 100 times" -msgstr "Antwort wurde 100 Mal positiv bewertet" - -#: migrations/0005_install_badges.py:29 -msgid "Great Question" -msgstr "Sehr gute Frage" - -#: migrations/0005_install_badges.py:29 -msgid "great-question" -msgstr "sehr-gute-frage" - -#: migrations/0005_install_badges.py:29 -msgid "Question voted up 100 times" -msgstr "Frage wurde 100 Mal positiv bewertet" - -#: migrations/0005_install_badges.py:30 -msgid "Stellar Question" -msgstr "Exzellente Frage" - -#: migrations/0005_install_badges.py:30 -msgid "stellar-question" -msgstr "exzellente-frage" - -#: migrations/0005_install_badges.py:30 -msgid "Question favorited by 100 users" -msgstr "Frage von 100 Benutzern in Favoritenliste aufgenommen" - -#: migrations/0005_install_badges.py:31 -msgid "Famous question" -msgstr "Berühmte Frage" - -#: migrations/0005_install_badges.py:31 -msgid "famous-question" -msgstr "beruehmte-frage" - -#: migrations/0005_install_badges.py:31 -msgid "Asked a question with 10,000 views" -msgstr "Hat Frage mit 10.000 Einblendungen gestellt" - -#: migrations/0005_install_badges.py:32 -msgid "Alpha" -msgstr "Alpha" - -#: migrations/0005_install_badges.py:32 -msgid "alpha" -msgstr "alpha" - -#: migrations/0005_install_badges.py:32 -msgid "Actively participated in the private alpha" -msgstr "Hat aktiv an der privaten Alphaphase des Forums teilgenommen" - -#: migrations/0005_install_badges.py:33 -msgid "Good Answer" -msgstr "Gute Antwort" - -#: migrations/0005_install_badges.py:33 -msgid "good-answer" -msgstr "gute-antwort" - -#: migrations/0005_install_badges.py:33 -msgid "Answer voted up 25 times" -msgstr "Antwort wurde 25 Mal positiv bewertet" - -#: migrations/0005_install_badges.py:34 -msgid "Good Question" -msgstr "Gute Frage" - -#: migrations/0005_install_badges.py:34 -msgid "good-question" -msgstr "gute-frage" - -#: migrations/0005_install_badges.py:34 -msgid "Question voted up 25 times" -msgstr "Frage wurde 25 Mal positiv bewertet" - -#: migrations/0005_install_badges.py:35 -msgid "Favorite Question" -msgstr "Favoritenfrage" - -#: migrations/0005_install_badges.py:35 -msgid "favorite-question" -msgstr "favoriten-frage" - -#: migrations/0005_install_badges.py:35 -msgid "Question favorited by 25 users" -msgstr "Frage von 25 Benutzern in Favoritenliste aufgenommen" - -#: migrations/0005_install_badges.py:36 -msgid "Civic duty" -msgstr "Bürgerpflicht" - -#: migrations/0005_install_badges.py:36 -msgid "civic-duty" -msgstr "buergerpflicht" - -#: migrations/0005_install_badges.py:36 -msgid "Voted 300 times" -msgstr "300 Mal abgestimmt" - -#: migrations/0005_install_badges.py:37 -msgid "Strunk & White" -msgstr "Form und Grammatik" - -#: migrations/0005_install_badges.py:37 -msgid "strunk-and-white" -msgstr "form-und-grammatik" - -#: migrations/0005_install_badges.py:37 -msgid "Edited 100 entries" -msgstr "100 Beiträge überarbeitet" - -#: migrations/0005_install_badges.py:38 -msgid "Generalist" -msgstr "Generalist" - -#: migrations/0005_install_badges.py:38 -msgid "generalist" -msgstr "generalist" - -#: migrations/0005_install_badges.py:38 -msgid "Active in many different tags" -msgstr "In vielen verschiedenen Tags aktiv" - -#: migrations/0005_install_badges.py:39 -msgid "Expert" -msgstr "Experte" - -#: migrations/0005_install_badges.py:39 -msgid "expert" -msgstr "Experte" - -#: migrations/0005_install_badges.py:39 -msgid "Very active in one tag" -msgstr "Sehr aktiv in einem bestimmten Tag" - -#: migrations/0005_install_badges.py:40 -msgid "Yearling" -msgstr "Jahresring" - -#: migrations/0005_install_badges.py:40 -msgid "yearling" -msgstr "jahresring" - -#: migrations/0005_install_badges.py:40 -msgid "Active member for a year" -msgstr "Aktives Mitglied für ein Jahr" - -#: migrations/0005_install_badges.py:41 -msgid "Notable Question" -msgstr "Bemerkenswerte Frage" - -#: migrations/0005_install_badges.py:41 -msgid "notable-question" -msgstr "bemerkenswerte-frage" - -#: migrations/0005_install_badges.py:41 -msgid "Asked a question with 2,500 views" -msgstr "Hat eine Frage mit 2.500 Einblendungen gestellt" - -#: migrations/0005_install_badges.py:42 -msgid "Enlightened" -msgstr "Hat Ahnung" - -#: migrations/0005_install_badges.py:42 -msgid "enlightened" -msgstr "hat-ahnung" - -#: migrations/0005_install_badges.py:42 -msgid "First answer was accepted with at least 10 up votes" -msgstr "" -"Erste Antwort verfaßt, diese wurde akzeptiert und mindestens 10 Mal positiv " -"bewertet" - -#: migrations/0005_install_badges.py:43 -msgid "Beta" -msgstr "Beta" - -#: migrations/0005_install_badges.py:43 -msgid "beta" -msgstr "beta" - -#: migrations/0005_install_badges.py:43 -msgid "Actively participated in the private beta" -msgstr "Hat aktiv in der nichtöffentlichen Beta-Phase des Forums teilgenommen" - -#: migrations/0005_install_badges.py:44 -msgid "Guru" -msgstr "Guru" - -#: migrations/0005_install_badges.py:44 -msgid "guru" -msgstr "guru" - -#: migrations/0005_install_badges.py:44 -msgid "Accepted answer and voted up 40 times" -msgstr "Antwort akzeptiert und 40 Mal positiv bewertet" - -#: migrations/0005_install_badges.py:45 -msgid "Necromancer" -msgstr "Totenbeschwörer" - -#: migrations/0005_install_badges.py:45 -msgid "necromancer" -msgstr "totenbeschwoerer" - -#: migrations/0005_install_badges.py:45 -msgid "Answered a question more than 60 days later with at least 5 votes" -msgstr "" -"Hat eine Frage mehr als 2 Monate später beantwortet und mindestens 5 " -"positive Bewertungen dafür erhalten" - -#: migrations/0005_install_badges.py:46 -msgid "Taxonomist" -msgstr "Tag-Schöpfer" - -#: migrations/0005_install_badges.py:46 -msgid "taxonomist" -msgstr "tag-schoepfer" - -#: migrations/0005_install_badges.py:46 -msgid "Created a tag used by 50 questions" -msgstr "Tag formuliert, das in 50 Fragen verwendet wurde" +#: management/commands/send_unanswered_question_reminders.py:80 +#, python-format +msgid "%(question_count)d unanswered question about %(topics)s" +msgid_plural "%(question_count)d unanswered questions about %(topics)s" +msgstr[0] "" +msgstr[1] "" -#: models/__init__.py:169 +#: models/__init__.py:316 msgid "" "Sorry, you cannot accept or unaccept best answers because your account is " "blocked" msgstr "" -#: models/__init__.py:174 +#: models/__init__.py:320 msgid "" "Sorry, you cannot accept or unaccept best answers because your account is " "suspended" msgstr "" -#: models/__init__.py:180 -#, fuzzy +#: models/__init__.py:333 +#, fuzzy, python-format msgid "" -"Sorry, you cannot accept or unaccept your own answer to your own question" +">%(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:187 +#: models/__init__.py:347 #, python-format msgid "" -"Sorry, only original author of the question - %(username)s - can accept the " -"best answer" +"Sorry, only original author of the question - %(username)s - can accept or " +"unaccept the best answer" msgstr "" -#: models/__init__.py:210 +#: models/__init__.py:375 msgid "cannot vote for own posts" msgstr "Über selbst verfaßte Beiträge kann nicht abgestimmt werden" -#: models/__init__.py:213 +#: models/__init__.py:378 msgid "Sorry your account appears to be blocked " msgstr "" -#: models/__init__.py:218 +#: models/__init__.py:383 msgid "Sorry your account appears to be suspended " msgstr "" -#: models/__init__.py:228 +#: models/__init__.py:393 #, python-format msgid ">%(points)s points required to upvote" msgstr "Positiv bewerten benötigt mindestens %(points)s Punkte " -#: models/__init__.py:234 +#: models/__init__.py:399 #, python-format msgid ">%(points)s points required to downvote" msgstr "Negativ bewerten benötigt mindestens %(points)s Punkte" -#: models/__init__.py:249 +#: models/__init__.py:414 #, fuzzy msgid "Sorry, blocked users cannot upload files" msgstr "" @@ -2262,7 +2780,7 @@ msgstr "" "until this issue is resolved. Please contact the forum administrator to " "reach a resolution." -#: models/__init__.py:250 +#: models/__init__.py:415 #, fuzzy msgid "Sorry, suspended users cannot upload files" msgstr "" @@ -2270,13 +2788,13 @@ 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:252 +#: models/__init__.py:417 #, 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:271 models/__init__.py:331 models/__init__.py:1950 +#: models/__init__.py:436 models/__init__.py:503 models/__init__.py:918 #, fuzzy msgid "blocked users cannot post" msgstr "" @@ -2284,7 +2802,7 @@ msgstr "" "until this issue is resolved. Please contact the forum administrator to " "reach a resolution." -#: models/__init__.py:272 models/__init__.py:1953 +#: models/__init__.py:437 models/__init__.py:921 #, fuzzy msgid "suspended users cannot post" msgstr "" @@ -2292,62 +2810,67 @@ 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:297 +#: models/__init__.py:464 +#, python-format msgid "" -"Sorry, comments (except the last one) are editable only within 10 minutes " -"from posting" -msgstr "" +"Sorry, comments (except the last one) are editable only within %(minutes)s " +"minute from posting" +msgid_plural "" +"Sorry, comments (except the last one) are editable only within %(minutes)s " +"minutes from posting" +msgstr[0] "" +msgstr[1] "" -#: models/__init__.py:303 +#: models/__init__.py:476 msgid "Sorry, but only post owners or moderators can edit comments" msgstr "" -#: models/__init__.py:317 +#: models/__init__.py:489 msgid "" "Sorry, since your account is suspended you can comment only your own posts" msgstr "" -#: models/__init__.py:321 +#: models/__init__.py:493 #, 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:349 +#: models/__init__.py:521 msgid "" -"This post has been deleted and can be seen only by post ownwers, site " +"This post has been deleted and can be seen only by post owners, site " "administrators and moderators" msgstr "" -#: models/__init__.py:366 +#: models/__init__.py:538 msgid "" "Sorry, only moderators, site administrators and post owners can edit deleted " "posts" msgstr "" -#: models/__init__.py:381 +#: models/__init__.py:553 msgid "Sorry, since your account is blocked you cannot edit posts" msgstr "" -#: models/__init__.py:385 +#: models/__init__.py:557 msgid "Sorry, since your account is suspended you can edit only your own posts" msgstr "" -#: models/__init__.py:390 +#: models/__init__.py:562 #, python-format msgid "" "Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required" msgstr "" -#: models/__init__.py:397 +#: models/__init__.py:569 #, python-format msgid "" "Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is " "required" msgstr "" -#: models/__init__.py:460 +#: models/__init__.py:632 msgid "" "Sorry, cannot delete your question since it has an upvoted answer posted by " "someone else" @@ -2357,61 +2880,61 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: models/__init__.py:475 +#: models/__init__.py:647 msgid "Sorry, since your account is blocked you cannot delete posts" msgstr "" -#: models/__init__.py:479 +#: models/__init__.py:651 msgid "" "Sorry, since your account is suspended you can delete only your own posts" msgstr "" -#: models/__init__.py:483 +#: models/__init__.py:655 #, python-format msgid "" "Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s " "is required" msgstr "" -#: models/__init__.py:503 +#: models/__init__.py:675 msgid "Sorry, since your account is blocked you cannot close questions" msgstr "" -#: models/__init__.py:507 +#: models/__init__.py:679 msgid "Sorry, since your account is suspended you cannot close questions" msgstr "" -#: models/__init__.py:511 +#: models/__init__.py:683 #, python-format msgid "" "Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is " "required" msgstr "" -#: models/__init__.py:520 +#: models/__init__.py:692 #, python-format msgid "" "Sorry, to close own question a minimum reputation of %(min_rep)s is required" msgstr "" -#: models/__init__.py:544 +#: models/__init__.py:716 #, python-format msgid "" -"Sorry, only administrators, moderators or post owners with reputation > %" -"(min_rep)s can reopen questions." +"Sorry, only administrators, moderators or post owners with reputation > " +"%(min_rep)s can reopen questions." msgstr "" -#: models/__init__.py:550 +#: models/__init__.py:722 #, python-format msgid "" "Sorry, to reopen own question a minimum reputation of %(min_rep)s is required" msgstr "" -#: models/__init__.py:570 +#: models/__init__.py:742 msgid "cannot flag message as offensive twice" msgstr "" -#: models/__init__.py:575 +#: models/__init__.py:747 #, fuzzy msgid "blocked users cannot flag posts" msgstr "" @@ -2419,7 +2942,7 @@ msgstr "" "until this issue is resolved. Please contact the forum administrator to " "reach a resolution." -#: models/__init__.py:577 +#: models/__init__.py:749 #, fuzzy msgid "suspended users cannot flag posts" msgstr "" @@ -2427,99 +2950,145 @@ 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:579 +#: models/__init__.py:751 #, python-format msgid "need > %(min_rep)s points to flag spam" msgstr "" -#: models/__init__.py:598 +#: models/__init__.py:770 #, python-format msgid "%(max_flags_per_day)s exceeded" msgstr "" -#: models/__init__.py:613 +#: models/__init__.py:785 msgid "" "Sorry, only question owners, site administrators and moderators can retag " "deleted questions" msgstr "" -#: models/__init__.py:620 +#: models/__init__.py:792 msgid "Sorry, since your account is blocked you cannot retag questions" msgstr "" -#: models/__init__.py:624 +#: models/__init__.py:796 msgid "" "Sorry, since your account is suspended you can retag only your own questions" msgstr "" -#: models/__init__.py:628 +#: models/__init__.py:800 #, python-format msgid "" "Sorry, to retag questions a minimum reputation of %(min_rep)s is required" msgstr "" -#: models/__init__.py:647 +#: models/__init__.py:819 msgid "Sorry, since your account is blocked you cannot delete comment" msgstr "" -#: models/__init__.py:651 +#: models/__init__.py:823 msgid "" "Sorry, since your account is suspended you can delete only your own comments" msgstr "" -#: models/__init__.py:655 +#: models/__init__.py:827 #, python-format msgid "Sorry, to delete comments reputation of %(min_rep)s is required" msgstr "" -#: models/__init__.py:678 +#: models/__init__.py:850 msgid "cannot revoke old vote" msgstr "Bewertung kann nicht mehr zurückgenommen werden" -#: models/__init__.py:1166 views/users.py:388 +#: models/__init__.py:1325 utils/functions.py:70 +#, python-format +msgid "on %(date)s" +msgstr "" + +#: models/__init__.py:1327 +msgid "in two days" +msgstr "" + +#: models/__init__.py:1329 +msgid "tomorrow" +msgstr "" + +#: models/__init__.py:1331 +#, 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:1333 +#, 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:1334 +#, python-format +msgid "%(days)d day" +msgid_plural "%(days)d days" +msgstr[0] "" +msgstr[1] "" + +#: models/__init__.py:1336 +#, 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:1501 skins/default/templates/feedback_email.txt:9 +#, fuzzy +msgid "Anonymous" +msgstr "Anonym" + +#: models/__init__.py:1597 views/users.py:365 #, fuzzy msgid "Site Adminstrator" msgstr "Ihr Forumsteam" -#: models/__init__.py:1168 views/users.py:390 +#: models/__init__.py:1599 views/users.py:367 msgid "Forum Moderator" msgstr "" -#: models/__init__.py:1170 views/users.py:392 +#: models/__init__.py:1601 views/users.py:369 #, fuzzy msgid "Suspended User" msgstr "Der Absender ist" -#: models/__init__.py:1172 views/users.py:394 +#: models/__init__.py:1603 views/users.py:371 msgid "Blocked User" msgstr "" -#: models/__init__.py:1174 views/users.py:396 +#: models/__init__.py:1605 views/users.py:373 #, fuzzy msgid "Registered User" msgstr "Registrierter Benutzer" -#: models/__init__.py:1176 +#: models/__init__.py:1607 msgid "Watched User" msgstr "" -#: models/__init__.py:1178 +#: models/__init__.py:1609 msgid "Approved User" msgstr "" -#: models/__init__.py:1234 +#: models/__init__.py:1718 #, fuzzy, python-format msgid "%(username)s karma is %(reputation)s" msgstr "Punkte-Logbuch von %(user_name)s" -#: models/__init__.py:1244 +#: models/__init__.py:1728 #, python-format msgid "one gold badge" msgid_plural "%(count)d gold badges" msgstr[0] "" msgstr[1] "" -#: models/__init__.py:1251 +#: models/__init__.py:1735 #, fuzzy, python-format msgid "one silver badge" msgid_plural "%(count)d silver badges" @@ -2530,163 +3099,470 @@ msgstr[1] "" "Silberne Auszeichnungen erzielt man durch regelmäßige, geduldige Teilnahme " "am Forum." -#: models/__init__.py:1258 +#: models/__init__.py:1742 #, 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:1269 +#: models/__init__.py:1753 #, python-format msgid "%(item1)s and %(item2)s" msgstr "" -#: models/__init__.py:1273 +#: models/__init__.py:1757 #, python-format msgid "%(user)s has %(badges)s" msgstr "" -#: models/__init__.py:1566 models/__init__.py:1572 models/__init__.py:1577 -#: models/__init__.py:1582 +#: models/__init__.py:2164 models/__init__.py:2170 models/__init__.py:2175 +#: models/__init__.py:2180 #, python-format msgid "Re: \"%(title)s\"" msgstr "" -#: models/__init__.py:1587 models/__init__.py:1592 +#: models/__init__.py:2185 models/__init__.py:2190 #, fuzzy, python-format msgid "Question: \"%(title)s\"" msgstr "Tags" -#: models/__init__.py:1773 +#: models/__init__.py:2371 #, python-format msgid "" "Congratulations, you have received a badge '%(badge_name)s'. Check out your profile." msgstr "" -#: models/question.py:687 -#, python-format -msgid "%(author)s modified the question" +#: models/__init__.py:2550 views/commands.py:396 +msgid "Your tag subscription was saved, thanks!" +msgstr "" + +#: models/answer.py:105 +msgid "" +"Sorry, the answer you are looking for is no longer available, because the " +"parent question has been removed" +msgstr "" + +#: models/answer.py:112 +#, fuzzy +msgid "Sorry, this answer has been removed and is no longer accessible" +msgstr "Die Frage wurde als Favorit ausgewählt" + +#: models/badges.py:129 +#, fuzzy, python-format +msgid "Deleted own post with %(votes)s or more upvotes" +msgstr "Eigenen Beitrag mit mehr als 3 negativen Bewertungen gelöscht" + +#: models/badges.py:133 +msgid "Disciplined" +msgstr "Diszipliniert" + +#: models/badges.py:151 +#, fuzzy, python-format +msgid "Deleted own post with %(votes)s or more downvotes" +msgstr "Eigenen Beitrag mit mehr als 3 negativen Bewertungen gelöscht" + +#: models/badges.py:155 +msgid "Peer Pressure" +msgstr "Gruppenzwang" + +#: models/badges.py:174 +#, python-format +msgid "Received at least %(votes)s upvote for an answer for the first time" +msgstr "" + +#: models/badges.py:178 +msgid "Teacher" +msgstr "Lehrer" + +#: models/badges.py:218 +msgid "Supporter" +msgstr "Unterstützer" + +#: models/badges.py:219 +#, fuzzy +msgid "First upvote" +msgstr "Erste positive Bewertung" + +#: models/badges.py:227 +msgid "Critic" +msgstr "Kritiker" + +#: models/badges.py:228 +#, fuzzy +msgid "First downvote" +msgstr "Erste negative Bewertung" + +#: models/badges.py:237 +#, fuzzy +msgid "Civic Duty" +msgstr "Bürgerpflicht" + +#: models/badges.py:238 +#, fuzzy, python-format +msgid "Voted %(num)s times" +msgstr "300 Mal abgestimmt" + +#: models/badges.py:252 +#, fuzzy, python-format +msgid "Answered own question with at least %(num)s up votes" +msgstr "" +"Eigene Frage beantwortet und mindestens 3 positive Bewertungen dafür erhalten" + +#: models/badges.py:256 +msgid "Self-Learner" +msgstr "Eigenständig lernender" + +#: models/badges.py:304 +#, fuzzy +msgid "Nice Answer" +msgstr "Nette Antwort" + +#: models/badges.py:309 models/badges.py:321 models/badges.py:333 +#, fuzzy, python-format +msgid "Answer voted up %(num)s times" +msgstr "Benutzer hat positive Bewertungen abgegeben" + +#: models/badges.py:316 +msgid "Good Answer" +msgstr "Gute Antwort" + +#: models/badges.py:328 +msgid "Great Answer" +msgstr "Sehr gute Antwort" + +#: models/badges.py:340 +msgid "Nice Question" +msgstr "Fragen" + +#: models/badges.py:345 models/badges.py:357 models/badges.py:369 +#, fuzzy, python-format +msgid "Question voted up %(num)s times" +msgstr "Benutzer hat positive Bewertungen abgegeben" + +#: models/badges.py:352 +msgid "Good Question" +msgstr "Gute Frage" + +#: models/badges.py:364 +msgid "Great Question" +msgstr "Sehr gute Frage" + +#: models/badges.py:376 +msgid "Student" +msgstr "Schüler" + +#: models/badges.py:381 +msgid "Asked first question with at least one up vote" +msgstr "Hat erste Frage mit mindestens einer positiven Bewertung gestellt" + +#: models/badges.py:414 +msgid "Popular Question" +msgstr "populäre Frage" + +#: models/badges.py:418 models/badges.py:429 models/badges.py:441 +#, fuzzy, python-format +msgid "Asked a question with %(views)s views" +msgstr "Hat Frage mit mindestens 1.000 Einblendungen gestellt" + +#: models/badges.py:425 +msgid "Notable Question" +msgstr "Bemerkenswerte Frage" + +#: models/badges.py:436 +#, fuzzy +msgid "Famous Question" +msgstr "Berühmte Frage" + +#: models/badges.py:450 +#, fuzzy +msgid "Asked a question and accepted an answer" +msgstr "Fragen, die ich beantwortet habe" + +#: models/badges.py:453 +msgid "Scholar" +msgstr "Lernender" + +#: models/badges.py:495 +msgid "Enlightened" +msgstr "Hat Ahnung" + +#: models/badges.py:499 +#, fuzzy, python-format +msgid "First answer was accepted with %(num)s or more votes" +msgstr "" +"Erste Antwort verfaßt, diese wurde akzeptiert und mindestens 10 Mal positiv " +"bewertet" + +#: models/badges.py:507 +msgid "Guru" +msgstr "Guru" + +#: models/badges.py:510 +#, fuzzy, python-format +msgid "Answer accepted with %(num)s or more votes" +msgstr "" +"Erste Antwort verfaßt, diese wurde akzeptiert und mindestens 10 Mal positiv " +"bewertet" + +#: models/badges.py:518 +#, fuzzy, python-format +msgid "" +"Answered a question more than %(days)s days later with at least %(votes)s " +"votes" +msgstr "" +"Hat eine Frage mehr als 2 Monate später beantwortet und mindestens 5 " +"positive Bewertungen dafür erhalten" + +#: models/badges.py:525 +msgid "Necromancer" +msgstr "Totenbeschwörer" + +#: models/badges.py:548 +#, fuzzy +msgid "Citizen Patrol" +msgstr "Engagierter Bürger" + +#: models/badges.py:551 +msgid "First flagged post" +msgstr "Erster gemeldeter Beitrag" + +#: models/badges.py:563 +msgid "Cleanup" +msgstr "Putzaktion" + +#: models/badges.py:566 +msgid "First rollback" +msgstr "Erster Rollback (Rückkehr zur Vorversion eines Beitrags)" + +#: models/badges.py:577 +msgid "Pundit" +msgstr "Experte" + +#: models/badges.py:580 +msgid "Left 10 comments with score of 10 or more" +msgstr "Hat 10 Kommentare mit einer Bewertung von 10 oder mehr hinterlassen" + +#: models/badges.py:612 +msgid "Editor" +msgstr "Redakteur" + +#: models/badges.py:615 +msgid "First edit" +msgstr "Erste Bearbeitung eines Beitrags" + +#: models/badges.py:623 +msgid "Associate Editor" +msgstr "" + +#: models/badges.py:627 +#, fuzzy, python-format +msgid "Edited %(num)s entries" +msgstr "100 Beiträge überarbeitet" + +#: models/badges.py:634 +msgid "Organizer" +msgstr "Organisierer" + +#: models/badges.py:637 +msgid "First retag" +msgstr "Erste Tag-Bearbeitung" + +#: models/badges.py:644 +msgid "Autobiographer" +msgstr "Autobiograph" + +#: models/badges.py:647 +msgid "Completed all user profile fields" +msgstr "Benutzerprofil komplettiert" + +#: models/badges.py:663 +#, fuzzy, python-format +msgid "Question favorited by %(num)s users" +msgstr "Frage von 25 Benutzern in Favoritenliste aufgenommen" + +#: models/badges.py:689 +msgid "Stellar Question" +msgstr "Exzellente Frage" + +#: models/badges.py:698 +msgid "Favorite Question" +msgstr "Favoritenfrage" + +#: models/badges.py:710 +msgid "Enthusiast" +msgstr "" + +#: models/badges.py:714 +#, python-format +msgid "Visited site every day for %(num)s days in a row" +msgstr "" + +#: models/badges.py:732 +#, fuzzy +msgid "Commentator" +msgstr "Ort" + +#: models/badges.py:736 +#, fuzzy, python-format +msgid "Posted %(num_comments)s comments" +msgstr "1 Kommentar" + +#: models/badges.py:752 +msgid "Taxonomist" +msgstr "Tag-Schöpfer" + +#: models/badges.py:756 +#, fuzzy, python-format +msgid "Created a tag used by %(num)s questions" +msgstr "Tag formuliert, das in 50 Fragen verwendet wurde" + +#: models/badges.py:776 +msgid "Expert" +msgstr "Experte" + +#: models/badges.py:779 +msgid "Very active in one tag" +msgstr "Sehr aktiv in einem bestimmten Tag" + +#: models/meta.py:112 +msgid "" +"Sorry, the comment you are looking for is no longer accessible, because the " +"parent question has been removed" +msgstr "" + +#: models/meta.py:119 +msgid "" +"Sorry, the comment you are looking for is no longer accessible, because the " +"parent answer has been removed" +msgstr "" + +#: models/question.py:72 +#, python-format +msgid "\" and \"%s\"" +msgstr "" + +#: models/question.py:75 +#, fuzzy +msgid "\" and more" +msgstr "Mehr Informationen" + +#: models/question.py:452 +#, fuzzy +msgid "Sorry, this question has been deleted and is no longer accessible" +msgstr "Die Frage wurde als Favorit ausgewählt" + +#: models/question.py:908 +#, python-format +msgid "%(author)s modified the question" msgstr "%(author)s hat die Frage bearbeitet" -#: models/question.py:691 +#: models/question.py:912 #, 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:696 +#: models/question.py:917 #, python-format msgid "%(people)s commented the question" msgstr "%(people)s Benutzer haben die Frage kommentiert" -#: models/question.py:701 +#: models/question.py:922 #, python-format msgid "%(people)s commented answers" msgstr "%(people)s Benutzer haben Kommentare zu Antworten verfaßt" -#: models/question.py:703 +#: models/question.py:924 #, python-format msgid "%(people)s commented an answer" msgstr "%(people)s Benutzer haben Kommentare zu einer Antwort verfaßt" -#: models/repute.py:16 skins/default/templates/badges.html:43 -msgid "gold" -msgstr "Gold" - -#: models/repute.py:17 skins/default/templates/badges.html:52 -msgid "silver" -msgstr "Silber" - -#: models/repute.py:18 skins/default/templates/badges.html:59 -msgid "bronze" -msgstr "Bronze" - -#: models/repute.py:150 +#: models/repute.py:142 #, python-format msgid "Changed by moderator. Reason: %(reason)s" msgstr "" -#: models/repute.py:161 +#: models/repute.py:153 #, python-format msgid "" -"%(points)s points were added for %(username)s's contribution to question %" -"(question_title)s" +"%(points)s points were added for %(username)s's contribution to question " +"%(question_title)s" msgstr "" -#: models/repute.py:166 +#: models/repute.py:158 #, python-format msgid "" "%(points)s points were subtracted for %(username)s's contribution to " "question %(question_title)s" msgstr "" -#: models/tag.py:91 +#: models/tag.py:151 msgid "interesting" msgstr "Interessant" -#: models/tag.py:91 +#: models/tag.py:151 msgid "ignored" msgstr "Ignorieren" -#: models/user.py:233 +#: models/user.py:264 msgid "Entire forum" msgstr "Gesamtes Forum" -#: models/user.py:234 +#: models/user.py:265 msgid "Questions that I asked" msgstr "Fragen, die ich gestellt habe" -#: models/user.py:235 +#: models/user.py:266 msgid "Questions that I answered" msgstr "Fragen, die ich beantwortet habe" -#: models/user.py:236 +#: models/user.py:267 msgid "Individually selected questions" msgstr "Individuell ausgewählte Fragen" -#: models/user.py:237 +#: models/user.py:268 msgid "Mentions and comment responses" msgstr "" -#: models/user.py:240 +#: models/user.py:271 msgid "Instantly" msgstr "" -#: models/user.py:241 +#: models/user.py:272 msgid "Daily" msgstr "Täglich" -#: models/user.py:242 +#: models/user.py:273 msgid "Weekly" msgstr "Wöchentlich" -#: models/user.py:243 +#: models/user.py:274 msgid "No email" msgstr "Keine E-Mail" #: skins/default/templates/404.jinja.html:3 -#: skins/default/templates/404.jinja.html:11 +#: skins/default/templates/404.jinja.html:10 msgid "Page not found" msgstr "" -#: skins/default/templates/404.jinja.html:15 +#: skins/default/templates/404.jinja.html:13 msgid "Sorry, could not find the page you requested." msgstr "Die angeforderte Seite konnte nicht gefunden werden." -#: skins/default/templates/404.jinja.html:17 +#: skins/default/templates/404.jinja.html:15 msgid "This might have happened for the following reasons:" msgstr "Dies könnte einen der folgenden Gründe haben:" -#: skins/default/templates/404.jinja.html:19 +#: skins/default/templates/404.jinja.html:17 msgid "this question or answer has been deleted;" msgstr "Diese Frage oder Antwort wurde gelöscht;" -#: skins/default/templates/404.jinja.html:20 +#: skins/default/templates/404.jinja.html:18 msgid "url has error - please check it;" msgstr "Die eingegebene Adresse ist fehlerhaft - bitte überprüfen;" -#: skins/default/templates/404.jinja.html:21 +#: skins/default/templates/404.jinja.html:19 msgid "" "the page you tried to visit is protected or you don't have sufficient " "points, see" @@ -2694,61 +3570,62 @@ msgstr "" "Die angeforderte Seite ist geschützt oder Sie haben nicht genug Punkte, um " "sie anzuschauen, siehe" -#: skins/default/templates/404.jinja.html:21 -#: skins/default/templates/footer.html:6 -#: skins/default/templates/header.html:57 -#: skins/default/templates/question_edit_tips.html:16 +#: skins/default/templates/404.jinja.html:19 +#: skins/default/templates/blocks/footer.html:5 +#: skins/default/templates/blocks/header_meta_links.html:13 +#: skins/default/templates/blocks/question_edit_tips.html:15 msgid "faq" msgstr "Häufige Fragen" -#: skins/default/templates/404.jinja.html:22 +#: skins/default/templates/404.jinja.html:20 msgid "if you believe this error 404 should not have occured, please" msgstr "Falls dieser Fehler nicht hätte passieren sollen, " -#: skins/default/templates/404.jinja.html:23 +#: skins/default/templates/404.jinja.html:21 msgid "report this problem" msgstr "melden Sie uns das Problem bitte." -#: skins/default/templates/404.jinja.html:32 -#: skins/default/templates/500.jinja.html:13 +#: skins/default/templates/404.jinja.html:30 +#: skins/default/templates/500.jinja.html:11 msgid "back to previous page" msgstr "Zurück zur vorigen Seite" -#: skins/default/templates/404.jinja.html:33 -#: skins/default/templates/questions.html:13 +#: skins/default/templates/404.jinja.html:31 +#: skins/default/templates/main_page/tab_bar.html:9 msgid "see all questions" msgstr "Alle Fragen zeigen" -#: skins/default/templates/404.jinja.html:34 +#: skins/default/templates/404.jinja.html:32 msgid "see all tags" msgstr "Alle Tags zeigen" #: skins/default/templates/500.jinja.html:3 -#: skins/default/templates/500.jinja.html:6 +#: skins/default/templates/500.jinja.html:5 msgid "Internal server error" msgstr "" -#: skins/default/templates/500.jinja.html:10 +#: skins/default/templates/500.jinja.html:8 msgid "system error log is recorded, error will be fixed as soon as possible" msgstr "" "Der Fehler wurde aufgezeichnet, und wir werden ihn so bald wie möglich " "beheben." -#: skins/default/templates/500.jinja.html:11 +#: skins/default/templates/500.jinja.html:9 msgid "please report the error to the site administrators if you wish" msgstr "Bitte melden Sie uns den Fehler, falls Sie möchten." -#: skins/default/templates/500.jinja.html:14 +#: skins/default/templates/500.jinja.html:12 msgid "see latest questions" msgstr "Zeige neueste Fragen" -#: skins/default/templates/500.jinja.html:15 +#: skins/default/templates/500.jinja.html:13 msgid "see tags" msgstr "Zeige Tags" -#: skins/default/templates/about.html:3 skins/default/templates/about.html:6 -msgid "About" -msgstr "Über" +#: 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 @@ -2756,199 +3633,84 @@ msgid "Edit answer" msgstr "Antwort bearbeiten" #: skins/default/templates/answer_edit.html:10 -#: skins/default/templates/question_edit.html:10 -#: skins/default/templates/question_retag.html:6 +#: skins/default/templates/question_edit.html:9 +#: skins/default/templates/question_retag.html:5 #: skins/default/templates/revisions.html:7 msgid "back" msgstr "Zurück" -#: skins/default/templates/answer_edit.html:15 -#: skins/default/templates/question_edit.html:14 +#: skins/default/templates/answer_edit.html:14 msgid "revision" msgstr "Version" -#: skins/default/templates/answer_edit.html:18 -#: skins/default/templates/question_edit.html:19 +#: skins/default/templates/answer_edit.html:17 +#: skins/default/templates/question_edit.html:16 msgid "select revision" msgstr "Version auswählen" -#: skins/default/templates/answer_edit.html:22 -#: skins/default/templates/question_edit.html:28 +#: skins/default/templates/answer_edit.html:21 +#: skins/default/templates/question_edit.html:27 msgid "Save edit" msgstr "Überarbeitung speichern" -#: skins/default/templates/answer_edit.html:23 -#: skins/default/templates/close.html:19 -#: skins/default/templates/feedback.html:45 -#: skins/default/templates/question_edit.html:29 -#: skins/default/templates/question_retag.html:26 -#: skins/default/templates/reopen.html:30 -#: skins/default/templates/user_edit.html:76 +#: skins/default/templates/answer_edit.html:22 +#: skins/default/templates/close.html:16 +#: skins/default/templates/feedback.html:42 +#: skins/default/templates/question_edit.html:28 +#: skins/default/templates/question_retag.html:22 +#: skins/default/templates/reopen.html:27 +#: skins/default/templates/subscribe_for_tags.html:16 #: skins/default/templates/authopenid/changeemail.html:38 +#: skins/default/templates/user_profile/user_edit.html:84 msgid "Cancel" msgstr "Abbrechen" -#: skins/default/templates/answer_edit.html:59 -#: skins/default/templates/answer_edit.html:62 -#: skins/default/templates/ask.html:36 skins/default/templates/ask.html:39 -#: skins/default/templates/macros.html:398 -#: skins/default/templates/question.html:456 -#: skins/default/templates/question.html:459 -#: skins/default/templates/question_edit.html:63 -#: skins/default/templates/question_edit.html:66 +#: skins/default/templates/answer_edit.html:60 +#: skins/default/templates/answer_edit.html:63 +#: skins/default/templates/ask.html:46 skins/default/templates/ask.html:49 +#: skins/default/templates/macros.html:698 +#: skins/default/templates/question.html:562 +#: skins/default/templates/question.html:565 +#: skins/default/templates/question_edit.html:72 +#: skins/default/templates/question_edit.html:75 msgid "hide preview" msgstr "Vorschau ausblenden" -#: skins/default/templates/answer_edit.html:62 -#: skins/default/templates/ask.html:39 -#: skins/default/templates/question.html:459 -#: skins/default/templates/question_edit.html:66 +#: skins/default/templates/answer_edit.html:63 +#: skins/default/templates/ask.html:49 +#: skins/default/templates/question.html:565 +#: skins/default/templates/question_edit.html:75 msgid "show preview" msgstr "Vorschau einblenden" -#: skins/default/templates/answer_edit_tips.html:3 -msgid "answer tips" -msgstr "Tipps" +#: skins/default/templates/ask.html:4 +msgid "Ask a question" +msgstr "Frage stellen" -#: skins/default/templates/answer_edit_tips.html:6 -msgid "please make your answer relevant to this community" +#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:8 +#: skins/default/templates/user_profile/user_recent.html:16 +#: skins/default/templates/user_profile/user_stats.html:110 +#, python-format +msgid "%(name)s" msgstr "" -"Bitte formulieren Sie Ihre Frage so, daß sie für dieses Forum relevant ist." - -#: skins/default/templates/answer_edit_tips.html:9 -msgid "try to give an answer, rather than engage into a discussion" -msgstr "" -"Bitte versuchen Sie, eine konkrete Antwort zu geben, und nicht in eine " -"Diskussion einzusteigen." - -#: skins/default/templates/answer_edit_tips.html:12 -msgid "please try to provide details" -msgstr "Bitte versuchen Sie, Details einzubringen." - -#: skins/default/templates/answer_edit_tips.html:15 -#: skins/default/templates/question_edit_tips.html:12 -msgid "be clear and concise" -msgstr "Seien Sie klar und deutlich." - -#: skins/default/templates/answer_edit_tips.html:19 -#: skins/default/templates/question_edit_tips.html:16 -msgid "see frequently asked questions" -msgstr "Siehe die häufig gestellten Fragen" - -#: skins/default/templates/answer_edit_tips.html:25 -#: skins/default/templates/question_edit_tips.html:22 -msgid "Markdown tips" -msgstr "Tipps zu Markdown" - -#: skins/default/templates/answer_edit_tips.html:29 -#: skins/default/templates/question_edit_tips.html:26 -msgid "*italic*" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:32 -#: skins/default/templates/question_edit_tips.html:29 -msgid "**bold**" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:36 -#: skins/default/templates/question_edit_tips.html:33 -#, fuzzy -msgid "*italic* or _italic_" -msgstr "*kursiv* oder __kursiv__" - -#: skins/default/templates/answer_edit_tips.html:39 -#: skins/default/templates/question_edit_tips.html:36 -msgid "**bold** or __bold__" -msgstr "**fett** oder __fett__" - -#: skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/question_edit_tips.html:40 -msgid "link" -msgstr "Link" - -#: skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:40 -#: skins/default/templates/question_edit_tips.html:45 -msgid "text" -msgstr "Text" - -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:45 -msgid "image" -msgstr "Bild" - -#: skins/default/templates/answer_edit_tips.html:51 -#: skins/default/templates/question_edit_tips.html:49 -msgid "numbered list:" -msgstr "Nummerierte Liste:" - -#: skins/default/templates/answer_edit_tips.html:56 -#: skins/default/templates/question_edit_tips.html:54 -msgid "basic HTML tags are also supported" -msgstr "Grundlegende HTML-Tags werden ebenfalls unterstützt." - -#: skins/default/templates/answer_edit_tips.html:60 -#: skins/default/templates/question_edit_tips.html:58 -msgid "learn more about Markdown" -msgstr "Mehr Informationen über Markdown" - -#: skins/default/templates/ask.html:3 -msgid "Ask a question" -msgstr "Frage stellen" - -#: skins/default/templates/ask_form.html:7 -msgid "login to post question info" -msgstr "" -"Sie können Ihre Frage formulieren, ohne sich " -"vorher anmelden zu müssen. 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." - -#: skins/default/templates/ask_form.html:11 -#, python-format -msgid "" -"must have valid %(email)s to post, \n" -" see %(email_validation_faq_url)s\n" -" " -msgstr "" -"Ihre E-Mail-Adresse %(email)s wurde noch nicht " -"bestätigt. Um Beiträge veröffentlichen zu können, müssen Sie Ihre E-" -"Mail-Adresse bestätigen. Mehr infos " -"hier.
Sie können Ihren Beitrag speichern und die Bestätigung danach " -"durchführen - Ihr Beitrag wird bis dahin gespeichert." - -#: skins/default/templates/ask_form.html:27 -msgid "Login/signup to post your question" -msgstr "Bitte einloggen, um Frage zu veröffentlichen" -#: skins/default/templates/ask_form.html:29 -msgid "Ask your question" -msgstr "Stellen Sie Ihre Frage" +#: skins/default/templates/badge.html:4 +msgid "Badge" +msgstr "Auszeichnung" -#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:11 -#: skins/default/templates/badges.html:28 -#: skins/default/templates/user_recent.html:13 -#: skins/default/templates/user_stats.html:88 +#: skins/default/templates/badge.html:6 #, python-format -msgid "%(name)s" +msgid "Badge \"%(name)s\"" msgstr "" -#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:7 -msgid "Badge" -msgstr "Auszeichnung" - -#: skins/default/templates/badge.html:11 -#: skins/default/templates/badges.html:27 -#: skins/default/templates/badges.html:31 -#: skins/default/templates/user_recent.html:13 -#: skins/default/templates/user_stats.html:88 +#: skins/default/templates/badge.html:8 +#: skins/default/templates/user_profile/user_recent.html:16 +#: skins/default/templates/user_profile/user_stats.html:108 #, fuzzy, python-format msgid "%(description)s" msgstr "E-Mail-Abonnements" -#: skins/default/templates/badge.html:16 +#: skins/default/templates/badge.html:13 msgid "user received this badge:" msgid_plural "users received this badge:" msgstr[0] "Benutzer hat dieses Abzeichen:" @@ -2958,23 +3720,22 @@ msgstr[1] "Benutzer haben dieses Abzeichen:" msgid "Badges summary" msgstr "Zusammenfassung Auszeichnungen" -#: skins/default/templates/badges.html:6 +#: skins/default/templates/badges.html:5 msgid "Badges" msgstr "Auszeichnungen" -#: skins/default/templates/badges.html:10 +#: skins/default/templates/badges.html:7 msgid "Community gives you awards for your questions, answers and votes." msgstr "" "Rege Teilnahme mit qualitativ hochwertigen Fragen und Antworten führt zum " "Erhalt von Auszeichnungen." -#: skins/default/templates/badges.html:11 -#, python-format +#: skins/default/templates/badges.html:8 +#, 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. Give us feedback at " +"%(feedback_faq_url)s.\n" msgstr "" "Es gibt im Moment drei Stufen von Auszeichnungen: Gild, " "Silber und Bronze.\n" @@ -2982,96 +3743,73 @@ msgstr "" "Falls Sie Ideen für neue Auszeichnungen haben, senden Sie uns diese über die " "Feedback-Seite." -#: skins/default/templates/badges.html:27 -#, python-format -msgid "%(type)s" -msgstr "" - -#: skins/default/templates/badges.html:40 +#: skins/default/templates/badges.html:35 msgid "Community badges" msgstr "Auszeichnungs-Stufen" -#: skins/default/templates/badges.html:43 +#: skins/default/templates/badges.html:37 msgid "gold badge: the highest honor and is very rare" msgstr "" -#: skins/default/templates/badges.html:46 +#: skins/default/templates/badges.html:40 msgid "gold badge description" msgstr "" "Goldene Auszeichnungen erreicht man mit regelmäßiger, überdurchschnittlicher " "Beteiligung." -#: skins/default/templates/badges.html:51 +#: skins/default/templates/badges.html:45 msgid "" "silver badge: occasionally awarded for the very high quality contributions" msgstr "" -#: skins/default/templates/badges.html:55 +#: skins/default/templates/badges.html:49 msgid "silver badge description" msgstr "" "Silberne Auszeichnungen erzielt man durch regelmäßige, geduldige Teilnahme " "am Forum." -#: skins/default/templates/badges.html:58 +#: skins/default/templates/badges.html:52 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:62 +#: 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:6 +#: skins/default/templates/close.html:3 skins/default/templates/close.html:5 msgid "Close question" msgstr "Frage schließen" -#: skins/default/templates/close.html:9 +#: skins/default/templates/close.html:6 msgid "Close the question" msgstr "Die Frage schließen" -#: skins/default/templates/close.html:14 +#: skins/default/templates/close.html:11 msgid "Reasons" msgstr "Gründe" -#: skins/default/templates/close.html:18 +#: skins/default/templates/close.html:15 msgid "OK to close" msgstr "OK zu schließen" -#: skins/default/templates/editor_data.html:8 -#, 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/editor_data.html:10 -#, 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/editor_data.html:11 -#, 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/faq.html:3 skins/default/templates/faq.html.py:6 +#: skins/default/templates/faq.html:3 +#: skins/default/templates/faq_static.html:3 +#: skins/default/templates/faq_static.html:5 msgid "FAQ" msgstr "" -#: skins/default/templates/faq.html:6 +#: skins/default/templates/faq_static.html:5 msgid "Frequently Asked Questions " msgstr "Häufig gestellte Fragen" -#: skins/default/templates/faq.html:11 +#: skins/default/templates/faq_static.html:6 msgid "What kinds of questions can I ask here?" msgstr "Was für Fragen kann ich hier stellen?" -#: skins/default/templates/faq.html:12 +#: skins/default/templates/faq_static.html:7 msgid "" "Most importanly - questions should be relevant to this " "community." @@ -3079,7 +3817,7 @@ msgstr "" "Das allerwichtigste - Fragen sollten für dieses Forum relevant und themenbezogen sein." -#: skins/default/templates/faq.html:13 +#: 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." @@ -3087,11 +3825,11 @@ msgstr "" "Bevor Sie fragen: Bitte benutzen Sie die Suchfunktion, um sicherzustellen, " "daß die Frage nicht bereits gestellt wurde." -#: skins/default/templates/faq.html:15 +#: skins/default/templates/faq_static.html:10 msgid "What questions should I avoid asking?" msgstr "Was für Fragen sollten nicht gestellt werden?" -#: skins/default/templates/faq.html:16 +#: skins/default/templates/faq_static.html:11 msgid "" "Please avoid asking questions that are not relevant to this community, too " "subjective and argumentative." @@ -3099,11 +3837,11 @@ msgstr "" "Bitte verzichten Sie auf Fragen, die für dieses Forum nicht relevant sind, " "oder die zu subjektiv sind und zu Diskussionen verleiten." -#: skins/default/templates/faq.html:20 +#: skins/default/templates/faq_static.html:13 msgid "What should I avoid in my answers?" msgstr "Was sollte ich in meinen Antworten vermeiden?" -#: skins/default/templates/faq.html:21 +#: 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 " @@ -3114,19 +3852,19 @@ msgstr "" "Diskussionen. Kurze Gespräche, Kritik und Klärungen sind über die " "Kommentarfunktion möglich. " -#: skins/default/templates/faq.html:24 +#: skins/default/templates/faq_static.html:15 msgid "Who moderates this community?" msgstr "Wer moderiert diese Forum?" -#: skins/default/templates/faq.html:25 +#: skins/default/templates/faq_static.html:16 msgid "The short answer is: you." msgstr "Die Antwort ist: Sie!" -#: skins/default/templates/faq.html:26 +#: skins/default/templates/faq_static.html:17 msgid "This website is moderated by the users." msgstr "Dieses Forum wird von seinen Benutzern moderiert." -#: skins/default/templates/faq.html:27 +#: skins/default/templates/faq_static.html:18 msgid "" "The reputation system allows users earn the authorization to perform a " "variety of moderation tasks." @@ -3134,11 +3872,11 @@ 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.html:32 +#: skins/default/templates/faq_static.html:20 msgid "How does reputation system work?" msgstr "Wie funktioniert das Punktesystem?" -#: skins/default/templates/faq.html:33 +#: skins/default/templates/faq_static.html:21 msgid "Rep system summary" msgstr "" "Wenn eine Frage oder Antwort positiv bewertet wird, erhält der Autor Punkte. " @@ -3146,13 +3884,13 @@ msgstr "" "von der Gemeinschaft vertraut wird. Mit wachsendem Punktestand werden immer " "mehr Möglichkeiten freigeschaltet." -#: skins/default/templates/faq.html:34 +#: skins/default/templates/faq_static.html:22 #, fuzzy, 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 %" -"(REP_GAIN_FOR_RECEIVING_UPVOTE)s points, each vote against will " +"it will be downvoted. Each vote in favor will generate " +"%(REP_GAIN_FOR_RECEIVING_UPVOTE)s points, each vote against will " "subtract %(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s points. There " "is a limit of %(MAX_REP_GAIN_PER_USER_PER_DAY)s points that " "can be accumulated for a question or answer per day. The table below " @@ -3167,77 +3905,57 @@ msgstr "" "Für jede gestellte Frage oder verfaßte Antwort können maximal 200 Punkte " "erzielt werden." -#: skins/default/templates/faq.html:44 -#: skins/default/templates/user_votes.html:10 +#: skins/default/templates/faq_static.html:32 +#: skins/default/templates/user_profile/user_votes.html:13 msgid "upvote" msgstr "Positiv bewerten" -#: skins/default/templates/faq.html:49 +#: skins/default/templates/faq_static.html:37 msgid "use tags" msgstr "Tags benutzen" -#: skins/default/templates/faq.html:54 +#: skins/default/templates/faq_static.html:42 msgid "add comments" msgstr "Kommentare hinzufügen" -#: skins/default/templates/faq.html:58 -#: skins/default/templates/user_votes.html:12 +#: skins/default/templates/faq_static.html:46 +#: skins/default/templates/user_profile/user_votes.html:15 msgid "downvote" msgstr "Negativ bewerten" -#: skins/default/templates/faq.html:61 +#: skins/default/templates/faq_static.html:49 +#, fuzzy +msgid " accept own answer to own questions" +msgstr "Erste Antwort auf eine eigene Frage akzeptiert" + +#: skins/default/templates/faq_static.html:53 msgid "open and close own questions" msgstr "Eigene Fragen öffnen und schließen" -#: skins/default/templates/faq.html:65 +#: skins/default/templates/faq_static.html:57 #, fuzzy msgid "retag other's questions" msgstr "Vergebene Tags bearbeiten" -#: skins/default/templates/faq.html:70 +#: skins/default/templates/faq_static.html:62 msgid "edit community wiki questions" msgstr "Als \"Community Wiki\" markierte Fragen beantworten" -#: skins/default/templates/faq.html:75 +#: skins/default/templates/faq_static.html:67 #, fuzzy msgid "\"edit any answer" msgstr "Beliebige Antworten bearbeiten" -#: skins/default/templates/faq.html:79 +#: skins/default/templates/faq_static.html:71 #, fuzzy msgid "\"delete any comment" msgstr "Kommentare löschen" -#: skins/default/templates/faq.html:86 -msgid "how to validate email title" -msgstr "Wie bestätigt man seine E-Mail-Adresse und warum?" - -#: skins/default/templates/faq.html:88 -#, python-format -msgid "" -"how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)s" -msgstr "" -"

Wie? Falls Sie soeben eine neue E-Mail-" -"Adresse eingegeben haben oder Ihre bestehende verändert - prüfen Sie " -"Ihr E-Mail-Postfach und klicken Sie auf den in der Bestätigungsmail " -"enthaltenen Link.
Der Link enthält einen Schlüssel, der extra " -"für Sie erzeugt wurde. Sie können auch . " -"Bitte rufen Sie Ihre E-Mails dann erneut ab.

Warum? Mit der E-Mail-Bestätigung wird sichergestellt, daß " -"nur Sie in Ihrem Namen Beiträge verfassen können, und " -"Spam minimiert wird.
Sie können per E-Mail auch " -"Benachrichtigungen für die Fragen abonnieren, die Sie am " -"meisten interessieren. Mit einer E-Mail-Adresse können Sie über den Gravatar-Dienst auch ein " -"persönliches Profilbild einstellen, das neben Ihrem Namen erscheint.

" - -#: skins/default/templates/faq.html:93 +#: 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.html:94 +#: skins/default/templates/faq_static.html:75 msgid "gravatar faq info" msgstr "" "

Das Bild, das überall im Forum neben dem Benutzernamen angezeigt wird, " @@ -3255,11 +3973,11 @@ msgstr "" "Schritten. Laden Sie kein Profilbild hoch, wird ein neutrales Standard-" "Symbol angezeigt.

" -#: skins/default/templates/faq.html:97 +#: skins/default/templates/faq_static.html:76 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.html:98 +#: skins/default/templates/faq_static.html:77 #, fuzzy msgid "" "No, you don't have to. You can login through any service that supports " @@ -3268,20 +3986,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.html:99 +#: skins/default/templates/faq_static.html:78 #, fuzzy msgid "\"Login now!\"" msgstr "Jetzt einloggen" -#: skins/default/templates/faq.html:103 +#: skins/default/templates/faq_static.html:80 msgid "Why other people can edit my questions/answers?" msgstr "Warum können andere Benutzer meine Fragen und Antworten bearbeiten?" -#: skins/default/templates/faq.html:104 +#: skins/default/templates/faq_static.html:81 msgid "Goal of this site is..." msgstr "Das Ziel dieser Seite ist:" -#: skins/default/templates/faq.html:104 +#: skins/default/templates/faq_static.html:81 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 " @@ -3290,17 +4008,17 @@ 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.html:105 +#: skins/default/templates/faq_static.html:82 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.html:109 +#: skins/default/templates/faq_static.html:84 msgid "Still have questions?" msgstr "Sie haben noch Fragen?" -#: skins/default/templates/faq.html:110 +#: skins/default/templates/faq_static.html:85 #, python-format msgid "" "Please ask your question at %(ask_question_url)s, help make our community " @@ -3309,173 +4027,93 @@ msgstr "" "Bitte stellen Sie Ihre Frage und helfen " "Sie uns, das Forum stetig zu verbessern!" -#: skins/default/templates/faq.html:112 skins/default/templates/header.html:78 -msgid "questions" -msgstr "Fragen" - -#: skins/default/templates/faq.html:112 -msgid "." -msgstr "." - #: skins/default/templates/feedback.html:3 msgid "Feedback" msgstr "Feedback" -#: skins/default/templates/feedback.html:6 +#: skins/default/templates/feedback.html:5 msgid "Give us your feedback!" msgstr "Senden Sie uns Ihr Feedback!" -#: skins/default/templates/feedback.html:12 -#, python-format +#: skins/default/templates/feedback.html:9 +#, fuzzy, python-format msgid "" "\n" -" Dear %(user_name)s, we look " -"forward to hearing your feedback. \n" -" Please type and send us your message below.\n" -" " +" Dear %(user_name)s, we look forward " +"to hearing your feedback. \n" +" Please type and send us your message below.\n" +" " msgstr "" "\n" "Hallo %(user_name)s, wir freuen uns darauf, " "von Ihnen zu hören.\n" "Bitte geben Sie hier Ihre Nachricht ein." -#: skins/default/templates/feedback.html:19 +#: skins/default/templates/feedback.html:16 +#, fuzzy msgid "" "\n" -" Dear visitor, we look forward to " +" Dear visitor, we look forward to " "hearing your feedback.\n" -" Please type and send us your message below.\n" -" " +" Please type and send us your message below.\n" +" " msgstr "" "\n" "Hallo, wir freuen uns darauf, von Ihnen zu " "hören.\n" "Bitte geben Sie hier Ihre Nachricht ein." -#: skins/default/templates/feedback.html:28 +#: skins/default/templates/feedback.html:25 #, fuzzy msgid "(please enter a valid email)" msgstr "Bitte geben Sie eine gültige E-Mail-Adresse ein" -#: skins/default/templates/feedback.html:36 +#: skins/default/templates/feedback.html:33 msgid "(this field is required)" msgstr "(Pflichtfeld)" -#: skins/default/templates/feedback.html:44 +#: skins/default/templates/feedback.html:41 msgid "Send Feedback" msgstr "Feedback absenden" -#: skins/default/templates/feedback_email.txt:3 -#, python-format +#: skins/default/templates/feedback_email.txt:2 +#, fuzzy, python-format msgid "" "\n" -"Hello, this is a %(site_title)s forum feedback message\n" +"Hello, this is a %(site_title)s forum feedback message.\n" msgstr "" "\n" "Hallo, dies ist Feedback zu %(site_title)s \n" -#: skins/default/templates/feedback_email.txt:9 -msgid "Sender is" -msgstr "Der Absender ist" - -#: skins/default/templates/feedback_email.txt:11 -#: skins/default/templates/feedback_email.txt:14 -msgid "email" -msgstr "E-Mail" - -#: skins/default/templates/feedback_email.txt:13 -msgid "anonymous" -msgstr "Anonym" - -#: skins/default/templates/feedback_email.txt:19 -msgid "Message body:" -msgstr "Nachrichtentext:" - -#: skins/default/templates/footer.html:5 -#: skins/default/templates/header.html:56 -msgid "about" -msgstr "Über uns" - -#: skins/default/templates/footer.html:7 -msgid "privacy policy" -msgstr "Datenschutzrichtlinien" - -#: skins/default/templates/footer.html:16 -msgid "give feedback" -msgstr "Feedback geben" - -#: skins/default/templates/header.html:12 -#, fuzzy, python-format -msgid "responses for %(username)s" -msgstr "Bitte einen Benutzernamen eingeben" - -#: skins/default/templates/header.html:15 -#, python-format -msgid "you have a new response" -msgid_plural "you nave %(response_count)s new responses" -msgstr[0] "" -msgstr[1] "" - -#: skins/default/templates/header.html:18 -#, fuzzy -msgid "no new responses yet" -msgstr "Reaktionen" - -#: skins/default/templates/header.html:30 -#: skins/default/templates/header.html:31 -#, python-format -msgid "%(new)s new flagged posts and %(seen)s previous" +#: skins/default/templates/import_data.html:2 +#: skins/default/templates/import_data.html:4 +msgid "Import StackExchange data" msgstr "" -#: skins/default/templates/header.html:33 -#: skins/default/templates/header.html:34 -#, fuzzy, python-format -msgid "%(new)s new flagged posts" -msgstr "Erster gemeldeter Beitrag" - -#: skins/default/templates/header.html:39 -#: skins/default/templates/header.html:40 -#, fuzzy, python-format -msgid "%(seen)s flagged posts" -msgstr "Erster gemeldeter Beitrag" - -#: skins/default/templates/header.html:52 -msgid "logout" -msgstr "Ausloggen" - -#: skins/default/templates/header.html:54 -msgid "login" -msgstr "Einloggen" - -#: skins/default/templates/header.html:59 -#, fuzzy -msgid "settings" -msgstr "die Tag-Beschränkung entfernen" - -#: skins/default/templates/header.html:68 -msgid "back to home page" -msgstr "Zurück zur Startseite" - -#: skins/default/templates/header.html:69 -#, python-format -msgid "%(site)s logo" +#: skins/default/templates/import_data.html:13 +msgid "" +"Warning: if your database is not empty, please back it up\n" +" before attempting this operation." msgstr "" -#: skins/default/templates/header.html:88 -msgid "users" -msgstr "Benutzer" - -#: skins/default/templates/header.html:93 -msgid "badges" -msgstr "Auszeichnungen" +#: skins/default/templates/import_data.html:16 +msgid "" +"Upload your stackexchange dump .zip file, then wait until\n" +" the data import completes. This process may take several minutes.\n" +" Please note that feedback will be printed in plain text.\n" +" " +msgstr "" -#: skins/default/templates/header.html:98 -msgid "ask a question" -msgstr "Frage stellen" +#: skins/default/templates/import_data.html:25 +msgid "Import data" +msgstr "" -#: skins/default/templates/input_bar.html:32 -msgid "search" -msgstr "Suche" +#: 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: python manage." +"py load_stackexchange path/to/your-data.zip" +msgstr "" #: skins/default/templates/instant_notification.html:1 #, python-format @@ -3548,242 +4186,274 @@ msgstr "" "Sincerely,\n" "Q&A Forum Administrator" -#: skins/default/templates/logout.html:3 skins/default/templates/logout.html:6 -msgid "Logout" -msgstr "Logout" +#: skins/default/templates/macros.html:25 +#, fuzzy, python-format +msgid "Share this question on %(site)s" +msgstr "Diese Frage wieder eröffnen" -#: skins/default/templates/logout.html:9 -msgid "" -"As a registered user you can login with your OpenID, log out of the site or " -"permanently remove your account." +#: skins/default/templates/macros.html:36 +#, python-format +msgid "follow %(alias)s" msgstr "" -"Der Klick auf Logout beendet Ihre Sitzung hier im Forum, " -"aber nicht bei Ihrem OpenID-Anbietet.

Vergessen Sie nicht, sich auch " -"bei Ihrem Anbieter auszuloggen, falls Sie sich an diesem Computer komplett " -"ausloggen möchten." -#: skins/default/templates/logout.html:10 -msgid "Logout now" -msgstr "Jetzt ausloggen" +#: skins/default/templates/macros.html:39 +#, python-format +msgid "unfollow %(alias)s" +msgstr "" + +#: skins/default/templates/macros.html:40 +#, python-format +msgid "following %(alias)s" +msgstr "" -#: skins/default/templates/macros.html:26 +#: skins/default/templates/macros.html:63 msgid "karma:" msgstr "" -#: skins/default/templates/macros.html:30 +#: skins/default/templates/macros.html:67 #, fuzzy msgid "badges:" msgstr "Auszeichnungen" -#: skins/default/templates/macros.html:52 -#: skins/default/templates/macros.html:53 +#: skins/default/templates/macros.html:143 +#: skins/default/templates/macros.html:144 msgid "previous" msgstr "Vorige" -#: skins/default/templates/macros.html:64 +#: skins/default/templates/macros.html:155 msgid "current page" msgstr "aktuelle Seite" -#: skins/default/templates/macros.html:66 -#: skins/default/templates/macros.html:73 +#: skins/default/templates/macros.html:157 +#: skins/default/templates/macros.html:164 #, python-format msgid "page number %(num)s" msgstr "Seite %(num)s" -#: skins/default/templates/macros.html:77 +#: skins/default/templates/macros.html:168 msgid "next page" msgstr "Nächste Seite" -#: skins/default/templates/macros.html:88 +#: skins/default/templates/macros.html:179 msgid "posts per page" msgstr "Beiträge pro Seite" -#: skins/default/templates/macros.html:119 templatetags/extra_tags.py:56 +#: skins/default/templates/macros.html:211 templatetags/extra_tags.py:43 #, python-format msgid "%(username)s gravatar image" msgstr "%(username)s Gravatar-Bild" -#: skins/default/templates/macros.html:142 +#: skins/default/templates/macros.html:220 +#, fuzzy, python-format +msgid "%(username)s's website is %(url)s" +msgstr "Punkte-Logbuch von %(user_name)s" + +#: skins/default/templates/macros.html:232 +#, fuzzy +msgid "anonymous user" +msgstr "Anonym" + +#: skins/default/templates/macros.html:260 msgid "this post is marked as community wiki" msgstr "" -#: skins/default/templates/macros.html:145 +#: skins/default/templates/macros.html:263 #, python-format msgid "" "This post is a wiki.\n" " Anyone with karma >%(wiki_min_rep)s is welcome to improve it." msgstr "" -#: skins/default/templates/macros.html:151 +#: skins/default/templates/macros.html:269 msgid "asked" msgstr "gefragt" -#: skins/default/templates/macros.html:153 +#: skins/default/templates/macros.html:271 msgid "answered" msgstr "geantwortet" -#: skins/default/templates/macros.html:155 +#: skins/default/templates/macros.html:273 msgid "posted" msgstr "veröffentlicht" -#: skins/default/templates/macros.html:185 +#: skins/default/templates/macros.html:303 msgid "updated" msgstr "aktualisiert" -#: skins/default/templates/macros.html:210 -#: skins/default/templates/unused/questions_ajax.html:23 views/readers.py:237 +#: skins/default/templates/macros.html:379 +#, python-format +msgid "see questions tagged '%(tag)s'" +msgstr "Fragen mit Tag '%(tag)s' anzeigen" + +#: skins/default/templates/macros.html:424 views/readers.py:239 #, fuzzy -msgid "vote" -msgid_plural "votes" -msgstr[0] "abstimmen/" -msgstr[1] "abstimmen/" +msgid "view" +msgid_plural "views" +msgstr[0] "Einblendungen" +msgstr[1] "Einblendungen" -#: skins/default/templates/macros.html:227 -#: skins/default/templates/unused/questions_ajax.html:43 views/readers.py:240 +#: skins/default/templates/macros.html:441 views/readers.py:236 #, fuzzy msgid "answer" msgid_plural "answers" msgstr[0] "Antwort" msgstr[1] "Antwort" -#: skins/default/templates/macros.html:239 -#: skins/default/templates/unused/questions_ajax.html:55 views/readers.py:243 +#: skins/default/templates/macros.html:452 views/readers.py:233 #, fuzzy -msgid "view" -msgid_plural "views" -msgstr[0] "Einblendungen" -msgstr[1] "Einblendungen" +msgid "vote" +msgid_plural "votes" +msgstr[0] "abstimmen/" +msgstr[1] "abstimmen/" -#: skins/default/templates/macros.html:251 -#: skins/default/templates/question.html:88 -#: skins/default/templates/tags.html:38 -#: skins/default/templates/unused/question_list.html:64 -#: skins/default/templates/unused/question_summary_list_roll.html:52 -#: skins/default/templates/unused/questions_ajax.html:68 -#, python-format -msgid "see questions tagged '%(tag)s'" -msgstr "Fragen mit Tag '%(tag)s' anzeigen" +#: skins/default/templates/macros.html:491 +msgid "delete this comment" +msgstr "Kommentar löschen" -#: skins/default/templates/macros.html:272 -#: skins/default/templates/question.html:94 -#: skins/default/templates/question.html:247 +#: skins/default/templates/macros.html:502 +#: skins/default/templates/question.html:79 +#: skins/default/templates/question.html:235 #: skins/default/templates/revisions.html:37 msgid "edit" msgstr "bearbeiten" -#: skins/default/templates/macros.html:277 -msgid "delete this comment" -msgstr "Kommentar löschen" - -#: skins/default/templates/macros.html:295 -#: skins/default/templates/macros.html:303 -#: skins/default/templates/question.html:423 +#: skins/default/templates/macros.html:520 +#: skins/default/templates/macros.html:528 +#: skins/default/templates/question.html:511 msgid "add comment" msgstr "Kommentar hinzufügen" -#: skins/default/templates/macros.html:296 +#: skins/default/templates/macros.html:521 #, fuzzy, python-format msgid "see %(counter)s more" msgid_plural "see %(counter)s more" msgstr[0] "1 mehr" msgstr[1] "%(counter)s mehr" -#: skins/default/templates/macros.html:298 +#: skins/default/templates/macros.html:523 #, fuzzy, python-format msgid "see %(counter)s more comment" msgid_plural "" "see %(counter)s more comments\n" -" " +" " msgstr[0] "1 weiterer Kommentar" msgstr[1] "%(counter)s weitere Kommentare" -#: skins/default/templates/macros.html:375 +#: skins/default/templates/macros.html:661 +#, fuzzy +msgid "one of these is required" +msgstr "Dieses Feld wird benötigt" + +#: skins/default/templates/macros.html:673 msgid "(required)" msgstr "(Pflichtfeld)" -#: skins/default/templates/macros.html:396 +#: skins/default/templates/macros.html:696 msgid "Toggle the real time Markdown editor preview" msgstr "Die Markdown-Echtzeit-Vorschau ein- oder ausblenden" -#: skins/default/templates/privacy.html:3 -#: skins/default/templates/privacy.html:6 -msgid "Privacy policy" -msgstr "Datenschutzrichtlinien" - -#: skins/default/templates/question.html:30 -#: skins/default/templates/question.html:31 -#: skins/default/templates/question.html:46 -#: skins/default/templates/question.html:48 +#: skins/default/templates/macros.html:708 +#, fuzzy, python-format +msgid "responses for %(username)s" +msgstr "Bitte einen Benutzernamen eingeben" + +#: skins/default/templates/macros.html:711 +#, python-format +msgid "you have a new response" +msgid_plural "you have %(response_count)s new responses" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/templates/macros.html:714 +#, fuzzy +msgid "no new responses yet" +msgstr "Reaktionen" + +#: skins/default/templates/macros.html:729 +#: skins/default/templates/macros.html:730 +#, python-format +msgid "%(new)s new flagged posts and %(seen)s previous" +msgstr "" + +#: skins/default/templates/macros.html:732 +#: skins/default/templates/macros.html:733 +#, fuzzy, python-format +msgid "%(new)s new flagged posts" +msgstr "Erster gemeldeter Beitrag" + +#: skins/default/templates/macros.html:738 +#: skins/default/templates/macros.html:739 +#, fuzzy, python-format +msgid "%(seen)s flagged posts" +msgstr "Erster gemeldeter Beitrag" + +#: skins/default/templates/main_page.html:11 +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:26 +#: skins/default/templates/question.html:27 +#: skins/default/templates/question.html:42 +#: skins/default/templates/question.html:44 msgid "i like this post (click again to cancel)" msgstr "Ich halte diesen Beitrag für hilfreich (Zum Abbrechen erneut klicken)" -#: skins/default/templates/question.html:33 -#: skins/default/templates/question.html:50 -#: skins/default/templates/question.html:198 +#: skins/default/templates/question.html:29 +#: skins/default/templates/question.html:46 +#: skins/default/templates/question.html:186 msgid "current number of votes" msgstr "Aktuelle Anzahl Bewertungen" -#: skins/default/templates/question.html:42 -#: skins/default/templates/question.html:43 -#: skins/default/templates/question.html:55 -#: skins/default/templates/question.html:56 +#: skins/default/templates/question.html:38 +#: skins/default/templates/question.html:39 +#: skins/default/templates/question.html:51 +#: skins/default/templates/question.html:52 msgid "i dont like this post (click again to cancel)" msgstr "Ich halte nichts von diesem Beitrag (Zum Abbrechen erneut klicken)" -#: skins/default/templates/question.html:60 -#: skins/default/templates/question.html:61 -msgid "mark this question as favorite (click again to cancel)" -msgstr "" -"Diese Frage in die Favoritenliste aufnehmen (Zum Abbrechen erneut klicken)" - -#: skins/default/templates/question.html:67 -#: skins/default/templates/question.html:68 -msgid "remove favorite mark from this question (click again to restore mark)" -msgstr "" -"Diese Frage aus der Favoritenliste entfernen (Zum Abbrechen erneut klicken)" - -#: skins/default/templates/question.html:74 -#, fuzzy -msgid "Share this question on twitter" -msgstr "Diese Frage wieder eröffnen" - -#: skins/default/templates/question.html:75 -msgid "Share this question on facebook" -msgstr "" - -#: skins/default/templates/question.html:97 +#: skins/default/templates/question.html:82 #, fuzzy msgid "retag" msgstr "Tags verändert" -#: skins/default/templates/question.html:104 +#: skins/default/templates/question.html:89 msgid "reopen" msgstr "wieder öffnen" -#: skins/default/templates/question.html:108 +#: skins/default/templates/question.html:93 msgid "close" msgstr "schließen" -#: skins/default/templates/question.html:113 -#: skins/default/templates/question.html:251 +#: skins/default/templates/question.html:98 +#: skins/default/templates/question.html:239 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/default/templates/question.html:114 -#: skins/default/templates/question.html:252 +#: skins/default/templates/question.html:99 +#: skins/default/templates/question.html:240 msgid "flag offensive" msgstr "Als beleidigend melden" -#: skins/default/templates/question.html:121 -#: skins/default/templates/question.html:262 -#: skins/default/templates/authopenid/signin.html:175 +#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:250 +msgid "undelete" +msgstr "Wiederherstellen" + +#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:250 +#: skins/default/templates/authopenid/signin.html:166 msgid "delete" msgstr "löschen" -#: skins/default/templates/question.html:156 +#: skins/default/templates/question.html:143 #, python-format msgid "" "The question has been closed for the following reason \"%(close_reason)s\" by" @@ -3791,21 +4461,21 @@ msgstr "" "Die Frage wurde aus den folgenden Gründen: \"%(close_reason)s\" geschlossen " "von" -#: skins/default/templates/question.html:158 +#: skins/default/templates/question.html:145 #, python-format msgid "close date %(closed_at)s" msgstr "Schließungszeitpunkt close date %(closed_at)s" -#: skins/default/templates/question.html:166 +#: skins/default/templates/question.html:151 #, 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" "Eine Antwort:" @@ -3813,85 +4483,102 @@ msgstr[1] "" "\n" "%(counter)s Antworten:" -#: skins/default/templates/question.html:174 +#: skins/default/templates/question.html:159 msgid "oldest answers will be shown first" msgstr "Älteste Antworten werden als Erstes angezeigt" -#: skins/default/templates/question.html:174 +#: skins/default/templates/question.html:160 msgid "oldest answers" msgstr "älteste" -#: skins/default/templates/question.html:176 +#: skins/default/templates/question.html:162 msgid "newest answers will be shown first" msgstr "Neueste werden zuerst angezeigt" -#: skins/default/templates/question.html:176 +#: skins/default/templates/question.html:163 msgid "newest answers" msgstr "Neueste Antworten" -#: skins/default/templates/question.html:178 +#: skins/default/templates/question.html:165 msgid "most voted answers will be shown first" msgstr "Höchstbewertete werden zuerst angezeigt" -#: skins/default/templates/question.html:178 +#: skins/default/templates/question.html:166 msgid "popular answers" msgstr "Höchstbewertet" -#: skins/default/templates/question.html:196 -#: skins/default/templates/question.html:197 +#: skins/default/templates/question.html:184 +#: skins/default/templates/question.html:185 msgid "i like this answer (click again to cancel)" msgstr "Ich halte diese Antwort für hilfreich (zum Abbrechen erneut klicken)" -#: skins/default/templates/question.html:207 -#: skins/default/templates/question.html:208 +#: skins/default/templates/question.html:195 +#: skins/default/templates/question.html:196 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/question.html:216 -#: skins/default/templates/question.html:217 +#: skins/default/templates/question.html:204 +#: skins/default/templates/question.html:205 msgid "mark this answer as favorite (click again to undo)" msgstr "Zur Favoritenliste hinzufügen (zum Abbrechen erneut klicken)" -#: skins/default/templates/question.html:226 -#: skins/default/templates/question.html:227 +#: skins/default/templates/question.html:214 +#: skins/default/templates/question.html:215 #, fuzzy, python-format msgid "%(question_author)s has selected this answer as correct" msgstr "Der Fragesteller hat diese Antwort als die korrekte markiert" -#: skins/default/templates/question.html:242 +#: skins/default/templates/question.html:230 msgid "answer permanent link" msgstr "Link zur Antwort" -#: skins/default/templates/question.html:243 +#: skins/default/templates/question.html:231 msgid "permanent link" msgstr "Link" -#: skins/default/templates/question.html:262 -msgid "undelete" -msgstr "Wiederherstellen" +#: skins/default/templates/question.html:256 +#, fuzzy +msgid "swap with question" +msgstr "Frage beantworten" + +#: skins/default/templates/question.html:297 +#, python-format +msgid "" +"Know someone who can answer? Share a link " +"to this question via" +msgstr "" + +#: skins/default/templates/question.html:303 +#, fuzzy +msgid " or" +msgstr "oder" + +#: skins/default/templates/question.html:305 +msgid "email" +msgstr "E-Mail" -#: skins/default/templates/question.html:309 -#: skins/default/templates/question.html:311 +#: skins/default/templates/question.html:320 +#: skins/default/templates/question.html:322 msgid "Notify me once a day when there are any new answers" msgstr "" "Benachrichtigung bei neuen Antworten einmal täglich per E-" "Mail" -#: skins/default/templates/question.html:313 +#: skins/default/templates/question.html:324 msgid "Notify me weekly when there are any new answers" msgstr "" "Benachrichtigung bei neuen Antworten einmal wöchentlich per " "E-Mail" -#: skins/default/templates/question.html:315 +#: skins/default/templates/question.html:326 #, fuzzy msgid "Notify me immediately when there are any new answers" msgstr "" "Benachrichtigung bei neuen Antworten einmal wöchentlich per " "E-Mail" -#: skins/default/templates/question.html:318 +#: skins/default/templates/question.html:329 #, python-format msgid "" "You can always adjust frequency of email updates from your %(profile_url)s" @@ -3900,21 +4587,28 @@ msgstr "" "Profil ändern)" -#: skins/default/templates/question.html:323 +#: skins/default/templates/question.html:334 msgid "once you sign in you will be able to subscribe for any updates here" msgstr "" "Hier können Sie regelmäßige Benachrichtigungen " "für diese Frage abonnieren, sobald Sie sich eingeloggt haben." -#: skins/default/templates/question.html:333 +#: skins/default/templates/question.html:344 +#, 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.html:352 msgid "Your answer" msgstr "Ihre Antwort" -#: skins/default/templates/question.html:335 +#: skins/default/templates/question.html:354 msgid "Be the first one to answer this question!" msgstr "Verfassen Sie die erste Antwort auf diese Frage!" -#: skins/default/templates/question.html:341 +#: skins/default/templates/question.html:360 msgid "you can answer anonymously and then login" msgstr "" "Beginnen Sie Ihre Antwort als anonymer Gast " @@ -3925,7 +4619,7 @@ msgstr "" "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.html:345 +#: skins/default/templates/question.html:364 msgid "answer your own question only to give an answer" msgstr "" "Die eigene Frage zu beantworten ist ausdrücklich " @@ -3936,7 +4630,7 @@ msgstr "" "Rückfragen, und bitte vergessen Sie nicht, die eingehenden Antworten mit " "Ihrer Stimme zu bewerten!" -#: skins/default/templates/question.html:347 +#: skins/default/templates/question.html:366 msgid "please only give an answer, no discussions" msgstr "" "Bitte verfassen Sie eine sachliche Antwort mit Substanz. Um " @@ -3947,292 +4641,167 @@ msgstr "" "und andere Antworten abzustimmen - dies hilft, die besten " "Fragen und Antworten herauszufinden!" -#: skins/default/templates/question.html:354 +#: skins/default/templates/question.html:373 msgid "Login/Signup to Post Your Answer" msgstr "" "Bitte loggen Sie sich ein oder registrieren Sie sich, um die Antwort " "endgültig zu speichern." -#: skins/default/templates/question.html:357 +#: skins/default/templates/question.html:376 +#: skins/default/templates/question.html:389 msgid "Answer Your Own Question" msgstr "Eigene Frage beantworten" -#: skins/default/templates/question.html:359 +#: skins/default/templates/question.html:378 msgid "Answer the question" msgstr "Frage beantworten" -#: skins/default/templates/question.html:373 -msgid "Question tags" +#: skins/default/templates/question.html:397 +#, fuzzy +msgid "Question tools" msgstr "Tags" -#: skins/default/templates/question.html:378 -#: skins/default/templates/questions.html:222 -#: skins/default/templates/tag_selector.html:9 -#: skins/default/templates/tag_selector.html:26 +#: skins/default/templates/question.html:400 +#, fuzzy +msgid "click to unfollow this question" +msgstr "Fragen mit den meisten Antworten" + +#: skins/default/templates/question.html:401 +msgid "Following" +msgstr "" + +#: skins/default/templates/question.html:402 +msgid "Unfollow" +msgstr "" + +#: skins/default/templates/question.html:406 +#, fuzzy +msgid "click to follow this question" +msgstr "Fragen mit den meisten Antworten" + +#: skins/default/templates/question.html:407 +msgid "Follow" +msgstr "" + +#: skins/default/templates/question.html:414 #, python-format -msgid "see questions tagged '%(tag_name)s'" -msgstr "Fragen mit Tag '%(tag_name)s' anschauen" +msgid "%(count)s follower" +msgid_plural "%(count)s followers" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/templates/question.html:420 +#, fuzzy +msgid "email the updates" +msgstr "E-Mail-Benachrichtigungen abgestellt" + +#: skins/default/templates/question.html:423 +msgid "" +"Here (once you log in) you will be able to sign up for the " +"periodic email updates about this question." +msgstr "" + +#: skins/default/templates/question.html:428 +#, fuzzy +msgid "subscribe to this question rss feed" +msgstr "Fragen-RSS-Feed abonnieren" + +#: skins/default/templates/question.html:429 +#, fuzzy +msgid "subsribe to rss feed" +msgstr "Fragen-RSS-Feed abonnieren" + +#: skins/default/templates/question.html:438 +msgid "Question tags" +msgstr "Tags" + +#: skins/default/templates/question.html:460 +msgid "Stats:" +msgstr "" -#: skins/default/templates/question.html:384 +#: skins/default/templates/question.html:462 msgid "question asked" msgstr "Gefragt" -#: skins/default/templates/question.html:387 +#: skins/default/templates/question.html:465 msgid "question was seen" msgstr "Frage betrachtet:" -#: skins/default/templates/question.html:387 +#: skins/default/templates/question.html:465 msgid "times" msgstr "mal" -#: skins/default/templates/question.html:390 +#: skins/default/templates/question.html:468 msgid "last updated" msgstr "Zuletzt aktualisiert" -#: skins/default/templates/question.html:397 +#: skins/default/templates/question.html:477 msgid "Related questions" msgstr "Verwandte / ähnliche Fragen" #: skins/default/templates/question_edit.html:4 -#: skins/default/templates/question_edit.html:10 +#: skins/default/templates/question_edit.html:9 msgid "Edit question" msgstr "Frage bearbeiten" -#: skins/default/templates/question_edit_tips.html:3 -msgid "question tips" -msgstr "Tipps für Fragen" - -#: skins/default/templates/question_edit_tips.html:6 -msgid "please ask a relevant question" -msgstr "Stellen Sie nur Fragen, die für dieses Forum relevant sind." - -#: skins/default/templates/question_edit_tips.html:9 -msgid "please try provide enough details" -msgstr "Bitte erwähnen Sie in Ihrer Frage genügend Details." - #: skins/default/templates/question_retag.html:3 -#: skins/default/templates/question_retag.html:6 +#: skins/default/templates/question_retag.html:5 msgid "Change tags" msgstr "Tags ändern" -#: skins/default/templates/question_retag.html:25 +#: skins/default/templates/question_retag.html:21 #, fuzzy msgid "Retag" msgstr "Tags" -#: skins/default/templates/question_retag.html:34 +#: skins/default/templates/question_retag.html:28 msgid "Why use and modify tags?" msgstr "Warum Tags verwenden und bearbeiten?" -#: skins/default/templates/question_retag.html:36 +#: skins/default/templates/question_retag.html:30 msgid "Tags help to keep the content better organized and searchable" msgstr "" -#: skins/default/templates/question_retag.html:38 +#: skins/default/templates/question_retag.html:32 msgid "tag editors receive special awards from the community" msgstr "" "Benutzer, die Tags bearbeiten, bekommen spezielle Auszeichnungen verliehen." -#: skins/default/templates/question_retag.html:79 +#: skins/default/templates/question_retag.html:59 msgid "up to 5 tags, less than 20 characters each" msgstr "Bis zu 5 Tags mit jeweils weniger als 20 Buchstaben" -#: skins/default/templates/questions.html:4 -msgid "Questions" -msgstr "Fragen" - -#: skins/default/templates/questions.html:9 -msgid "In:" -msgstr "In:" - -#: skins/default/templates/questions.html:18 -msgid "see unanswered questions" -msgstr "Unbeantwortete Fragen anzeigen" - -#: skins/default/templates/questions.html:24 -msgid "see your favorite questions" -msgstr "Favoritenliste anzeigen" - -#: skins/default/templates/questions.html:29 -msgid "Sort by:" -msgstr "Sortieren nach:" - -#: skins/default/templates/questions.html:97 -#: skins/default/templates/questions.html:100 -msgid "subscribe to the questions feed" -msgstr "Fragen-RSS-Feed abonnieren" - -#: skins/default/templates/questions.html:101 -msgid "rss feed" -msgstr "" - -#: skins/default/templates/questions.html:105 -#, fuzzy, python-format -msgid "" -"\n" -" %(q_num)s question\n" -" " -msgid_plural "" -"\n" -" %(q_num)s questions\n" -" " -msgstr[0] "" -"\n" -"Eine Version" -msgstr[1] "" -"\n" -"%(rev_count)s Versionen" - -#: skins/default/templates/questions.html:111 views/readers.py:157 -#, fuzzy, python-format -msgid "%(q_num)s question" -msgid_plural "%(q_num)s questions" -msgstr[0] "%(q_num)s Frage" -msgstr[1] "%(q_num)s Fragen" - -#: skins/default/templates/questions.html:114 -#, python-format -msgid "with %(author_name)s's contributions" -msgstr "mit Beiträgen von %(author_name)s" - -#: skins/default/templates/questions.html:117 -msgid "tagged" -msgstr "Getaggt" - -#: skins/default/templates/questions.html:122 -msgid "Search tips:" -msgstr "Suchtipps:" - -#: skins/default/templates/questions.html:125 -msgid "reset author" -msgstr "Autor zurücksetzen" - -#: skins/default/templates/questions.html:127 -#: skins/default/templates/questions.html:130 -#: skins/default/templates/questions.html:168 -#: skins/default/templates/questions.html:171 -#, fuzzy -msgid " or " -msgstr "oder" - -#: skins/default/templates/questions.html:128 -msgid "reset tags" -msgstr "Tags zurücksetzen" - -#: skins/default/templates/questions.html:131 -#: skins/default/templates/questions.html:134 -msgid "start over" -msgstr "Von vorn beginnen" - -#: skins/default/templates/questions.html:136 -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/questions.html:139 -msgid "Search tip:" -msgstr "Suchtipp:" - -#: skins/default/templates/questions.html:139 -msgid "add tags and a query to focus your search" -msgstr "" -"Tags und eine Suchabfrage hinzufügen, um genauere Suchergebnisse zu erzielen" - -#: skins/default/templates/questions.html:154 -#: skins/default/templates/unused/questions_ajax.html:79 -msgid "There are no unanswered questions here" -msgstr "Es gibt hier keine unbeantworteten Fragen" - -#: skins/default/templates/questions.html:157 -#: skins/default/templates/unused/questions_ajax.html:82 -msgid "No favorite questions here. " -msgstr "Keine Favoriten-Fragen." - -#: skins/default/templates/questions.html:158 -#: skins/default/templates/unused/questions_ajax.html:83 -msgid "Please start (bookmark) some questions when you visit them" -msgstr "" -"Bitte fügen Sie Fragen, die Ihnen besonders gut gefallen, zu Ihrer " -"Favoritenliste hinzu." - -#: skins/default/templates/questions.html:163 -#: skins/default/templates/unused/questions_ajax.html:88 -msgid "You can expand your search by " -msgstr "Sie können Ihre Suche erweitern, indem Sie" - -#: skins/default/templates/questions.html:166 -#: skins/default/templates/unused/questions_ajax.html:92 -msgid "resetting author" -msgstr "die Autorenbeschränkung entfernen" - -#: skins/default/templates/questions.html:169 -#: skins/default/templates/unused/questions_ajax.html:96 -msgid "resetting tags" -msgstr "die Tag-Beschränkung entfernen" - -#: skins/default/templates/questions.html:172 -#: skins/default/templates/questions.html:175 -#: skins/default/templates/unused/questions_ajax.html:100 -#: skins/default/templates/unused/questions_ajax.html:104 -msgid "starting over" -msgstr "ganz von Vorne beginnen" - -#: skins/default/templates/questions.html:180 -#: skins/default/templates/unused/questions_ajax.html:109 -msgid "Please always feel free to ask your question!" -msgstr "Sie können jederzeit gern Ihre eigene Frage stellen!" - -#: skins/default/templates/questions.html:184 -#: skins/default/templates/unused/questions_ajax.html:113 -msgid "Did not find what you were looking for?" -msgstr "Sie haben nicht gefunden, wonach Sie gesucht haben?" - -#: skins/default/templates/questions.html:185 -#: skins/default/templates/unused/questions_ajax.html:114 -msgid "Please, post your question!" -msgstr "Bitte stellen Sie Ihre Frage!" - -#: skins/default/templates/questions.html:200 -msgid "Contributors" -msgstr "Beitragende" - -#: skins/default/templates/questions.html:217 -msgid "Related tags" -msgstr "Tags" - -#: skins/default/templates/reopen.html:3 skins/default/templates/reopen.html:6 +#: skins/default/templates/reopen.html:3 skins/default/templates/reopen.html:5 msgid "Reopen question" msgstr "Frage wieder eröffnen" -#: skins/default/templates/reopen.html:9 +#: skins/default/templates/reopen.html:6 #, fuzzy msgid "Title" msgstr "Titel" -#: skins/default/templates/reopen.html:14 +#: skins/default/templates/reopen.html:11 #, python-format msgid "" "This question has been closed by \n" -" %(closed_by_username)s\n" -" " +" %(closed_by_username)s\n" msgstr "" -#: skins/default/templates/reopen.html:19 +#: skins/default/templates/reopen.html:16 #, fuzzy msgid "Close reason:" msgstr "Frage schließen" -#: skins/default/templates/reopen.html:22 +#: skins/default/templates/reopen.html:19 msgid "When:" msgstr "" -#: skins/default/templates/reopen.html:25 +#: skins/default/templates/reopen.html:22 #, fuzzy msgid "Reopen this question?" msgstr "Diese Frage wieder eröffnen" -#: skins/default/templates/reopen.html:29 +#: skins/default/templates/reopen.html:26 msgid "Reopen this question" msgstr "Diese Frage wieder eröffnen" @@ -4250,1109 +4819,1498 @@ msgstr "Klicken, um Version anzuzeigen/zu verstecken" msgid "revision %(number)s" msgstr "revisionen/" -#: skins/default/templates/tag_selector.html:3 -msgid "Interesting tags" -msgstr "Tags, die mich interessieren" - -#: skins/default/templates/tag_selector.html:13 -#, python-format -msgid "remove '%(tag_name)s' from the list of interesting tags" -msgstr "" -"'%(tag_name)s' von der Liste der Tags, die mich interessieren, entfernen" - -#: skins/default/templates/tag_selector.html:19 -#: skins/default/templates/tag_selector.html:36 -#: skins/default/templates/user_moderate.html:35 -msgid "Add" -msgstr "Hinzufügen" - -#: skins/default/templates/tag_selector.html:20 -msgid "Ignored tags" -msgstr "Ignorierte Tags" +#: skins/default/templates/subscribe_for_tags.html:3 +#: skins/default/templates/subscribe_for_tags.html:5 +#, fuzzy +msgid "Subscribe for tags" +msgstr "Tags benutzen" -#: skins/default/templates/tag_selector.html:30 -#, python-format -msgid "remove '%(tag_name)s' from the list of ignored tags" -msgstr "'%(tag_name)s' von der Liste der ignorierten Tags entfernen" +#: skins/default/templates/subscribe_for_tags.html:6 +#, fuzzy +msgid "Please, subscribe for the following tags:" +msgstr "Die Frage wurde aus folgendem Grund geschlossen" -#: skins/default/templates/tag_selector.html:39 -msgid "keep ignored questions hidden" -msgstr "Fragen aus ignorierten Tags ausblenden" +#: skins/default/templates/subscribe_for_tags.html:15 +msgid "Subscribe" +msgstr "" -#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:8 +#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:11 msgid "Tag list" msgstr "Tag-Liste" -#: skins/default/templates/tags.html:14 +#: skins/default/templates/tags.html:9 +#, python-format +msgid "Tags, matching \"%(stag)s\"" +msgstr "" + +#: skins/default/templates/tags.html:19 msgid "sorted alphabetically" msgstr "Alphabetisch sortiert" -#: skins/default/templates/tags.html:15 +#: skins/default/templates/tags.html:20 msgid "by name" msgstr "nach Namen" -#: skins/default/templates/tags.html:20 +#: skins/default/templates/tags.html:25 msgid "sorted by frequency of tag use" msgstr "nach Tag-Verwendungshäufigkeit" -#: skins/default/templates/tags.html:21 +#: skins/default/templates/tags.html:26 msgid "by popularity" msgstr "nach Popularität" -#: skins/default/templates/tags.html:27 -#, python-format -msgid "" -"All tags matching '%(stag)s'" -msgstr "" -"Alle Tags, die '%(stag)s' " -"enthalten" - -#: skins/default/templates/tags.html:30 +#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:56 msgid "Nothing found" msgstr "Nichts gefunden" -#: skins/default/templates/user.html:14 -#, fuzzy, python-format -msgid "%(username)s's profile" -msgstr "Benutzerprofil" +#: skins/default/templates/users.html:4 skins/default/templates/users.html:7 +msgid "Users" +msgstr "Benutzer" -#: skins/default/templates/user_edit.html:4 -msgid "Edit user profile" -msgstr "Benutzerprofil bearbeiten" +#: skins/default/templates/users.html:13 +msgid "see people with the highest reputation" +msgstr "" -#: skins/default/templates/user_edit.html:7 -msgid "edit profile" -msgstr "Profil bearbeiten" +#: skins/default/templates/users.html:14 +#: skins/default/templates/user_profile/user_info.html:25 +msgid "reputation" +msgstr "Punktestand" -#: skins/default/templates/user_edit.html:17 -#: skins/default/templates/user_info.html:11 -msgid "change picture" -msgstr "Bild ändern" +#: skins/default/templates/users.html:19 +msgid "see people who joined most recently" +msgstr "" -#: skins/default/templates/user_edit.html:20 -msgid "Registered user" -msgstr "Registrierter Benutzer" +#: skins/default/templates/users.html:20 +msgid "recent" +msgstr "neueste" -#: skins/default/templates/user_edit.html:27 -msgid "Screen Name" -msgstr "Nickname" +#: skins/default/templates/users.html:25 +msgid "see people who joined the site first" +msgstr "" -#: skins/default/templates/user_edit.html:75 -#: skins/default/templates/user_email_subscriptions.html:18 -msgid "Update" -msgstr "Update" +#: skins/default/templates/users.html:31 +msgid "see people sorted by name" +msgstr "" -#: skins/default/templates/user_email_subscriptions.html:4 -msgid "Email subscription settings" -msgstr "E-Mail-Abonnementeinstellungen" +#: skins/default/templates/users.html:32 +msgid "by username" +msgstr "nach Benutzernamen" -#: skins/default/templates/user_email_subscriptions.html:5 -msgid "email subscription settings info" -msgstr "" -"Häufigkeit von E-Mail-Benachrichtigungen " -"einstellen Abonnieren Sie Benachrichtigungen über Neuigkeiten in " -"Fragen, die Sie interessieren. Falls Sie keine E-Mails erhalten möchten - " -"wählen Sie \"Keine E-Mail\".
Benachrichtigungen werden nur versandt, " -"wenn es neues in der betreffenden Frage gibt." +#: skins/default/templates/users.html:37 +#, python-format +msgid "users matching query %(suser)s:" +msgstr "Benutzer mit Wort %(suser)s" -#: skins/default/templates/user_email_subscriptions.html:19 -msgid "Stop sending email" -msgstr "Keine E-Mails mehr senden" +#: skins/default/templates/users.html:40 +msgid "Nothing found." +msgstr "Nichts gefunden." -#: skins/default/templates/user_inbox.html:31 -#, fuzzy -msgid "Sections:" -msgstr "Fragen" +#: skins/default/templates/authopenid/changeemail.html:2 +#: skins/default/templates/authopenid/changeemail.html:8 +#: skins/default/templates/authopenid/changeemail.html:36 +msgid "Change email" +msgstr "E-Mail-Adresse ändern" + +#: skins/default/templates/authopenid/changeemail.html:10 +msgid "Save your email address" +msgstr "E-Mail-Adresse speichern" -#: skins/default/templates/user_inbox.html:35 +#: skins/default/templates/authopenid/changeemail.html:15 #, python-format -msgid "forum responses (%(re_count)s)" +msgid "change %(email)s info" msgstr "" +"Geben Sie Ihre E-Mail-Adresse in untenstehende " +"Box ein falls Sie sie für Ihre Benachrichtigungs-E-Mails ändern " +"möchten.
Im Moment verwenden Sie %(email)s" -#: skins/default/templates/user_inbox.html:40 +#: skins/default/templates/authopenid/changeemail.html:17 #, python-format -msgid "flagged items (%(flag_count)s)" +msgid "here is why email is required, see %(gravatar_faq_url)s" msgstr "" +"Bitte geben Sie unten Ihre E-Mail-Adresse ein. Eine gültige E-Mail-Adresse wird für dieses Forum benötigt. Falls Sie " +"möchten, können Sie Benachrichtigungsmails zu Sie besonders " +"interessierenden Fragen, oder Neuzugängen abonnieren. Ihre E-Mail-Adresse " +"wird auch benutzt, um ein individuelles sogenanntes Gravatar-Bild für Ihr Konto " +"anzuzeigen. E-Mail-Adressen werden niemals öffentlich angezeigt." -#: skins/default/templates/user_inbox.html:46 -#, fuzzy -msgid "select:" -msgstr "löschen" - -#: skins/default/templates/user_inbox.html:48 -#, fuzzy -msgid "seen" -msgstr "Zuletzt gesehen" - -#: skins/default/templates/user_inbox.html:49 -#, fuzzy -msgid "new" -msgstr "neueste" +#: skins/default/templates/authopenid/changeemail.html:29 +msgid "Your new Email" +msgstr "" +"Ihre neue E-Mail-Adresse: (wirdnicht " +"öffentlich angezeigt; muß eine gültige Adresse sein)" -#: skins/default/templates/user_inbox.html:50 -#, fuzzy -msgid "none" -msgstr "Bronze" +#: skins/default/templates/authopenid/changeemail.html:29 +msgid "Your Email" +msgstr "" +"Ihre E-Mail-Adresse (wirdnicht öffentlich " +"angezeigt; muß eine gültige Adresse sein)" -#: skins/default/templates/user_inbox.html:51 -#, fuzzy -msgid "mark as seen" -msgstr "Zuletzt gesehen" +#: skins/default/templates/authopenid/changeemail.html:36 +msgid "Save Email" +msgstr "E-Mail-Adresse speichern" -#: skins/default/templates/user_inbox.html:52 -#, fuzzy -msgid "mark as new" -msgstr "als beste Antwort markiert" +#: skins/default/templates/authopenid/changeemail.html:45 +msgid "Validate email" +msgstr "E-Mail-Adresse überprüfen" -#: skins/default/templates/user_inbox.html:53 -msgid "dismiss" +#: skins/default/templates/authopenid/changeemail.html:48 +#, python-format +msgid "validate %(email)s info or go to %(change_email_url)s" msgstr "" +"Eine E-Mail mit einem Bestätigungslink wurde an " +"%(email)s versandt. Bitte klicken Sie auf den Link in der E-" +"Mail 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 andere E-Mail-Adresse verwenden möchten, " +"können Sie sie erneut ändern." -#: skins/default/templates/user_info.html:18 -#: skins/default/templates/users.html:13 skins/default/templates/users.html:14 -msgid "reputation" -msgstr "Punktestand" +#: skins/default/templates/authopenid/changeemail.html:52 +msgid "Email not changed" +msgstr "E-Mail-Adresse nicht geändert" -#: skins/default/templates/user_info.html:30 -msgid "manage login methods" +#: skins/default/templates/authopenid/changeemail.html:55 +#, python-format +msgid "old %(email)s kept, if you like go to %(change_email_url)s" msgstr "" +"Ihre E-Mail-Adresse %(email)s wurde nicht " +"geändert. Falls Sie sie später ändern möchten, können Sie dieses " +"jederzeit in Ihrem Benutzerprofil oder im vorigen Formular tun." -#: skins/default/templates/user_info.html:34 -msgid "update profile" -msgstr "Profil aktualisieren" - -#: skins/default/templates/user_info.html:46 -msgid "real name" -msgstr "Realname" - -#: skins/default/templates/user_info.html:51 -msgid "member for" -msgstr "Mitglied seit" - -#: skins/default/templates/user_info.html:56 -msgid "last seen" -msgstr "Zuletzt gesehen" +#: skins/default/templates/authopenid/changeemail.html:59 +msgid "Email changed" +msgstr "E-Mail-Adresse geändert" -#: skins/default/templates/user_info.html:62 -msgid "user website" -msgstr "Website" +#: skins/default/templates/authopenid/changeemail.html:62 +#, python-format +msgid "your current %(email)s can be used for this" +msgstr "" +"Ihre E-Mail-Adresse wurde auf %(email)s verändert. Sie erhalten alle eventuell abonnierten E-Mail-Benachrichtigungen nun " +"an diese Adresse." -#: skins/default/templates/user_info.html:68 -msgid "location" -msgstr "Ort" +#: skins/default/templates/authopenid/changeemail.html:66 +msgid "Email verified" +msgstr "E-Mail-Adresse bestätigt" -#: skins/default/templates/user_info.html:75 -msgid "age" -msgstr "Alter" +#: skins/default/templates/authopenid/changeemail.html:69 +msgid "thanks for verifying email" +msgstr "" +"Vielen Dank für die Bestätigung Ihrer E-Mail-" +"Adresse! Sie können jetzt Fragen stellen und " +"beantworten. Sie können bei interessanten Fragen auch " +"eine E-Mail-Benachrichtigung abonnieren, die Sie einmal " +"täglich oder seltener über neue Entwicklungen wie Antworten und Kommentare " +"informiert." -#: skins/default/templates/user_info.html:76 -msgid "age unit" -msgstr "Jahre " +#: skins/default/templates/authopenid/changeemail.html:73 +msgid "email key not sent" +msgstr "Bestätigungs-E-Mail nicht versandt" -#: skins/default/templates/user_info.html:83 -msgid "todays unused votes" -msgstr "Ungenutzte Bewertungs-Stimmen heute" +#: skins/default/templates/authopenid/changeemail.html:76 +#, python-format +msgid "email key not sent %(email)s change email here %(change_link)s" +msgstr "" +"Ihre momentane E-Mail-Adresse %(email)s wurde " +"bereits bestätigt. Es wurde keine neue Bestätigungsmail versandt. Sie " +"können Ihre E-Mail-Adresse bei Bedarf ändern." -#: skins/default/templates/user_info.html:84 -msgid "votes left" -msgstr "Stimmen übrig" +#: skins/default/templates/authopenid/complete.html:21 +#: skins/default/templates/authopenid/complete.html:23 +#, fuzzy +msgid "Registration" +msgstr "Registrieren" -#: skins/default/templates/user_moderate.html:5 +#: skins/default/templates/authopenid/complete.html:27 #, python-format -msgid "%(username)s's current status is \"%(status)s\"" +msgid "register new %(provider)s account info, see %(gravatar_faq_url)s" msgstr "" +"

Sie sind zum ersten Mal mit Ihrem OpenID-" +"Zugang von %(provider)s eingeloggt. Bitte geben Sie einen " +"Benutzernamen ein und hinterlegen Sie Ihre E-Mail-" +"Adresse. Die E-Mail-Adresse ermöglicht Benachrichtigungen " +"bei besonders interessanten Fragen und wird als Grundlage für Ihr " +"Individuelles Benutzerbild, den Gravatar, benutzt.

" -#: skins/default/templates/user_moderate.html:8 -msgid "User status changed" +#: skins/default/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 "" +"

Der Benutzername %(username)s ist leider nicht " +"mehr frei.

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.

" -#: skins/default/templates/user_moderate.html:15 -#, fuzzy -msgid "Save" -msgstr "Überarbeitung speichern" - -#: skins/default/templates/user_moderate.html:21 +#: skins/default/templates/authopenid/complete.html:34 #, python-format -msgid "Your current reputation is %(reputation)s points" +msgid "" +"register new external %(provider)s account info, see %(gravatar_faq_url)s" msgstr "" +"

Sie sind zum ersten Mal mit Ihrem OpenID-" +"Zugang von %(provider)s eingeloggt. Sie können einen " +"Benutzernamen eingeben oder Ihren Benutzernamen bei " +"%(provider)s verwenden. Bitte hinterlegen Sie auch Ihre E-Mail-" +"Adresse. Die E-Mail-Adresse ermöglicht Benachrichtigungen " +"bei besonders interessanten Fragen und wird als Grundlage für Ihr " +"Individuelles Benutzerbild, den Gravatar, benutzt.

" -#: skins/default/templates/user_moderate.html:23 +#: skins/default/templates/authopenid/complete.html:37 #, python-format -msgid "User's current reputation is %(reputation)s points" +msgid "register new Facebook connect account info, see %(gravatar_faq_url)s" msgstr "" +"

Sie sind hier zum ersten Mal mit Ihrem " +"Facebook-Login. Bitte legen Sie einen Benutzernamen " +"fest und hinterlegen Sie Ihre E-Mail-Adresse. Die E-Mail-" +"Adresse ermöglicht Benachrichtigungen bei besonders interessanten " +"Fragen und wird als Grundlage für Ihr Individuelles Benutzerbild, " +"den Gravatar, benutzt." -#: skins/default/templates/user_moderate.html:27 -#, fuzzy -msgid "User reputation changed" -msgstr "Punktestand des Benutzers" - -#: skins/default/templates/user_moderate.html:34 -msgid "Subtract" +#: skins/default/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/default/templates/user_moderate.html:39 -#, python-format -msgid "Send message to %(username)s" +#: skins/default/templates/authopenid/complete.html:59 +msgid "Screen name label" +msgstr "Benutzername (wird öffentlich angezeigt)" + +#: skins/default/templates/authopenid/complete.html:66 +msgid "Email address label" msgstr "" +"E-Mail-Adresse (wird nicht öffentlich " +"angezeigt; muß gültig sein)" -#: skins/default/templates/user_moderate.html:40 -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." +#: skins/default/templates/authopenid/complete.html:72 +#: skins/default/templates/authopenid/signup_with_password.html:36 +msgid "receive updates motivational blurb" msgstr "" +"Benachrichtigungen per E-Mail abonnieren Das Abonnieren von " +"E-Mail-Benachrichtigungen ist freiwillig.
Das Forum versenden bis zu " +"einer Benachrichtigung pro Woche - nur wenn es auch " +"wirklich Neues gibt.
Sie können die Benachrichtigungshäufigkeit " +"jederzeit in Ihrem Benutzerprofil anpassen." -#: skins/default/templates/user_moderate.html:42 -#, fuzzy -msgid "Message sent" -msgstr "nachrichten/" +#: skins/default/templates/authopenid/complete.html:76 +#: skins/default/templates/authopenid/signup_with_password.html:40 +msgid "please select one of the options above" +msgstr "Bitte wählen Sie eine der oben genannten Optionen" -#: skins/default/templates/user_moderate.html:60 -#, fuzzy -msgid "Send message" -msgstr "nachrichten/" +#: skins/default/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/default/templates/user_reputation.html:7 -msgid "Your karma change log." -msgstr "Ihr Punkte-Logbuch." +#: skins/default/templates/authopenid/complete.html:80 +msgid "create account" +msgstr "Zugang anlegen" -#: skins/default/templates/user_reputation.html:9 -#, python-format -msgid "%(user_name)s's karma change log" -msgstr "Punkte-Logbuch von %(user_name)s" +#: skins/default/templates/authopenid/confirm_email.txt:1 +msgid "Thank you for registering at our Q&A forum!" +msgstr "Vielen Dank für Ihre Registrierung!" -#: skins/default/templates/user_stats.html:7 -#, fuzzy, python-format -msgid "%(counter)s Question" -msgid_plural "%(counter)s Questions" -msgstr[0] "1 Frage" -msgstr[1] "%(counter)s Fragen" +#: skins/default/templates/authopenid/confirm_email.txt:3 +msgid "Your account details are:" +msgstr "Ihre Zugangsdaten:" -#: skins/default/templates/user_stats.html:12 -#, fuzzy, python-format -msgid "%(counter)s Answer" -msgid_plural "%(counter)s Answers" -msgstr[0] "1 Antwort" -msgstr[1] "%(counter)s Antworten" +#: skins/default/templates/authopenid/confirm_email.txt:5 +msgid "Username:" +msgstr "Benutzername:" -#: skins/default/templates/user_stats.html:20 -#, 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/authopenid/confirm_email.txt:6 +msgid "Password:" +msgstr "Passwort:" -#: skins/default/templates/user_stats.html:20 -msgid "this answer has been selected as correct" -msgstr "Diese Antwort ist als korrekt ausgewählt worden" +#: skins/default/templates/authopenid/confirm_email.txt:8 +msgid "Please sign in here:" +msgstr "Bitte hier anmelden:" -#: skins/default/templates/user_stats.html:30 -#, fuzzy, python-format -msgid "(%(comment_count)s comment)" -msgid_plural "the answer has been commented %(comment_count)s times" -msgstr[0] "1 Kommentar" -msgstr[1] "%(comment_count)s mal kommentiert" +#: skins/default/templates/authopenid/confirm_email.txt:11 +#: skins/default/templates/authopenid/email_validation.txt:13 +msgid "" +"Sincerely,\n" +"Forum Administrator" +msgstr "Ihr Forumsteam" -#: skins/default/templates/user_stats.html:40 -#, fuzzy, python-format -msgid "%(cnt)s Vote" -msgid_plural "%(cnt)s Votes " -msgstr[0] "1 Bewertung" -msgstr[1] "%(cnt)s Bewertungen" +#: skins/default/templates/authopenid/email_validation.txt:1 +msgid "Greetings from the Q&A forum" +msgstr "Grüße vom Forumsteam" -#: skins/default/templates/user_stats.html:46 -msgid "thumb up" -msgstr "+1" +#: skins/default/templates/authopenid/email_validation.txt:3 +msgid "To make use of the Forum, please follow the link below:" +msgstr "Um das Forum zu benutzen, klicken Sie auf untenstehenden Link:" -#: skins/default/templates/user_stats.html:47 -msgid "user has voted up this many times" -msgstr "Benutzer hat positiv bewertet" +#: skins/default/templates/authopenid/email_validation.txt:7 +msgid "Following the link above will help us verify your email address." +msgstr "" +"Die Bestätigung der E-Mail-Adresse durch den Link hilft uns, Spam zu " +"vermeiden." -#: skins/default/templates/user_stats.html:50 -msgid "thumb down" -msgstr "-1" +#: skins/default/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" +"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." -#: skins/default/templates/user_stats.html:51 -msgid "user voted down this many times" -msgstr "Benutzer hat negativ bewertet" +#: skins/default/templates/authopenid/logout.html:3 +msgid "Logout" +msgstr "Logout" -#: skins/default/templates/user_stats.html:59 -#, fuzzy, python-format -msgid "%(counter)s Tag" -msgid_plural "%(counter)s Tags" -msgstr[0] "1 Tag" -msgstr[1] "%(counter)s Tags" +#: skins/default/templates/authopenid/logout.html:5 +msgid "You have successfully logged out" +msgstr "" -#: skins/default/templates/user_stats.html:67 -#, python-format +#: skins/default/templates/authopenid/logout.html:7 msgid "" -"see other questions with %(view_user)s's contributions tagged '%(tag_name)s' " -msgstr "Andere Fragen von %(view_user)s mit Tag '%(tag_name)s'" +"However, you still may be logged in to your OpenID provider. Please logout " +"of your provider if you wish to do so." +msgstr "" + +#: skins/default/templates/authopenid/macros.html:53 +msgid "Please enter your user name, then sign in" +msgstr "" + +#: skins/default/templates/authopenid/macros.html:54 +#: skins/default/templates/authopenid/signin.html:90 +#, fuzzy +msgid "(or select another login method above)" +msgstr "Bitte wählen Sie eine der oben genannten Optionen" + +#: skins/default/templates/authopenid/macros.html:56 +#, fuzzy +msgid "Sign in" +msgstr "einloggen/" + +#: skins/default/templates/authopenid/signin.html:4 +msgid "User login" +msgstr "Benutzerlogin" -#: skins/default/templates/user_stats.html:81 +#: skins/default/templates/authopenid/signin.html:14 #, fuzzy, python-format -msgid "%(counter)s Badge" -msgid_plural "%(counter)s Badges" -msgstr[0] "1 Auszeichnung" -msgstr[1] "%(counter)s Auszeichnungen" +msgid "" +"\n" +" Your answer to %(title)s %(summary)s will be posted once you log in\n" +" " +msgstr "" +"\n" +"Ihre Antwort auf \"%(title)s %(summary)s...\" wurde gespeichert " +"und wird veröffentlicht, sobald Sie sich einloggen." -#: skins/default/templates/user_tabs.html:5 -msgid "User profile" -msgstr "Benutzerprofil" +#: skins/default/templates/authopenid/signin.html:21 +#, fuzzy, python-format +msgid "" +"Your question \n" +" %(title)s %(summary)s will be posted once you log in\n" +" " +msgstr "" +"Ihre Frage \"%(title)s " +"%(summary)s...\" wurde gespeichert und wird " +"veröffentlicht, sobald Sie sich einloggen." -#: skins/default/templates/user_tabs.html:6 -msgid "overview" -msgstr "Übersicht" +#: skins/default/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." +msgstr "" -#: skins/default/templates/user_tabs.html:9 views/users.py:753 -msgid "comments and answers to others questions" -msgstr "Kommentare und Antworten" +#: skins/default/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 "" -#: skins/default/templates/user_tabs.html:10 -msgid "inbox" +#: skins/default/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 "" -#: skins/default/templates/user_tabs.html:13 -msgid "graph of user reputation" -msgstr "Punkte-Statistik" +#: skins/default/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 "" -#: skins/default/templates/user_tabs.html:14 -msgid "reputation history" -msgstr "Punkte-Protokoll" +#: skins/default/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 "" -#: skins/default/templates/user_tabs.html:16 -msgid "questions that user selected as his/her favorite" -msgstr "Vom Benutzer als Favoriten markierte Fragen" +#: skins/default/templates/authopenid/signin.html:42 +msgid "" +"Please check your email and visit the enclosed link to re-connect to your " +"account" +msgstr "" -#: skins/default/templates/user_tabs.html:17 -msgid "favorites" -msgstr "Favoriten" +#: skins/default/templates/authopenid/signin.html:87 +#, fuzzy +msgid "Please enter your user name and password, then sign in" +msgstr "Bitte geben Sie Benutzernamen und Passwort ein." -#: skins/default/templates/user_tabs.html:19 -msgid "recent activity" -msgstr "Jüngste Aktivitäten" +#: skins/default/templates/authopenid/signin.html:93 +msgid "Login failed, please try again" +msgstr "" -#: skins/default/templates/user_tabs.html:20 +#: skins/default/templates/authopenid/signin.html:97 #, fuzzy -msgid "activity" -msgstr "aktiv" +msgid "Login or email" +msgstr "Keine E-Mail" -#: skins/default/templates/user_tabs.html:23 views/users.py:818 -msgid "user vote record" -msgstr "Abstimmungsverhalten" +#: skins/default/templates/authopenid/signin.html:101 +msgid "Password" +msgstr "Passwort" -#: skins/default/templates/user_tabs.html:24 -msgid "casted votes" -msgstr "abgegebene Stimmen" +#: skins/default/templates/authopenid/signin.html:106 +msgid "Login" +msgstr "Login" -#: skins/default/templates/user_tabs.html:28 views/users.py:928 -msgid "email subscription settings" -msgstr "E-Mail-Abonnementeinstellungen" +#: skins/default/templates/authopenid/signin.html:113 +msgid "To change your password - please enter the new one twice, then submit" +msgstr "" -#: skins/default/templates/user_tabs.html:29 +#: skins/default/templates/authopenid/signin.html:117 #, fuzzy -msgid "subscriptions" -msgstr "E-Mail-Abonnements" +msgid "New password" +msgstr "Neues Passwort angelegt" -#: skins/default/templates/user_tabs.html:33 views/users.py:216 +#: skins/default/templates/authopenid/signin.html:124 #, fuzzy -msgid "moderate this user" -msgstr "Diesen Benutzer verwalten" +msgid "Please, retype" +msgstr "Bitte geben Sie Ihr Passwort erneut ein" + +#: skins/default/templates/authopenid/signin.html:146 +msgid "Here are your current login methods" +msgstr "" -#: skins/default/templates/user_tabs.html:34 +#: skins/default/templates/authopenid/signin.html:150 +msgid "provider" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:151 #, fuzzy -msgid "moderation" -msgstr "Ort" +msgid "last used" +msgstr "Zuletzt gesehen" -#: skins/default/templates/users.html:4 skins/default/templates/users.html:7 -msgid "Users" -msgstr "Benutzer" +#: skins/default/templates/authopenid/signin.html:152 +msgid "delete, if you like" +msgstr "" -#: skins/default/templates/users.html:19 skins/default/templates/users.html:20 -msgid "recent" -msgstr "neueste" +#: skins/default/templates/authopenid/signin.html:168 +#, fuzzy +msgid "cannot be deleted" +msgstr "Zugang gelöscht." -#: skins/default/templates/users.html:31 skins/default/templates/users.html:32 -msgid "by username" -msgstr "nach Benutzernamen" +#: skins/default/templates/authopenid/signin.html:181 +#, fuzzy +msgid "Still have trouble signing in?" +msgstr "Sie haben noch Fragen?" -#: skins/default/templates/users.html:38 -#, python-format -msgid "users matching query %(suser)s:" -msgstr "Benutzer mit Wort %(suser)s" +#: skins/default/templates/authopenid/signin.html:186 +msgid "Please, enter your email address below and obtain a new key" +msgstr "" -#: skins/default/templates/users.html:41 -msgid "Nothing found." -msgstr "Nichts gefunden." +#: skins/default/templates/authopenid/signin.html:188 +msgid "Please, enter your email address below to recover your account" +msgstr "" -#: skins/default/templates/users_questions.html:9 -#: skins/default/templates/users_questions.html:17 -#, fuzzy, python-format -msgid "this questions was selected as favorite %(cnt)s time" -msgid_plural "this questions was selected as favorite %(cnt)s times" -msgstr[0] "Diese Frage wurde als Favorit markiert" -msgstr[1] "Diese Frage wurde als Favorit markiert" +#: skins/default/templates/authopenid/signin.html:191 +#, fuzzy +msgid "recover your account via email" +msgstr "Legen Sie ein neues Passwort für Ihren Zugang fest." -#: skins/default/templates/users_questions.html:10 -msgid "thumb-up on" -msgstr "+1 an" +#: skins/default/templates/authopenid/signin.html:202 +msgid "Send a new recovery key" +msgstr "" -#: skins/default/templates/users_questions.html:18 -msgid "thumb-up off" -msgstr "+1 aus" +#: skins/default/templates/authopenid/signin.html:204 +#, fuzzy +msgid "Recover your account via email" +msgstr "Legen Sie ein neues Passwort für Ihren Zugang fest." -#: skins/default/templates/authopenid/changeemail.html:2 -#: skins/default/templates/authopenid/changeemail.html:8 -#: skins/default/templates/authopenid/changeemail.html:36 -msgid "Change email" -msgstr "E-Mail-Adresse ändern" +#: skins/default/templates/authopenid/signin.html:216 +msgid "Why use OpenID?" +msgstr "Warum OpenID verwenden?" -#: skins/default/templates/authopenid/changeemail.html:10 -msgid "Save your email address" -msgstr "E-Mail-Adresse speichern" +#: skins/default/templates/authopenid/signin.html:219 +msgid "with openid it is easier" +msgstr "Mit OpenID müssen Sie keinen neuen Account anlegen." -#: skins/default/templates/authopenid/changeemail.html:15 -#, python-format -msgid "change %(email)s info" +#: skins/default/templates/authopenid/signin.html:222 +msgid "reuse openid" msgstr "" -"Geben Sie Ihre E-Mail-Adresse in untenstehende " -"Box ein falls Sie sie für Ihre Benachrichtigungs-E-Mails ändern " -"möchten.
Im Moment verwenden Sie %(email)s" +"Sie können sich ohne Bedenken mit dem selben OpenID-Zugang auf unbegrenzt " +"vielen Webseiten einloggen." -#: skins/default/templates/authopenid/changeemail.html:17 -#, python-format -msgid "here is why email is required, see %(gravatar_faq_url)s" +#: skins/default/templates/authopenid/signin.html:225 +msgid "openid is widely adopted" msgstr "" -"Bitte geben Sie unten Ihre E-Mail-Adresse ein. Eine gültige E-Mail-Adresse wird für dieses Forum benötigt. Falls Sie " -"möchten, können Sie Benachrichtigungsmails zu Sie besonders " -"interessierenden Fragen, oder Neuzugängen abonnieren. Ihre E-Mail-Adresse " -"wird auch benutzt, um ein individuelles sogenanntes Gravatar-Bild für Ihr Konto " -"anzuzeigen. E-Mail-Adressen werden niemals öffentlich angezeigt." +"Es gibt mehr als 160 Millionen OpenID-Zugänge und mehr als 10.000 Seiten, " +"die OpenID akzeptieren." -#: skins/default/templates/authopenid/changeemail.html:29 -msgid "Your new Email" +#: skins/default/templates/authopenid/signin.html:228 +msgid "openid is supported open standard" msgstr "" -"Ihre neue E-Mail-Adresse: (wirdnicht " -"öffentlich angezeigt; muß eine gültige Adresse sein)" +"OpenID basiert auf einem international anerkannten Standard und wird von " +"zahlreichen großen Firmen unterstützt." -#: skins/default/templates/authopenid/changeemail.html:29 -msgid "Your Email" -msgstr "" -"Ihre E-Mail-Adresse (wirdnicht öffentlich " -"angezeigt; muß eine gültige Adresse sein)" +#: skins/default/templates/authopenid/signin.html:232 +msgid "Find out more" +msgstr "Mehr Informationen" -#: skins/default/templates/authopenid/changeemail.html:36 -msgid "Save Email" -msgstr "E-Mail-Adresse speichern" +#: skins/default/templates/authopenid/signin.html:233 +msgid "Get OpenID" +msgstr "Einen OpenID-Zugang anlegen" -#: skins/default/templates/authopenid/changeemail.html:45 -msgid "Validate email" -msgstr "E-Mail-Adresse überprüfen" +#: skins/default/templates/authopenid/signup_with_password.html:4 +msgid "Signup" +msgstr "Registrieren" -#: skins/default/templates/authopenid/changeemail.html:48 -#, python-format -msgid "validate %(email)s info or go to %(change_email_url)s" -msgstr "" -"Eine E-Mail mit einem Bestätigungslink wurde an %" -"(email)s versandt. Bitte klicken Sie auf den Link in der E-" -"Mail 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 andere E-Mail-Adresse verwenden möchten, " -"können Sie sie erneut ändern." +#: skins/default/templates/authopenid/signup_with_password.html:10 +#, fuzzy +msgid "Please register by clicking on any of the icons below" +msgstr "Bitte wählen Sie eine der oben genannten Optionen" -#: skins/default/templates/authopenid/changeemail.html:52 -msgid "Email not changed" -msgstr "E-Mail-Adresse nicht geändert" +#: skins/default/templates/authopenid/signup_with_password.html:23 +#, fuzzy +msgid "or create a new user name and password here" +msgstr "Benutzernamen und Passwort anlegen" -#: skins/default/templates/authopenid/changeemail.html:55 -#, python-format -msgid "old %(email)s kept, if you like go to %(change_email_url)s" -msgstr "" -"Ihre E-Mail-Adresse %(email)s wurde nicht " -"geändert. Falls Sie sie später ändern möchten, können Sie dieses " -"jederzeit in Ihrem Benutzerprofil oder im vorigen Formular tun." +#: skins/default/templates/authopenid/signup_with_password.html:25 +msgid "Create login name and password" +msgstr "Benutzernamen und Passwort anlegen" -#: skins/default/templates/authopenid/changeemail.html:59 -msgid "Email changed" -msgstr "E-Mail-Adresse geändert" +#: skins/default/templates/authopenid/signup_with_password.html:26 +msgid "Traditional signup info" +msgstr "" +"Falls Sie möchten, können Sie auch einen " +"Benutzernamen und ein Passwort hier im Forum anmelden. Wir unterstützen aber " +"auch OpenID, 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/default/templates/authopenid/changeemail.html:62 -#, python-format -msgid "your current %(email)s can be used for this" +#: skins/default/templates/authopenid/signup_with_password.html:44 +msgid "" +"Please read and type in the two words below to help us prevent automated " +"account creation." msgstr "" -"Ihre E-Mail-Adresse wurde auf %(email)s verändert. Sie erhalten alle eventuell abonnierten E-Mail-Benachrichtigungen nun " -"an diese Adresse." +"Bitte geben Sie zum Schutz vor Spam die untenstehenden zwei Wörter ein." -#: skins/default/templates/authopenid/changeemail.html:66 -msgid "Email verified" -msgstr "E-Mail-Adresse bestätigt" +#: skins/default/templates/authopenid/signup_with_password.html:47 +msgid "Create Account" +msgstr "Zugang anlegen" -#: skins/default/templates/authopenid/changeemail.html:69 -msgid "thanks for verifying email" -msgstr "" -"Vielen Dank für die Bestätigung Ihrer E-Mail-" -"Adresse! Sie können jetzt Fragen stellen und " -"beantworten. Sie können bei interessanten Fragen auch " -"eine E-Mail-Benachrichtigung abonnieren, die Sie einmal " -"täglich oder seltener über neue Entwicklungen wie Antworten und Kommentare " -"informiert." +#: skins/default/templates/authopenid/signup_with_password.html:49 +msgid "or" +msgstr "oder" -#: skins/default/templates/authopenid/changeemail.html:73 -msgid "email key not sent" -msgstr "Bestätigungs-E-Mail nicht versandt" +#: skins/default/templates/authopenid/signup_with_password.html:50 +msgid "return to OpenID login" +msgstr "zum OpenID-Login zurückkehren" -#: skins/default/templates/authopenid/changeemail.html:76 -#, python-format -msgid "email key not sent %(email)s change email here %(change_link)s" +#: skins/default/templates/avatar/add.html:3 +#, fuzzy +msgid "add avatar" +msgstr "Wie verändert man sein Profilbild (Avatar) und was ist Gravatar?" + +#: skins/default/templates/avatar/add.html:5 +#, fuzzy +msgid "Change avatar" +msgstr "Tags ändern" + +#: skins/default/templates/avatar/add.html:6 +#: skins/default/templates/avatar/change.html:7 +#, fuzzy +msgid "Your current avatar: " +msgstr "Ihre Zugangsdaten:" + +#: skins/default/templates/avatar/add.html:9 +#: skins/default/templates/avatar/change.html:11 +msgid "You haven't uploaded an avatar yet. Please upload one now." msgstr "" -"Ihre momentane E-Mail-Adresse %(email)s wurde " -"bereits bestätigt. Es wurde keine neue Bestätigungsmail versandt. Sie " -"können Ihre E-Mail-Adresse bei Bedarf ändern." -#: skins/default/templates/authopenid/complete.html:21 -#: skins/default/templates/authopenid/complete.html:24 +#: skins/default/templates/avatar/add.html:13 +msgid "Upload New Image" +msgstr "" + +#: skins/default/templates/avatar/change.html:4 #, fuzzy -msgid "Registration" -msgstr "Registrieren" +msgid "change avatar" +msgstr "Veränderungen gespeichert" -#: skins/default/templates/authopenid/complete.html:29 -#, python-format -msgid "register new %(provider)s account info, see %(gravatar_faq_url)s" +#: skins/default/templates/avatar/change.html:17 +msgid "Choose new Default" msgstr "" -"

Sie sind zum ersten Mal mit Ihrem OpenID-" -"Zugang von %(provider)s eingeloggt. Bitte geben Sie einen " -"Benutzernamen ein und hinterlegen Sie Ihre E-Mail-" -"Adresse. Die E-Mail-Adresse ermöglicht Benachrichtigungen " -"bei besonders interessanten Fragen und wird als Grundlage für Ihr " -"Individuelles Benutzerbild, den Gravatar, benutzt.

" -#: skins/default/templates/authopenid/complete.html:32 -#, 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" -" " +#: skins/default/templates/avatar/change.html:22 +#, fuzzy +msgid "Upload" +msgstr "upload/" + +#: skins/default/templates/avatar/confirm_delete.html:3 +#, fuzzy +msgid "delete avatar" +msgstr "Antwort gelöscht" + +#: skins/default/templates/avatar/confirm_delete.html:5 +msgid "Please select the avatars that you would like to delete." msgstr "" -"

Der Benutzername %(username)s ist leider nicht " -"mehr frei.

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.

" -#: skins/default/templates/authopenid/complete.html:36 +#: skins/default/templates/avatar/confirm_delete.html:7 #, python-format msgid "" -"register new external %(provider)s account info, see %(gravatar_faq_url)s" +"You have no avatars to delete. Please upload one now." msgstr "" -"

Sie sind zum ersten Mal mit Ihrem OpenID-" -"Zugang von %(provider)s eingeloggt. Sie können einen " -"Benutzernamen eingeben oder Ihren Benutzernamen bei %" -"(provider)s verwenden. Bitte hinterlegen Sie auch Ihre E-Mail-" -"Adresse. Die E-Mail-Adresse ermöglicht Benachrichtigungen " -"bei besonders interessanten Fragen und wird als Grundlage für Ihr " -"Individuelles Benutzerbild, den Gravatar, benutzt.

" -#: skins/default/templates/authopenid/complete.html:39 -#, python-format -msgid "register new Facebook connect account info, see %(gravatar_faq_url)s" +#: skins/default/templates/avatar/confirm_delete.html:13 +#, fuzzy +msgid "Delete These" +msgstr "Antwort gelöscht" + +#: skins/default/templates/blocks/answer_edit_tips.html:3 +msgid "answer tips" +msgstr "Tipps" + +#: skins/default/templates/blocks/answer_edit_tips.html:6 +msgid "please make your answer relevant to this community" msgstr "" -"

Sie sind hier zum ersten Mal mit Ihrem " -"Facebook-Login. Bitte legen Sie einen Benutzernamen " -"fest und hinterlegen Sie Ihre E-Mail-Adresse. Die E-Mail-" -"Adresse ermöglicht Benachrichtigungen bei besonders interessanten " -"Fragen und wird als Grundlage für Ihr Individuelles Benutzerbild, " -"den Gravatar, benutzt." +"Bitte formulieren Sie Ihre Frage so, daß sie für dieses Forum relevant ist." -#: skins/default/templates/authopenid/complete.html:42 -msgid "This account already exists, please use another." +#: skins/default/templates/blocks/answer_edit_tips.html:9 +msgid "try to give an answer, rather than engage into a discussion" msgstr "" -"Dieser Benutzername existiert leider bereits, bitte wählen Sie einen anderen." +"Bitte versuchen Sie, eine konkrete Antwort zu geben, und nicht in eine " +"Diskussion einzusteigen." -#: skins/default/templates/authopenid/complete.html:61 -msgid "Screen name label" -msgstr "Benutzername (wird öffentlich angezeigt)" +#: skins/default/templates/blocks/answer_edit_tips.html:12 +msgid "please try to provide details" +msgstr "Bitte versuchen Sie, Details einzubringen." -#: skins/default/templates/authopenid/complete.html:68 -msgid "Email address label" -msgstr "" -"E-Mail-Adresse (wird nicht öffentlich " -"angezeigt; muß gültig sein)" +#: skins/default/templates/blocks/answer_edit_tips.html:15 +#: skins/default/templates/blocks/question_edit_tips.html:11 +msgid "be clear and concise" +msgstr "Seien Sie klar und deutlich." -#: skins/default/templates/authopenid/complete.html:74 -#: skins/default/templates/authopenid/signup_with_password.html:17 -msgid "receive updates motivational blurb" -msgstr "" -"Benachrichtigungen per E-Mail abonnieren Das Abonnieren von " -"E-Mail-Benachrichtigungen ist freiwillig.
Das Forum versenden bis zu " -"einer Benachrichtigung pro Woche - nur wenn es auch " -"wirklich Neues gibt.
Sie können die Benachrichtigungshäufigkeit " -"jederzeit in Ihrem Benutzerprofil anpassen." +#: skins/default/templates/blocks/answer_edit_tips.html:19 +#: skins/default/templates/blocks/question_edit_tips.html:15 +msgid "see frequently asked questions" +msgstr "Siehe die häufig gestellten Fragen" -#: skins/default/templates/authopenid/complete.html:78 -#: skins/default/templates/authopenid/signup_with_password.html:21 -msgid "please select one of the options above" -msgstr "Bitte wählen Sie eine der oben genannten Optionen" +#: skins/default/templates/blocks/answer_edit_tips.html:25 +#: skins/default/templates/blocks/question_edit_tips.html:20 +msgid "Markdown tips" +msgstr "Tipps zu Markdown" -#: skins/default/templates/authopenid/complete.html:81 -msgid "Tag filter tool will be your right panel, once you log in." +#: skins/default/templates/blocks/answer_edit_tips.html:29 +#: skins/default/templates/blocks/question_edit_tips.html:24 +msgid "*italic*" msgstr "" -"Das Tag-Filterwerkzeug finden Sie nach dem Einloggen in der rechten Spalte." -#: skins/default/templates/authopenid/complete.html:82 -msgid "create account" -msgstr "Zugang anlegen" +#: skins/default/templates/blocks/answer_edit_tips.html:32 +#: skins/default/templates/blocks/question_edit_tips.html:27 +msgid "**bold**" +msgstr "" -#: skins/default/templates/authopenid/confirm_email.txt:1 -msgid "Thank you for registering at our Q&A forum!" -msgstr "Vielen Dank für Ihre Registrierung!" +#: skins/default/templates/blocks/answer_edit_tips.html:36 +#: skins/default/templates/blocks/question_edit_tips.html:31 +#, fuzzy +msgid "*italic* or _italic_" +msgstr "*kursiv* oder __kursiv__" -#: skins/default/templates/authopenid/confirm_email.txt:3 -msgid "Your account details are:" -msgstr "Ihre Zugangsdaten:" +#: skins/default/templates/blocks/answer_edit_tips.html:39 +#: skins/default/templates/blocks/question_edit_tips.html:34 +msgid "**bold** or __bold__" +msgstr "**fett** oder __fett__" -#: skins/default/templates/authopenid/confirm_email.txt:5 -msgid "Username:" -msgstr "Benutzername:" +#: skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/question_edit_tips.html:38 +msgid "link" +msgstr "Link" -#: skins/default/templates/authopenid/confirm_email.txt:6 -msgid "Password:" -msgstr "Passwort:" +#: skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:38 +#: skins/default/templates/blocks/question_edit_tips.html:43 +msgid "text" +msgstr "Text" -#: skins/default/templates/authopenid/confirm_email.txt:8 -msgid "Please sign in here:" -msgstr "Bitte hier anmelden:" +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:43 +msgid "image" +msgstr "Bild" -#: skins/default/templates/authopenid/confirm_email.txt:11 -#: skins/default/templates/authopenid/email_validation.txt:13 -msgid "" -"Sincerely,\n" -"Forum Administrator" -msgstr "Ihr Forumsteam" +#: skins/default/templates/blocks/answer_edit_tips.html:51 +#: skins/default/templates/blocks/question_edit_tips.html:47 +msgid "numbered list:" +msgstr "Nummerierte Liste:" -#: skins/default/templates/authopenid/email_validation.txt:1 -msgid "Greetings from the Q&A forum" -msgstr "Grüße vom Forumsteam" +#: skins/default/templates/blocks/answer_edit_tips.html:56 +#: skins/default/templates/blocks/question_edit_tips.html:52 +msgid "basic HTML tags are also supported" +msgstr "Grundlegende HTML-Tags werden ebenfalls unterstützt." -#: skins/default/templates/authopenid/email_validation.txt:3 -msgid "To make use of the Forum, please follow the link below:" -msgstr "Um das Forum zu benutzen, klicken Sie auf untenstehenden Link:" +#: skins/default/templates/blocks/answer_edit_tips.html:60 +#: skins/default/templates/blocks/question_edit_tips.html:56 +msgid "learn more about Markdown" +msgstr "Mehr Informationen über Markdown" -#: skins/default/templates/authopenid/email_validation.txt:7 -msgid "Following the link above will help us verify your email address." +#: skins/default/templates/blocks/ask_form.html:6 +msgid "login to post question info" msgstr "" -"Die Bestätigung der E-Mail-Adresse durch den Link hilft uns, Spam zu " -"vermeiden." +"Sie können Ihre Frage formulieren, ohne sich " +"vorher anmelden zu müssen. 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." -#: skins/default/templates/authopenid/email_validation.txt:9 +#: skins/default/templates/blocks/ask_form.html:10 +#, python-format 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" +"must have valid %(email)s to post, \n" +" see %(email_validation_faq_url)s\n" +" " 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." +"Ihre E-Mail-Adresse %(email)s wurde noch nicht " +"bestätigt. Um Beiträge veröffentlichen zu können, müssen Sie Ihre E-" +"Mail-Adresse bestätigen. Mehr infos " +"hier.
Sie können Ihren Beitrag speichern und die Bestätigung danach " +"durchführen - Ihr Beitrag wird bis dahin gespeichert." -#: skins/default/templates/authopenid/signin.html:3 -msgid "User login" -msgstr "Benutzerlogin" +#: skins/default/templates/blocks/ask_form.html:34 +msgid "Login/signup to post your question" +msgstr "Bitte einloggen, um Frage zu veröffentlichen" -#: skins/default/templates/authopenid/signin.html:11 -#, fuzzy, python-format +#: skins/default/templates/blocks/ask_form.html:36 +msgid "Ask your question" +msgstr "Stellen Sie Ihre Frage" + +#: skins/default/templates/blocks/bottom_scripts.html:7 +#, python-format msgid "" -"\n" -" Your answer to %(title)s %(summary)s will be posted once you log in\n" -" " +"Please note: %(app_name)s requires javascript to work properly, please " +"enable javascript in your browser, here is how" msgstr "" -"\n" -"Ihre Antwort auf \"%(title)s %(summary)s...\" wurde gespeichert " -"und wird veröffentlicht, sobald Sie sich einloggen." -#: skins/default/templates/authopenid/signin.html:18 +#: skins/default/templates/blocks/editor_data.html:5 +#, 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/blocks/editor_data.html:7 +#, 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/blocks/editor_data.html:8 #, fuzzy, python-format msgid "" -"Your question \n" -" %(title)s %(summary)s will be posted once you log in\n" -" " +"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/blocks/footer.html:4 +#: skins/default/templates/blocks/header_meta_links.html:12 +msgid "about" +msgstr "Über uns" + +#: skins/default/templates/blocks/footer.html:6 +msgid "privacy policy" +msgstr "Datenschutzrichtlinien" + +#: skins/default/templates/blocks/footer.html:15 +msgid "give feedback" +msgstr "Feedback geben" + +#: skins/default/templates/blocks/footer.html:41 +#, python-format +msgid "Content on this site is licensed under a %(license)s" msgstr "" -"Ihre Frage \"%(title)s " -"%(summary)s...\" wurde gespeichert und wird " -"veröffentlicht, sobald Sie sich einloggen." -#: skins/default/templates/authopenid/signin.html:25 -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." +#: skins/default/templates/blocks/header.html:8 +msgid "back to home page" +msgstr "Zurück zur Startseite" + +#: skins/default/templates/blocks/header.html:9 +#, python-format +msgid "%(site)s logo" msgstr "" -#: skins/default/templates/authopenid/signin.html:28 -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." +#: skins/default/templates/blocks/header.html:20 +msgid "questions" +msgstr "Fragen" + +#: skins/default/templates/blocks/header.html:30 +msgid "users" +msgstr "Benutzer" + +#: skins/default/templates/blocks/header.html:35 +msgid "badges" +msgstr "Auszeichnungen" + +#: skins/default/templates/blocks/header.html:40 +msgid "ask a question" +msgstr "Frage stellen" + +#: skins/default/templates/blocks/header_meta_links.html:8 +msgid "logout" +msgstr "Ausloggen" + +#: skins/default/templates/blocks/header_meta_links.html:10 +msgid "login" +msgstr "Einloggen" + +#: skins/default/templates/blocks/header_meta_links.html:15 +#, fuzzy +msgid "settings" +msgstr "die Tag-Beschränkung entfernen" + +#: skins/default/templates/blocks/input_bar.html:34 +msgid "search" +msgstr "Suche" + +#: skins/default/templates/blocks/question_edit_tips.html:3 +msgid "question tips" +msgstr "Tipps für Fragen" + +#: skins/default/templates/blocks/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/blocks/question_edit_tips.html:8 +msgid "please try provide enough details" +msgstr "Bitte erwähnen Sie in Ihrer Frage genügend Details." + +#: skins/default/templates/blocks/tag_selector.html:4 +msgid "Interesting tags" +msgstr "Tags, die mich interessieren" + +#: skins/default/templates/blocks/tag_selector.html:18 +#: skins/default/templates/blocks/tag_selector.html:34 +#: skins/default/templates/user_profile/user_moderate.html:40 +msgid "Add" +msgstr "Hinzufügen" + +#: skins/default/templates/blocks/tag_selector.html:20 +msgid "Ignored tags" +msgstr "Ignorierte Tags" + +#: skins/default/templates/blocks/tag_selector.html:36 +#, fuzzy +msgid "Display tag filter" +msgstr "E-Mail-Tag-Filter festlegen" + +#: skins/default/templates/main_page/content.html:13 +msgid "Did not find what you were looking for?" +msgstr "Sie haben nicht gefunden, wonach Sie gesucht haben?" + +#: skins/default/templates/main_page/content.html:14 +msgid "Please, post your question!" +msgstr "Bitte stellen Sie Ihre Frage!" + +#: skins/default/templates/main_page/headline.html:7 +msgid "subscribe to the questions feed" +msgstr "Fragen-RSS-Feed abonnieren" + +#: skins/default/templates/main_page/headline.html:8 +msgid "rss feed" msgstr "" -#: skins/default/templates/authopenid/signin.html:30 -msgid "" -"Please add a more permanent login method by clicking one of the icons below, " -"to avoid logging in via email each time." +#: skins/default/templates/main_page/headline.html:12 views/readers.py:131 +#, 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" + +#: skins/default/templates/main_page/headline.html:14 views/readers.py:139 +#, fuzzy, python-format +msgid "%(q_num)s question" +msgid_plural "%(q_num)s questions" +msgstr[0] "%(q_num)s Frage" +msgstr[1] "%(q_num)s Fragen" + +#: skins/default/templates/main_page/headline.html:17 +#, python-format +msgid "with %(author_name)s's contributions" +msgstr "mit Beiträgen von %(author_name)s" + +#: skins/default/templates/main_page/headline.html:28 +msgid "Search tips:" +msgstr "Suchtipps:" + +#: skins/default/templates/main_page/headline.html:31 +msgid "reset author" +msgstr "Autor zurücksetzen" + +#: skins/default/templates/main_page/headline.html:33 +#: skins/default/templates/main_page/headline.html:36 +#: 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:34 +msgid "reset tags" +msgstr "Tags zurücksetzen" + +#: skins/default/templates/main_page/headline.html:37 +#: skins/default/templates/main_page/headline.html:40 +msgid "start over" +msgstr "Von vorn beginnen" + +#: skins/default/templates/main_page/headline.html:42 +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/authopenid/signin.html:34 -msgid "" -"Click on one of the icons below to add a new login method or re-validate an " -"existing one." +#: skins/default/templates/main_page/headline.html:45 +msgid "Search tip:" +msgstr "Suchtipp:" + +#: skins/default/templates/main_page/headline.html:45 +msgid "add tags and a query to focus your search" msgstr "" +"Tags und eine Suchabfrage hinzufügen, um genauere Suchergebnisse zu erzielen" -#: skins/default/templates/authopenid/signin.html:36 -msgid "" -"You don't have a method to log in right now, please add one or more by " -"clicking any of the icons below." +#: skins/default/templates/main_page/nothing_found.html:4 +msgid "There are no unanswered questions here" +msgstr "Es gibt hier keine unbeantworteten Fragen" + +#: skins/default/templates/main_page/nothing_found.html:7 +#, fuzzy +msgid "No questions here. " +msgstr "Keine Favoriten-Fragen." + +#: skins/default/templates/main_page/nothing_found.html:8 +#, fuzzy +msgid "Please star (bookmark) some questions or follow some users." msgstr "" +"Bitte fügen Sie Fragen, die Ihnen besonders gut gefallen, zu Ihrer " +"Favoritenliste hinzu." -#: skins/default/templates/authopenid/signin.html:39 -msgid "" -"Please check your email and visit the enclosed link to re-connect to your " -"account" +#: skins/default/templates/main_page/nothing_found.html:13 +msgid "You can expand your search by " +msgstr "Sie können Ihre Suche erweitern, indem Sie" + +#: skins/default/templates/main_page/nothing_found.html:16 +msgid "resetting author" +msgstr "die Autorenbeschränkung entfernen" + +#: skins/default/templates/main_page/nothing_found.html:19 +msgid "resetting tags" +msgstr "die Tag-Beschränkung entfernen" + +#: skins/default/templates/main_page/nothing_found.html:22 +#: skins/default/templates/main_page/nothing_found.html:25 +msgid "starting over" +msgstr "ganz von Vorne beginnen" + +#: skins/default/templates/main_page/nothing_found.html:30 +msgid "Please always feel free to ask your question!" +msgstr "Sie können jederzeit gern Ihre eigene Frage stellen!" + +#: skins/default/templates/main_page/sidebar.html:8 +msgid "Contributors" +msgstr "Beitragende" + +#: skins/default/templates/main_page/sidebar.html:25 +msgid "Related tags" +msgstr "Tags" + +#: skins/default/templates/main_page/tab_bar.html:5 +msgid "In:" +msgstr "In:" + +#: skins/default/templates/main_page/tab_bar.html:14 +msgid "see unanswered questions" +msgstr "Unbeantwortete Fragen anzeigen" + +#: skins/default/templates/main_page/tab_bar.html:20 +#, fuzzy +msgid "see your followed questions" +msgstr "Favoritenliste anzeigen" + +#: skins/default/templates/main_page/tab_bar.html:21 +msgid "followed" msgstr "" -#: skins/default/templates/authopenid/signin.html:86 -msgid "Please enter your user name, then sign in" +#: skins/default/templates/main_page/tab_bar.html:25 +msgid "Sort by:" +msgstr "Sortieren nach:" + +#: skins/default/templates/user_profile/user.html:13 +#, fuzzy, python-format +msgid "%(username)s's profile" +msgstr "Benutzerprofil" + +#: skins/default/templates/user_profile/user_edit.html:4 +msgid "Edit user profile" +msgstr "Benutzerprofil bearbeiten" + +#: skins/default/templates/user_profile/user_edit.html:7 +msgid "edit profile" +msgstr "Profil bearbeiten" + +#: skins/default/templates/user_profile/user_edit.html:17 +#: skins/default/templates/user_profile/user_info.html:15 +msgid "change picture" +msgstr "Bild ändern" + +#: skins/default/templates/user_profile/user_edit.html:20 +msgid "Registered user" +msgstr "Registrierter Benutzer" + +#: skins/default/templates/user_profile/user_edit.html:27 +msgid "Screen Name" +msgstr "Nickname" + +#: skins/default/templates/user_profile/user_edit.html:83 +#: skins/default/templates/user_profile/user_email_subscriptions.html:21 +msgid "Update" +msgstr "Update" + +#: skins/default/templates/user_profile/user_email_subscriptions.html:4 +#: skins/default/templates/user_profile/user_tabs.html:42 +#, fuzzy +msgid "subscriptions" +msgstr "E-Mail-Abonnements" + +#: skins/default/templates/user_profile/user_email_subscriptions.html:7 +msgid "Email subscription settings" +msgstr "E-Mail-Abonnementeinstellungen" + +#: skins/default/templates/user_profile/user_email_subscriptions.html:8 +msgid "email subscription settings info" msgstr "" +"Häufigkeit von E-Mail-Benachrichtigungen " +"einstellen Abonnieren Sie Benachrichtigungen über Neuigkeiten in " +"Fragen, die Sie interessieren. Falls Sie keine E-Mails erhalten möchten - " +"wählen Sie \"Keine E-Mail\".
Benachrichtigungen werden nur versandt, " +"wenn es neues in der betreffenden Frage gibt." -#: skins/default/templates/authopenid/signin.html:87 -#: skins/default/templates/authopenid/signin.html:109 +#: 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_favorites.html:4 +#: skins/default/templates/user_profile/user_tabs.html:27 #, fuzzy -msgid "(or select another login method above)" -msgstr "Bitte wählen Sie eine der oben genannten Optionen" +msgid "followed questions" +msgstr "Alle Fragen" -#: skins/default/templates/authopenid/signin.html:89 +#: skins/default/templates/user_profile/user_inbox.html:18 +#: skins/default/templates/user_profile/user_tabs.html:12 +msgid "inbox" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:34 #, fuzzy -msgid "Sign in" -msgstr "einloggen/" +msgid "Sections:" +msgstr "Fragen" + +#: skins/default/templates/user_profile/user_inbox.html:38 +#, python-format +msgid "forum responses (%(re_count)s)" +msgstr "" -#: skins/default/templates/authopenid/signin.html:107 +#: skins/default/templates/user_profile/user_inbox.html:43 +#, python-format +msgid "flagged items (%(flag_count)s)" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:49 #, fuzzy -msgid "Please enter your user name and password, then sign in" -msgstr "Bitte geben Sie Benutzernamen und Passwort ein." +msgid "select:" +msgstr "löschen" -#: skins/default/templates/authopenid/signin.html:111 -msgid "Login failed, please try again" +#: skins/default/templates/user_profile/user_inbox.html:51 +#, fuzzy +msgid "seen" +msgstr "Zuletzt gesehen" + +#: skins/default/templates/user_profile/user_inbox.html:52 +#, fuzzy +msgid "new" +msgstr "neueste" + +#: skins/default/templates/user_profile/user_inbox.html:53 +#, fuzzy +msgid "none" +msgstr "Bronze" + +#: skins/default/templates/user_profile/user_inbox.html:54 +#, fuzzy +msgid "mark as seen" +msgstr "Zuletzt gesehen" + +#: skins/default/templates/user_profile/user_inbox.html:55 +#, fuzzy +msgid "mark as new" +msgstr "als beste Antwort markiert" + +#: skins/default/templates/user_profile/user_inbox.html:56 +msgid "dismiss" msgstr "" -#: skins/default/templates/authopenid/signin.html:114 -msgid "Login name" -msgstr "Benutzername" +#: skins/default/templates/user_profile/user_info.html:19 +msgid "remove" +msgstr "" -#: skins/default/templates/authopenid/signin.html:118 -msgid "Password" -msgstr "Passwort" +#: skins/default/templates/user_profile/user_info.html:36 +msgid "update profile" +msgstr "Profil aktualisieren" -#: skins/default/templates/authopenid/signin.html:122 -msgid "Login" -msgstr "Login" +#: skins/default/templates/user_profile/user_info.html:40 +msgid "manage login methods" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:53 +msgid "real name" +msgstr "Realname" + +#: skins/default/templates/user_profile/user_info.html:58 +msgid "member for" +msgstr "Mitglied seit" + +#: skins/default/templates/user_profile/user_info.html:63 +msgid "last seen" +msgstr "Zuletzt gesehen" + +#: skins/default/templates/user_profile/user_info.html:69 +msgid "user website" +msgstr "Website" + +#: skins/default/templates/user_profile/user_info.html:75 +msgid "location" +msgstr "Ort" + +#: skins/default/templates/user_profile/user_info.html:82 +msgid "age" +msgstr "Alter" + +#: skins/default/templates/user_profile/user_info.html:83 +msgid "age unit" +msgstr "Jahre " + +#: skins/default/templates/user_profile/user_info.html:90 +msgid "todays unused votes" +msgstr "Ungenutzte Bewertungs-Stimmen heute" + +#: skins/default/templates/user_profile/user_info.html:91 +msgid "votes left" +msgstr "Stimmen übrig" + +#: skins/default/templates/user_profile/user_moderate.html:4 +#: skins/default/templates/user_profile/user_tabs.html:48 +#, fuzzy +msgid "moderation" +msgstr "Ort" + +#: skins/default/templates/user_profile/user_moderate.html:8 +#, python-format +msgid "%(username)s's current status is \"%(status)s\"" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:11 +msgid "User status changed" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:20 +#, fuzzy +msgid "Save" +msgstr "Überarbeitung speichern" + +#: skins/default/templates/user_profile/user_moderate.html:26 +#, python-format +msgid "Your current reputation is %(reputation)s points" +msgstr "" -#: skins/default/templates/authopenid/signin.html:129 -msgid "To change your password - please enter the new one twice, then submit" +#: skins/default/templates/user_profile/user_moderate.html:28 +#, python-format +msgid "User's current reputation is %(reputation)s points" msgstr "" -#: skins/default/templates/authopenid/signin.html:132 +#: skins/default/templates/user_profile/user_moderate.html:32 #, fuzzy -msgid "New password" -msgstr "Neues Passwort angelegt" +msgid "User reputation changed" +msgstr "Punktestand des Benutzers" -#: skins/default/templates/authopenid/signin.html:137 -#, fuzzy -msgid "Please, retype" -msgstr "Bitte geben Sie Ihr Passwort erneut ein" +#: skins/default/templates/user_profile/user_moderate.html:39 +msgid "Subtract" +msgstr "" -#: skins/default/templates/authopenid/signin.html:156 -msgid "Here are your current login methods" +#: skins/default/templates/user_profile/user_moderate.html:44 +#, python-format +msgid "Send message to %(username)s" msgstr "" -#: skins/default/templates/authopenid/signin.html:160 -msgid "provider" +#: skins/default/templates/user_profile/user_moderate.html:45 +msgid "" +"An email will be sent to the user with 'reply-to' field set to your email " +"address. Please make sure that your address is entered correctly." msgstr "" -#: skins/default/templates/authopenid/signin.html:161 +#: skins/default/templates/user_profile/user_moderate.html:47 #, fuzzy -msgid "last used" -msgstr "Zuletzt gesehen" - -#: skins/default/templates/authopenid/signin.html:162 -msgid "delete, if you like" -msgstr "" +msgid "Message sent" +msgstr "nachrichten/" -#: skins/default/templates/authopenid/signin.html:187 +#: skins/default/templates/user_profile/user_moderate.html:65 #, fuzzy -msgid "Still have trouble signing in?" -msgstr "Sie haben noch Fragen?" +msgid "Send message" +msgstr "nachrichten/" -#: skins/default/templates/authopenid/signin.html:192 -msgid "Please, enter your email address below and obtain a new key" +#: skins/default/templates/user_profile/user_moderate.html:75 +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 "" -#: skins/default/templates/authopenid/signin.html:194 -msgid "Please, enter your email address below to recover your account" +#: skins/default/templates/user_profile/user_moderate.html:78 +msgid "" +"Moderators have the same privileges as administrators, but cannot add or " +"remove user status of 'moderator' or 'administrator'." +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:81 +msgid "'Approved' status means the same as regular user." msgstr "" -#: skins/default/templates/authopenid/signin.html:197 +#: skins/default/templates/user_profile/user_moderate.html:84 #, fuzzy -msgid "recover your account via email" -msgstr "Legen Sie ein neues Passwort für Ihren Zugang fest." +msgid "Suspended users can only edit or delete their own 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." -#: skins/default/templates/authopenid/signin.html:208 -msgid "Send a new recovery key" +#: skins/default/templates/user_profile/user_moderate.html:87 +msgid "" +"Blocked users can only login and send feedback to the site administrators." msgstr "" -#: skins/default/templates/authopenid/signin.html:210 -#, fuzzy -msgid "Recover your account via email" -msgstr "Legen Sie ein neues Passwort für Ihren Zugang fest." +#: skins/default/templates/user_profile/user_network.html:5 +#: skins/default/templates/user_profile/user_tabs.html:18 +msgid "network" +msgstr "" -#: skins/default/templates/authopenid/signin.html:221 -msgid "Why use OpenID?" -msgstr "Warum OpenID verwenden?" +#: 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[1] "" -#: skins/default/templates/authopenid/signin.html:224 -msgid "with openid it is easier" -msgstr "Mit OpenID müssen Sie keinen neuen Account anlegen." +#: 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[1] "" -#: skins/default/templates/authopenid/signin.html:227 -msgid "reuse openid" +#: skins/default/templates/user_profile/user_network.html:19 +msgid "" +"Your network is empty. Would you like to follow someone? - Just visit their " +"profiles and click \"follow\"" msgstr "" -"Sie können sich ohne Bedenken mit dem selben OpenID-Zugang auf unbegrenzt " -"vielen Webseiten einloggen." -#: skins/default/templates/authopenid/signin.html:230 -msgid "openid is widely adopted" +#: skins/default/templates/user_profile/user_network.html:21 +#, fuzzy, python-format +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:31 +#, fuzzy +msgid "activity" +msgstr "aktiv" + +#: skins/default/templates/user_profile/user_recent.html:21 +#: skins/default/templates/user_profile/user_recent.html:28 +msgid "source" msgstr "" -"Es gibt mehr als 160 Millionen OpenID-Zugänge und mehr als 10.000 Seiten, " -"die OpenID akzeptieren." -#: skins/default/templates/authopenid/signin.html:233 -msgid "openid is supported open standard" +#: skins/default/templates/user_profile/user_reputation.html:4 +msgid "karma" msgstr "" -"OpenID basiert auf einem international anerkannten Standard und wird von " -"zahlreichen großen Firmen unterstützt." -#: skins/default/templates/authopenid/signin.html:237 -msgid "Find out more" -msgstr "Mehr Informationen" +#: skins/default/templates/user_profile/user_reputation.html:11 +msgid "Your karma change log." +msgstr "Ihr Punkte-Logbuch." -#: skins/default/templates/authopenid/signin.html:238 -msgid "Get OpenID" -msgstr "Einen OpenID-Zugang anlegen" +#: skins/default/templates/user_profile/user_reputation.html:13 +#, python-format +msgid "%(user_name)s's karma change log" +msgstr "Punkte-Logbuch von %(user_name)s" -#: skins/default/templates/authopenid/signup_with_password.html:3 -msgid "Signup" -msgstr "Registrieren" +#: skins/default/templates/user_profile/user_stats.html:5 +#: skins/default/templates/user_profile/user_tabs.html:7 +msgid "overview" +msgstr "Übersicht" -#: skins/default/templates/authopenid/signup_with_password.html:6 -msgid "Create login name and password" -msgstr "Benutzernamen und Passwort anlegen" +#: skins/default/templates/user_profile/user_stats.html:11 +#, fuzzy, python-format +msgid "%(counter)s Question" +msgid_plural "%(counter)s Questions" +msgstr[0] "1 Frage" +msgstr[1] "%(counter)s Fragen" -#: skins/default/templates/authopenid/signup_with_password.html:8 -msgid "Traditional signup info" -msgstr "" -"Falls Sie möchten, können Sie auch einen " -"Benutzernamen und ein Passwort hier im Forum anmelden. Wir unterstützen aber " -"auch OpenID, 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/default/templates/user_profile/user_stats.html:16 +#, fuzzy, python-format +msgid "%(counter)s Answer" +msgid_plural "%(counter)s Answers" +msgstr[0] "1 Antwort" +msgstr[1] "%(counter)s Antworten" -#: skins/default/templates/authopenid/signup_with_password.html:24 -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/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/authopenid/signup_with_password.html:26 -msgid "Create Account" -msgstr "Zugang anlegen" +#: 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/authopenid/signup_with_password.html:27 -msgid "or" -msgstr "oder" +#: skins/default/templates/user_profile/user_stats.html:34 +#, fuzzy, python-format +msgid "(%(comment_count)s comment)" +msgid_plural "the answer has been commented %(comment_count)s times" +msgstr[0] "1 Kommentar" +msgstr[1] "%(comment_count)s mal kommentiert" -#: skins/default/templates/authopenid/signup_with_password.html:28 -msgid "return to OpenID login" -msgstr "zum OpenID-Login zurückkehren" +#: skins/default/templates/user_profile/user_stats.html:44 +#, fuzzy, python-format +msgid "%(cnt)s Vote" +msgid_plural "%(cnt)s Votes " +msgstr[0] "1 Bewertung" +msgstr[1] "%(cnt)s Bewertungen" -#: skins/default/templates/unused/email_base.html:8 -msgid "home" -msgstr "Home" +#: skins/default/templates/user_profile/user_stats.html:50 +msgid "thumb up" +msgstr "+1" -#: skins/default/templates/unused/notarobot.html:3 -msgid "Please prove that you are a Human Being" -msgstr "" -"Bitte bestätigen Sie kurz, daß Sie ein Mensch und kein automatisches " -"Programm sind." +#: skins/default/templates/user_profile/user_stats.html:51 +msgid "user has voted up this many times" +msgstr "Benutzer hat positiv bewertet" -#: skins/default/templates/unused/notarobot.html:10 -msgid "I am a Human Being" -msgstr "Ich bin ein Mensch" +#: skins/default/templates/user_profile/user_stats.html:54 +msgid "thumb down" +msgstr "-1" -#: skins/default/templates/unused/question_counter_widget.html:78 -msgid "Please decide if you like this question or not by voting" -msgstr "" -"Bitte entscheiden Sie durch Abstimmen, ob Sie diese Frage für gut halten." +#: skins/default/templates/user_profile/user_stats.html:55 +msgid "user voted down this many times" +msgstr "Benutzer hat negativ bewertet" -#: skins/default/templates/unused/question_counter_widget.html:84 -msgid "" -"\n" -" vote\n" -" " -msgid_plural "" -"\n" -" votes\n" -" " -msgstr[0] "" -"\n" -"Stimme" -msgstr[1] "" -"\n" -"Stimmen" +#: skins/default/templates/user_profile/user_stats.html:63 +#, fuzzy, python-format +msgid "%(counter)s Tag" +msgid_plural "%(counter)s Tags" +msgstr[0] "1 Tag" +msgstr[1] "%(counter)s Tags" -#: skins/default/templates/unused/question_counter_widget.html:93 -#: skins/default/templates/unused/question_list.html:23 -#: skins/default/templates/unused/questions_ajax.html:27 -msgid "this answer has been accepted to be correct" -msgstr "Die Antwort ist als korrekt akzeptiert worden" +#: skins/default/templates/user_profile/user_stats.html:99 +#, fuzzy, python-format +msgid "%(counter)s Badge" +msgid_plural "%(counter)s Badges" +msgstr[0] "1 Auszeichnung" +msgstr[1] "%(counter)s Auszeichnungen" -#: skins/default/templates/unused/question_counter_widget.html:99 -msgid "" -"\n" -" answer \n" -" " -msgid_plural "" -"\n" -" answers \n" -" " -msgstr[0] "" -"\n" -"Antwort" -msgstr[1] "" -"\n" -"Antworten" +#: skins/default/templates/user_profile/user_stats.html:122 +#, fuzzy +msgid "Answer to:" +msgstr "Tipps" -#: skins/default/templates/unused/question_counter_widget.html:111 -msgid "" -"\n" -" view\n" -" " -msgid_plural "" -"\n" -" views\n" -" " -msgstr[0] "" -"\n" -"Einblendung" -msgstr[1] "" -"\n" -"Einblendungen" +#: skins/default/templates/user_profile/user_tabs.html:5 +msgid "User profile" +msgstr "Benutzerprofil" -#: skins/default/templates/unused/question_list.html:15 -#, fuzzy -msgid "" -"\n" -" vote\n" -" " -msgid_plural "" -"\n" -" votes\n" -" " -msgstr[0] "" -"\n" -"Stimme" -msgstr[1] "" -"\n" -"Stimmen" +#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:772 +msgid "comments and answers to others questions" +msgstr "Kommentare und Antworten" -#: skins/default/templates/unused/question_list.html:35 -#, fuzzy -msgid "" -"\n" -" answer \n" -" " -msgid_plural "" -"\n" -" answers \n" -" " -msgstr[0] "" -"\n" -"Antwort" -msgstr[1] "" -"\n" -"Antworten" +#: skins/default/templates/user_profile/user_tabs.html:16 +msgid "followers and followed users" +msgstr "" + +#: skins/default/templates/user_profile/user_tabs.html:21 +msgid "graph of user reputation" +msgstr "Punkte-Statistik" -#: skins/default/templates/unused/question_list.html:47 +#: 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 "" -"\n" -" view\n" -" " -msgid_plural "" -"\n" -" views\n" -" " -msgstr[0] "" -"\n" -"Einblendung" -msgstr[1] "" -"\n" -"Einblendungen" +msgid "questions that user is following" +msgstr "Vom Benutzer als Favoriten markierte Fragen" -#: skins/default/templates/unused/question_summary_list_roll.html:13 -msgid "answers" -msgstr "Antworten" +#: skins/default/templates/user_profile/user_tabs.html:29 +msgid "recent activity" +msgstr "Jüngste Aktivitäten" -#: skins/default/templates/unused/question_summary_list_roll.html:14 -msgid "votes" -msgstr "Stimmen" +#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:847 +msgid "user vote record" +msgstr "Abstimmungsverhalten" -#: skins/default/templates/unused/question_summary_list_roll.html:15 -msgid "views" -msgstr "Einblendungen" +#: skins/default/templates/user_profile/user_tabs.html:36 +msgid "casted votes" +msgstr "abgegebene Stimmen" -#: templatetags/extra_filters.py:168 templatetags/extra_filters_jinja.py:234 -msgid "no items in counter" -msgstr "no" +#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:960 +msgid "email subscription settings" +msgstr "E-Mail-Abonnementeinstellungen" -#: templatetags/extra_tags.py:155 views/readers.py:187 -#, python-format -msgid "%(badge_count)d %(badge_level)s badge" -msgid_plural "%(badge_count)d %(badge_level)s badges" -msgstr[0] "" -msgstr[1] "" +#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:224 +#, fuzzy +msgid "moderate this user" +msgstr "Diesen Benutzer verwalten" + +#: skins/default/templates/user_profile/user_votes.html:4 +msgid "votes" +msgstr "Stimmen" -#: templatetags/extra_tags.py:178 templatetags/extra_tags.py:225 -#: templatetags/extra_tags.py:229 -msgid "reputation points" -msgstr "Punkte" +#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:240 +msgid "no items in counter" +msgstr "no" -#: templatetags/extra_tags.py:221 -#, python-format -msgid "your karma is %(reputation)s" +#: utils/decorators.py:90 views/commands.py:112 views/commands.py:132 +msgid "Oops, apologies - there was some error" msgstr "" -#: templatetags/extra_tags.py:237 +#: utils/decorators.py:109 #, fuzzy -msgid "badges: " -msgstr "Auszeichnungen" +msgid "Please login to post" +msgstr "Bitte einloggen" -#: utils/decorators.py:82 views/commands.py:132 views/commands.py:149 -msgid "Oops, apologies - there was some error" +#: utils/decorators.py:205 +msgid "Spam was detected on your post, sorry for if this is a mistake" msgstr "" #: utils/forms.py:32 @@ -5431,103 +6389,129 @@ msgstr "" "Die beiden eingegebenen Passwörter stimmen nicht überein, bitte erneut " "versuchen" -#: utils/functions.py:63 -#, python-format -msgid "on %(date)s" -msgstr "" - -#: utils/functions.py:67 +#: utils/functions.py:74 msgid "2 days ago" msgstr "vor 2 Tagen" -#: utils/functions.py:69 +#: utils/functions.py:76 msgid "yesterday" msgstr "gestern" -#: utils/functions.py:71 +#: utils/functions.py:79 #, 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:73 +#: utils/functions.py:85 #, 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" -#: views/commands.py:42 +#: views/avatar_views.py:99 +msgid "Successfully uploaded a new avatar." +msgstr "" + +#: views/avatar_views.py:140 +msgid "Successfully updated your avatar." +msgstr "" + +#: views/avatar_views.py:180 +msgid "Successfully deleted the requested avatars." +msgstr "" + +#: views/commands.py:39 msgid "anonymous users cannot vote" msgstr "Gastbenutzer können nicht abstimmen" -#: views/commands.py:62 +#: views/commands.py:59 msgid "Sorry you ran out of votes for today" msgstr "" -#: views/commands.py:68 +#: views/commands.py:65 #, python-format msgid "You have %(votes_left)s votes left for today" msgstr "" -#: views/commands.py:139 +#: views/commands.py:122 #, fuzzy msgid "Sorry, but anonymous users cannot access the inbox" msgstr "Gastbenutzer können nicht abstimmen" -#: views/commands.py:209 +#: views/commands.py:192 msgid "Sorry, something is not right here..." msgstr "" -#: views/commands.py:224 +#: views/commands.py:207 #, fuzzy msgid "Sorry, but anonymous users cannot accept answers" msgstr "Gastbenutzer können nicht abstimmen" -#: views/commands.py:305 +#: views/commands.py:288 #, python-format msgid "subscription saved, %(email)s needs validation, see %(details_url)s" msgstr "" "Ihre Abonnementeinstellungen wurden gespeichert, aber %(email)s muß noch " "bestätigt werden.
Details hier." -#: views/commands.py:313 +#: views/commands.py:295 msgid "email update frequency has been set to daily" msgstr "Die Häufigkeit der Benachrichtigungen wurde auf \"täglich\" gesetzt." -#: views/commands.py:371 +#: views/commands.py:400 +#, python-format +msgid "Tag subscription was canceled (undo)." +msgstr "" + +#: views/commands.py:409 +#, python-format +msgid "Please sign in to subscribe for: %(tags)s" +msgstr "" + +#: views/commands.py:542 #, fuzzy -msgid "Bad request" -msgstr "Keine echte Frage" +msgid "Please sign in to vote" +msgstr "Bitte hier anmelden:" -#: views/meta.py:58 +#: views/meta.py:83 msgid "Q&A forum feedback" msgstr "Forums-Feedback" -#: views/meta.py:59 +#: views/meta.py:84 msgid "Thanks for the feedback!" msgstr "Vielen Dank für Ihr Feedback!" -#: views/meta.py:69 +#: views/meta.py:92 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:432 +#: views/readers.py:177 +#, 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:441 #, fuzzy -msgid "Sorry, this question has been deleted and is no longer accessible" +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:217 +#: views/users.py:225 #, fuzzy msgid "moderate user" msgstr "benutzer-moderieren/" -#: views/users.py:401 +#: views/users.py:380 msgid "user profile" msgstr "Benutzerprofil" -#: views/users.py:402 +#: views/users.py:381 msgid "user profile overview" msgstr "Benutzerprofil-Übersicht" @@ -5539,87 +6523,567 @@ msgstr "Neueste Aktivitäten" msgid "profile - recent activity" msgstr "Profil - neueste Aktivitäten" -#: views/users.py:754 +#: views/users.py:773 msgid "profile - responses" msgstr "Profil - Reaktionen" -#: views/users.py:819 +#: views/users.py:848 msgid "profile - votes" msgstr "Abgegebene Bewertungen" -#: views/users.py:857 +#: views/users.py:883 msgid "user reputation in the community" msgstr "Punktestand des Benutzers" -#: views/users.py:858 +#: views/users.py:884 msgid "profile - user reputation" msgstr "Profil - Punktestand des Benutzers" -#: views/users.py:886 +#: views/users.py:911 msgid "users favorite questions" msgstr "Fragen in der Favoritenliste des Benutzers" -#: views/users.py:887 +#: views/users.py:912 msgid "profile - favorite questions" msgstr "Fragen in der Favoritenliste" -#: views/users.py:907 views/users.py:911 +#: views/users.py:932 views/users.py:936 msgid "changes saved" msgstr "Veränderungen gespeichert" -#: views/users.py:917 +#: views/users.py:942 msgid "email updates canceled" msgstr "E-Mail-Benachrichtigungen abgestellt" -#: views/users.py:929 +#: views/users.py:961 msgid "profile - email subscriptions" msgstr "E-Mail-Abonnements" -#: views/writers.py:56 +#: views/writers.py:58 #, fuzzy msgid "Sorry, anonymous users cannot upload files" msgstr "Gastbenutzer können nicht abstimmen" -#: views/writers.py:65 +#: views/writers.py:68 #, python-format msgid "allowed file types are '%(file_types)s'" msgstr "Erlaubte Dateitypen: '%(file_types)s'" -#: views/writers.py:88 +#: views/writers.py:91 #, 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:96 +#: views/writers.py:99 #, 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:452 +#: views/writers.py:191 +#, fuzzy +msgid "Please log in to ask questions" +msgstr "Sie können jederzeit gern Ihre eigene Frage stellen!" + +#: views/writers.py:492 +#, fuzzy +msgid "Please log in to answer questions" +msgstr "Unbeantwortete Fragen anzeigen" + +#: views/writers.py:598 #, python-format msgid "" "Sorry, you appear to be logged out and cannot post comments. Please sign in." msgstr "" -#: views/writers.py:497 +#: views/writers.py:646 #, fuzzy msgid "Sorry, anonymous users cannot edit comments" msgstr "Gastbenutzer können nicht abstimmen" -#: views/writers.py:505 +#: views/writers.py:654 #, python-format msgid "" "Sorry, you appear to be logged out and cannot delete comments. Please sign in." msgstr "" -#: views/writers.py:526 +#: views/writers.py:675 msgid "sorry, we seem to have some technical difficulties" msgstr "" +#~ msgid "community wiki" +#~ msgstr "Community Wiki" + +#~ msgid "Location" +#~ msgstr "Ort" + +#~ msgid "command/" +#~ msgstr "befehl/" + +#~ msgid "mark-tag/" +#~ msgstr "tag-markieren/" + +#~ msgid "interesting/" +#~ msgstr "interessant/" + +#~ msgid "ignored/" +#~ msgstr "ignoriert/" + +#~ msgid "unmark-tag/" +#~ msgstr "tag-entfernen/" + +#~ msgid "search/" +#~ msgstr "suche/" + +#, fuzzy +#~ msgid "Askbot" +#~ msgstr "Über" + +#~ msgid "allow only selected tags" +#~ msgstr "Nur ausgewählte Tags erlauben" + +#~ msgid "First time here? Check out the FAQ!" +#~ msgstr "Zum ersten Mal hier? Häufige Fragen lesen!" + +#~ msgid "newquestion/" +#~ msgstr "frage_stellen/" + +#~ msgid "newanswer/" +#~ msgstr "antworten/" + +#, fuzzy +#~ msgid "MyOpenid user name" +#~ msgstr "nach Benutzernamen" + +#~ msgid "Email verification subject line" +#~ msgstr "Bestätigung Ihrer E-Mail-Adresse" + +#~ msgid "disciplined" +#~ msgstr "diszipliniert" + +#~ msgid "Deleted own post with score of 3 or higher" +#~ msgstr "Eigenen Beitrag mit 3 oder mehr positiven Bewertungen gelöscht" + +#~ msgid "peer-pressure" +#~ msgstr "gruppenzwang" + +#~ msgid "nice-answer" +#~ msgstr "nette-antwort/" + +#~ msgid "nice-question" +#~ msgstr "nette-frage/" + +#~ msgid "pundit" +#~ msgstr "experte" + +#~ msgid "popular-question" +#~ msgstr "populaere-frage" + +#~ msgid "citizen-patrol" +#~ msgstr "engagierter-buerger" + +#~ msgid "cleanup" +#~ msgstr "putzaktion" + +#~ msgid "critic" +#~ msgstr "kritiker" + +#~ msgid "editor" +#~ msgstr "redakteur" + +#~ msgid "organizer" +#~ msgstr "Organisator" + +#~ msgid "scholar" +#~ msgstr "lernender" + +#~ msgid "student" +#~ msgstr "schueler" + +#~ msgid "supporter" +#~ msgstr "unterstuetzer" + +#~ msgid "teacher" +#~ msgstr "Suche" + +#~ msgid "Answered first question with at least one up vote" +#~ msgstr "" +#~ "Hat erste Frage mit mindestens einer positiven Bewertung beantwortet" + +#~ msgid "autobiographer" +#~ msgstr "autobiograph" + +#~ msgid "self-learner" +#~ msgstr "eigenstaendig-lernender" + +#~ msgid "great-answer" +#~ msgstr "sehr-gute-antwort" + +#~ msgid "Answer voted up 100 times" +#~ msgstr "Antwort wurde 100 Mal positiv bewertet" + +#~ msgid "great-question" +#~ msgstr "sehr-gute-frage" + +#~ msgid "Question voted up 100 times" +#~ msgstr "Frage wurde 100 Mal positiv bewertet" + +#~ msgid "stellar-question" +#~ msgstr "exzellente-frage" + +#~ msgid "Question favorited by 100 users" +#~ msgstr "Frage von 100 Benutzern in Favoritenliste aufgenommen" + +#~ msgid "famous-question" +#~ msgstr "beruehmte-frage" + +#~ msgid "Asked a question with 10,000 views" +#~ msgstr "Hat Frage mit 10.000 Einblendungen gestellt" + +#~ msgid "Alpha" +#~ msgstr "Alpha" + +#~ msgid "alpha" +#~ msgstr "alpha" + +#~ msgid "Actively participated in the private alpha" +#~ msgstr "Hat aktiv an der privaten Alphaphase des Forums teilgenommen" + +#~ msgid "good-answer" +#~ msgstr "gute-antwort" + +#~ msgid "Answer voted up 25 times" +#~ msgstr "Antwort wurde 25 Mal positiv bewertet" + +#~ msgid "good-question" +#~ msgstr "gute-frage" + +#~ msgid "Question voted up 25 times" +#~ msgstr "Frage wurde 25 Mal positiv bewertet" + +#~ msgid "favorite-question" +#~ msgstr "favoriten-frage" + +#~ msgid "civic-duty" +#~ msgstr "buergerpflicht" + +#~ msgid "Strunk & White" +#~ msgstr "Form und Grammatik" + +#~ msgid "strunk-and-white" +#~ msgstr "form-und-grammatik" + +#~ msgid "Generalist" +#~ msgstr "Generalist" + +#~ msgid "generalist" +#~ msgstr "generalist" + +#~ msgid "Active in many different tags" +#~ msgstr "In vielen verschiedenen Tags aktiv" + +#~ msgid "expert" +#~ msgstr "Experte" + +#~ msgid "Yearling" +#~ msgstr "Jahresring" + +#~ msgid "yearling" +#~ msgstr "jahresring" + +#~ msgid "Active member for a year" +#~ msgstr "Aktives Mitglied für ein Jahr" + +#~ msgid "notable-question" +#~ msgstr "bemerkenswerte-frage" + +#~ msgid "Asked a question with 2,500 views" +#~ msgstr "Hat eine Frage mit 2.500 Einblendungen gestellt" + +#~ msgid "enlightened" +#~ msgstr "hat-ahnung" + +#~ msgid "Beta" +#~ msgstr "Beta" + +#~ msgid "beta" +#~ msgstr "beta" + +#~ msgid "Actively participated in the private beta" +#~ msgstr "" +#~ "Hat aktiv in der nichtöffentlichen Beta-Phase des Forums teilgenommen" + +#~ msgid "guru" +#~ msgstr "guru" + +#~ msgid "Accepted answer and voted up 40 times" +#~ msgstr "Antwort akzeptiert und 40 Mal positiv bewertet" + +#~ msgid "necromancer" +#~ msgstr "totenbeschwoerer" + +#~ msgid "taxonomist" +#~ msgstr "tag-schoepfer" + +#~ msgid "About" +#~ msgstr "Über" + +#~ msgid "" +#~ "must have valid %(email)s to post, \n" +#~ " see %(email_validation_faq_url)s\n" +#~ " " +#~ msgstr "" +#~ "Ihre E-Mail-Adresse %(email)s wurde noch nicht " +#~ "bestätigt. Um Beiträge veröffentlichen zu können, müssen Sie Ihre " +#~ "E-Mail-Adresse bestätigen. Mehr " +#~ "infos hier.
Sie können Ihren Beitrag speichern und die Bestätigung " +#~ "danach durchführen - Ihr Beitrag wird bis dahin gespeichert." + +#~ msgid "how to validate email title" +#~ msgstr "Wie bestätigt man seine E-Mail-Adresse und warum?" + +#~ msgid "" +#~ "how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)" +#~ "s" +#~ msgstr "" +#~ "

Wie? Falls Sie soeben eine " +#~ "neue E-Mail-Adresse eingegeben haben oder Ihre bestehende verändert - " +#~ "prüfen Sie Ihr E-Mail-Postfach und klicken Sie auf den in der " +#~ "Bestätigungsmail enthaltenen Link.
Der Link enthält einen " +#~ "Schlüssel, der extra für Sie erzeugt wurde. Sie können auch . Bitte rufen Sie Ihre E-Mails dann erneut ab." +#~ "

Warum? Mit der E-Mail-" +#~ "Bestätigung wird sichergestellt, daß nur Sie in Ihrem " +#~ "Namen Beiträge verfassen können, und Spam minimiert wird." +#~ "
Sie können per E-Mail auch Benachrichtigungen für " +#~ "die Fragen abonnieren, die Sie am meisten interessieren. Mit einer E-Mail-" +#~ "Adresse können Sie über den Gravatar-Dienst auch ein persönliches Profilbild " +#~ "einstellen, das neben Ihrem Namen erscheint.

" + +#~ msgid "." +#~ msgstr "." + +#~ msgid "Sender is" +#~ msgstr "Der Absender ist" + +#~ msgid "Message body:" +#~ msgstr "Nachrichtentext:" + +#~ msgid "" +#~ "As a registered user you can login with your OpenID, log out of the site " +#~ "or permanently remove your account." +#~ msgstr "" +#~ "Der Klick auf Logout beendet Ihre Sitzung hier im Forum, " +#~ "aber nicht bei Ihrem OpenID-Anbietet.

Vergessen Sie nicht, sich " +#~ "auch bei Ihrem Anbieter auszuloggen, falls Sie sich an diesem Computer " +#~ "komplett ausloggen möchten." + +#~ msgid "Logout now" +#~ msgstr "Jetzt ausloggen" + +#~ msgid "mark this question as favorite (click again to cancel)" +#~ msgstr "" +#~ "Diese Frage in die Favoritenliste aufnehmen (Zum Abbrechen erneut klicken)" + +#~ msgid "" +#~ "remove favorite mark from this question (click again to restore mark)" +#~ msgstr "" +#~ "Diese Frage aus der Favoritenliste entfernen (Zum Abbrechen erneut " +#~ "klicken)" + +#~ msgid "see questions tagged '%(tag_name)s'" +#~ msgstr "Fragen mit Tag '%(tag_name)s' anschauen" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " %(q_num)s question\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " %(q_num)s questions\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "Eine Version" +#~ msgstr[1] "" +#~ "\n" +#~ "%(rev_count)s Versionen" + +#~ msgid "tagged" +#~ msgstr "Getaggt" + +#~ msgid "remove '%(tag_name)s' from the list of interesting tags" +#~ msgstr "" +#~ "'%(tag_name)s' von der Liste der Tags, die mich interessieren, entfernen" + +#~ msgid "remove '%(tag_name)s' from the list of ignored tags" +#~ msgstr "'%(tag_name)s' von der Liste der ignorierten Tags entfernen" + +#~ msgid "keep ignored questions hidden" +#~ msgstr "Fragen aus ignorierten Tags ausblenden" + +#~ msgid "" +#~ "All tags matching '%(stag)s'" +#~ msgstr "" +#~ "Alle Tags, die '%(stag)s' " +#~ "enthalten" + +#~ msgid "" +#~ "see other questions with %(view_user)s's contributions tagged '%(tag_name)" +#~ "s' " +#~ msgstr "Andere Fragen von %(view_user)s mit Tag '%(tag_name)s'" + +#~ msgid "favorites" +#~ msgstr "Favoriten" + +#, fuzzy +#~ msgid "this questions was selected as favorite %(cnt)s time" +#~ msgid_plural "this questions was selected as favorite %(cnt)s times" +#~ msgstr[0] "Diese Frage wurde als Favorit markiert" +#~ msgstr[1] "Diese Frage wurde als Favorit markiert" + +#~ msgid "thumb-up on" +#~ msgstr "+1 an" + +#~ msgid "thumb-up off" +#~ msgstr "+1 aus" + +#~ msgid "Login name" +#~ msgstr "Benutzername" + +#~ msgid "home" +#~ msgstr "Home" + +#~ msgid "Please prove that you are a Human Being" +#~ msgstr "" +#~ "Bitte bestätigen Sie kurz, daß Sie ein Mensch und kein automatisches " +#~ "Programm sind." + +#~ msgid "I am a Human Being" +#~ msgstr "Ich bin ein Mensch" + +#~ msgid "Please decide if you like this question or not by voting" +#~ msgstr "" +#~ "Bitte entscheiden Sie durch Abstimmen, ob Sie diese Frage für gut halten." + +#~ msgid "" +#~ "\n" +#~ " vote\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " votes\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "Stimme" +#~ msgstr[1] "" +#~ "\n" +#~ "Stimmen" + +#~ msgid "this answer has been accepted to be correct" +#~ msgstr "Die Antwort ist als korrekt akzeptiert worden" + +#~ msgid "" +#~ "\n" +#~ " answer \n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " answers \n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "Antwort" +#~ msgstr[1] "" +#~ "\n" +#~ "Antworten" + +#~ msgid "" +#~ "\n" +#~ " view\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " views\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "Einblendung" +#~ msgstr[1] "" +#~ "\n" +#~ "Einblendungen" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " vote\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " votes\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "Stimme" +#~ msgstr[1] "" +#~ "\n" +#~ "Stimmen" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " answer \n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " answers \n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "Antwort" +#~ msgstr[1] "" +#~ "\n" +#~ "Antworten" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " view\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " views\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "Einblendung" +#~ msgstr[1] "" +#~ "\n" +#~ "Einblendungen" + +#~ msgid "views" +#~ msgstr "Einblendungen" + +#~ msgid "reputation points" +#~ msgstr "Punkte" + +#, fuzzy +#~ msgid "badges: " +#~ msgstr "Auszeichnungen" + +#, fuzzy +#~ msgid "Bad request" +#~ msgstr "Keine echte Frage" + #~ msgid "comments/" #~ msgstr "kommentare/" @@ -5705,9 +7169,6 @@ msgstr "" #~ msgid "OpenID %s is now associated with your account." #~ msgstr "Die OpenID %s ist jetzt mit Ihrem Zugang verknüpft." -#~ msgid "Account deleted." -#~ msgstr "Zugang gelöscht." - #~ msgid "Request for new password" #~ msgstr "Anfordern eines neuen Passworts" @@ -5779,26 +7240,12 @@ msgstr "" #~ msgid "Change openid associated to your account" #~ msgstr "Mit Ihrem Zugang verknüpfte OpenID ändern" -#~ msgid "Delete account" -#~ msgstr "Zugang löschen" - #~ msgid "Erase your username and all your data from website" #~ msgstr "Ihren Benutzernamen und alle Ihre Daten von der Seite löschen" #~ msgid "toggle preview" #~ msgstr "Vorschau ein- oder ausblenden" -#~ msgid "" -#~ "must have valid %(email)s to post, \n" -#~ " see %(email_validation_faq_url)s\n" -#~ " " -#~ msgstr "" -#~ "Ihre E-Mail-Adresse %(email)s wurde noch nicht " -#~ "bestätigt. Um Beiträge veröffentlichen zu können, müssen Sie Ihre " -#~ "E-Mail-Adresse bestätigen. Mehr " -#~ "infos hier.
Sie können Ihren Beitrag speichern und die Bestätigung " -#~ "danach durchführen - Ihr Beitrag wird bis dahin gespeichert." - #~ msgid "reading channel" #~ msgstr "Lese-Kanal" @@ -5919,24 +7366,6 @@ msgstr "" #~ msgid "Unanswered questions" #~ msgstr "Unbeantwortete Fragen" -#~ msgid "All questions" -#~ msgstr "Alle Fragen" - -#~ msgid "click to see the newest questions" -#~ msgstr "Klicken Sie, um die neuesten Fragen zu sehen" - -#~ msgid "click to see the oldest questions" -#~ msgstr "Klicken Sie, um die ältesten Fragen zu sehen" - -#~ msgid "click to see the most recently updated questions" -#~ msgstr "Klicken Sie, um die jüngst bearbeiteten Fragen zu sehen" - -#~ msgid "click to see the least recently updated questions" -#~ msgstr "Klicken Sie, um die ältesten bearbeiteten Fragen zu sehen" - -#~ msgid "click to see hottest questions" -#~ msgstr "Fragen mit den meisten Antworten" - #~ msgid "less answers" #~ msgstr "weniger Antworten" @@ -5946,15 +7375,9 @@ msgstr "" #~ msgid "more answers" #~ msgstr "mehr Antworten" -#~ msgid "click to see most voted questions" -#~ msgstr "Klicken Sie, um die höchstbewerteten Fragen anzuzeigen" - #~ msgid "unpopular" #~ msgstr "Unpopulär" -#~ msgid "click to see least voted questions" -#~ msgstr "am wenigsten positiv bewertete Fragen" - #~ msgid "popular" #~ msgstr "Populär" @@ -5967,9 +7390,6 @@ msgstr "" #~ msgid "Open the previously closed question" #~ msgstr "Die geschlossene Frage neu öffnen" -#~ msgid "The question was closed for the following reason " -#~ msgstr "Die Frage wurde aus folgendem Grund geschlossen" - #~ msgid "reason - leave blank in english" #~ msgstr "Grund" @@ -6036,8 +7456,8 @@ msgstr "" #~ msgstr "Klassische Login-Information" #~ msgid "" -#~ "how to login with password through external login website or use %" -#~ "(feedback_url)s" +#~ "how to login with password through external login website or use " +#~ "%(feedback_url)s" #~ msgstr "" #~ "Mit Passwort durch externen Login einloggen oder %(feedback_url)s benutzen" @@ -6075,8 +7495,8 @@ msgstr "" #~ "Um Ihr Passwort zu ändern, tun Sie bitte folgendes:\n" #~ "\n" #~ "* Öffnen Sie diesen Link: %(key_link)s\n" -#~ "* Loggen Sie sich mit dem Benutzernamen %(username)s und dem Passwort %" -#~ "(password)s ein\n" +#~ "* Loggen Sie sich mit dem Benutzernamen %(username)s und dem Passwort " +#~ "%(password)s ein\n" #~ "* Öffnen Sie Ihr Benutzerprofil und ändern Sie Ihr Passwort" #~ msgid "Click to sign in through any of these services." @@ -6140,9 +7560,6 @@ msgstr "" #~ msgid "books/" #~ msgstr "buecher/" -#~ msgid "please login" -#~ msgstr "Bitte einloggen" - #~ msgid " One question found" #~ msgid_plural "%(q_num)s questions found" #~ msgstr[0] "Eine Frage gefunden" @@ -6197,8 +7614,8 @@ msgstr "" #~ " " #~ msgid_plural "" #~ "\n" -#~ " see %" -#~ "(counter)s more\n" +#~ " see " +#~ "%(counter)s more\n" #~ " " #~ msgstr[0] "" #~ "\n" @@ -6214,8 +7631,8 @@ msgstr "" #~ " " #~ msgid_plural "" #~ "\n" -#~ " see %" -#~ "(counter)s more comments\n" +#~ " see " +#~ "%(counter)s more comments\n" #~ " " #~ msgstr[0] "" #~ "\n" diff --git a/askbot/locale/de/LC_MESSAGES/djangojs.mo b/askbot/locale/de/LC_MESSAGES/djangojs.mo new file mode 100644 index 00000000..7e87fdc8 Binary files /dev/null and b/askbot/locale/de/LC_MESSAGES/djangojs.mo differ diff --git a/askbot/locale/de/LC_MESSAGES/djangojs.po b/askbot/locale/de/LC_MESSAGES/djangojs.po new file mode 100644 index 00000000..4fdeb3e9 --- /dev/null +++ b/askbot/locale/de/LC_MESSAGES/djangojs.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: 0.7\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-10-08 02:24-0500\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"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" + +#: skins/default/media/js/post.js:532 +msgid "Follow" +msgstr "" + +#: skins/default/media/js/post.js:541 skins/default/media/js/post.js.py:550 +#, perl-format +msgid "%s follower" +msgid_plural "%s followers" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/media/js/post.js:546 +msgid "

Following
Unfollow
" +msgstr "" + +#: skins/default/media/js/post.js:1613 +msgid "Please enter question title (>10 characters)" +msgstr "" + +#: skins/default/media/js/tag_selector.js:15 +msgid "Tag \"\" matches:" +msgstr "" + +#: skins/default/media/js/tag_selector.js:84 +#, perl-format +msgid "and %s more, not shown..." +msgstr "" + +#: skins/default/media/js/user.js:129 +msgid "Please signin to follow %(username)s" +msgstr "" + +#: skins/default/media/js/user.js:161 +#, perl-format +msgid "unfollow %s" +msgstr "" + +#: skins/default/media/js/user.js:164 +#, perl-format +msgid "following %s" +msgstr "" + +#: skins/default/media/js/user.js:170 +#, perl-format +msgid "follow %s" +msgstr "" diff --git a/askbot/locale/en/LC_MESSAGES/django.mo b/askbot/locale/en/LC_MESSAGES/django.mo index 20542d6e..1f065123 100644 Binary files a/askbot/locale/en/LC_MESSAGES/django.mo and b/askbot/locale/en/LC_MESSAGES/django.mo differ diff --git a/askbot/locale/en/LC_MESSAGES/django.po b/askbot/locale/en/LC_MESSAGES/django.po index 4d6cd0ba..1e2bf826 100644 --- a/askbot/locale/en/LC_MESSAGES/django.po +++ b/askbot/locale/en/LC_MESSAGES/django.po @@ -3,392 +3,416 @@ # This file is distributed under the same license as the CNPROG package. # Evgeny Fadeev , 2009. # -#, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: 0.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-10 15:12-0500\n" +"POT-Creation-Date: 2011-10-08 02:24-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Evgeny Fadeev \n" "Language-Team: LANGUAGE \n" +"Language: \n" "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" #: exceptions.py:13 msgid "Sorry, but anonymous visitors cannot access this function" msgstr "" -#: feed.py:22 +#: feed.py:26 feed.py:100 msgid " - " msgstr "" -#: feed.py:22 +#: feed.py:26 +msgid "Individual question feed" +msgstr "" + +#: feed.py:100 msgid "latest questions" msgstr "" -#: forms.py:73 +#: forms.py:74 msgid "select country" msgstr "" -#: forms.py:82 +#: forms.py:83 msgid "Country" msgstr "" -#: forms.py:90 +#: forms.py:91 msgid "Country field is required" msgstr "" -#: forms.py:103 skins/default/templates/blocks/answer_edit_tips.html:43 +#: forms.py:104 skins/default/templates/blocks/answer_edit_tips.html:43 #: skins/default/templates/blocks/answer_edit_tips.html:47 #: skins/default/templates/blocks/question_edit_tips.html:38 #: skins/default/templates/blocks/question_edit_tips.html:43 msgid "title" msgstr "" -#: forms.py:104 +#: forms.py:105 msgid "please enter a descriptive title for your question" msgstr "" -#: forms.py:109 +#: forms.py:110 msgid "title must be > 10 characters" msgstr "" -#: forms.py:118 +#: forms.py:119 msgid "content" msgstr "" -#: forms.py:124 +#: forms.py:125 msgid "question content must be > 10 characters" msgstr "" -#: forms.py:133 skins/default/templates/blocks/header.html:22 +#: forms.py:134 skins/default/templates/macros.html:660 +#: skins/default/templates/macros.html:672 +#: skins/default/templates/blocks/header.html:25 msgid "tags" msgstr "" -#: forms.py:135 +#: forms.py:136 msgid "" "Tags are short keywords, with no spaces within. Up to five tags can be used." msgstr "" -#: forms.py:142 skins/default/templates/question_retag.html:60 +#: forms.py:164 skins/default/templates/question_retag.html:58 msgid "tags are required" msgstr "" -#: forms.py:151 +#: forms.py:173 #, 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:160 +#: forms.py:181 +#, python-format +msgid "At least one of the following tags is required : %(tags)s" +msgstr "" + +#: forms.py:190 #, 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:168 +#: forms.py:198 msgid "use-these-chars-in-tags" msgstr "" -#: forms.py:203 +#: forms.py:233 msgid "community wiki (karma is not awarded & many others can edit wiki post)" msgstr "" -#: forms.py:204 +#: forms.py:234 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:220 +#: forms.py:250 msgid "update summary:" msgstr "" -#: forms.py:221 +#: forms.py:251 msgid "" "enter a brief summary of your revision (e.g. fixed spelling, grammar, " "improved style, this field is optional)" msgstr "" -#: forms.py:284 +#: forms.py:327 msgid "Enter number of points to add or subtract" msgstr "" -#: forms.py:298 const/__init__.py:225 +#: forms.py:341 const/__init__.py:245 msgid "approved" msgstr "" -#: forms.py:299 const/__init__.py:226 +#: forms.py:342 const/__init__.py:246 msgid "watched" msgstr "" -#: forms.py:300 const/__init__.py:227 +#: forms.py:343 const/__init__.py:247 msgid "suspended" msgstr "" -#: forms.py:301 const/__init__.py:228 +#: forms.py:344 const/__init__.py:248 msgid "blocked" msgstr "" -#: forms.py:303 const/__init__.py:224 +#: forms.py:346 +msgid "administrator" +msgstr "" + +#: forms.py:347 const/__init__.py:244 msgid "moderator" msgstr "" -#: forms.py:323 +#: forms.py:367 msgid "Change status to" msgstr "" -#: forms.py:350 +#: forms.py:394 msgid "which one?" msgstr "" -#: forms.py:371 +#: forms.py:415 msgid "Cannot change own status" msgstr "" -#: forms.py:377 +#: forms.py:421 msgid "Cannot turn other user to moderator" msgstr "" -#: forms.py:384 +#: forms.py:428 msgid "Cannot change status of another moderator" msgstr "" -#: forms.py:390 +#: forms.py:434 +msgid "Cannot change status to admin" +msgstr "" + +#: forms.py:440 #, python-format msgid "" "If you wish to change %(username)s's status, please make a meaningful " "selection." msgstr "" -#: forms.py:399 +#: forms.py:449 msgid "Subject line" msgstr "" -#: forms.py:406 +#: forms.py:456 msgid "Message text" msgstr "" -#: forms.py:489 +#: forms.py:542 msgid "Your name:" msgstr "" -#: forms.py:490 +#: forms.py:543 msgid "Email (not shared with anyone):" msgstr "" -#: forms.py:491 +#: forms.py:544 msgid "Your message:" msgstr "" -#: forms.py:528 +#: forms.py:581 msgid "ask anonymously" msgstr "" -#: forms.py:530 +#: forms.py:583 msgid "Check if you do not want to reveal your name when asking this question" msgstr "" -#: forms.py:672 +#: forms.py:743 msgid "" "You have asked this question anonymously, if you decide to reveal your " "identity, please check this box." msgstr "" -#: forms.py:676 +#: forms.py:747 msgid "reveal identity" msgstr "" -#: forms.py:734 +#: forms.py:805 msgid "" "Sorry, only owner of the anonymous question can reveal his or her identity, " "please uncheck the box" msgstr "" -#: forms.py:747 +#: forms.py:818 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:785 +#: forms.py:856 msgid "this email will be linked to gravatar" msgstr "" -#: forms.py:792 +#: forms.py:863 msgid "Real name" msgstr "" -#: forms.py:799 +#: forms.py:870 msgid "Website" msgstr "" -#: forms.py:806 +#: forms.py:877 msgid "City" msgstr "" -#: forms.py:815 +#: forms.py:886 msgid "Show country" msgstr "" -#: forms.py:820 +#: forms.py:891 msgid "Date of birth" msgstr "" -#: forms.py:821 +#: forms.py:892 msgid "will not be shown, used to calculate age, format: YYYY-MM-DD" msgstr "" -#: forms.py:827 +#: forms.py:898 msgid "Profile" msgstr "" -#: forms.py:836 +#: forms.py:907 msgid "Screen name" msgstr "" -#: forms.py:867 forms.py:868 +#: forms.py:938 forms.py:939 msgid "this email has already been registered, please use another one" msgstr "" -#: forms.py:875 +#: forms.py:946 msgid "Choose email tag filter" msgstr "" -#: forms.py:915 +#: forms.py:993 msgid "Asked by me" msgstr "" -#: forms.py:918 +#: forms.py:996 msgid "Answered by me" msgstr "" -#: forms.py:921 +#: forms.py:999 msgid "Individually selected" msgstr "" -#: forms.py:924 +#: forms.py:1002 msgid "Entire forum (tag filtered)" msgstr "" -#: forms.py:928 +#: forms.py:1006 msgid "Comments and posts mentioning me" msgstr "" -#: forms.py:998 +#: forms.py:1085 msgid "okay, let's try!" msgstr "" -#: forms.py:999 +#: forms.py:1086 msgid "no community email please, thanks" msgstr "no askbot email please, thanks" -#: forms.py:1003 +#: forms.py:1090 msgid "please choose one of the options above" msgstr "" -#: urls.py:44 +#: urls.py:53 msgid "about/" msgstr "" -#: urls.py:45 conf/site_settings.py:79 +#: urls.py:54 msgid "faq/" msgstr "" -#: urls.py:46 +#: urls.py:55 msgid "privacy/" msgstr "" -#: urls.py:47 -msgid "logout/" -msgstr "" - -#: urls.py:49 urls.py:54 +#: urls.py:57 urls.py:62 msgid "answers/" msgstr "" -#: urls.py:49 urls.py:75 urls.py:186 +#: urls.py:57 urls.py:83 urls.py:198 msgid "edit/" msgstr "" -#: urls.py:54 urls.py:105 +#: urls.py:62 urls.py:113 msgid "revisions/" msgstr "" -#: urls.py:60 urls.py:70 urls.py:75 urls.py:80 urls.py:85 urls.py:90 -#: urls.py:95 urls.py:100 urls.py:105 -#: skins/default/templates/question.html:438 +#: urls.py:68 urls.py:78 urls.py:83 urls.py:88 urls.py:93 urls.py:98 +#: urls.py:103 urls.py:108 urls.py:113 urls.py:285 +#: skins/default/templates/question.html:508 msgid "questions/" msgstr "" -#: urls.py:70 +#: urls.py:78 msgid "ask/" msgstr "" -#: urls.py:80 +#: urls.py:88 msgid "retag/" msgstr "" -#: urls.py:85 +#: urls.py:93 msgid "close/" msgstr "" -#: urls.py:90 +#: urls.py:98 msgid "reopen/" msgstr "" -#: urls.py:95 +#: urls.py:103 msgid "answer/" msgstr "" -#: urls.py:100 skins/default/templates/question.html:438 +#: urls.py:108 skins/default/templates/question.html:508 msgid "vote/" msgstr "" -#: urls.py:132 skins/default/templates/question.html:436 -#: skins/default/templates/main_page/javascript.html:18 -msgid "question/" -msgstr "" - -#: urls.py:137 +#: urls.py:144 msgid "tags/" msgstr "" -#: urls.py:175 +#: urls.py:187 msgid "subscribe-for-tags/" msgstr "" -#: urls.py:180 urls.py:186 urls.py:191 -#: skins/default/templates/main_page/javascript.html:19 +#: urls.py:192 urls.py:198 urls.py:204 urls.py:212 +#: skins/default/templates/main_page/javascript.html:23 msgid "users/" msgstr "" -#: urls.py:196 urls.py:201 +#: urls.py:205 +msgid "subscriptions/" +msgstr "" + +#: urls.py:217 +msgid "users/update_has_custom_avatar/" +msgstr "" + +#: urls.py:222 urls.py:227 msgid "badges/" msgstr "" -#: urls.py:206 +#: urls.py:232 msgid "messages/" msgstr "" -#: urls.py:206 +#: urls.py:232 msgid "markread/" msgstr "" -#: urls.py:222 +#: urls.py:248 msgid "upload/" msgstr "" -#: urls.py:223 +#: urls.py:249 msgid "feedback/" msgstr "" -#: urls.py:224 setup_templates/settings.py:201 +#: urls.py:291 skins/default/templates/question.html:506 +#: skins/default/templates/main_page/javascript.html:22 +msgid "question/" +msgstr "" + +#: urls.py:298 setup_templates/settings.py:202 #: skins/default/templates/authopenid/providers_javascript.html:7 msgid "account/" msgstr "" @@ -523,28 +547,54 @@ msgid "" "posts mentioning the user and comment responses" msgstr "" -#: conf/email.py:63 -msgid "Require email verification before allowing to post" +#: conf/email.py:62 +msgid "Send periodic reminders about unanswered questions" msgstr "" #: conf/email.py:64 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) and an IMAP server with a dedicated inbox " +"must be configured " +msgstr "" + +#: conf/email.py:78 +msgid "Days before starting to send reminders about unanswered questions" +msgstr "" + +#: conf/email.py:89 +msgid "" +"How often to send unanswered question reminders (in days between the " +"reminders sent)." +msgstr "" + +#: conf/email.py:101 +msgid "Max. number of reminders to send about unanswered questions" +msgstr "" + +#: conf/email.py:113 +msgid "Require email verification before allowing to post" +msgstr "" + +#: conf/email.py:114 +msgid "" "Active email verification is done by sending a verification key in email" msgstr "" -#: conf/email.py:73 +#: conf/email.py:123 msgid "Allow only one account per email address" msgstr "" -#: conf/email.py:82 +#: conf/email.py:132 msgid "Fake email for anonymous user" msgstr "" -#: conf/email.py:83 +#: conf/email.py:133 msgid "Use this setting to control gravatar for email-less user" msgstr "" -#: conf/email.py:92 +#: conf/email.py:142 #, fuzzy msgid "Allow posting questions by email" msgstr "" @@ -554,23 +604,23 @@ 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:94 +#: conf/email.py:144 msgid "" "Before enabling this setting - please fill out IMAP settings in the settings." "py file" msgstr "" -#: conf/email.py:105 +#: conf/email.py:155 msgid "Replace space in emailed tags with dash" msgstr "" -#: conf/email.py:107 +#: conf/email.py:157 msgid "" "This setting applies to tags written in the subject line of questions asked " "by email" msgstr "" -#: conf/external_keys.py:11 +#: conf/external_keys.py:10 msgid "Keys to connect the site with external services like Facebook, etc." msgstr "" @@ -581,90 +631,114 @@ msgstr "" #: conf/external_keys.py:20 #, python-format msgid "" -"This key helps google index your site please obtain is at google webmasters tools site" +"This key helps google index your site please obtain is at google webmasters tools site" msgstr "" -#: conf/external_keys.py:34 +#: conf/external_keys.py:35 msgid "Google Analytics key" msgstr "" -#: conf/external_keys.py:36 +#: conf/external_keys.py:37 #, python-format msgid "" -"Obtain is at Google Analytics site, if you wish " -"to use Google Analytics to monitor your site" +"Obtain is at Google Analytics site, if you wish to " +"use Google Analytics to monitor your site" msgstr "" -#: conf/external_keys.py:49 +#: conf/external_keys.py:50 msgid "Enable recaptcha (keys below are required)" msgstr "" -#: conf/external_keys.py:58 +#: conf/external_keys.py:59 msgid "Recaptcha public key" msgstr "" -#: conf/external_keys.py:66 +#: conf/external_keys.py:67 msgid "Recaptcha private key" msgstr "" -#: conf/external_keys.py:68 +#: conf/external_keys.py:69 +#, 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 recaptcha.net" +"robots. Please get this and a public key at the %(url)s" msgstr "" -#: conf/external_keys.py:80 +#: conf/external_keys.py:81 msgid "Facebook public API key" msgstr "" -#: conf/external_keys.py:82 +#: conf/external_keys.py:83 +#, python-format msgid "" "Facebook API key and Facebook secret allow to use Facebook Connect login " -"method at your site. Please obtain these keys at facebook create app site" +"method at your site. Please obtain these keys at facebook create app site" msgstr "" -#: conf/external_keys.py:95 +#: conf/external_keys.py:96 msgid "Facebook secret key" msgstr "" -#: conf/external_keys.py:103 +#: conf/external_keys.py:104 msgid "Twitter consumer key" msgstr "" -#: conf/external_keys.py:105 conf/external_keys.py:126 +#: conf/external_keys.py:106 +#, python-format msgid "" -"Please register your forum at twitter applications site" +"Please register your forum at twitter applications site" msgstr "" -#: conf/external_keys.py:116 +#: conf/external_keys.py:117 msgid "Twitter consumer secret" msgstr "" -#: conf/external_keys.py:124 +#: conf/external_keys.py:125 msgid "LinkedIn consumer key" msgstr "" -#: conf/external_keys.py:137 +#: conf/external_keys.py:127 +#, python-format +msgid "" +"Please register your forum at LinkedIn developer site" +msgstr "" + +#: conf/external_keys.py:138 msgid "LinkedIn consumer secret" msgstr "" -#: conf/external_keys.py:145 +#: conf/external_keys.py:146 +msgid "ident.ca consumer key" +msgstr "" + +#: conf/external_keys.py:148 +#, python-format +msgid "" +"Please register your forum at Identi.ca applications " +"site" +msgstr "" + +#: conf/external_keys.py:159 +msgid "ident.ca consumer secret" +msgstr "" + +#: conf/external_keys.py:167 msgid "Use LDAP authentication for the password login" msgstr "" -#: conf/external_keys.py:154 +#: conf/external_keys.py:176 msgid "LDAP service provider name" msgstr "" -#: conf/external_keys.py:162 +#: conf/external_keys.py:184 msgid "URL for the LDAP service" msgstr "" -#: conf/external_keys.py:170 +#: conf/external_keys.py:192 msgid "Explain how to change LDAP password" msgstr "" @@ -683,153 +757,284 @@ msgid "" msgstr "" #: conf/flatpages.py:30 -msgid "Text of the Q&A forum Privacy Policy (html format)" +msgid "Text of the Q&A forum FAQ page (html format)" msgstr "" #: conf/flatpages.py:33 msgid "" "Save, then use HTML validator on " +"the \"faq\" page to check your input." +msgstr "" + +#: conf/flatpages.py:44 +msgid "Text of the Q&A forum Privacy Policy (html format)" +msgstr "" + +#: conf/flatpages.py:47 +msgid "" +"Save, then use HTML validator on " "the \"privacy\" page to check your input." msgstr "" #: conf/forum_data_rules.py:11 -msgid "Settings for askbot data entry and display" +msgid "Data entry and display" msgstr "" -#: conf/forum_data_rules.py:19 +#: conf/forum_data_rules.py:20 +#, python-format +msgid "" +"Enable embedding videos. Note: please read read this first." +msgstr "" + +#: conf/forum_data_rules.py:31 msgid "Check to enable community wiki feature" msgstr "" -#: conf/forum_data_rules.py:28 +#: conf/forum_data_rules.py:40 msgid "Allow asking questions anonymously" msgstr "" -#: conf/forum_data_rules.py:30 +#: conf/forum_data_rules.py:42 msgid "" "Users do not accrue reputation for anonymous questions and their identity is " "not revealed until they change their mind" msgstr "" -#: conf/forum_data_rules.py:42 +#: conf/forum_data_rules.py:54 +#, fuzzy +msgid "Allow posting before logging in" +msgstr "" +"You are welcome to start submitting your question " +"anonymously. 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/forum_data_rules.py:56 +msgid "" +"Check if you want to allow users start posting questions or answers before " +"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 "" + +#: conf/forum_data_rules.py:71 +#, fuzzy +msgid "Allow swapping answer with question" +msgstr "Post Your Answer" + +#: conf/forum_data_rules.py:73 +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 "" + +#: conf/forum_data_rules.py:85 msgid "Maximum length of tag (number of characters)" msgstr "" -#: conf/forum_data_rules.py:51 +#: conf/forum_data_rules.py:93 +msgid "Mandatory tags" +msgstr "" + +#: conf/forum_data_rules.py:96 +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:108 msgid "Force lowercase the tags" msgstr "" -#: conf/forum_data_rules.py:53 +#: conf/forum_data_rules.py:110 msgid "" "Attention: after checking this, please back up the database, and run a " "management command: python manage.py fix_question_tags to " "globally rename the tags" msgstr "" -#: conf/forum_data_rules.py:66 +#: conf/forum_data_rules.py:124 +msgid "Format of tag list" +msgstr "" + +#: conf/forum_data_rules.py:126 +msgid "" +"Select the format to show tags in, either as a simple list, or as a tag cloud" +msgstr "" + +#: conf/forum_data_rules.py:138 #, fuzzy msgid "Use wildcard tags" msgstr "Tags" -#: conf/forum_data_rules.py:68 +#: conf/forum_data_rules.py:140 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:81 +#: conf/forum_data_rules.py:153 msgid "Default max number of comments to display under posts" msgstr "" -#: conf/forum_data_rules.py:92 +#: conf/forum_data_rules.py:164 #, python-format msgid "Maximum comment length, must be < %(max_len)s" msgstr "" -#: conf/forum_data_rules.py:102 +#: conf/forum_data_rules.py:174 msgid "Limit time to edit comments" msgstr "" -#: conf/forum_data_rules.py:104 +#: conf/forum_data_rules.py:176 msgid "If unchecked, there will be no time limit to edit the comments" msgstr "" -#: conf/forum_data_rules.py:115 +#: conf/forum_data_rules.py:187 msgid "Minutes allowed to edit a comment" msgstr "" -#: conf/forum_data_rules.py:116 +#: conf/forum_data_rules.py:188 msgid "To enable this setting, check the previous one" msgstr "" -#: conf/forum_data_rules.py:125 +#: conf/forum_data_rules.py:197 msgid "Save comment by pressing key" msgstr "" -#: conf/forum_data_rules.py:134 +#: conf/forum_data_rules.py:206 msgid "Minimum length of search term for Ajax search" msgstr "" -#: conf/forum_data_rules.py:135 +#: conf/forum_data_rules.py:207 msgid "Must match the corresponding database backend setting" msgstr "" -#: conf/forum_data_rules.py:144 +#: conf/forum_data_rules.py:216 msgid "Do not make text query sticky in search" msgstr "" -#: conf/forum_data_rules.py:146 +#: conf/forum_data_rules.py:218 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:159 +#: conf/forum_data_rules.py:231 msgid "Maximum number of tags per question" msgstr "" -#: conf/forum_data_rules.py:171 +#: conf/forum_data_rules.py:243 msgid "Number of questions to list by default" msgstr "" -#: conf/forum_data_rules.py:181 +#: conf/forum_data_rules.py:253 msgid "What should \"unanswered question\" mean?" msgstr "" -#: conf/login_providers.py:11 +#: conf/license.py:12 +msgid "License settings" +msgstr "" + +#: conf/license.py:19 +msgid "Show license clause in the site footer" +msgstr "" + +#: conf/license.py:28 +msgid "Short name for the license" +msgstr "" + +#: conf/license.py:37 +msgid "Full name of the license" +msgstr "" + +#: conf/license.py:38 +msgid "Creative Commons Attribution Share Alike 3.0" +msgstr "" + +#: conf/license.py:46 +msgid "Add link to the license page" +msgstr "" + +#: conf/license.py:55 +msgid "License homepage" +msgstr "" + +#: conf/license.py:57 +msgid "URL of the official page with all the license legal clauses" +msgstr "" + +#: conf/license.py:67 +msgid "Use license logo" +msgstr "" + +#: conf/license.py:76 +msgid "License logo image" +msgstr "" + +#: conf/login_providers.py:12 msgid "Login provider setings" msgstr "" -#: conf/login_providers.py:19 +#: conf/login_providers.py:20 msgid "" "Show alternative login provider buttons on the password \"Sign Up\" page" msgstr "" -#: conf/login_providers.py:28 +#: conf/login_providers.py:29 msgid "Always display local login form and hide \"Askbot\" button." msgstr "" -#: conf/login_providers.py:55 +#: conf/login_providers.py:38 +msgid "Activate to allow login with self-hosted wordpress site" +msgstr "" + +#: conf/login_providers.py:39 +msgid "" +"to activate this feature you must fill out the wordpress xml-rpc setting " +"bellow" +msgstr "" + +#: conf/login_providers.py:48 +msgid "" +"Fill it with the wordpress url to the xml-rpc, normally http://mysite.com/" +"xmlrpc.php" +msgstr "" + +#: conf/login_providers.py:49 +msgid "" +"To enable, go to Settings->Writing->Remote Publishing and check the box for " +"XML-RPC" +msgstr "" + +#: conf/login_providers.py:60 +msgid "Upload your icon" +msgstr "" + +#: conf/login_providers.py:90 #, python-format msgid "Activate %(provider)s login" msgstr "" -#: conf/login_providers.py:60 +#: conf/login_providers.py:95 #, python-format msgid "" "Note: to really enable %(provider)s login some additional parameters will " "need to be set in the \"External keys\" section" msgstr "" -#: conf/markup.py:15 +#: conf/markup.py:14 msgid "Markup formatting" msgstr "" -#: conf/markup.py:22 +#: conf/markup.py:39 msgid "Enable code-friendly Markdown" msgstr "" -#: conf/markup.py:24 +#: conf/markup.py:41 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 " @@ -837,28 +1042,65 @@ msgid "" "are heavily used in LaTeX input." msgstr "" -#: conf/markup.py:39 +#: conf/markup.py:56 msgid "Mathjax support (rendering of LaTeX)" msgstr "" -#: conf/markup.py:41 +#: conf/markup.py:58 #, python-format msgid "" "If you enable this feature, mathjax must be " "installed on your server in its own directory." msgstr "" -#: conf/markup.py:55 +#: conf/markup.py:72 msgid "Base url of MathJax deployment" msgstr "" -#: conf/markup.py:57 +#: conf/markup.py:74 msgid "" "Note - MathJax is not included with askbot - 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 "" +#: conf/markup.py:89 +msgid "Enable autolinking with specific patterns" +msgstr "" + +#: conf/markup.py:91 +msgid "" +"If you enable this feature, the application will be able to detect patterns " +"and auto link to URLs" +msgstr "" + +#: conf/markup.py:104 +msgid "Regexes to detect the link patterns" +msgstr "" + +#: conf/markup.py:106 +msgid "" +"Enter valid regular expressions for the patters, one per line. For example " +"to detect a bug pattern like #bug123, use the following regex: #bug(\\d+). " +"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 "" + +#: conf/markup.py:125 +msgid "URLs for autolinking" +msgstr "" + +#: conf/markup.py:127 +msgid "" +"Here, please enter url templates for the patterns entered in the previous " +"setting, also one entry per line. Make sure that number of lines in " +"this setting and the previous one are the same 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 "" + #: conf/minimum_reputation.py:11 msgid "Minimum reputation required to perform actions" msgstr "" @@ -872,62 +1114,71 @@ msgid "Downvote" msgstr "" #: conf/minimum_reputation.py:38 +#, fuzzy +msgid "Answer own question immediately" +msgstr "Post Your Answer" + +#: conf/minimum_reputation.py:47 +msgid "Accept own answer" +msgstr "" + +#: conf/minimum_reputation.py:56 msgid "Flag offensive" msgstr "" -#: conf/minimum_reputation.py:47 +#: conf/minimum_reputation.py:65 msgid "Leave comments" msgstr "" -#: conf/minimum_reputation.py:56 +#: conf/minimum_reputation.py:74 msgid "Delete comments posted by others" msgstr "" -#: conf/minimum_reputation.py:65 +#: conf/minimum_reputation.py:83 msgid "Delete questions and answers posted by others" msgstr "" -#: conf/minimum_reputation.py:74 +#: conf/minimum_reputation.py:92 msgid "Upload files" msgstr "" -#: conf/minimum_reputation.py:83 +#: conf/minimum_reputation.py:101 msgid "Close own questions" msgstr "" -#: conf/minimum_reputation.py:92 +#: conf/minimum_reputation.py:110 msgid "Retag questions posted by other people" msgstr "" -#: conf/minimum_reputation.py:101 +#: conf/minimum_reputation.py:119 msgid "Reopen own questions" msgstr "" -#: conf/minimum_reputation.py:110 +#: conf/minimum_reputation.py:128 msgid "Edit community wiki posts" msgstr "" -#: conf/minimum_reputation.py:119 +#: conf/minimum_reputation.py:137 msgid "Edit posts authored by other people" msgstr "" -#: conf/minimum_reputation.py:128 +#: conf/minimum_reputation.py:146 msgid "View offensive flags" msgstr "" -#: conf/minimum_reputation.py:137 +#: conf/minimum_reputation.py:155 msgid "Close questions asked by others" msgstr "" -#: conf/minimum_reputation.py:146 +#: conf/minimum_reputation.py:164 msgid "Lock posts" msgstr "" -#: conf/minimum_reputation.py:155 +#: conf/minimum_reputation.py:173 msgid "Remove rel=nofollow from own homepage" msgstr "" -#: conf/minimum_reputation.py:157 +#: conf/minimum_reputation.py:175 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." @@ -993,49 +1244,164 @@ msgstr "" msgid "Loss for post owner when upvote is canceled" msgstr "" -#: conf/site_settings.py:13 +#: conf/sidebar_main.py:11 +msgid "Sidebar widget settings - main page" +msgstr "" + +#: conf/sidebar_main.py:18 conf/sidebar_profile.py:18 +#: conf/sidebar_question.py:18 +msgid "Custom sidebar header" +msgstr "" + +#: conf/sidebar_main.py:21 conf/sidebar_profile.py:21 +#: conf/sidebar_question.py:21 +msgid "" +"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." +msgstr "" + +#: conf/sidebar_main.py:34 +msgid "Show avatar block in sidebar" +msgstr "" + +#: conf/sidebar_main.py:36 +msgid "Uncheck this if you want to hide the avatar block from the sidebar " +msgstr "" + +#: conf/sidebar_main.py:47 +msgid "Limit how many avatars will be displayed on the sidebar" +msgstr "" + +#: conf/sidebar_main.py:57 +msgid "Show tag selector in sidebar" +msgstr "" + +#: conf/sidebar_main.py:59 +msgid "" +"Uncheck this if you want to hide the options for choosing interesting and " +"ignored tags " +msgstr "" + +#: conf/sidebar_main.py:70 +msgid "Show tag list/cloud in sidebar" +msgstr "" + +#: conf/sidebar_main.py:72 +msgid "" +"Uncheck this if you want to hide the tag cloud or tag list from the sidebar " +msgstr "" + +#: conf/sidebar_main.py:83 conf/sidebar_profile.py:34 +#: conf/sidebar_question.py:74 +msgid "Custom sidebar footer" +msgstr "" + +#: conf/sidebar_main.py:86 conf/sidebar_profile.py:37 +#: conf/sidebar_question.py:77 +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 "" + +#: conf/sidebar_profile.py:11 +msgid "Sidebar widget settings - profile page" +msgstr "" + +#: conf/sidebar_question.py:11 +msgid "Sidebar widget settings - question page" +msgstr "" + +#: conf/sidebar_question.py:34 +msgid "Show tag list in sidebar" +msgstr "" + +#: conf/sidebar_question.py:36 +msgid "Uncheck this if you want to hide the tag list from the sidebar " +msgstr "" + +#: conf/sidebar_question.py:47 +msgid "Show meta information in sidebar" +msgstr "" + +#: conf/sidebar_question.py:49 +msgid "" +"Uncheck this if you want to hide the meta information about the question " +"(post date, views, last updated). " +msgstr "" + +#: conf/sidebar_question.py:61 +msgid "Show related questions in sidebar" +msgstr "" + +#: conf/sidebar_question.py:63 +msgid "Uncheck this if you want to hide the list of related questions. " +msgstr "" + +#: conf/site_modes.py:63 +msgid "Site modes" +msgstr "" + +#: conf/site_modes.py:72 +msgid "Activate a \"Bootstrap\" mode" +msgstr "" + +#: conf/site_modes.py:74 +msgid "" +"Bootstrap mode lowers reputation and certain badge thresholds, to values, " +"more suitable for the smaller communities, WARNING: your " +"current value for Minimum reputation, Bagde Settings and Vote Rules will be " +"changed after you modify this setting." +msgstr "" + +#: conf/site_settings.py:11 msgid "Q&A forum website parameters and urls" msgstr "" -#: conf/site_settings.py:21 +#: conf/site_settings.py:19 msgid "Site title for the Q&A forum" msgstr "" -#: conf/site_settings.py:30 +#: conf/site_settings.py:28 msgid "Comma separated list of Q&A site keywords" msgstr "" -#: conf/site_settings.py:40 +#: conf/site_settings.py:37 msgid "Copyright message to show in the footer" msgstr "" -#: conf/site_settings.py:50 +#: conf/site_settings.py:47 msgid "Site description for the search engines" msgstr "" -#: conf/site_settings.py:59 +#: conf/site_settings.py:56 msgid "Short name for your Q&A forum" msgstr "" -#: conf/site_settings.py:69 +#: conf/site_settings.py:66 msgid "Base URL for your Q&A forum, must start with http or https" msgstr "" -#: conf/site_settings.py:82 -msgid "Link shown in the greeting message shown to the anonymous user" +#: conf/site_settings.py:77 +msgid "Check to enable greeting for anonymous user" msgstr "" -#: conf/site_settings.py:85 -msgid "" -"If you change this url from the default - then you will also probably want " -"to adjust translation of the following string: " +#: conf/site_settings.py:88 +msgid "Text shown in the greeting message shown to the anonymous user" msgstr "" -#: conf/site_settings.py:98 +#: conf/site_settings.py:92 +msgid "Use HTML to format the message " +msgstr "" + +#: conf/site_settings.py:101 msgid "Feedback site URL" msgstr "" -#: conf/site_settings.py:100 +#: conf/site_settings.py:103 msgid "If left empty, a simple internal feedback form will be used instead" msgstr "" @@ -1182,50 +1548,40 @@ msgid "" "href=\"%(favicon_info_url)s\">this page." msgstr "" -#: conf/skin_general_settings.py:70 +#: conf/skin_general_settings.py:71 msgid "Password login button" msgstr "" -#: conf/skin_general_settings.py:72 +#: conf/skin_general_settings.py:73 msgid "" "An 88x38 pixel image that is used on the login screen for the password login " "button." msgstr "" -#: conf/skin_general_settings.py:87 +#: conf/skin_general_settings.py:88 msgid "Show all UI functions to all users" msgstr "" -#: conf/skin_general_settings.py:89 +#: conf/skin_general_settings.py:90 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:104 +#: conf/skin_general_settings.py:105 msgid "Select skin" msgstr "" -#: conf/skin_general_settings.py:113 -msgid "Skin media revision number" -msgstr "" - -#: conf/skin_general_settings.py:115 -msgid "" -"Increment this number when you change image in skin media or stylesheet. " -"This helps avoid showing your users outdated images from their browser cache." -msgstr "" - -#: conf/skin_general_settings.py:128 +#: conf/skin_general_settings.py:116 msgid "Customize HTML " msgstr "" -#: conf/skin_general_settings.py:137 +#: conf/skin_general_settings.py:125 msgid "Custom portion of the HTML " msgstr "" -#: conf/skin_general_settings.py:139 +#: conf/skin_general_settings.py:127 msgid "" "To use this option, check \"Customize HTML <HEAD>\" " "above. Contents of this box will be inserted into the <HEAD> portion " @@ -1237,44 +1593,57 @@ msgid "" "please test the site with the W3C HTML validator service." msgstr "" -#: conf/skin_general_settings.py:159 +#: conf/skin_general_settings.py:149 +msgid "Custom header additions" +msgstr "" + +#: conf/skin_general_settings.py:151 +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 " +"headerin the HTML format. When customizing the site header (as well as " +"footer and the HTML <HEAD>), use the HTML validation service to make " +"sure that your input is valid and works well in all browsers." +msgstr "" + +#: conf/skin_general_settings.py:166 msgid "Site footer mode" msgstr "" -#: conf/skin_general_settings.py:161 +#: conf/skin_general_settings.py:168 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:178 +#: conf/skin_general_settings.py:185 msgid "Custom footer (HTML format)" msgstr "" -#: conf/skin_general_settings.py:180 +#: conf/skin_general_settings.py:187 msgid "" "To enable this function, please select option 'customize' " "in the \"Site footer mode\" above. Use this area to enter contents of the " "footer in the HTML format. When customizing the site footer (as well as the " -"HTML <HEAD>), use the HTML validation service to make sure that your " -"input is valid and works well in all browsers." +"header and HTML <HEAD>), use the HTML validation service to make sure " +"that your input is valid and works well in all browsers." msgstr "" -#: conf/skin_general_settings.py:195 +#: conf/skin_general_settings.py:202 msgid "Apply custom style sheet (CSS)" msgstr "" -#: conf/skin_general_settings.py:197 +#: conf/skin_general_settings.py:204 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:209 +#: conf/skin_general_settings.py:216 msgid "Custom style sheet (CSS)" msgstr "" -#: conf/skin_general_settings.py:211 +#: conf/skin_general_settings.py:218 msgid "" "To use this function, check \"Apply custom style sheet\" " "option above. The CSS rules added in this window will be applied after the " @@ -1283,50 +1652,125 @@ msgid "" "depends (default is empty string) on the url configuration in your urls.py." msgstr "" -#: conf/skin_general_settings.py:227 +#: conf/skin_general_settings.py:234 msgid "Add custom javascript" msgstr "" -#: conf/skin_general_settings.py:230 -msgid "Check to enable javascript that you can enter in the next field" +#: conf/skin_general_settings.py:237 +msgid "Check to enable javascript that you can enter in the next field" +msgstr "" + +#: conf/skin_general_settings.py:247 +msgid "Custom javascript" +msgstr "" + +#: conf/skin_general_settings.py:249 +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 \"<forum url>/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 (to " +"enable your custom code, check \"Add custom javascript\" option " +"above)." +msgstr "" + +#: conf/skin_general_settings.py:267 +msgid "Skin media revision number" +msgstr "" + +#: conf/skin_general_settings.py:269 +msgid "Will be set automatically but you can modify it if necessary." +msgstr "" + +#: conf/skin_general_settings.py:280 +msgid "Hash to update the media revision number automatically." +msgstr "" + +#: conf/skin_general_settings.py:284 +msgid "Will be set automatically, it is not necesary to modify manually." +msgstr "" + +#: conf/social_sharing.py:10 +msgid "Sharing content on social networks" +msgstr "" + +#: conf/social_sharing.py:18 +msgid "Check to enable sharing of questions on Twitter" +msgstr "" + +#: conf/social_sharing.py:27 +msgid "Check to enable sharing of questions on Facebook" +msgstr "" + +#: conf/social_sharing.py:36 +msgid "Check to enable sharing of questions on LinkedIn" +msgstr "" + +#: conf/social_sharing.py:45 +msgid "Check to enable sharing of questions on Identi.ca" msgstr "" -#: conf/skin_general_settings.py:240 -msgid "Custom javascript" +#: conf/social_sharing.py:54 +msgid "Check to enable sharing of questions on Google+" msgstr "" -#: conf/skin_general_settings.py:242 -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 \"<forum url>/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 (to " -"enable your custom code, check \"Add custom javascript\" option " -"above)." +#: conf/spam_and_moderation.py:9 +msgid "Spam control and content moderation" msgstr "" -#: conf/social_sharing.py:10 -msgid "Sharing content on social networks" +#: conf/spam_and_moderation.py:16 +msgid "Enable Akismet spam detection(keys below are required)" msgstr "" -#: conf/social_sharing.py:18 -msgid "Check to enable sharing of questions on Twitter and Facebook" +#: conf/spam_and_moderation.py:19 +#, python-format +msgid "To get an Akismet key please visit Akismet site" msgstr "" -#: conf/user_settings.py:10 -msgid "User policy settings" +#: conf/spam_and_moderation.py:29 +msgid "Akismet key for spam detection" msgstr "" -#: conf/user_settings.py:18 +#: conf/user_settings.py:11 +#, fuzzy +msgid "User settings" +msgstr "User login" + +#: conf/user_settings.py:19 msgid "Allow editing user screen name" msgstr "" #: conf/user_settings.py:28 -msgid "Minimum allowed length for screen name" +#, fuzzy +msgid "Allow account recovery by email" msgstr "" +"You are welcome to start submitting your question " +"anonymously. 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/user_settings.py:37 +msgid "Allow adding and removing login methods" +msgstr "" + +#: conf/user_settings.py:47 +msgid "Minimum allowed length for screen name" +msgstr "" + +#: conf/user_settings.py:57 +msgid "Default Gravatar icon type" +msgstr "" + +#: conf/user_settings.py:59 +msgid "" +"This option allows you to set the default avatar type for email addresses " +"without associated gravatar images. For more information, please visit this page." +msgstr "" + +#: conf/user_settings.py:69 msgid "Name for the Anonymous user" msgstr "" @@ -1351,570 +1795,617 @@ msgid "Number of days to allow canceling votes" msgstr "" #: conf/vote_rules.py:58 -msgid "Number of flags required to automatically hide posts" +msgid "Number of days required before answering own question" msgstr "" #: conf/vote_rules.py:67 +msgid "Number of flags required to automatically hide posts" +msgstr "" + +#: conf/vote_rules.py:76 msgid "Number of flags required to automatically delete posts" msgstr "" -#: const/__init__.py:9 +#: const/__init__.py:10 msgid "duplicate question" msgstr "" -#: const/__init__.py:10 +#: const/__init__.py:11 msgid "question is off-topic or not relevant" msgstr "" -#: const/__init__.py:11 +#: const/__init__.py:12 msgid "too subjective and argumentative" msgstr "" -#: const/__init__.py:12 +#: const/__init__.py:13 msgid "not a real question" msgstr "" -#: const/__init__.py:13 +#: const/__init__.py:14 msgid "the question is answered, right answer was accepted" msgstr "" -#: const/__init__.py:14 +#: const/__init__.py:15 msgid "question is not relevant or outdated" msgstr "" -#: const/__init__.py:15 +#: const/__init__.py:16 msgid "question contains offensive or malicious remarks" msgstr "" -#: const/__init__.py:16 +#: const/__init__.py:17 msgid "spam or advertising" msgstr "" -#: const/__init__.py:17 +#: const/__init__.py:18 msgid "too localized" msgstr "" -#: const/__init__.py:40 +#: const/__init__.py:41 msgid "newest" msgstr "" -#: const/__init__.py:41 skins/default/templates/users.html:25 -#: skins/default/templates/users.html:26 +#: const/__init__.py:42 skins/default/templates/users.html:26 msgid "oldest" msgstr "" -#: const/__init__.py:42 +#: const/__init__.py:43 msgid "active" msgstr "" -#: const/__init__.py:43 +#: const/__init__.py:44 msgid "inactive" msgstr "" -#: const/__init__.py:44 +#: const/__init__.py:45 msgid "hottest" msgstr "" -#: const/__init__.py:45 +#: const/__init__.py:46 msgid "coldest" msgstr "" -#: const/__init__.py:46 +#: const/__init__.py:47 msgid "most voted" msgstr "" -#: const/__init__.py:47 +#: const/__init__.py:48 msgid "least voted" msgstr "" -#: const/__init__.py:48 skins/default/templates/main_page/tab_bar.html:29 +#: const/__init__.py:49 msgid "relevance" msgstr "" -#: const/__init__.py:55 skins/default/templates/main_page/tab_bar.html:10 +#: const/__init__.py:57 skins/default/templates/main_page/tab_bar.html:10 #: skins/default/templates/user_profile/user_inbox.html:50 msgid "all" msgstr "" -#: const/__init__.py:56 skins/default/templates/main_page/tab_bar.html:15 +#: const/__init__.py:58 skins/default/templates/main_page/tab_bar.html:15 msgid "unanswered" msgstr "" -#: const/__init__.py:57 skins/default/templates/main_page/tab_bar.html:21 +#: const/__init__.py:59 msgid "favorite" msgstr "" -#: const/__init__.py:71 +#: const/__init__.py:64 +#, fuzzy +msgid "list" +msgstr "Tags" + +#: const/__init__.py:65 +msgid "cloud" +msgstr "" + +#: const/__init__.py:78 msgid "Question has no answers" msgstr "" -#: const/__init__.py:72 +#: const/__init__.py:79 msgid "Question has no accepted answers" msgstr "" -#: const/__init__.py:113 +#: const/__init__.py:121 msgid "asked a question" msgstr "" -#: const/__init__.py:114 +#: const/__init__.py:122 msgid "answered a question" msgstr "" -#: const/__init__.py:115 +#: const/__init__.py:123 msgid "commented question" msgstr "" -#: const/__init__.py:116 +#: const/__init__.py:124 msgid "commented answer" msgstr "" -#: const/__init__.py:117 +#: const/__init__.py:125 msgid "edited question" msgstr "" -#: const/__init__.py:118 +#: const/__init__.py:126 msgid "edited answer" msgstr "" -#: const/__init__.py:119 +#: const/__init__.py:127 msgid "received award" msgstr "received badge" -#: const/__init__.py:120 +#: const/__init__.py:128 msgid "marked best answer" msgstr "" -#: const/__init__.py:121 +#: const/__init__.py:129 msgid "upvoted" msgstr "" -#: const/__init__.py:122 +#: const/__init__.py:130 msgid "downvoted" msgstr "" -#: const/__init__.py:123 +#: const/__init__.py:131 msgid "canceled vote" msgstr "" -#: const/__init__.py:124 +#: const/__init__.py:132 msgid "deleted question" msgstr "" -#: const/__init__.py:125 +#: const/__init__.py:133 msgid "deleted answer" msgstr "" -#: const/__init__.py:126 +#: const/__init__.py:134 msgid "marked offensive" msgstr "" -#: const/__init__.py:127 +#: const/__init__.py:135 msgid "updated tags" msgstr "" -#: const/__init__.py:128 +#: const/__init__.py:136 msgid "selected favorite" msgstr "" -#: const/__init__.py:129 +#: const/__init__.py:137 msgid "completed user profile" msgstr "" -#: const/__init__.py:130 +#: const/__init__.py:138 msgid "email update sent to user" msgstr "" -#: const/__init__.py:131 +#: const/__init__.py:141 +msgid "reminder about unanswered questions sent" +msgstr "" + +#: const/__init__.py:143 msgid "mentioned in the post" msgstr "" -#: const/__init__.py:182 +#: const/__init__.py:194 msgid "question_answered" msgstr "answered question" -#: const/__init__.py:183 +#: const/__init__.py:195 msgid "question_commented" msgstr "commented question" -#: const/__init__.py:184 +#: const/__init__.py:196 msgid "answer_commented" msgstr "" -#: const/__init__.py:185 +#: const/__init__.py:197 msgid "answer_accepted" msgstr "" -#: const/__init__.py:189 +#: const/__init__.py:201 msgid "[closed]" msgstr "" -#: const/__init__.py:190 +#: const/__init__.py:202 msgid "[deleted]" msgstr "" -#: const/__init__.py:191 views/readers.py:561 +#: const/__init__.py:203 views/readers.py:614 msgid "initial version" msgstr "" -#: const/__init__.py:192 +#: const/__init__.py:204 msgid "retagged" msgstr "" -#: const/__init__.py:200 +#: const/__init__.py:212 msgid "off" msgstr "" -#: const/__init__.py:201 +#: const/__init__.py:213 msgid "exclude ignored" msgstr "" -#: const/__init__.py:202 +#: const/__init__.py:214 msgid "only selected" msgstr "" -#: const/__init__.py:206 +#: const/__init__.py:218 msgid "instantly" msgstr "" -#: const/__init__.py:207 +#: const/__init__.py:219 msgid "daily" msgstr "" -#: const/__init__.py:208 +#: const/__init__.py:220 msgid "weekly" msgstr "" -#: const/__init__.py:209 +#: const/__init__.py:221 msgid "no email" msgstr "" -#: const/__init__.py:246 skins/default/templates/badges.html:37 +#: const/__init__.py:228 +msgid "identicon" +msgstr "" + +#: const/__init__.py:229 +msgid "mystery-man" +msgstr "" + +#: const/__init__.py:230 +msgid "monsterid" +msgstr "" + +#: const/__init__.py:231 +#, fuzzy +msgid "wavatar" +msgstr "How to change my picture (gravatar) and what is gravatar?" + +#: const/__init__.py:232 +msgid "retro" +msgstr "" + +#: const/__init__.py:279 skins/default/templates/badges.html:37 msgid "gold" msgstr "" -#: const/__init__.py:247 skins/default/templates/badges.html:46 +#: const/__init__.py:280 skins/default/templates/badges.html:46 msgid "silver" msgstr "" -#: const/__init__.py:248 skins/default/templates/badges.html:53 +#: const/__init__.py:281 skins/default/templates/badges.html:53 msgid "bronze" msgstr "" +#: const/__init__.py:293 +msgid "None" +msgstr "" +#: const/__init__.py:294 +#, fuzzy +msgid "Gravatar" +msgstr "How to change my picture (gravatar) and what is gravatar?" +#: const/__init__.py:295 +#, fuzzy +msgid "Uploaded Avatar" +msgstr "How to change my picture (gravatar) and what is gravatar?" - - -#: const/message_keys.py:22 skins/default/templates/main_page/tab_bar.html:27 +#: const/message_keys.py:15 msgid "most relevant questions" msgstr "" -#: const/message_keys.py:23 skins/default/templates/main_page/tab_bar.html:28 +#: const/message_keys.py:16 msgid "click to see most relevant questions" msgstr "" -#: const/message_keys.py:24 +#: const/message_keys.py:17 msgid "by relevance" msgstr "relevance" -#: const/message_keys.py:25 +#: const/message_keys.py:18 msgid "click to see the oldest questions" msgstr "" -#: const/message_keys.py:26 +#: const/message_keys.py:19 msgid "by date" msgstr "date" -#: const/message_keys.py:27 +#: const/message_keys.py:20 msgid "click to see the newest questions" msgstr "" -#: const/message_keys.py:28 +#: const/message_keys.py:21 msgid "click to see the least recently updated questions" msgstr "" -#: const/message_keys.py:29 +#: const/message_keys.py:22 msgid "by activity" msgstr "activity" -#: const/message_keys.py:30 +#: const/message_keys.py:23 msgid "click to see the most recently updated questions" msgstr "" -#: const/message_keys.py:31 +#: const/message_keys.py:24 msgid "click to see the least answered questions" msgstr "" -#: const/message_keys.py:32 +#: const/message_keys.py:25 msgid "by answers" msgstr "answers" -#: const/message_keys.py:33 +#: const/message_keys.py:26 msgid "click to see the most answered questions" msgstr "" -#: const/message_keys.py:34 +#: const/message_keys.py:27 msgid "click to see least voted questions" msgstr "" -#: const/message_keys.py:35 +#: const/message_keys.py:28 msgid "by votes" msgstr "votes" -#: const/message_keys.py:36 +#: const/message_keys.py:29 msgid "click to see most voted questions" msgstr "" -#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:134 +#: deps/django_authopenid/backends.py:88 +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 msgid "i-names are not supported" msgstr "" -#: deps/django_authopenid/forms.py:231 +#: deps/django_authopenid/forms.py:233 #, python-format msgid "Please enter your %(username_token)s" msgstr "" -#: deps/django_authopenid/forms.py:257 +#: deps/django_authopenid/forms.py:259 msgid "Please, enter your user name" msgstr "" -#: deps/django_authopenid/forms.py:261 +#: deps/django_authopenid/forms.py:263 msgid "Please, enter your password" msgstr "" -#: deps/django_authopenid/forms.py:268 deps/django_authopenid/forms.py:272 +#: deps/django_authopenid/forms.py:270 deps/django_authopenid/forms.py:274 msgid "Please, enter your new password" msgstr "" -#: deps/django_authopenid/forms.py:283 +#: deps/django_authopenid/forms.py:285 msgid "Passwords did not match" msgstr "" -#: deps/django_authopenid/forms.py:295 +#: deps/django_authopenid/forms.py:297 #, python-format msgid "Please choose password > %(len)s characters" msgstr "" -#: deps/django_authopenid/forms.py:330 +#: deps/django_authopenid/forms.py:335 msgid "Current password" msgstr "" -#: deps/django_authopenid/forms.py:341 +#: deps/django_authopenid/forms.py:346 msgid "" "Old password is incorrect. Please enter the correct " "password." msgstr "" -#: deps/django_authopenid/forms.py:394 +#: deps/django_authopenid/forms.py:399 msgid "Sorry, we don't have this email address in the database" msgstr "" -#: deps/django_authopenid/forms.py:430 +#: deps/django_authopenid/forms.py:435 msgid "Your user name (required)" msgstr "" -#: deps/django_authopenid/forms.py:445 +#: deps/django_authopenid/forms.py:450 msgid "Incorrect username." msgstr "sorry, there is no such user name" -#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:10 -#: deps/django_authopenid/urls.py:11 deps/django_authopenid/urls.py:14 -#: deps/django_authopenid/urls.py:17 setup_templates/settings.py:201 +#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12 +#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:202 msgid "signin/" msgstr "" #: deps/django_authopenid/urls.py:10 -msgid "newquestion/" -msgstr "" - -#: deps/django_authopenid/urls.py:11 -msgid "newanswer/" -msgstr "" - -#: deps/django_authopenid/urls.py:12 msgid "signout/" msgstr "" -#: deps/django_authopenid/urls.py:14 +#: deps/django_authopenid/urls.py:12 msgid "complete/" msgstr "" -#: deps/django_authopenid/urls.py:17 +#: deps/django_authopenid/urls.py:15 msgid "complete-oauth/" msgstr "" -#: deps/django_authopenid/urls.py:21 +#: deps/django_authopenid/urls.py:19 msgid "register/" msgstr "" -#: deps/django_authopenid/urls.py:23 +#: deps/django_authopenid/urls.py:21 msgid "signup/" msgstr "" -#: deps/django_authopenid/urls.py:31 +#: deps/django_authopenid/urls.py:25 +msgid "logout/" +msgstr "" + +#: deps/django_authopenid/urls.py:30 msgid "recover/" msgstr "" -#: deps/django_authopenid/util.py:193 +#: deps/django_authopenid/util.py:378 #, python-format msgid "%(site)s user name and password" msgstr "" -#: deps/django_authopenid/util.py:199 -#: skins/default/templates/authopenid/signin.html:99 +#: deps/django_authopenid/util.py:384 +#: skins/default/templates/authopenid/signin.html:108 msgid "Create a password-protected account" msgstr "" -#: deps/django_authopenid/util.py:200 +#: deps/django_authopenid/util.py:385 msgid "Change your password" msgstr "" -#: deps/django_authopenid/util.py:262 +#: deps/django_authopenid/util.py:473 msgid "Sign in with Yahoo" msgstr "" -#: deps/django_authopenid/util.py:269 +#: deps/django_authopenid/util.py:480 msgid "AOL screen name" msgstr "" -#: deps/django_authopenid/util.py:277 +#: deps/django_authopenid/util.py:488 msgid "OpenID url" msgstr "" -#: deps/django_authopenid/util.py:294 -msgid "MyOpenid user name" -msgstr "" - -#: deps/django_authopenid/util.py:302 +#: deps/django_authopenid/util.py:517 msgid "Flickr user name" msgstr "" -#: deps/django_authopenid/util.py:310 +#: deps/django_authopenid/util.py:525 msgid "Technorati user name" msgstr "" -#: deps/django_authopenid/util.py:318 +#: deps/django_authopenid/util.py:533 msgid "WordPress blog name" msgstr "" -#: deps/django_authopenid/util.py:326 +#: deps/django_authopenid/util.py:541 msgid "Blogger blog name" msgstr "" -#: deps/django_authopenid/util.py:334 +#: deps/django_authopenid/util.py:549 msgid "LiveJournal blog name" msgstr "" -#: deps/django_authopenid/util.py:342 +#: deps/django_authopenid/util.py:557 msgid "ClaimID user name" msgstr "" -#: deps/django_authopenid/util.py:350 +#: deps/django_authopenid/util.py:565 msgid "Vidoop user name" msgstr "" -#: deps/django_authopenid/util.py:358 +#: deps/django_authopenid/util.py:573 msgid "Verisign user name" msgstr "" -#: deps/django_authopenid/util.py:382 +#: deps/django_authopenid/util.py:608 #, python-format msgid "Change your %(provider)s password" msgstr "" -#: deps/django_authopenid/util.py:386 +#: deps/django_authopenid/util.py:612 #, python-format msgid "Click to see if your %(provider)s signin still works for %(site_name)s" msgstr "" -#: deps/django_authopenid/util.py:395 +#: deps/django_authopenid/util.py:621 #, python-format msgid "Create password for %(provider)s" msgstr "" -#: deps/django_authopenid/util.py:399 +#: deps/django_authopenid/util.py:625 #, python-format msgid "Connect your %(provider)s account to %(site_name)s" msgstr "" -#: deps/django_authopenid/util.py:408 +#: deps/django_authopenid/util.py:634 #, python-format msgid "Signin with %(provider)s user name and password" msgstr "" -#: deps/django_authopenid/util.py:415 +#: deps/django_authopenid/util.py:641 #, python-format msgid "Sign in with your %(provider)s account" msgstr "" -#: deps/django_authopenid/views.py:141 +#: deps/django_authopenid/views.py:158 #, python-format msgid "OpenID %(openid_url)s is invalid" msgstr "" -#: deps/django_authopenid/views.py:253 deps/django_authopenid/views.py:395 -#: deps/django_authopenid/views.py:423 +#: deps/django_authopenid/views.py:270 deps/django_authopenid/views.py:415 +#: deps/django_authopenid/views.py:443 #, 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:345 +#: deps/django_authopenid/views.py:365 msgid "Your new password saved" msgstr "" -#: deps/django_authopenid/views.py:507 +#: deps/django_authopenid/views.py:469 +msgid "The login password combination was not correct" +msgstr "" + +#: deps/django_authopenid/views.py:573 msgid "Please click any of the icons below to sign in" msgstr "" -#: deps/django_authopenid/views.py:509 +#: deps/django_authopenid/views.py:575 msgid "Account recovery email sent" msgstr "" -#: deps/django_authopenid/views.py:512 +#: deps/django_authopenid/views.py:578 msgid "Please add one or more login methods." msgstr "" -#: deps/django_authopenid/views.py:514 +#: deps/django_authopenid/views.py:580 msgid "If you wish, please add, remove or re-validate your login methods" msgstr "" -#: deps/django_authopenid/views.py:516 +#: deps/django_authopenid/views.py:582 msgid "Please wait a second! Your account is recovered, but ..." msgstr "" -#: deps/django_authopenid/views.py:518 +#: deps/django_authopenid/views.py:584 msgid "Sorry, this account recovery key has expired or is invalid" msgstr "" -#: deps/django_authopenid/views.py:572 +#: deps/django_authopenid/views.py:657 #, python-format msgid "Login method %(provider_name)s does not exist" msgstr "" -#: deps/django_authopenid/views.py:578 +#: deps/django_authopenid/views.py:663 msgid "Oops, sorry - there was some error - please try again" msgstr "" -#: deps/django_authopenid/views.py:669 +#: deps/django_authopenid/views.py:754 #, python-format msgid "Your %(provider)s login works fine" msgstr "" -#: deps/django_authopenid/views.py:976 deps/django_authopenid/views.py:982 +#: deps/django_authopenid/views.py:1065 deps/django_authopenid/views.py:1071 #, python-format msgid "your email needs to be validated see %(details_url)s" msgstr "" "Your email needs to be validated. Please see details here." -#: deps/django_authopenid/views.py:1003 +#: deps/django_authopenid/views.py:1092 #, python-format msgid "Recover your %(site)s account" msgstr "" -#: deps/django_authopenid/views.py:1069 +#: deps/django_authopenid/views.py:1162 msgid "Please check your email and visit the enclosed link." msgstr "" @@ -1939,7 +2430,7 @@ msgstr "" msgid "Default value: %s" msgstr "" -#: deps/livesettings/values.py:588 +#: deps/livesettings/values.py:601 #, python-format msgid "Allowed image file types are %(types)s" msgstr "" @@ -1955,7 +2446,7 @@ msgstr "" #: deps/livesettings/templates/livesettings/group_settings.html:11 #: deps/livesettings/templates/livesettings/site_settings.html:23 -#: skins/default/templates/authopenid/signin.html:117 +#: skins/default/templates/authopenid/signin.html:132 msgid "Change password" msgstr "" @@ -2015,43 +2506,20 @@ msgstr "" msgid "Uncollapse all" msgstr "" -#: deps/recaptcha_django/__init__.py:19 deps/recaptcha_django/__init__.py:80 -msgid "Unknown error." -msgstr "" - -#: deps/recaptcha_django/__init__.py:20 deps/recaptcha_django/__init__.py:21 -msgid "ReCAPTCHA is wrongly configured." -msgstr "" - -#: deps/recaptcha_django/__init__.py:22 -msgid "Bad reCAPTCHA challenge parameter." -msgstr "" - -#: deps/recaptcha_django/__init__.py:23 -msgid "The CAPTCHA solution was incorrect." -msgstr "" - -#: deps/recaptcha_django/__init__.py:24 -msgid "Bad reCAPTCHA verification parameters." -msgstr "" - -#: deps/recaptcha_django/__init__.py:25 -msgid "Provided reCAPTCHA API keys are not valid for this domain." -msgstr "" - -#: deps/recaptcha_django/__init__.py:26 -msgid "ReCAPTCHA could not be reached." -msgstr "" - -#: deps/recaptcha_django/__init__.py:73 -msgid "Invalid request" +#: importers/stackexchange/management/commands/load_stackexchange.py:141 +msgid "Congratulations, you are now an Administrator" msgstr "" -#: importers/stackexchange/management/commands/load_stackexchange.py:128 -msgid "Congratulations, you are now an 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:34 +#: management/commands/post_emailed_questions.py:35 msgid "" "

To ask by email, please:

\n" "
    \n" @@ -2062,43 +2530,34 @@ msgid "" "may be separated by a semicolon or a comma

    \n" msgstr "" -#: management/commands/post_emailed_questions.py:54 +#: management/commands/post_emailed_questions.py:55 #, python-format msgid "" -"

    Sorry, there was an error posting your question please contact the %(site)" -"s administrator

    " +"

    Sorry, there was an error posting your question please contact the " +"%(site)s administrator

    " msgstr "" -#: management/commands/post_emailed_questions.py:60 +#: management/commands/post_emailed_questions.py:61 #, python-format msgid "" -"

    Sorry, in order to post questions on %(site)s by email, please register first

    " +"

    Sorry, in order to post questions on %(site)s by email, please register first

    " msgstr "" -#: management/commands/post_emailed_questions.py:68 +#: management/commands/post_emailed_questions.py:69 msgid "" "

    Sorry, your question could not be posted due to insufficient privileges " "of your user account

    " msgstr "" -#: management/commands/send_email_alerts.py:103 -#, python-format -msgid "\" and \"%s\"" -msgstr "" - -#: management/commands/send_email_alerts.py:106 -msgid "\" and more" -msgstr "" - -#: management/commands/send_email_alerts.py:111 +#: management/commands/send_email_alerts.py:411 #, 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:484 +#: management/commands/send_email_alerts.py:421 #, python-format msgid "%(name)s, this is an update message header for %(num)d question" msgid_plural "%(name)s, this is an update message header for %(num)d questions" @@ -2109,124 +2568,133 @@ msgstr[1] "" "

    Dear %(name)s,

    The following %(num)d questions have been updated on " "the Q&A forum:

    " -#: management/commands/send_email_alerts.py:501 +#: management/commands/send_email_alerts.py:438 msgid "new question" msgstr "" -#: management/commands/send_email_alerts.py:518 +#: 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:530 +#: 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:536 +#: 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:542 +#: 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:548 +#: management/commands/send_email_alerts.py:490 #, python-format msgid "" -"go to %(email_settings_link)s to change frequency of email updates or %" -"(admin_email)s administrator" +"go to %(email_settings_link)s to change frequency of email updates or " +"%(admin_email)s administrator" msgstr "" -"

    Please remember that you can always adjust frequency of the email updates or turn them off entirely.
    If you believe that this message was sent in an error, please email about " -"it the forum administrator at %(admin_email)s.

    Sincerely,

    Your " -"friendly Q&A forum server.

    " +"

    Please remember that you can always adjust frequency of the email updates or " +"turn them off entirely.
    If you believe that this message was sent in an " +"error, please email about it the forum administrator at %(admin_email)s.

    Sincerely,

    Your friendly Q&A forum server.

    " + +#: management/commands/send_unanswered_question_reminders.py:80 +#, python-format +msgid "%(question_count)d unanswered question about %(topics)s" +msgid_plural "%(question_count)d unanswered questions about %(topics)s" +msgstr[0] "" +msgstr[1] "" -#: models/__init__.py:299 +#: models/__init__.py:316 msgid "" "Sorry, you cannot accept or unaccept best answers because your account is " "blocked" msgstr "" -#: models/__init__.py:304 +#: models/__init__.py:320 msgid "" "Sorry, you cannot accept or unaccept best answers because your account is " "suspended" msgstr "" -#: models/__init__.py:310 +#: models/__init__.py:333 +#, python-format msgid "" -"Sorry, you cannot accept or unaccept your own answer to your own question" +">%(points)s points required to accept or unaccept your own answer to your " +"own question" msgstr "" -#: models/__init__.py:317 +#: models/__init__.py:347 #, python-format msgid "" -"Sorry, only original author of the question - %(username)s - can accept the " -"best answer" +"Sorry, only original author of the question - %(username)s - can accept or " +"unaccept the best answer" msgstr "" -#: models/__init__.py:340 +#: models/__init__.py:375 msgid "cannot vote for own posts" msgstr "Sorry, you cannot vote for your own posts" -#: models/__init__.py:343 +#: models/__init__.py:378 msgid "Sorry your account appears to be blocked " msgstr "" -#: models/__init__.py:348 +#: models/__init__.py:383 msgid "Sorry your account appears to be suspended " msgstr "" -#: models/__init__.py:358 +#: models/__init__.py:393 #, python-format msgid ">%(points)s points required to upvote" msgstr ">%(points)s points required to upvote " -#: models/__init__.py:364 +#: models/__init__.py:399 #, python-format msgid ">%(points)s points required to downvote" msgstr ">%(points)s points required to downvote " -#: models/__init__.py:379 +#: models/__init__.py:414 msgid "Sorry, blocked users cannot upload files" msgstr "" -#: models/__init__.py:380 +#: models/__init__.py:415 msgid "Sorry, suspended users cannot upload files" msgstr "" -#: models/__init__.py:382 +#: models/__init__.py:417 #, 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:401 models/__init__.py:468 models/__init__.py:2344 +#: models/__init__.py:436 models/__init__.py:503 models/__init__.py:918 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:402 models/__init__.py:2347 +#: models/__init__.py:437 models/__init__.py:921 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:429 +#: models/__init__.py:464 #, python-format msgid "" "Sorry, comments (except the last one) are editable only within %(minutes)s " @@ -2237,56 +2705,56 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: models/__init__.py:441 +#: models/__init__.py:476 msgid "Sorry, but only post owners or moderators can edit comments" msgstr "" -#: models/__init__.py:454 +#: models/__init__.py:489 msgid "" "Sorry, since your account is suspended you can comment only your own posts" msgstr "" -#: models/__init__.py:458 +#: models/__init__.py:493 #, 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:486 +#: models/__init__.py:521 msgid "" "This post has been deleted and can be seen only by post owners, site " "administrators and moderators" msgstr "" -#: models/__init__.py:503 +#: models/__init__.py:538 msgid "" "Sorry, only moderators, site administrators and post owners can edit deleted " "posts" msgstr "" -#: models/__init__.py:518 +#: models/__init__.py:553 msgid "Sorry, since your account is blocked you cannot edit posts" msgstr "" -#: models/__init__.py:522 +#: models/__init__.py:557 msgid "Sorry, since your account is suspended you can edit only your own posts" msgstr "" -#: models/__init__.py:527 +#: models/__init__.py:562 #, python-format msgid "" "Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required" msgstr "" -#: models/__init__.py:534 +#: models/__init__.py:569 #, python-format msgid "" "Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is " "required" msgstr "" -#: models/__init__.py:597 +#: models/__init__.py:632 msgid "" "Sorry, cannot delete your question since it has an upvoted answer posted by " "someone else" @@ -2296,212 +2764,253 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: models/__init__.py:612 +#: models/__init__.py:647 msgid "Sorry, since your account is blocked you cannot delete posts" msgstr "" -#: models/__init__.py:616 +#: models/__init__.py:651 msgid "" "Sorry, since your account is suspended you can delete only your own posts" msgstr "" -#: models/__init__.py:620 +#: models/__init__.py:655 #, python-format msgid "" "Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s " "is required" msgstr "" -#: models/__init__.py:640 +#: models/__init__.py:675 msgid "Sorry, since your account is blocked you cannot close questions" msgstr "" -#: models/__init__.py:644 +#: models/__init__.py:679 msgid "Sorry, since your account is suspended you cannot close questions" msgstr "" -#: models/__init__.py:648 +#: models/__init__.py:683 #, python-format msgid "" "Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is " "required" msgstr "" -#: models/__init__.py:657 +#: models/__init__.py:692 #, python-format msgid "" "Sorry, to close own question a minimum reputation of %(min_rep)s is required" msgstr "" -#: models/__init__.py:681 +#: models/__init__.py:716 #, python-format msgid "" -"Sorry, only administrators, moderators or post owners with reputation > %" -"(min_rep)s can reopen questions." +"Sorry, only administrators, moderators or post owners with reputation > " +"%(min_rep)s can reopen questions." msgstr "" -#: models/__init__.py:687 +#: models/__init__.py:722 #, python-format msgid "" "Sorry, to reopen own question a minimum reputation of %(min_rep)s is required" msgstr "" -#: models/__init__.py:707 +#: models/__init__.py:742 msgid "cannot flag message as offensive twice" msgstr "You have flagged this question before and cannot do it more than once" -#: models/__init__.py:712 +#: models/__init__.py:747 msgid "blocked users cannot flag posts" msgstr "" "Sorry, since your account is blocked you cannot flag posts as offensive" -#: models/__init__.py:714 +#: models/__init__.py:749 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." -#: models/__init__.py:716 +#: models/__init__.py:751 #, python-format 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" -#: models/__init__.py:735 +#: models/__init__.py:770 #, python-format 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." -#: models/__init__.py:750 +#: models/__init__.py:785 msgid "" "Sorry, only question owners, site administrators and moderators can retag " "deleted questions" msgstr "" -#: models/__init__.py:757 +#: models/__init__.py:792 msgid "Sorry, since your account is blocked you cannot retag questions" msgstr "" -#: models/__init__.py:761 +#: models/__init__.py:796 msgid "" "Sorry, since your account is suspended you can retag only your own questions" msgstr "" -#: models/__init__.py:765 +#: models/__init__.py:800 #, python-format msgid "" "Sorry, to retag questions a minimum reputation of %(min_rep)s is required" msgstr "" -#: models/__init__.py:784 +#: models/__init__.py:819 msgid "Sorry, since your account is blocked you cannot delete comment" msgstr "" -#: models/__init__.py:788 +#: models/__init__.py:823 msgid "" "Sorry, since your account is suspended you can delete only your own comments" msgstr "" -#: models/__init__.py:792 +#: models/__init__.py:827 #, python-format msgid "Sorry, to delete comments reputation of %(min_rep)s is required" msgstr "" -#: models/__init__.py:815 +#: models/__init__.py:850 msgid "cannot revoke old vote" msgstr "sorry, but older votes cannot be revoked" -#: models/__init__.py:1370 +#: models/__init__.py:1325 utils/functions.py:70 +#, python-format +msgid "on %(date)s" +msgstr "" + +#: models/__init__.py:1327 +msgid "in two days" +msgstr "" + +#: models/__init__.py:1329 +msgid "tomorrow" +msgstr "" + +#: models/__init__.py:1331 +#, python-format +msgid "in %(hr)d hour" +msgid_plural "in %(hr)d hours" +msgstr[0] "" +msgstr[1] "" + +#: models/__init__.py:1333 +#, python-format +msgid "in %(min)d min" +msgid_plural "in %(min)d mins" +msgstr[0] "" +msgstr[1] "" + +#: models/__init__.py:1334 +#, python-format +msgid "%(days)d day" +msgid_plural "%(days)d days" +msgstr[0] "" +msgstr[1] "" + +#: models/__init__.py:1336 +#, 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:1501 skins/default/templates/feedback_email.txt:9 msgid "Anonymous" msgstr "" -#: models/__init__.py:1456 views/users.py:362 +#: models/__init__.py:1597 views/users.py:365 msgid "Site Adminstrator" msgstr "" -#: models/__init__.py:1458 views/users.py:364 +#: models/__init__.py:1599 views/users.py:367 msgid "Forum Moderator" msgstr "" -#: models/__init__.py:1460 views/users.py:366 +#: models/__init__.py:1601 views/users.py:369 msgid "Suspended User" msgstr "" -#: models/__init__.py:1462 views/users.py:368 +#: models/__init__.py:1603 views/users.py:371 msgid "Blocked User" msgstr "" -#: models/__init__.py:1464 views/users.py:370 +#: models/__init__.py:1605 views/users.py:373 msgid "Registered User" msgstr "" -#: models/__init__.py:1466 +#: models/__init__.py:1607 msgid "Watched User" msgstr "" -#: models/__init__.py:1468 +#: models/__init__.py:1609 msgid "Approved User" msgstr "" -#: models/__init__.py:1524 +#: models/__init__.py:1718 #, python-format msgid "%(username)s karma is %(reputation)s" msgstr "" -#: models/__init__.py:1534 +#: models/__init__.py:1728 #, python-format msgid "one gold badge" msgid_plural "%(count)d gold badges" msgstr[0] "" msgstr[1] "" -#: models/__init__.py:1541 +#: models/__init__.py:1735 #, python-format msgid "one silver badge" msgid_plural "%(count)d silver badges" msgstr[0] "" msgstr[1] "" -#: models/__init__.py:1548 +#: models/__init__.py:1742 #, python-format msgid "one bronze badge" msgid_plural "%(count)d bronze badges" msgstr[0] "" msgstr[1] "" -#: models/__init__.py:1559 +#: models/__init__.py:1753 #, python-format msgid "%(item1)s and %(item2)s" msgstr "" -#: models/__init__.py:1563 +#: models/__init__.py:1757 #, python-format msgid "%(user)s has %(badges)s" msgstr "" -#: models/__init__.py:1936 models/__init__.py:1942 models/__init__.py:1947 -#: models/__init__.py:1952 +#: models/__init__.py:2164 models/__init__.py:2170 models/__init__.py:2175 +#: models/__init__.py:2180 #, python-format msgid "Re: \"%(title)s\"" msgstr "" -#: models/__init__.py:1957 models/__init__.py:1962 +#: models/__init__.py:2185 models/__init__.py:2190 #, python-format msgid "Question: \"%(title)s\"" msgstr "" -#: models/__init__.py:2140 +#: models/__init__.py:2371 #, python-format msgid "" "Congratulations, you have received a badge '%(badge_name)s'. Check out your profile." msgstr "" -#: models/__init__.py:2319 views/commands.py:409 +#: models/__init__.py:2550 views/commands.py:396 msgid "Your tag subscription was saved, thanks!" msgstr "" @@ -2777,43 +3286,52 @@ msgstr "" msgid "Very active in one tag" msgstr "" -#: models/meta.py:111 +#: models/meta.py:112 msgid "" "Sorry, the comment you are looking for is no longer accessible, because the " "parent question has been removed" msgstr "" -#: models/meta.py:118 +#: models/meta.py:119 msgid "" "Sorry, the comment you are looking for is no longer accessible, because the " "parent answer has been removed" msgstr "" -#: models/question.py:387 +#: models/question.py:72 +#, python-format +msgid "\" and \"%s\"" +msgstr "" + +#: models/question.py:75 +msgid "\" and more" +msgstr "" + +#: models/question.py:452 msgid "Sorry, this question has been deleted and is no longer accessible" msgstr "" -#: models/question.py:815 +#: models/question.py:908 #, python-format msgid "%(author)s modified the question" msgstr "" -#: models/question.py:819 +#: models/question.py:912 #, python-format msgid "%(people)s posted %(new_answer_count)s new answers" msgstr "" -#: models/question.py:824 +#: models/question.py:917 #, python-format msgid "%(people)s commented the question" msgstr "" -#: models/question.py:829 +#: models/question.py:922 #, python-format msgid "%(people)s commented answers" msgstr "" -#: models/question.py:831 +#: models/question.py:924 #, python-format msgid "%(people)s commented an answer" msgstr "" @@ -2826,8 +3344,8 @@ msgstr "" #: models/repute.py:153 #, python-format msgid "" -"%(points)s points were added for %(username)s's contribution to question %" -"(question_title)s" +"%(points)s points were added for %(username)s's contribution to question " +"%(question_title)s" msgstr "" #: models/repute.py:158 @@ -2837,47 +3355,47 @@ msgid "" "question %(question_title)s" msgstr "" -#: models/tag.py:138 +#: models/tag.py:151 msgid "interesting" msgstr "" -#: models/tag.py:138 +#: models/tag.py:151 msgid "ignored" msgstr "" -#: models/user.py:261 +#: models/user.py:264 msgid "Entire forum" msgstr "" -#: models/user.py:262 +#: models/user.py:265 msgid "Questions that I asked" msgstr "" -#: models/user.py:263 +#: models/user.py:266 msgid "Questions that I answered" msgstr "" -#: models/user.py:264 +#: models/user.py:267 msgid "Individually selected questions" msgstr "" -#: models/user.py:265 +#: models/user.py:268 msgid "Mentions and comment responses" msgstr "" -#: models/user.py:268 +#: models/user.py:271 msgid "Instantly" msgstr "" -#: models/user.py:269 +#: models/user.py:272 msgid "Daily" msgstr "" -#: models/user.py:270 +#: models/user.py:273 msgid "Weekly" msgstr "" -#: models/user.py:271 +#: models/user.py:274 msgid "No email" msgstr "" @@ -2909,7 +3427,7 @@ msgid "" msgstr "" #: skins/default/templates/404.jinja.html:19 -#: skins/default/templates/blocks/footer.html:6 +#: skins/default/templates/blocks/footer.html:5 #: skins/default/templates/blocks/header_meta_links.html:13 #: skins/default/templates/blocks/question_edit_tips.html:15 msgid "faq" @@ -2975,26 +3493,25 @@ msgstr "" msgid "back" msgstr "" -#: skins/default/templates/answer_edit.html:15 -#: skins/default/templates/question_edit.html:11 +#: skins/default/templates/answer_edit.html:14 msgid "revision" msgstr "" -#: skins/default/templates/answer_edit.html:18 +#: skins/default/templates/answer_edit.html:17 #: skins/default/templates/question_edit.html:16 msgid "select revision" msgstr "" -#: skins/default/templates/answer_edit.html:22 -#: skins/default/templates/question_edit.html:20 +#: skins/default/templates/answer_edit.html:21 +#: skins/default/templates/question_edit.html:27 msgid "Save edit" msgstr "" -#: skins/default/templates/answer_edit.html:23 +#: skins/default/templates/answer_edit.html:22 #: skins/default/templates/close.html:16 #: skins/default/templates/feedback.html:42 -#: skins/default/templates/question_edit.html:21 -#: skins/default/templates/question_retag.html:23 +#: skins/default/templates/question_edit.html:28 +#: skins/default/templates/question_retag.html:22 #: skins/default/templates/reopen.html:27 #: skins/default/templates/subscribe_for_tags.html:16 #: skins/default/templates/authopenid/changeemail.html:38 @@ -3002,21 +3519,21 @@ msgstr "" msgid "Cancel" msgstr "" -#: skins/default/templates/answer_edit.html:62 -#: skins/default/templates/answer_edit.html:65 -#: skins/default/templates/ask.html:43 skins/default/templates/ask.html:46 -#: skins/default/templates/macros.html:592 -#: skins/default/templates/question.html:474 -#: skins/default/templates/question.html:477 -#: skins/default/templates/question_edit.html:62 -#: skins/default/templates/question_edit.html:65 +#: skins/default/templates/answer_edit.html:60 +#: skins/default/templates/answer_edit.html:63 +#: skins/default/templates/ask.html:46 skins/default/templates/ask.html:49 +#: skins/default/templates/macros.html:698 +#: skins/default/templates/question.html:562 +#: skins/default/templates/question.html:565 +#: skins/default/templates/question_edit.html:72 +#: skins/default/templates/question_edit.html:75 msgid "hide preview" msgstr "" -#: skins/default/templates/answer_edit.html:65 -#: skins/default/templates/ask.html:46 -#: skins/default/templates/question.html:477 -#: skins/default/templates/question_edit.html:65 +#: skins/default/templates/answer_edit.html:63 +#: skins/default/templates/ask.html:49 +#: skins/default/templates/question.html:565 +#: skins/default/templates/question_edit.html:75 msgid "show preview" msgstr "" @@ -3026,7 +3543,7 @@ msgstr "" #: skins/default/templates/badge.html:4 skins/default/templates/badge.html:8 #: skins/default/templates/user_profile/user_recent.html:16 -#: skins/default/templates/user_profile/user_stats.html:106 +#: skins/default/templates/user_profile/user_stats.html:110 #, python-format msgid "%(name)s" msgstr "" @@ -3042,7 +3559,7 @@ msgstr "" #: skins/default/templates/badge.html:8 #: skins/default/templates/user_profile/user_recent.html:16 -#: skins/default/templates/user_profile/user_stats.html:106 +#: skins/default/templates/user_profile/user_stats.html:108 #, python-format msgid "%(description)s" msgstr "" @@ -3069,8 +3586,8 @@ 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. Give us feedback at " +"%(feedback_faq_url)s.\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 " @@ -3124,25 +3641,27 @@ msgstr "" msgid "OK to close" msgstr "" -#: skins/default/templates/faq.html:3 skins/default/templates/faq.html.py:5 +#: skins/default/templates/faq.html:3 +#: skins/default/templates/faq_static.html:3 +#: skins/default/templates/faq_static.html:5 msgid "FAQ" msgstr "" -#: skins/default/templates/faq.html:5 +#: skins/default/templates/faq_static.html:5 msgid "Frequently Asked Questions " msgstr "" -#: skins/default/templates/faq.html:6 +#: skins/default/templates/faq_static.html:6 msgid "What kinds of questions can I ask here?" msgstr "" -#: skins/default/templates/faq.html:7 +#: skins/default/templates/faq_static.html:7 msgid "" "Most importanly - questions should be relevant to this " "community." msgstr "" -#: skins/default/templates/faq.html:8 +#: 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." @@ -3150,21 +3669,21 @@ 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.html:10 +#: skins/default/templates/faq_static.html:10 msgid "What questions should I avoid asking?" msgstr "What kinds of questions should be avoided?" -#: skins/default/templates/faq.html:11 +#: skins/default/templates/faq_static.html:11 msgid "" "Please avoid asking questions that are not relevant to this community, too " "subjective and argumentative." msgstr "" -#: skins/default/templates/faq.html:13 +#: skins/default/templates/faq_static.html:13 msgid "What should I avoid in my answers?" msgstr "" -#: skins/default/templates/faq.html:14 +#: 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 " @@ -3175,19 +3694,19 @@ msgstr "" "they tend to dilute the essense of questions and answers. For the brief " "discussions please use commenting facility." -#: skins/default/templates/faq.html:15 +#: skins/default/templates/faq_static.html:15 msgid "Who moderates this community?" msgstr "" -#: skins/default/templates/faq.html:16 +#: skins/default/templates/faq_static.html:16 msgid "The short answer is: you." msgstr "" -#: skins/default/templates/faq.html:17 +#: skins/default/templates/faq_static.html:17 msgid "This website is moderated by the users." msgstr "" -#: skins/default/templates/faq.html:18 +#: skins/default/templates/faq_static.html:18 msgid "" "The reputation system allows users earn the authorization to perform a " "variety of moderation tasks." @@ -3195,11 +3714,11 @@ msgstr "" "Karma system allows users to earn rights to perform a variety of moderation " "tasks" -#: skins/default/templates/faq.html:20 +#: skins/default/templates/faq_static.html:20 msgid "How does reputation system work?" msgstr "How does karma system work?" -#: skins/default/templates/faq.html:21 +#: skins/default/templates/faq_static.html:21 msgid "Rep system summary" msgstr "" "When a question or answer is upvoted, the user who posted them will gain " @@ -3207,62 +3726,66 @@ 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/faq.html:22 +#: 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 %" -"(REP_GAIN_FOR_RECEIVING_UPVOTE)s points, each vote against will " +"it will be downvoted. Each vote in favor will generate " +"%(REP_GAIN_FOR_RECEIVING_UPVOTE)s points, each vote against will " "subtract %(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s points. There " "is a limit of %(MAX_REP_GAIN_PER_USER_PER_DAY)s 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 "" -#: skins/default/templates/faq.html:32 +#: skins/default/templates/faq_static.html:32 #: skins/default/templates/user_profile/user_votes.html:13 msgid "upvote" msgstr "" -#: skins/default/templates/faq.html:37 +#: skins/default/templates/faq_static.html:37 msgid "use tags" msgstr "" -#: skins/default/templates/faq.html:42 +#: skins/default/templates/faq_static.html:42 msgid "add comments" msgstr "" -#: skins/default/templates/faq.html:46 +#: skins/default/templates/faq_static.html:46 #: skins/default/templates/user_profile/user_votes.html:15 msgid "downvote" msgstr "" -#: skins/default/templates/faq.html:49 +#: skins/default/templates/faq_static.html:49 +msgid " accept own answer to own questions" +msgstr "" + +#: skins/default/templates/faq_static.html:53 msgid "open and close own questions" msgstr "" -#: skins/default/templates/faq.html:53 +#: skins/default/templates/faq_static.html:57 msgid "retag other's questions" msgstr "" -#: skins/default/templates/faq.html:58 +#: skins/default/templates/faq_static.html:62 msgid "edit community wiki questions" msgstr "" -#: skins/default/templates/faq.html:63 +#: skins/default/templates/faq_static.html:67 msgid "\"edit any answer" msgstr "" -#: skins/default/templates/faq.html:67 +#: skins/default/templates/faq_static.html:71 msgid "\"delete any comment" msgstr "" -#: skins/default/templates/faq.html:70 +#: 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.html:71 +#: skins/default/templates/faq_static.html:75 msgid "gravatar faq info" msgstr "" "

    The picture that appears on the users profiles is called " @@ -3279,44 +3802,44 @@ msgstr "" "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.

    " -#: skins/default/templates/faq.html:72 +#: skins/default/templates/faq_static.html:76 msgid "To register, do I need to create new password?" msgstr "" -#: skins/default/templates/faq.html:73 +#: skins/default/templates/faq_static.html:77 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.html:74 +#: skins/default/templates/faq_static.html:78 msgid "\"Login now!\"" msgstr "" -#: skins/default/templates/faq.html:76 +#: skins/default/templates/faq_static.html:80 msgid "Why other people can edit my questions/answers?" msgstr "" -#: skins/default/templates/faq.html:77 +#: skins/default/templates/faq_static.html:81 msgid "Goal of this site is..." msgstr "" -#: skins/default/templates/faq.html:77 +#: skins/default/templates/faq_static.html:81 msgid "" "So questions and answers can be edited like wiki pages by experienced users " "of this site and this improves the overall quality of the knowledge base " "content." msgstr "" -#: skins/default/templates/faq.html:78 +#: skins/default/templates/faq_static.html:82 msgid "If this approach is not for you, we respect your choice." msgstr "" -#: skins/default/templates/faq.html:80 +#: skins/default/templates/faq_static.html:84 msgid "Still have questions?" msgstr "" -#: skins/default/templates/faq.html:81 +#: skins/default/templates/faq_static.html:85 #, python-format msgid "" "Please ask your question at %(ask_question_url)s, help make our community " @@ -3364,28 +3887,11 @@ msgstr "" msgid "Send Feedback" msgstr "" -#: skins/default/templates/feedback_email.txt:3 +#: skins/default/templates/feedback_email.txt:2 #, python-format msgid "" "\n" -"Hello, this is a %(site_title)s forum feedback message\n" -msgstr "" - -#: skins/default/templates/feedback_email.txt:9 -msgid "Sender is" -msgstr "" - -#: skins/default/templates/feedback_email.txt:11 -#: skins/default/templates/feedback_email.txt:14 -msgid "email" -msgstr "" - -#: skins/default/templates/feedback_email.txt:13 -msgid "anonymous" -msgstr "" - -#: skins/default/templates/feedback_email.txt:19 -msgid "Message body:" +"Hello, this is a %(site_title)s forum feedback message.\n" msgstr "" #: skins/default/templates/import_data.html:2 @@ -3486,144 +3992,147 @@ msgstr "" msgid "

    Sincerely,
    Forum Administrator

    " msgstr "" -#: skins/default/templates/logout.html:3 skins/default/templates/logout.html:5 -msgid "Logout" -msgstr "Sign out" +#: skins/default/templates/macros.html:25 +#, python-format +msgid "Share this question on %(site)s" +msgstr "" -#: skins/default/templates/logout.html:6 -msgid "" -"As a registered user you can login with your OpenID, log out of the site or " -"permanently remove your account." +#: skins/default/templates/macros.html:36 +#, python-format +msgid "follow %(alias)s" msgstr "" -"Clicking Logout will log you out from the forum but will " -"not sign you off from your OpenID provider.

    If you wish to sign off " -"completely - please make sure to log out from your OpenID provider as well." -#: skins/default/templates/logout.html:7 -msgid "Logout now" -msgstr "Logout Now" +#: skins/default/templates/macros.html:39 +#, python-format +msgid "unfollow %(alias)s" +msgstr "" + +#: skins/default/templates/macros.html:40 +#, python-format +msgid "following %(alias)s" +msgstr "" -#: skins/default/templates/macros.html:26 +#: skins/default/templates/macros.html:63 msgid "karma:" msgstr "" -#: skins/default/templates/macros.html:30 +#: skins/default/templates/macros.html:67 msgid "badges:" msgstr "" -#: skins/default/templates/macros.html:82 -#: skins/default/templates/macros.html:83 +#: skins/default/templates/macros.html:143 +#: skins/default/templates/macros.html:144 msgid "previous" msgstr "" -#: skins/default/templates/macros.html:94 +#: skins/default/templates/macros.html:155 msgid "current page" msgstr "" -#: skins/default/templates/macros.html:96 -#: skins/default/templates/macros.html:103 +#: skins/default/templates/macros.html:157 +#: skins/default/templates/macros.html:164 #, python-format msgid "page number %(num)s" msgstr "page %(num)s" -#: skins/default/templates/macros.html:107 +#: skins/default/templates/macros.html:168 msgid "next page" msgstr "" -#: skins/default/templates/macros.html:118 +#: skins/default/templates/macros.html:179 msgid "posts per page" msgstr "" -#: skins/default/templates/macros.html:150 templatetags/extra_tags.py:43 +#: skins/default/templates/macros.html:211 templatetags/extra_tags.py:43 #, python-format msgid "%(username)s gravatar image" msgstr "" -#: skins/default/templates/macros.html:159 +#: skins/default/templates/macros.html:220 #, python-format msgid "%(username)s's website is %(url)s" msgstr "" -#: skins/default/templates/macros.html:171 +#: skins/default/templates/macros.html:232 #, fuzzy msgid "anonymous user" msgstr "Sorry, anonymous users cannot vote" -#: skins/default/templates/macros.html:199 +#: skins/default/templates/macros.html:260 msgid "this post is marked as community wiki" msgstr "" -#: skins/default/templates/macros.html:202 +#: skins/default/templates/macros.html:263 #, python-format msgid "" "This post is a wiki.\n" " Anyone with karma >%(wiki_min_rep)s is welcome to improve it." msgstr "" -#: skins/default/templates/macros.html:208 +#: skins/default/templates/macros.html:269 msgid "asked" msgstr "" -#: skins/default/templates/macros.html:210 +#: skins/default/templates/macros.html:271 msgid "answered" msgstr "" -#: skins/default/templates/macros.html:212 +#: skins/default/templates/macros.html:273 msgid "posted" msgstr "" -#: skins/default/templates/macros.html:242 +#: skins/default/templates/macros.html:303 msgid "updated" msgstr "" -#: skins/default/templates/macros.html:309 +#: skins/default/templates/macros.html:379 #, python-format msgid "see questions tagged '%(tag)s'" msgstr "" -#: skins/default/templates/macros.html:352 views/readers.py:219 -msgid "vote" -msgid_plural "votes" +#: skins/default/templates/macros.html:424 views/readers.py:239 +msgid "view" +msgid_plural "views" msgstr[0] "" msgstr[1] "" -#: skins/default/templates/macros.html:369 views/readers.py:222 +#: skins/default/templates/macros.html:441 views/readers.py:236 msgid "answer" msgid_plural "answers" msgstr[0] "" msgstr[1] "" -#: skins/default/templates/macros.html:380 views/readers.py:225 -msgid "view" -msgid_plural "views" +#: skins/default/templates/macros.html:452 views/readers.py:233 +msgid "vote" +msgid_plural "votes" msgstr[0] "" msgstr[1] "" -#: skins/default/templates/macros.html:409 -#: skins/default/templates/question.html:93 -#: skins/default/templates/question.html:249 -#: skins/default/templates/revisions.html:37 -msgid "edit" +#: skins/default/templates/macros.html:491 +msgid "delete this comment" msgstr "" -#: skins/default/templates/macros.html:413 -msgid "delete this comment" +#: skins/default/templates/macros.html:502 +#: skins/default/templates/question.html:79 +#: skins/default/templates/question.html:235 +#: skins/default/templates/revisions.html:37 +msgid "edit" msgstr "" -#: skins/default/templates/macros.html:431 -#: skins/default/templates/macros.html:439 -#: skins/default/templates/question.html:439 +#: skins/default/templates/macros.html:520 +#: skins/default/templates/macros.html:528 +#: skins/default/templates/question.html:511 msgid "add comment" msgstr "post a comment" -#: skins/default/templates/macros.html:432 +#: skins/default/templates/macros.html:521 #, python-format msgid "see %(counter)s more" msgid_plural "see %(counter)s more" msgstr[0] "" msgstr[1] "" -#: skins/default/templates/macros.html:434 +#: skins/default/templates/macros.html:523 #, python-format msgid "see %(counter)s more comment" msgid_plural "" @@ -3632,44 +4141,48 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: skins/default/templates/macros.html:569 +#: skins/default/templates/macros.html:661 +msgid "one of these is required" +msgstr "" + +#: skins/default/templates/macros.html:673 msgid "(required)" msgstr "" -#: skins/default/templates/macros.html:590 +#: skins/default/templates/macros.html:696 msgid "Toggle the real time Markdown editor preview" msgstr "" -#: skins/default/templates/macros.html:602 +#: skins/default/templates/macros.html:708 #, python-format msgid "responses for %(username)s" msgstr "" -#: skins/default/templates/macros.html:605 +#: skins/default/templates/macros.html:711 #, python-format msgid "you have a new response" msgid_plural "you have %(response_count)s new responses" msgstr[0] "" msgstr[1] "" -#: skins/default/templates/macros.html:608 +#: skins/default/templates/macros.html:714 msgid "no new responses yet" msgstr "" -#: skins/default/templates/macros.html:623 -#: skins/default/templates/macros.html:624 +#: skins/default/templates/macros.html:729 +#: skins/default/templates/macros.html:730 #, python-format msgid "%(new)s new flagged posts and %(seen)s previous" msgstr "" -#: skins/default/templates/macros.html:626 -#: skins/default/templates/macros.html:627 +#: skins/default/templates/macros.html:732 +#: skins/default/templates/macros.html:733 #, python-format msgid "%(new)s new flagged posts" msgstr "" -#: skins/default/templates/macros.html:632 -#: skins/default/templates/macros.html:633 +#: skins/default/templates/macros.html:738 +#: skins/default/templates/macros.html:739 #, python-format msgid "%(seen)s flagged posts" msgstr "" @@ -3683,174 +4196,176 @@ msgstr "" msgid "Privacy policy" msgstr "" +#: skins/default/templates/question.html:26 #: skins/default/templates/question.html:27 -#: skins/default/templates/question.html:28 -#: skins/default/templates/question.html:43 -#: skins/default/templates/question.html:45 +#: skins/default/templates/question.html:42 +#: skins/default/templates/question.html:44 msgid "i like this post (click again to cancel)" msgstr "" -#: skins/default/templates/question.html:30 -#: skins/default/templates/question.html:47 -#: skins/default/templates/question.html:200 +#: skins/default/templates/question.html:29 +#: skins/default/templates/question.html:46 +#: skins/default/templates/question.html:186 msgid "current number of votes" msgstr "" +#: skins/default/templates/question.html:38 #: skins/default/templates/question.html:39 -#: skins/default/templates/question.html:40 +#: skins/default/templates/question.html:51 #: skins/default/templates/question.html:52 -#: skins/default/templates/question.html:53 msgid "i dont like this post (click again to cancel)" msgstr "" -#: skins/default/templates/question.html:57 -#: skins/default/templates/question.html:58 -msgid "mark this question as favorite (click again to cancel)" -msgstr "" - -#: skins/default/templates/question.html:64 -#: skins/default/templates/question.html:65 -msgid "remove favorite mark from this question (click again to restore mark)" -msgstr "" - -#: skins/default/templates/question.html:71 -msgid "Share this question on twitter" -msgstr "" - -#: skins/default/templates/question.html:72 -msgid "Share this question on facebook" -msgstr "" - -#: skins/default/templates/question.html:96 +#: skins/default/templates/question.html:82 msgid "retag" msgstr "" -#: skins/default/templates/question.html:103 +#: skins/default/templates/question.html:89 msgid "reopen" msgstr "" -#: skins/default/templates/question.html:107 +#: skins/default/templates/question.html:93 msgid "close" msgstr "" -#: skins/default/templates/question.html:112 -#: skins/default/templates/question.html:253 +#: skins/default/templates/question.html:98 +#: skins/default/templates/question.html:239 msgid "" "report as offensive (i.e containing spam, advertising, malicious text, etc.)" msgstr "" -#: skins/default/templates/question.html:113 -#: skins/default/templates/question.html:254 +#: skins/default/templates/question.html:99 +#: skins/default/templates/question.html:240 msgid "flag offensive" msgstr "" -#: skins/default/templates/question.html:120 -#: skins/default/templates/question.html:264 +#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:250 msgid "undelete" msgstr "" -#: skins/default/templates/question.html:120 -#: skins/default/templates/question.html:264 -#: skins/default/templates/authopenid/signin.html:149 +#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:250 +#: skins/default/templates/authopenid/signin.html:166 msgid "delete" msgstr "" -#: skins/default/templates/question.html:157 +#: skins/default/templates/question.html:143 #, python-format msgid "" "The question has been closed for the following reason \"%(close_reason)s\" by" msgstr "" -#: skins/default/templates/question.html:159 +#: skins/default/templates/question.html:145 #, python-format msgid "close date %(closed_at)s" msgstr "" -#: skins/default/templates/question.html:165 +#: skins/default/templates/question.html:151 #, 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.html:173 +#: skins/default/templates/question.html:159 msgid "oldest answers will be shown first" msgstr "" -#: skins/default/templates/question.html:174 +#: skins/default/templates/question.html:160 msgid "oldest answers" msgstr "oldest" -#: skins/default/templates/question.html:176 +#: skins/default/templates/question.html:162 msgid "newest answers will be shown first" msgstr "" -#: skins/default/templates/question.html:177 +#: skins/default/templates/question.html:163 msgid "newest answers" msgstr "newest" -#: skins/default/templates/question.html:179 +#: skins/default/templates/question.html:165 msgid "most voted answers will be shown first" msgstr "" -#: skins/default/templates/question.html:180 +#: skins/default/templates/question.html:166 msgid "popular answers" msgstr "most voted" -#: skins/default/templates/question.html:198 -#: skins/default/templates/question.html:199 +#: skins/default/templates/question.html:184 +#: skins/default/templates/question.html:185 msgid "i like this answer (click again to cancel)" msgstr "" -#: skins/default/templates/question.html:209 -#: skins/default/templates/question.html:210 +#: skins/default/templates/question.html:195 +#: skins/default/templates/question.html:196 msgid "i dont like this answer (click again to cancel)" msgstr "" -#: skins/default/templates/question.html:218 -#: skins/default/templates/question.html:219 +#: skins/default/templates/question.html:204 +#: skins/default/templates/question.html:205 msgid "mark this answer as favorite (click again to undo)" msgstr "" -#: skins/default/templates/question.html:228 -#: skins/default/templates/question.html:229 +#: skins/default/templates/question.html:214 +#: skins/default/templates/question.html:215 #, python-format msgid "%(question_author)s has selected this answer as correct" msgstr "" -#: skins/default/templates/question.html:244 +#: skins/default/templates/question.html:230 msgid "answer permanent link" msgstr "permanent link" -#: skins/default/templates/question.html:245 +#: skins/default/templates/question.html:231 msgid "permanent link" msgstr "link" -#: skins/default/templates/question.html:314 -#: skins/default/templates/question.html:316 +#: skins/default/templates/question.html:256 +#, fuzzy +msgid "swap with question" +msgstr "Post Your Answer" + +#: skins/default/templates/question.html:297 +#, python-format +msgid "" +"Know someone who can answer? Share a link " +"to this question via" +msgstr "" + +#: skins/default/templates/question.html:303 +msgid " or" +msgstr "" + +#: skins/default/templates/question.html:305 +msgid "email" +msgstr "" + +#: skins/default/templates/question.html:320 +#: skins/default/templates/question.html:322 msgid "Notify me once a day when there are any new answers" msgstr "" "Notify me once a day by email when there are any new " "answers or updates" -#: skins/default/templates/question.html:318 +#: skins/default/templates/question.html:324 msgid "Notify me weekly when there are any new answers" msgstr "" "Notify me weekly when there are any new answers or updates" -#: skins/default/templates/question.html:320 +#: skins/default/templates/question.html:326 msgid "Notify me immediately when there are any new answers" msgstr "" "Notify me immediately when there are any new answers or " "updates" -#: skins/default/templates/question.html:323 +#: skins/default/templates/question.html:329 #, python-format msgid "" "You can always adjust frequency of email updates from your %(profile_url)s" @@ -3858,21 +4373,26 @@ msgstr "" "(note: you can always change how often you receive updates)" -#: skins/default/templates/question.html:328 +#: skins/default/templates/question.html:334 msgid "once you sign in you will be able to subscribe for any updates here" msgstr "" "Here (once you log in) you will be able to sign " "up for the periodic email updates about this question." -#: skins/default/templates/question.html:338 +#: skins/default/templates/question.html:344 +#, fuzzy +msgid "Login/Signup to Answer" +msgstr "Login/Signup to Post" + +#: skins/default/templates/question.html:352 msgid "Your answer" msgstr "" -#: skins/default/templates/question.html:340 +#: skins/default/templates/question.html:354 msgid "Be the first one to answer this question!" msgstr "" -#: skins/default/templates/question.html:346 +#: skins/default/templates/question.html:360 msgid "you can answer anonymously and then login" msgstr "" "Please start posting your answer anonymously " @@ -3881,7 +4401,7 @@ msgstr "" "answer, for discussions, please use comments and " "please do remember to vote (after you log in)!" -#: skins/default/templates/question.html:350 +#: skins/default/templates/question.html:364 msgid "answer your own question only to give an answer" msgstr "" "You are welcome to answer your own question, " @@ -3891,7 +4411,7 @@ msgstr "" "forget to vote :) for the answers that you liked (or perhaps did " "not like)! " -#: skins/default/templates/question.html:352 +#: skins/default/templates/question.html:366 msgid "please only give an answer, no discussions" msgstr "" "Please try to give a substantial answer. If " @@ -3901,39 +4421,101 @@ msgstr "" "please don't forget to vote - it really helps to select the " "best questions and answers!" -#: skins/default/templates/question.html:359 +#: skins/default/templates/question.html:373 msgid "Login/Signup to Post Your Answer" msgstr "Login/Signup to Post" -#: skins/default/templates/question.html:362 +#: skins/default/templates/question.html:376 +#: skins/default/templates/question.html:389 msgid "Answer Your Own Question" msgstr "" -#: skins/default/templates/question.html:364 +#: skins/default/templates/question.html:378 msgid "Answer the question" msgstr "Post Your Answer" -#: skins/default/templates/question.html:380 +#: skins/default/templates/question.html:397 +#, fuzzy +msgid "Question tools" +msgstr "Tags" + +#: skins/default/templates/question.html:400 +msgid "click to unfollow this question" +msgstr "" + +#: skins/default/templates/question.html:401 +msgid "Following" +msgstr "" + +#: skins/default/templates/question.html:402 +msgid "Unfollow" +msgstr "" + +#: skins/default/templates/question.html:406 +#, fuzzy +msgid "click to follow this question" +msgstr "" +"You are welcome to start submitting your question " +"anonymously. 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/question.html:407 +msgid "Follow" +msgstr "" + +#: skins/default/templates/question.html:414 +#, python-format +msgid "%(count)s follower" +msgid_plural "%(count)s followers" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/templates/question.html:420 +#, fuzzy +msgid "email the updates" +msgstr "Last updated" + +#: skins/default/templates/question.html:423 +msgid "" +"Here (once you log in) you will be able to sign up for the " +"periodic email updates about this question." +msgstr "" + +#: skins/default/templates/question.html:428 +msgid "subscribe to this question rss feed" +msgstr "" + +#: skins/default/templates/question.html:429 +msgid "subsribe to rss feed" +msgstr "" + +#: skins/default/templates/question.html:438 msgid "Question tags" msgstr "Tags" -#: skins/default/templates/question.html:397 +#: skins/default/templates/question.html:460 +msgid "Stats:" +msgstr "" + +#: skins/default/templates/question.html:462 msgid "question asked" msgstr "Asked" -#: skins/default/templates/question.html:400 +#: skins/default/templates/question.html:465 msgid "question was seen" msgstr "Seen" -#: skins/default/templates/question.html:400 +#: skins/default/templates/question.html:465 msgid "times" msgstr "" -#: skins/default/templates/question.html:403 +#: skins/default/templates/question.html:468 msgid "last updated" msgstr "Last updated" -#: skins/default/templates/question.html:410 +#: skins/default/templates/question.html:477 msgid "Related questions" msgstr "" @@ -3947,23 +4529,23 @@ msgstr "" msgid "Change tags" msgstr "Retag question" -#: skins/default/templates/question_retag.html:22 +#: skins/default/templates/question_retag.html:21 msgid "Retag" msgstr "" -#: skins/default/templates/question_retag.html:30 +#: skins/default/templates/question_retag.html:28 msgid "Why use and modify tags?" msgstr "" -#: skins/default/templates/question_retag.html:32 +#: skins/default/templates/question_retag.html:30 msgid "Tags help to keep the content better organized and searchable" msgstr "" -#: skins/default/templates/question_retag.html:34 +#: skins/default/templates/question_retag.html:32 msgid "tag editors receive special awards from the community" msgstr "" -#: skins/default/templates/question_retag.html:61 +#: skins/default/templates/question_retag.html:59 msgid "up to 5 tags, less than 20 characters each" msgstr "" @@ -4025,33 +4607,32 @@ msgstr "" msgid "Subscribe" msgstr "" -#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:8 +#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:11 msgid "Tag list" msgstr "Tags" -#: skins/default/templates/tags.html:14 -msgid "sorted alphabetically" +#: skins/default/templates/tags.html:9 +#, python-format +msgid "Tags, matching \"%(stag)s\"" msgstr "" -#: skins/default/templates/tags.html:15 -msgid "by name" +#: skins/default/templates/tags.html:19 +msgid "sorted alphabetically" msgstr "" #: skins/default/templates/tags.html:20 -msgid "sorted by frequency of tag use" +msgid "by name" msgstr "" -#: skins/default/templates/tags.html:21 -msgid "by popularity" +#: skins/default/templates/tags.html:25 +msgid "sorted by frequency of tag use" msgstr "" #: skins/default/templates/tags.html:26 -#, python-format -msgid "" -"All tags matching '%(stag)s'" +msgid "by popularity" msgstr "" -#: skins/default/templates/tags.html:29 +#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:56 msgid "Nothing found" msgstr "" @@ -4059,16 +4640,32 @@ msgstr "" msgid "Users" msgstr "People" -#: skins/default/templates/users.html:13 skins/default/templates/users.html:14 +#: skins/default/templates/users.html:13 +msgid "see people with the highest reputation" +msgstr "" + +#: skins/default/templates/users.html:14 #: skins/default/templates/user_profile/user_info.html:25 msgid "reputation" msgstr "karma" -#: skins/default/templates/users.html:19 skins/default/templates/users.html:20 +#: skins/default/templates/users.html:19 +msgid "see people who joined most recently" +msgstr "" + +#: skins/default/templates/users.html:20 msgid "recent" msgstr "" -#: skins/default/templates/users.html:31 skins/default/templates/users.html:32 +#: skins/default/templates/users.html:25 +msgid "see people who joined the site first" +msgstr "" + +#: skins/default/templates/users.html:31 +msgid "see people sorted by name" +msgstr "" + +#: skins/default/templates/users.html:32 msgid "by username" msgstr "" @@ -4106,9 +4703,10 @@ msgstr "" "Please enter your email address in the box below. Valid email address is required on this Q&A forum. If you like, " "you can receive updates on interesting questions or entire " -"forum via email. Also, your email is used to create a unique gravatar image for your account. " -"Email addresses are never shown or otherwise shared with anybody else." +"forum via email. Also, your email is used to create a unique gravatar image for your " +"account. Email addresses are never shown or otherwise shared with anybody " +"else." #: skins/default/templates/authopenid/changeemail.html:29 msgid "Your new Email" @@ -4133,12 +4731,12 @@ msgstr "" #, python-format msgid "validate %(email)s info or go to %(change_email_url)s" msgstr "" -"An email with a validation link has been sent to %" -"(email)s. Please follow the emailed link with your " +"An email with a validation link has been sent to " +"%(email)s. Please follow the emailed link with your " "web browser. Email validation is necessary to help insure the proper use of " "email on Q&A. If you would like to use " -"another email, please change it again." +"another email, please change it again." #: skins/default/templates/authopenid/changeemail.html:52 msgid "Email not changed" @@ -4150,8 +4748,8 @@ msgid "old %(email)s kept, if you like go to %(change_email_url)s" msgstr "" "Your email address %(email)s has not been changed." " If you decide to change it later - you can always do it by editing " -"it in your user profile or by using the previous form again." +"it in your user profile or by using the previous form again." #: skins/default/templates/authopenid/changeemail.html:59 msgid "Email changed" @@ -4188,8 +4786,9 @@ msgstr "Validation email not sent" msgid "email key not sent %(email)s change email here %(change_link)s" msgstr "" "Your current email address %(email)s has been " -"validated before so the new key was not sent. You can change email used for update subscriptions if necessary." +"validated before so the new key was not sent. You can change email used for update subscriptions if " +"necessary." #: skins/default/templates/authopenid/complete.html:21 #: skins/default/templates/authopenid/complete.html:23 @@ -4200,8 +4799,8 @@ msgstr "" #, python-format msgid "register new %(provider)s account info, see %(gravatar_faq_url)s" msgstr "" -"

    You are here for the first time with your %" -"(provider)s login. Please create your screen name " +"

    You are here for the first time with your " +"%(provider)s login. Please create your screen name " "and save your email address. Saved email address will let " "you subscribe for the updates on the most interesting " "questions and will be used to create and retrieve your unique avatar image - " @@ -4211,8 +4810,8 @@ msgstr "" #, python-format msgid "" "%(username)s already exists, choose another name for \n" -" %(provider)s. Email is required too, see %" -"(gravatar_faq_url)s\n" +" %(provider)s. Email is required too, see " +"%(gravatar_faq_url)s\n" " " msgstr "" "

    Oops... looks like screen name %(username)s is " @@ -4229,14 +4828,14 @@ msgstr "" msgid "" "register new external %(provider)s account info, see %(gravatar_faq_url)s" msgstr "" -"

    You are here for the first time with your %" -"(provider)s login.

    You can either keep your screen " +"

    You are here for the first time with your " +"%(provider)s login.

    You can either keep your screen " "name the same as your %(provider)s login name or choose some other " "nickname.

    Also, please save a valid email address. " "With the email you can subscribe for the updates on the " "most interesting questions. Email address is also used to create and " -"retrieve your unique avatar image - gravatar.

    " +"retrieve your unique avatar image - gravatar.

    " #: skins/default/templates/authopenid/complete.html:37 #, python-format @@ -4246,8 +4845,8 @@ msgstr "" "Facebook login. Please create your screen name and " "save your email address. Saved email address will let you " "subscribe for the updates on the most interesting questions " -"and will be used to create and retrieve your unique avatar image - gravatar.

    " +"and will be used to create and retrieve your unique avatar image - gravatar.

    " #: skins/default/templates/authopenid/complete.html:40 msgid "This account already exists, please use another." @@ -4334,16 +4933,30 @@ msgid "" "for any inconvenience" msgstr "" -#: skins/default/templates/authopenid/macros.html:50 +#: skins/default/templates/authopenid/logout.html:3 +msgid "Logout" +msgstr "Sign out" + +#: skins/default/templates/authopenid/logout.html:5 +msgid "You have successfully logged out" +msgstr "" + +#: skins/default/templates/authopenid/logout.html: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 "" + +#: skins/default/templates/authopenid/macros.html:53 msgid "Please enter your user name, then sign in" msgstr "" -#: skins/default/templates/authopenid/macros.html:51 -#: skins/default/templates/authopenid/signin.html:84 +#: skins/default/templates/authopenid/macros.html:54 +#: skins/default/templates/authopenid/signin.html:90 msgid "(or select another login method above)" msgstr "" -#: skins/default/templates/authopenid/macros.html:53 +#: skins/default/templates/authopenid/macros.html:56 msgid "Sign in" msgstr "" @@ -4351,7 +4964,7 @@ msgstr "" msgid "User login" msgstr "User login" -#: skins/default/templates/authopenid/signin.html:12 +#: skins/default/templates/authopenid/signin.html:14 #, python-format msgid "" "\n" @@ -4363,7 +4976,7 @@ msgstr "" "strong> %(summary)s...\" is saved and will be " "posted once you log in." -#: skins/default/templates/authopenid/signin.html:19 +#: skins/default/templates/authopenid/signin.html:21 #, python-format msgid "" "Your question \n" @@ -4374,143 +4987,148 @@ msgstr "" "strong> %(summary)s...\" is saved and will be " "posted once you log in." -#: skins/default/templates/authopenid/signin.html:26 +#: skins/default/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." msgstr "" -#: skins/default/templates/authopenid/signin.html:29 +#: skins/default/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 "" -#: skins/default/templates/authopenid/signin.html:31 +#: skins/default/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 "" -#: skins/default/templates/authopenid/signin.html:35 +#: skins/default/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 "" -#: skins/default/templates/authopenid/signin.html:37 +#: skins/default/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 "" -#: skins/default/templates/authopenid/signin.html:40 +#: skins/default/templates/authopenid/signin.html:42 msgid "" "Please check your email and visit the enclosed link to re-connect to your " "account" msgstr "" -#: skins/default/templates/authopenid/signin.html:82 +#: skins/default/templates/authopenid/signin.html:87 msgid "Please enter your user name and password, then sign in" msgstr "" -#: skins/default/templates/authopenid/signin.html:86 +#: skins/default/templates/authopenid/signin.html:93 msgid "Login failed, please try again" msgstr "" -#: skins/default/templates/authopenid/signin.html:89 -msgid "Login name" +#: skins/default/templates/authopenid/signin.html:97 +msgid "Login or email" msgstr "" -#: skins/default/templates/authopenid/signin.html:93 +#: skins/default/templates/authopenid/signin.html:101 msgid "Password" msgstr "" -#: skins/default/templates/authopenid/signin.html:97 +#: skins/default/templates/authopenid/signin.html:106 msgid "Login" msgstr "Sign in" -#: skins/default/templates/authopenid/signin.html:104 +#: skins/default/templates/authopenid/signin.html:113 msgid "To change your password - please enter the new one twice, then submit" msgstr "" -#: skins/default/templates/authopenid/signin.html:107 +#: skins/default/templates/authopenid/signin.html:117 msgid "New password" msgstr "" -#: skins/default/templates/authopenid/signin.html:112 +#: skins/default/templates/authopenid/signin.html:124 msgid "Please, retype" msgstr "" -#: skins/default/templates/authopenid/signin.html:130 +#: skins/default/templates/authopenid/signin.html:146 msgid "Here are your current login methods" msgstr "" -#: skins/default/templates/authopenid/signin.html:134 +#: skins/default/templates/authopenid/signin.html:150 msgid "provider" msgstr "" -#: skins/default/templates/authopenid/signin.html:135 +#: skins/default/templates/authopenid/signin.html:151 msgid "last used" msgstr "" -#: skins/default/templates/authopenid/signin.html:136 +#: skins/default/templates/authopenid/signin.html:152 msgid "delete, if you like" msgstr "" -#: skins/default/templates/authopenid/signin.html:162 +#: skins/default/templates/authopenid/signin.html:168 +#, fuzzy +msgid "cannot be deleted" +msgstr "sorry, but older votes cannot be revoked" + +#: skins/default/templates/authopenid/signin.html:181 msgid "Still have trouble signing in?" msgstr "" -#: skins/default/templates/authopenid/signin.html:167 +#: skins/default/templates/authopenid/signin.html:186 msgid "Please, enter your email address below and obtain a new key" msgstr "" -#: skins/default/templates/authopenid/signin.html:169 +#: skins/default/templates/authopenid/signin.html:188 msgid "Please, enter your email address below to recover your account" msgstr "" -#: skins/default/templates/authopenid/signin.html:172 +#: skins/default/templates/authopenid/signin.html:191 msgid "recover your account via email" msgstr "" -#: skins/default/templates/authopenid/signin.html:183 +#: skins/default/templates/authopenid/signin.html:202 msgid "Send a new recovery key" msgstr "" -#: skins/default/templates/authopenid/signin.html:185 +#: skins/default/templates/authopenid/signin.html:204 msgid "Recover your account via email" msgstr "" -#: skins/default/templates/authopenid/signin.html:196 +#: skins/default/templates/authopenid/signin.html:216 msgid "Why use OpenID?" msgstr "" -#: skins/default/templates/authopenid/signin.html:199 +#: skins/default/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/default/templates/authopenid/signin.html:202 +#: skins/default/templates/authopenid/signin.html:222 msgid "reuse openid" msgstr "You can safely re-use the same login for all OpenID-enabled websites." -#: skins/default/templates/authopenid/signin.html:205 +#: skins/default/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/default/templates/authopenid/signin.html:208 +#: skins/default/templates/authopenid/signin.html:228 msgid "openid is supported open standard" msgstr "OpenID is based on an open standard, supported by many organizations." -#: skins/default/templates/authopenid/signin.html:212 +#: skins/default/templates/authopenid/signin.html:232 msgid "Find out more" msgstr "" -#: skins/default/templates/authopenid/signin.html:213 +#: skins/default/templates/authopenid/signin.html:233 msgid "Get OpenID" msgstr "" @@ -4696,7 +5314,7 @@ msgstr "" msgid "learn more about Markdown" msgstr "" -#: skins/default/templates/blocks/ask_form.html:7 +#: skins/default/templates/blocks/ask_form.html:6 msgid "login to post question info" msgstr "" "You are welcome to start submitting your question " @@ -4705,12 +5323,12 @@ 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/blocks/ask_form.html:11 -#, python-format +#: skins/default/templates/blocks/ask_form.html:10 +#, fuzzy, python-format msgid "" "must have valid %(email)s to post, \n" -" see %(email_validation_faq_url)s\n" -" " +" see %(email_validation_faq_url)s\n" +" " msgstr "" "Looks like your email address, %(email)s has not " "yet been validated. To post messages you must verify your email, " @@ -4718,14 +5336,22 @@ msgstr "" "
    You can submit your question now and validate email after that. Your " "question will saved as pending meanwhile. " -#: skins/default/templates/blocks/ask_form.html:28 +#: skins/default/templates/blocks/ask_form.html:34 msgid "Login/signup to post your question" msgstr "Login/Signup to Post" -#: skins/default/templates/blocks/ask_form.html:30 +#: skins/default/templates/blocks/ask_form.html:36 msgid "Ask your question" msgstr "Ask Your Question" +#: skins/default/templates/blocks/bottom_scripts.html:7 +#, python-format +msgid "" +"Please note: %(app_name)s requires javascript to work properly, please " +"enable javascript in your browser, here is how" +msgstr "" + #: skins/default/templates/blocks/editor_data.html:5 #, python-format msgid "each tag must be shorter that %(max_chars)s character" @@ -4746,19 +5372,24 @@ msgid "" "please use up to %(tag_count)s tags, less than %(max_chars)s characters each" msgstr "" -#: skins/default/templates/blocks/footer.html:5 +#: skins/default/templates/blocks/footer.html:4 #: skins/default/templates/blocks/header_meta_links.html:12 msgid "about" msgstr "" -#: skins/default/templates/blocks/footer.html:7 +#: skins/default/templates/blocks/footer.html:6 msgid "privacy policy" msgstr "" -#: skins/default/templates/blocks/footer.html:16 +#: skins/default/templates/blocks/footer.html:15 msgid "give feedback" msgstr "" +#: skins/default/templates/blocks/footer.html:41 +#, python-format +msgid "Content on this site is licensed under a %(license)s" +msgstr "" + #: skins/default/templates/blocks/header.html:8 msgid "back to home page" msgstr "" @@ -4768,19 +5399,19 @@ msgstr "" msgid "%(site)s logo" msgstr "" -#: skins/default/templates/blocks/header.html:17 +#: skins/default/templates/blocks/header.html:20 msgid "questions" msgstr "" -#: skins/default/templates/blocks/header.html:27 +#: skins/default/templates/blocks/header.html:30 msgid "users" msgstr "people" -#: skins/default/templates/blocks/header.html:32 +#: skins/default/templates/blocks/header.html:35 msgid "badges" msgstr "" -#: skins/default/templates/blocks/header.html:37 +#: skins/default/templates/blocks/header.html:40 msgid "ask a question" msgstr "" @@ -4818,7 +5449,7 @@ msgstr "" #: skins/default/templates/blocks/tag_selector.html:18 #: skins/default/templates/blocks/tag_selector.html:34 -#: skins/default/templates/user_profile/user_moderate.html:38 +#: skins/default/templates/user_profile/user_moderate.html:40 msgid "Add" msgstr "" @@ -4846,14 +5477,14 @@ msgstr "" msgid "rss feed" msgstr "" -#: skins/default/templates/main_page/headline.html:12 views/readers.py:119 +#: skins/default/templates/main_page/headline.html:12 views/readers.py:131 #, fuzzy, python-format msgid "%(q_num)s question, tagged" msgid_plural "%(q_num)s questions, tagged" msgstr[0] "Asked" msgstr[1] "Asked" -#: skins/default/templates/main_page/headline.html:14 views/readers.py:127 +#: skins/default/templates/main_page/headline.html:14 views/readers.py:139 #, python-format msgid "%(q_num)s question" msgid_plural "%(q_num)s questions" @@ -4901,33 +5532,17 @@ msgstr "" msgid "add tags and a query to focus your search" msgstr "" -#: skins/default/templates/main_page/javascript.html:13 -#: skins/default/templates/main_page/javascript.html:14 -msgid "mark-tag/" -msgstr "" - -#: skins/default/templates/main_page/javascript.html:13 -msgid "interesting/" -msgstr "" - -#: skins/default/templates/main_page/javascript.html:14 -msgid "ignored/" -msgstr "" - -#: skins/default/templates/main_page/javascript.html:15 -msgid "unmark-tag/" -msgstr "" - #: skins/default/templates/main_page/nothing_found.html:4 msgid "There are no unanswered questions here" msgstr "" #: skins/default/templates/main_page/nothing_found.html:7 -msgid "No favorite questions here. " -msgstr "" +#, fuzzy +msgid "No questions here. " +msgstr "answered question" #: skins/default/templates/main_page/nothing_found.html:8 -msgid "Please start (bookmark) some questions when you visit them" +msgid "Please star (bookmark) some questions or follow some users." msgstr "" #: skins/default/templates/main_page/nothing_found.html:13 @@ -4951,11 +5566,11 @@ msgstr "" msgid "Please always feel free to ask your question!" msgstr "" -#: skins/default/templates/main_page/sidebar.html:5 +#: skins/default/templates/main_page/sidebar.html:8 msgid "Contributors" msgstr "" -#: skins/default/templates/main_page/sidebar.html:22 +#: skins/default/templates/main_page/sidebar.html:25 msgid "Related tags" msgstr "Tags" @@ -4968,7 +5583,12 @@ msgid "see unanswered questions" msgstr "" #: skins/default/templates/main_page/tab_bar.html:20 -msgid "see your favorite questions" +#, fuzzy +msgid "see your followed questions" +msgstr "Ask Your Question" + +#: skins/default/templates/main_page/tab_bar.html:21 +msgid "followed" msgstr "" #: skins/default/templates/main_page/tab_bar.html:25 @@ -5007,7 +5627,7 @@ msgid "Update" msgstr "" #: skins/default/templates/user_profile/user_email_subscriptions.html:4 -#: skins/default/templates/user_profile/user_tabs.html:36 +#: skins/default/templates/user_profile/user_tabs.html:42 msgid "subscriptions" msgstr "" @@ -5029,8 +5649,8 @@ msgid "Stop sending email" msgstr "Stop Email" #: skins/default/templates/user_profile/user_favorites.html:4 -#: skins/default/templates/user_profile/user_tabs.html:21 -msgid "favorites" +#: skins/default/templates/user_profile/user_tabs.html:27 +msgid "followed questions" msgstr "" #: skins/default/templates/user_profile/user_inbox.html:18 @@ -5084,52 +5704,52 @@ msgstr "" msgid "remove" msgstr "" -#: skins/default/templates/user_profile/user_info.html:33 +#: skins/default/templates/user_profile/user_info.html:36 msgid "update profile" msgstr "" -#: skins/default/templates/user_profile/user_info.html:37 +#: skins/default/templates/user_profile/user_info.html:40 msgid "manage login methods" msgstr "" -#: skins/default/templates/user_profile/user_info.html:50 +#: skins/default/templates/user_profile/user_info.html:53 msgid "real name" msgstr "" -#: skins/default/templates/user_profile/user_info.html:55 +#: skins/default/templates/user_profile/user_info.html:58 msgid "member for" msgstr "member since" -#: skins/default/templates/user_profile/user_info.html:60 +#: skins/default/templates/user_profile/user_info.html:63 msgid "last seen" msgstr "" -#: skins/default/templates/user_profile/user_info.html:66 +#: skins/default/templates/user_profile/user_info.html:69 msgid "user website" msgstr "website" -#: skins/default/templates/user_profile/user_info.html:72 +#: skins/default/templates/user_profile/user_info.html:75 msgid "location" msgstr "" -#: skins/default/templates/user_profile/user_info.html:79 +#: skins/default/templates/user_profile/user_info.html:82 msgid "age" msgstr "" -#: skins/default/templates/user_profile/user_info.html:80 +#: skins/default/templates/user_profile/user_info.html:83 msgid "age unit" msgstr "years old" -#: skins/default/templates/user_profile/user_info.html:87 +#: skins/default/templates/user_profile/user_info.html:90 msgid "todays unused votes" msgstr "" -#: skins/default/templates/user_profile/user_info.html:88 +#: skins/default/templates/user_profile/user_info.html:91 msgid "votes left" msgstr "" #: skins/default/templates/user_profile/user_moderate.html:4 -#: skins/default/templates/user_profile/user_tabs.html:42 +#: skins/default/templates/user_profile/user_tabs.html:48 msgid "moderation" msgstr "" @@ -5142,52 +5762,117 @@ msgstr "" msgid "User status changed" msgstr "" -#: skins/default/templates/user_profile/user_moderate.html:18 +#: skins/default/templates/user_profile/user_moderate.html:20 msgid "Save" msgstr "" -#: skins/default/templates/user_profile/user_moderate.html:24 +#: skins/default/templates/user_profile/user_moderate.html:26 #, python-format msgid "Your current reputation is %(reputation)s points" msgstr "" -#: skins/default/templates/user_profile/user_moderate.html:26 +#: skins/default/templates/user_profile/user_moderate.html:28 #, python-format msgid "User's current reputation is %(reputation)s points" msgstr "" -#: skins/default/templates/user_profile/user_moderate.html:30 +#: skins/default/templates/user_profile/user_moderate.html:32 msgid "User reputation changed" msgstr "" -#: skins/default/templates/user_profile/user_moderate.html:37 +#: skins/default/templates/user_profile/user_moderate.html:39 msgid "Subtract" msgstr "" -#: skins/default/templates/user_profile/user_moderate.html:42 +#: skins/default/templates/user_profile/user_moderate.html:44 #, python-format msgid "Send message to %(username)s" msgstr "" -#: skins/default/templates/user_profile/user_moderate.html:43 +#: skins/default/templates/user_profile/user_moderate.html:45 msgid "" "An email will be sent to the user with 'reply-to' field set to your email " "address. Please make sure that your address is entered correctly." msgstr "" -#: skins/default/templates/user_profile/user_moderate.html:45 +#: skins/default/templates/user_profile/user_moderate.html:47 msgid "Message sent" msgstr "" -#: skins/default/templates/user_profile/user_moderate.html:63 +#: skins/default/templates/user_profile/user_moderate.html:65 msgid "Send message" msgstr "" +#: skins/default/templates/user_profile/user_moderate.html:75 +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 "" + +#: skins/default/templates/user_profile/user_moderate.html:78 +msgid "" +"Moderators have the same privileges as administrators, but cannot add or " +"remove user status of 'moderator' or 'administrator'." +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:81 +msgid "'Approved' status means the same as regular user." +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:84 +#, fuzzy +msgid "Suspended users can only edit or delete their own 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." + +#: skins/default/templates/user_profile/user_moderate.html:87 +msgid "" +"Blocked users can only login and send feedback to the site administrators." +msgstr "" + +#: skins/default/templates/user_profile/user_network.html:5 +#: skins/default/templates/user_profile/user_tabs.html:18 +msgid "network" +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[1] "" + +#: 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[1] "" + +#: skins/default/templates/user_profile/user_network.html:19 +msgid "" +"Your network is empty. Would you like to follow someone? - Just visit their " +"profiles and click \"follow\"" +msgstr "" + +#: skins/default/templates/user_profile/user_network.html:21 +#, python-format +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:25 +#: 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:28 +msgid "source" +msgstr "" + #: skins/default/templates/user_profile/user_reputation.html:4 msgid "karma" msgstr "" @@ -5273,43 +5958,52 @@ msgid_plural "%(counter)s Badges" msgstr[0] "" msgstr[1] "" +#: skins/default/templates/user_profile/user_stats.html:122 +#, fuzzy +msgid "Answer to:" +msgstr "Tips" + #: skins/default/templates/user_profile/user_tabs.html:5 msgid "User profile" msgstr "" -#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:728 +#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:772 msgid "comments and answers to others questions" msgstr "" -#: skins/default/templates/user_profile/user_tabs.html:15 +#: skins/default/templates/user_profile/user_tabs.html:16 +msgid "followers and followed users" +msgstr "" + +#: skins/default/templates/user_profile/user_tabs.html:21 msgid "graph of user reputation" msgstr "Graph of user karma" -#: skins/default/templates/user_profile/user_tabs.html:17 +#: skins/default/templates/user_profile/user_tabs.html:23 msgid "reputation history" msgstr "karma" -#: skins/default/templates/user_profile/user_tabs.html:19 -msgid "questions that user selected as his/her favorite" +#: skins/default/templates/user_profile/user_tabs.html:25 +msgid "questions that user is following" msgstr "" -#: skins/default/templates/user_profile/user_tabs.html:23 +#: skins/default/templates/user_profile/user_tabs.html:29 msgid "recent activity" msgstr "" -#: skins/default/templates/user_profile/user_tabs.html:28 views/users.py:792 +#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:847 msgid "user vote record" msgstr "" -#: skins/default/templates/user_profile/user_tabs.html:30 +#: skins/default/templates/user_profile/user_tabs.html:36 msgid "casted votes" msgstr "votes" -#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:897 +#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:960 msgid "email subscription settings" msgstr "" -#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:212 +#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:224 msgid "moderate this user" msgstr "" @@ -5317,28 +6011,20 @@ msgstr "" msgid "votes" msgstr "" -#: skins/default/templates/user_profile/users_questions.html:9 -#: skins/default/templates/user_profile/users_questions.html:17 -#, python-format -msgid "this questions was selected as favorite %(cnt)s time" -msgid_plural "this questions was selected as favorite %(cnt)s times" -msgstr[0] "" -msgstr[1] "" +#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:240 +msgid "no items in counter" +msgstr "no" -#: skins/default/templates/user_profile/users_questions.html:10 -msgid "thumb-up on" +#: utils/decorators.py:90 views/commands.py:112 views/commands.py:132 +msgid "Oops, apologies - there was some error" msgstr "" -#: skins/default/templates/user_profile/users_questions.html:18 -msgid "thumb-up off" +#: utils/decorators.py:109 +msgid "Please login to post" msgstr "" -#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:227 -msgid "no items in counter" -msgstr "no" - -#: utils/decorators.py:82 views/commands.py:128 views/commands.py:145 -msgid "Oops, apologies - there was some error" +#: utils/decorators.py:205 +msgid "Spam was detected on your post, sorry for if this is a mistake" msgstr "" #: utils/forms.py:32 @@ -5409,212 +6095,244 @@ msgstr "" msgid "sorry, entered passwords did not match, please try again" msgstr "" -#: utils/functions.py:63 -#, python-format -msgid "on %(date)s" -msgstr "" - -#: utils/functions.py:67 +#: utils/functions.py:74 msgid "2 days ago" msgstr "" -#: utils/functions.py:69 +#: utils/functions.py:76 msgid "yesterday" msgstr "" -#: utils/functions.py:71 +#: utils/functions.py:79 #, python-format msgid "%(hr)d hour ago" msgid_plural "%(hr)d hours ago" msgstr[0] "" msgstr[1] "" -#: utils/functions.py:73 +#: utils/functions.py:85 #, python-format msgid "%(min)d min ago" msgid_plural "%(min)d mins ago" msgstr[0] "" msgstr[1] "" -#: views/avatar_views.py:94 +#: views/avatar_views.py:99 msgid "Successfully uploaded a new avatar." msgstr "" -#: views/avatar_views.py:134 +#: views/avatar_views.py:140 msgid "Successfully updated your avatar." msgstr "" -#: views/avatar_views.py:173 +#: views/avatar_views.py:180 msgid "Successfully deleted the requested avatars." msgstr "" -#: views/commands.py:38 +#: views/commands.py:39 msgid "anonymous users cannot vote" msgstr "Sorry, anonymous users cannot vote" -#: views/commands.py:58 +#: views/commands.py:59 msgid "Sorry you ran out of votes for today" msgstr "" -#: views/commands.py:64 +#: views/commands.py:65 #, python-format msgid "You have %(votes_left)s votes left for today" msgstr "" -#: views/commands.py:135 +#: views/commands.py:122 msgid "Sorry, but anonymous users cannot access the inbox" msgstr "" -#: views/commands.py:205 +#: views/commands.py:192 msgid "Sorry, something is not right here..." msgstr "" -#: views/commands.py:220 +#: views/commands.py:207 msgid "Sorry, but anonymous users cannot accept answers" msgstr "" -#: views/commands.py:301 +#: views/commands.py:288 #, python-format msgid "subscription saved, %(email)s needs validation, see %(details_url)s" msgstr "" "Your subscription is saved, but email address %(email)s needs to be " "validated, please see more details here" -#: views/commands.py:309 +#: views/commands.py:295 msgid "email update frequency has been set to daily" msgstr "" -#: views/commands.py:413 +#: views/commands.py:400 #, python-format msgid "Tag subscription was canceled (undo)." msgstr "" -#: views/commands.py:422 +#: views/commands.py:409 #, python-format msgid "Please sign in to subscribe for: %(tags)s" msgstr "" -#: views/meta.py:63 +#: views/commands.py:542 +msgid "Please sign in to vote" +msgstr "" + +#: views/meta.py:83 msgid "Q&A forum feedback" msgstr "" -#: views/meta.py:64 +#: views/meta.py:84 msgid "Thanks for the feedback!" msgstr "" -#: views/meta.py:72 +#: views/meta.py:92 msgid "We look forward to hearing your feedback! Please, give it next time :)" msgstr "" -#: views/readers.py:165 +#: views/readers.py:177 #, 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:388 +#: views/readers.py:441 msgid "" "Sorry, the comment you are looking for has been deleted and is no longer " "accessible" msgstr "" -#: views/users.py:213 +#: views/users.py:225 msgid "moderate user" msgstr "" -#: views/users.py:377 +#: views/users.py:380 msgid "user profile" msgstr "" -#: views/users.py:378 +#: views/users.py:381 msgid "user profile overview" msgstr "" -#: views/users.py:661 +#: views/users.py:685 msgid "recent user activity" msgstr "" -#: views/users.py:662 +#: views/users.py:686 msgid "profile - recent activity" msgstr "" -#: views/users.py:729 +#: views/users.py:773 msgid "profile - responses" msgstr "" -#: views/users.py:793 +#: views/users.py:848 msgid "profile - votes" msgstr "" -#: views/users.py:828 +#: views/users.py:883 msgid "user reputation in the community" msgstr "user karma" -#: views/users.py:829 +#: views/users.py:884 msgid "profile - user reputation" msgstr "Profile - User's Karma" -#: views/users.py:856 +#: views/users.py:911 msgid "users favorite questions" msgstr "" -#: views/users.py:857 +#: views/users.py:912 msgid "profile - favorite questions" msgstr "" -#: views/users.py:876 views/users.py:880 +#: views/users.py:932 views/users.py:936 msgid "changes saved" msgstr "" -#: views/users.py:886 +#: views/users.py:942 msgid "email updates canceled" msgstr "" -#: views/users.py:898 +#: views/users.py:961 msgid "profile - email subscriptions" msgstr "" -#: views/writers.py:56 +#: views/writers.py:58 msgid "Sorry, anonymous users cannot upload files" msgstr "" -#: views/writers.py:66 +#: views/writers.py:68 #, python-format msgid "allowed file types are '%(file_types)s'" msgstr "" -#: views/writers.py:89 +#: views/writers.py:91 #, python-format msgid "maximum upload file size is %(file_size)sK" msgstr "" -#: views/writers.py:97 +#: views/writers.py:99 msgid "Error uploading file. Please contact the site administrator. Thank you." msgstr "" -#: views/writers.py:555 +#: views/writers.py:191 +#, fuzzy +msgid "Please log in to ask questions" +msgstr "" +"You are welcome to start submitting your question " +"anonymously. 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/writers.py:492 +#, fuzzy +msgid "Please log in to answer questions" +msgstr "" +"Please try to give a substantial answer. If " +"you wanted to comment on the question or answer, just use the " +"commenting tool. Please remember that you can always revise " +"your answers - no need to answer the same question twice. Also, " +"please don't forget to vote - it really helps to select the " +"best questions and answers!" + +#: views/writers.py:598 #, python-format msgid "" "Sorry, you appear to be logged out and cannot post comments. Please sign in." msgstr "" -#: views/writers.py:600 +#: views/writers.py:646 msgid "Sorry, anonymous users cannot edit comments" msgstr "" -#: views/writers.py:608 +#: views/writers.py:654 #, python-format msgid "" "Sorry, you appear to be logged out and cannot delete comments. Please sign in." msgstr "" -#: views/writers.py:629 +#: views/writers.py:675 msgid "sorry, we seem to have some technical difficulties" msgstr "" +#~ msgid "" +#~ "As a registered user you can login with your OpenID, log out of the site " +#~ "or permanently remove your account." +#~ msgstr "" +#~ "Clicking Logout will log you out from the forum but will " +#~ "not sign you off from your OpenID provider.

    If you wish to sign off " +#~ "completely - please make sure to log out from your OpenID provider as " +#~ "well." + +#~ msgid "Logout now" +#~ msgstr "Logout Now" + #~ msgid "Email verification subject line" #~ msgstr "Verification Email from Q&A forum" diff --git a/askbot/locale/en/LC_MESSAGES/djangojs.mo b/askbot/locale/en/LC_MESSAGES/djangojs.mo new file mode 100644 index 00000000..674f4542 Binary files /dev/null and b/askbot/locale/en/LC_MESSAGES/djangojs.mo differ diff --git a/askbot/locale/en/LC_MESSAGES/djangojs.po b/askbot/locale/en/LC_MESSAGES/djangojs.po new file mode 100644 index 00000000..3d39c7d3 --- /dev/null +++ b/askbot/locale/en/LC_MESSAGES/djangojs.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: 0.7\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-10-08 02:25-0500\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"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" + +#: skins/default/media/js/post.js:532 +msgid "Follow" +msgstr "" + +#: skins/default/media/js/post.js:541 skins/default/media/js/post.js.py:550 +#, perl-format +msgid "%s follower" +msgid_plural "%s followers" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/media/js/post.js:546 +msgid "

    Following
    Unfollow
    " +msgstr "" + +#: skins/default/media/js/post.js:1613 +msgid "Please enter question title (>10 characters)" +msgstr "" + +#: skins/default/media/js/tag_selector.js:15 +msgid "Tag \"\" matches:" +msgstr "" + +#: skins/default/media/js/tag_selector.js:84 +#, perl-format +msgid "and %s more, not shown..." +msgstr "" + +#: skins/default/media/js/user.js:129 +msgid "Please signin to follow %(username)s" +msgstr "" + +#: skins/default/media/js/user.js:161 +#, perl-format +msgid "unfollow %s" +msgstr "" + +#: skins/default/media/js/user.js:164 +#, perl-format +msgid "following %s" +msgstr "" + +#: skins/default/media/js/user.js:170 +#, perl-format +msgid "follow %s" +msgstr "" diff --git a/askbot/locale/es/LC_MESSAGES/django.mo b/askbot/locale/es/LC_MESSAGES/django.mo index 473f75a7..05d737dc 100644 Binary files a/askbot/locale/es/LC_MESSAGES/django.mo and b/askbot/locale/es/LC_MESSAGES/django.mo differ diff --git a/askbot/locale/es/LC_MESSAGES/django.po b/askbot/locale/es/LC_MESSAGES/django.po index 869b3d58..1bedc18e 100644 --- a/askbot/locale/es/LC_MESSAGES/django.po +++ b/askbot/locale/es/LC_MESSAGES/django.po @@ -7,10 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: Askbot\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-11-29 16:37-0600\n" +"POT-Creation-Date: 2011-10-08 02:25-0500\n" "PO-Revision-Date: 2010-03-28 22:15-0600\n" "Last-Translator: Francisco Espinoza \n" "Language-Team: Hasked Team \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -18,82 +19,106 @@ msgstr "" "X-Poedit-Country: NICARAGUA\n" "X-Poedit-SourceCharset: utf-8\n" -#: exceptions.py:9 +#: exceptions.py:13 #, fuzzy msgid "Sorry, but anonymous visitors cannot access this function" msgstr "usuarios anónimos no pueden votar" -#: feed.py:22 +#: feed.py:26 feed.py:100 msgid " - " msgstr "-" -#: feed.py:22 +#: feed.py:26 +#, fuzzy +msgid "Individual question feed" +msgstr "Selección individual de preguntas" + +#: feed.py:100 msgid "latest questions" msgstr "últimas preguntas" -#: forms.py:54 skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:40 -#: skins/default/templates/question_edit_tips.html:45 +#: forms.py:74 +#, fuzzy +msgid "select country" +msgstr "Eliminar cuenta" + +#: forms.py:83 +msgid "Country" +msgstr "" + +#: forms.py:91 +#, fuzzy +msgid "Country field is required" +msgstr "este campo es requerido" + +#: forms.py:104 skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:38 +#: skins/default/templates/blocks/question_edit_tips.html:43 msgid "title" msgstr "título" -#: forms.py:55 +#: forms.py:105 msgid "please enter a descriptive title for your question" msgstr "por favor ingrese un título descriptivo para su pregunta" -#: forms.py:60 +#: forms.py:110 msgid "title must be > 10 characters" msgstr "el título debe contener más de 10 carácteres" -#: forms.py:69 +#: forms.py:119 msgid "content" msgstr "contenido" -#: forms.py:75 +#: forms.py:125 msgid "question content must be > 10 characters" msgstr "la pregunta debe contener más de 10 carácteres" -#: forms.py:84 skins/default/templates/header.html:83 +#: forms.py:134 skins/default/templates/macros.html:660 +#: skins/default/templates/macros.html:672 +#: skins/default/templates/blocks/header.html:25 msgid "tags" msgstr "etiquetas" -#: forms.py:86 +#: forms.py:136 msgid "" "Tags are short keywords, with no spaces within. Up to five tags can be used." msgstr "" "Las etiquetas son claves cortas, con o sin espacios. Puedes usar más de 5 " "etiquetas." -#: forms.py:93 skins/default/templates/question_retag.html:78 +#: forms.py:164 skins/default/templates/question_retag.html:58 msgid "tags are required" msgstr "etiquetas requeridas" -#: forms.py:102 +#: forms.py:173 #, fuzzy, 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, use 5 etiquetas o menos" msgstr[1] "por favor, use 5 etiquetas o menos" -#: forms.py:111 +#: forms.py:181 +#, python-format +msgid "At least one of the following tags is required : %(tags)s" +msgstr "" + +#: forms.py:190 #, 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] "las etiquetas deben contener menos de 20 carácteres" msgstr[1] "las etiquetas deben contener menos de 20 carácteres" -#: forms.py:119 +#: forms.py:198 msgid "use-these-chars-in-tags" msgstr "" -#: forms.py:130 -#: skins/default/templates/unused/question_summary_list_roll.html:26 -#: skins/default/templates/unused/question_summary_list_roll.html:38 -msgid "community wiki" -msgstr "wiki" +#: forms.py:233 +msgid "community wiki (karma is not awarded & many others can edit wiki post)" +msgstr "" -#: forms.py:131 +#: forms.py:234 msgid "" "if you choose community wiki option, the question and answer do not generate " "points and name of author will not be shown" @@ -101,11 +126,11 @@ msgstr "" "si marcas la opción Wiki, la pregunta y las respuestas no generan puntos y " "el nombre del autor no se muestra" -#: forms.py:147 +#: forms.py:250 msgid "update summary:" msgstr "actualizar resúmen:" -#: forms.py:148 +#: forms.py:251 msgid "" "enter a brief summary of your revision (e.g. fixed spelling, grammar, " "improved style, this field is optional)" @@ -113,285 +138,437 @@ 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:161 +#: forms.py:327 msgid "Enter number of points to add or subtract" msgstr "" -#: forms.py:175 const/__init__.py:219 +#: forms.py:341 const/__init__.py:245 msgid "approved" msgstr "" -#: forms.py:176 const/__init__.py:220 +#: forms.py:342 const/__init__.py:246 msgid "watched" msgstr "" -#: forms.py:177 const/__init__.py:221 +#: forms.py:343 const/__init__.py:247 #, fuzzy msgid "suspended" msgstr "actualizado" -#: forms.py:178 const/__init__.py:222 +#: forms.py:344 const/__init__.py:248 msgid "blocked" msgstr "" -#: forms.py:180 const/__init__.py:218 +#: forms.py:346 +#, fuzzy +msgid "administrator" +msgstr "administración" + +#: forms.py:347 const/__init__.py:244 #, fuzzy msgid "moderator" msgstr "moderar-usuario/" -#: forms.py:200 +#: forms.py:367 #, fuzzy msgid "Change status to" msgstr "Cambiar etiquetas" -#: forms.py:227 +#: forms.py:394 msgid "which one?" msgstr "" -#: forms.py:248 +#: forms.py:415 #, fuzzy msgid "Cannot change own status" msgstr "no se puede votar por sus propias publicaciones" -#: forms.py:254 +#: forms.py:421 msgid "Cannot turn other user to moderator" msgstr "" -#: forms.py:261 +#: forms.py:428 msgid "Cannot change status of another moderator" msgstr "No esta permitido cambiar el estado de otro moderador" -#: forms.py:267 +#: forms.py:434 +#, fuzzy +msgid "Cannot change status to admin" +msgstr "no se puede votar por sus propias publicaciones" + +#: forms.py:440 #, python-format -msgid "If you wish to change %(username)s's status, " +msgid "" +"If you wish to change %(username)s's status, please make a meaningful " +"selection." msgstr "" -#: forms.py:276 +#: forms.py:449 msgid "Subject line" msgstr "" -#: forms.py:283 +#: forms.py:456 msgid "Message text" msgstr "Mensaje de Texto" -#: forms.py:360 +#: forms.py:542 msgid "Your name:" msgstr "Tu nombre:" -#: forms.py:361 +#: forms.py:543 msgid "Email (not shared with anyone):" msgstr "Email (no lo compartiremos con nadie):" -#: forms.py:362 +#: forms.py:544 msgid "Your message:" msgstr "Tu mensaje:" -#: forms.py:449 -msgid "this email does not have to be linked to gravatar" +#: forms.py:581 +msgid "ask anonymously" +msgstr "" + +#: forms.py:583 +msgid "Check if you do not want to reveal your name when asking this question" +msgstr "" + +#: forms.py:743 +msgid "" +"You have asked this question anonymously, if you decide to reveal your " +"identity, please check this box." +msgstr "" + +#: forms.py:747 +msgid "reveal identity" +msgstr "" + +#: forms.py:805 +msgid "" +"Sorry, only owner of the anonymous question can reveal his or her identity, " +"please uncheck the box" +msgstr "" + +#: forms.py:818 +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:856 +#, fuzzy +msgid "this email will be linked to gravatar" msgstr "este email no esta vinculado con gravatar" -#: forms.py:456 +#: forms.py:863 msgid "Real name" msgstr "Nombre Real" -#: forms.py:463 +#: forms.py:870 msgid "Website" msgstr "Sitio Web" -#: forms.py:470 -msgid "Location" -msgstr "Localización" +#: forms.py:877 +msgid "City" +msgstr "" -#: forms.py:477 +#: forms.py:886 +msgid "Show country" +msgstr "" + +#: forms.py:891 msgid "Date of birth" msgstr "Fecha de nacimiento" -#: forms.py:478 +#: forms.py:892 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:484 +#: forms.py:898 msgid "Profile" msgstr "Perfil" -#: forms.py:493 +#: forms.py:907 msgid "Screen name" msgstr "Nombre para mostrar" -#: forms.py:518 forms.py:519 +#: forms.py:938 forms.py:939 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" -#: forms.py:525 +#: forms.py:946 msgid "Choose email tag filter" msgstr "Seleccione una etiqueta de filtro para el email" -#: forms.py:564 +#: forms.py:993 msgid "Asked by me" msgstr "Preguntadas por mi" -#: forms.py:567 +#: forms.py:996 msgid "Answered by me" msgstr "Respondidas por mi" -#: forms.py:570 +#: forms.py:999 msgid "Individually selected" msgstr "Selección individual" -#: forms.py:573 +#: forms.py:1002 msgid "Entire forum (tag filtered)" msgstr "Foro completo (filtrado por etiqueta)" -#: forms.py:577 +#: forms.py:1006 msgid "Comments and posts mentioning me" msgstr "" -#: forms.py:635 +#: forms.py:1085 msgid "okay, let's try!" msgstr "bien, vamos a probar!" -#: forms.py:636 +#: forms.py:1086 msgid "no community email please, thanks" msgstr "no usar un email de la comunidad, por favor" -#: forms.py:640 +#: forms.py:1090 msgid "please choose one of the options above" msgstr "por favor seleccione una de las siguientes opciones" -#: urls.py:42 +#: urls.py:53 msgid "about/" msgstr "acerca-de/" -#: urls.py:43 conf/site_settings.py:79 +#: urls.py:54 msgid "faq/" msgstr "faq/" -#: urls.py:44 +#: urls.py:55 msgid "privacy/" msgstr "privacidad/" -#: urls.py:45 -msgid "logout/" -msgstr "salir/" - -#: urls.py:47 urls.py:52 +#: urls.py:57 urls.py:62 msgid "answers/" msgstr "respuestas/" -#: urls.py:47 urls.py:68 urls.py:164 +#: urls.py:57 urls.py:83 urls.py:198 msgid "edit/" msgstr "editar/" -#: urls.py:52 urls.py:98 +#: urls.py:62 urls.py:113 msgid "revisions/" msgstr "revisiones/" -#: urls.py:58 urls.py:63 urls.py:68 urls.py:73 urls.py:78 urls.py:83 -#: urls.py:88 urls.py:93 urls.py:98 +#: urls.py:68 urls.py:78 urls.py:83 urls.py:88 urls.py:93 urls.py:98 +#: urls.py:103 urls.py:108 urls.py:113 urls.py:285 +#: skins/default/templates/question.html:508 msgid "questions/" msgstr "preguntas/" -#: urls.py:63 +#: urls.py:78 msgid "ask/" msgstr "preguntar/" -#: urls.py:73 +#: urls.py:88 #, fuzzy msgid "retag/" msgstr "etiquetas/" -#: urls.py:78 +#: urls.py:93 msgid "close/" msgstr "cerrar/" -#: urls.py:83 +#: urls.py:98 msgid "reopen/" msgstr "reabrir/" -#: urls.py:88 +#: urls.py:103 msgid "answer/" msgstr "responder/" -#: urls.py:93 +#: urls.py:108 skins/default/templates/question.html:508 msgid "vote/" msgstr "votar/" -#: urls.py:114 -msgid "command/" -msgstr "comando/" - -#: urls.py:130 -msgid "question/" -msgstr "pregunta/" - -#: urls.py:135 +#: urls.py:144 msgid "tags/" msgstr "etiquetas/" -#: urls.py:140 urls.py:146 -msgid "mark-tag/" -msgstr "marcar-etiqueta/" - -#: urls.py:140 -msgid "interesting/" -msgstr "interesante/" - -#: urls.py:146 -msgid "ignored/" -msgstr "ignorada/" - -#: urls.py:152 -msgid "unmark-tag/" -msgstr "desmarcar-etiqueta/" +#: urls.py:187 +msgid "subscribe-for-tags/" +msgstr "" -#: urls.py:158 urls.py:164 urls.py:169 +#: urls.py:192 urls.py:198 urls.py:204 urls.py:212 +#: skins/default/templates/main_page/javascript.html:23 msgid "users/" msgstr "usuarios/" -#: urls.py:174 urls.py:179 +#: urls.py:205 +#, fuzzy +msgid "subscriptions/" +msgstr "suscripción por email" + +#: urls.py:217 +msgid "users/update_has_custom_avatar/" +msgstr "" + +#: urls.py:222 urls.py:227 msgid "badges/" msgstr "trofeos/" -#: urls.py:184 +#: urls.py:232 msgid "messages/" msgstr "mensajes/" -#: urls.py:184 +#: urls.py:232 msgid "markread/" msgstr "marcar-como-leidos/" -#: urls.py:199 +#: urls.py:248 msgid "upload/" msgstr "subir/" -#: urls.py:200 -msgid "search/" -msgstr "buscar/" - -#: urls.py:201 +#: urls.py:249 msgid "feedback/" msgstr "feedback/" -#: urls.py:202 setup_templates/settings.py:182 -#: skins/default/templates/authopenid/signin.html:249 +#: urls.py:291 skins/default/templates/question.html:506 +#: skins/default/templates/main_page/javascript.html:22 +msgid "question/" +msgstr "pregunta/" + +#: urls.py:298 setup_templates/settings.py:202 +#: skins/default/templates/authopenid/providers_javascript.html:7 msgid "account/" msgstr "cuenta/" -#: conf/email.py:12 +#: conf/badges.py:12 +#, fuzzy +msgid "Badge settings" +msgstr "Configuraciones básicas" + +#: conf/badges.py:21 +msgid "Disciplined: minimum upvotes for deleted post" +msgstr "" + +#: conf/badges.py:30 +msgid "Peer Pressure: minimum downvotes for deleted post" +msgstr "" + +#: conf/badges.py:39 +msgid "Teacher: minimum upvotes for the answer" +msgstr "" + +#: conf/badges.py:48 +msgid "Nice Answer: minimum upvotes for the answer" +msgstr "" + +#: conf/badges.py:57 +msgid "Good Answer: minimum upvotes for the answer" +msgstr "" + +#: conf/badges.py:66 +msgid "Great Answer: minimum upvotes for the answer" +msgstr "" + +#: conf/badges.py:75 +msgid "Nice Question: minimum upvotes for the question" +msgstr "" + +#: conf/badges.py:84 +msgid "Good Question: minimum upvotes for the question" +msgstr "" + +#: conf/badges.py:93 +msgid "Great Question: minimum upvotes for the question" +msgstr "" + +#: conf/badges.py:102 +#, fuzzy +msgid "Popular Question: minimum views" +msgstr "Formula tu pregunta" + +#: conf/badges.py:111 +#, fuzzy +msgid "Notable Question: minimum views" +msgstr "todas las preguntas" + +#: conf/badges.py:120 +#, fuzzy +msgid "Famous Question: minimum views" +msgstr "Cerrar pregunta" + +#: conf/badges.py:129 +msgid "Self-Learner: minimum answer upvotes" +msgstr "" + +#: conf/badges.py:138 +msgid "Civic Duty: minimum votes" +msgstr "" + +#: conf/badges.py:147 +msgid "Enlightened Duty: minimum upvotes" +msgstr "" + +#: conf/badges.py:156 +msgid "Guru: minimum upvotes" +msgstr "" + +#: conf/badges.py:165 +msgid "Necromancer: minimum upvotes" +msgstr "" + +#: conf/badges.py:174 +msgid "Necromancer: minimum delay in days" +msgstr "" + +#: conf/badges.py:183 +msgid "Associate Editor: minimum number of edits" +msgstr "" + +#: conf/badges.py:192 +#, fuzzy +msgid "Favorite Question: minimum stars" +msgstr "preguntas favoritas" + +#: conf/badges.py:201 +#, fuzzy +msgid "Stellar Question: minimum stars" +msgstr "Aún tiene preguntas?" + +#: conf/badges.py:210 +msgid "Commentator: minimum comments" +msgstr "" + +#: conf/badges.py:219 +msgid "Taxonomist: minimum tag use count" +msgstr "" + +#: conf/badges.py:228 +msgid "Enthusiast: minimum days" +msgstr "" + +#: conf/email.py:14 msgid "Email and email alert settings" msgstr "" -#: conf/email.py:20 +#: conf/email.py:22 +msgid "Prefix for the email subject line" +msgstr "" + +#: conf/email.py:24 +msgid "" +"This setting takes default from the django settingEMAIL_SUBJECT_PREFIX. A " +"value entered here will overridethe default." +msgstr "" + +#: conf/email.py:36 msgid "Maximum number of news entries in an email alert" msgstr "" -#: conf/email.py:30 +#: conf/email.py:46 msgid "Default news notification frequency" msgstr "" -#: conf/email.py:32 +#: conf/email.py:48 msgid "" "This option currently defines default frequency of emailed updates in the " "following five categories: questions asked by user, answered by user, " @@ -399,33 +576,78 @@ msgid "" "posts mentioning the user and comment responses" msgstr "" -#: conf/email.py:47 +#: conf/email.py:62 +#, fuzzy +msgid "Send periodic reminders about unanswered questions" +msgstr "lista de preguntas sin contestar" + +#: conf/email.py:64 +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) and an IMAP server with a dedicated inbox " +"must be configured " +msgstr "" + +#: conf/email.py:78 +#, fuzzy +msgid "Days before starting to send reminders about unanswered questions" +msgstr "lista de preguntas sin contestar" + +#: conf/email.py:89 +msgid "" +"How often to send unanswered question reminders (in days between the " +"reminders sent)." +msgstr "" + +#: conf/email.py:101 +msgid "Max. number of reminders to send about unanswered questions" +msgstr "" + +#: conf/email.py:113 msgid "Require email verification before allowing to post" msgstr "" -#: conf/email.py:48 +#: conf/email.py:114 msgid "" "Active email verification is done by sending a verification key in email" msgstr "" -#: conf/email.py:57 +#: conf/email.py:123 #, fuzzy msgid "Allow only one account per email address" msgstr "tu dirección de email" -#: conf/email.py:66 +#: conf/email.py:132 msgid "Fake email for anonymous user" msgstr "" -#: conf/email.py:67 +#: conf/email.py:133 msgid "Use this setting to control gravatar for email-less user" msgstr "" -#: conf/email.py:76 -msgid "Prefix for the email subject line" +#: conf/email.py:142 +#, fuzzy +msgid "Allow posting questions by email" +msgstr "ingresa para publicar información de la pregunta" + +#: conf/email.py:144 +msgid "" +"Before enabling this setting - please fill out IMAP settings in the settings." +"py file" +msgstr "" + +#: conf/email.py:155 +msgid "Replace space in emailed tags with dash" +msgstr "" + +#: conf/email.py:157 +msgid "" +"This setting applies to tags written in the subject line of questions asked " +"by email" msgstr "" -#: conf/external_keys.py:11 +#: conf/external_keys.py:10 msgid "Keys to connect the site with external services like Facebook, etc." msgstr "" @@ -436,90 +658,114 @@ msgstr "" #: conf/external_keys.py:20 #, python-format msgid "" -"This key helps google index your site please obtain is at google webmasters tools site" +"This key helps google index your site please obtain is at google webmasters tools site" msgstr "" -#: conf/external_keys.py:34 +#: conf/external_keys.py:35 msgid "Google Analytics key" msgstr "" -#: conf/external_keys.py:36 +#: conf/external_keys.py:37 #, python-format msgid "" -"Obtain is at Google Analytics site, if you wish " -"to use Google Analytics to monitor your site" +"Obtain is at Google Analytics site, if you wish to " +"use Google Analytics to monitor your site" msgstr "" -#: conf/external_keys.py:49 +#: conf/external_keys.py:50 msgid "Enable recaptcha (keys below are required)" msgstr "" -#: conf/external_keys.py:58 +#: conf/external_keys.py:59 msgid "Recaptcha public key" msgstr "Llave pública de Recaptcha" -#: conf/external_keys.py:66 +#: conf/external_keys.py:67 msgid "Recaptcha private key" msgstr "Llave privada de Recaptcha" -#: conf/external_keys.py:68 +#: conf/external_keys.py:69 +#, 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 recaptcha.net" +"robots. Please get this and a public key at the %(url)s" msgstr "" -#: conf/external_keys.py:80 +#: conf/external_keys.py:81 msgid "Facebook public API key" msgstr "Llave pública para API de Facebook" -#: conf/external_keys.py:82 +#: conf/external_keys.py:83 +#, python-format msgid "" "Facebook API key and Facebook secret allow to use Facebook Connect login " -"method at your site. Please obtain these keys at facebook create app site" +"method at your site. Please obtain these keys at facebook create app site" msgstr "" -#: conf/external_keys.py:95 +#: conf/external_keys.py:96 msgid "Facebook secret key" msgstr "" -#: conf/external_keys.py:103 +#: conf/external_keys.py:104 msgid "Twitter consumer key" msgstr "" -#: conf/external_keys.py:105 conf/external_keys.py:126 +#: conf/external_keys.py:106 +#, python-format msgid "" -"Please register your forum at twitter applications site" +"Please register your forum at twitter applications site" msgstr "" -#: conf/external_keys.py:116 +#: conf/external_keys.py:117 msgid "Twitter consumer secret" msgstr "" -#: conf/external_keys.py:124 +#: conf/external_keys.py:125 msgid "LinkedIn consumer key" msgstr "" -#: conf/external_keys.py:137 +#: conf/external_keys.py:127 +#, python-format +msgid "" +"Please register your forum at LinkedIn developer site" +msgstr "" + +#: conf/external_keys.py:138 msgid "LinkedIn consumer secret" msgstr "" -#: conf/external_keys.py:145 -msgid "User LDAP authentication for the password login" +#: conf/external_keys.py:146 +msgid "ident.ca consumer key" +msgstr "" + +#: conf/external_keys.py:148 +#, python-format +msgid "" +"Please register your forum at Identi.ca applications " +"site" +msgstr "" + +#: conf/external_keys.py:159 +msgid "ident.ca consumer secret" +msgstr "" + +#: conf/external_keys.py:167 +msgid "Use LDAP authentication for the password login" msgstr "" -#: conf/external_keys.py:154 +#: conf/external_keys.py:176 msgid "LDAP service provider name" msgstr "" -#: conf/external_keys.py:162 +#: conf/external_keys.py:184 msgid "URL for the LDAP service" msgstr "" -#: conf/external_keys.py:170 +#: conf/external_keys.py:192 #, fuzzy msgid "Explain how to change LDAP password" msgstr "Cambiar Contraseña" @@ -539,95 +785,350 @@ msgid "" msgstr "" #: conf/flatpages.py:30 -msgid "Text of the Q&A forum Privacy Policy (html format)" +msgid "Text of the Q&A forum FAQ page (html format)" msgstr "" #: conf/flatpages.py:33 msgid "" "Save, then use HTML validator on " +"the \"faq\" page to check your input." +msgstr "" + +#: conf/flatpages.py:44 +msgid "Text of the Q&A forum Privacy Policy (html format)" +msgstr "" + +#: conf/flatpages.py:47 +msgid "" +"Save, then use HTML validator on " "the \"privacy\" page to check your input." msgstr "" -#: conf/forum_data_rules.py:12 -msgid "Settings for askbot data entry and display" +#: conf/forum_data_rules.py:11 +msgid "Data entry and display" msgstr "" #: conf/forum_data_rules.py:20 +#, python-format +msgid "" +"Enable embedding videos. Note: please read read this first." +msgstr "" + +#: conf/forum_data_rules.py:31 msgid "Check to enable community wiki feature" msgstr "" -#: conf/forum_data_rules.py:29 +#: conf/forum_data_rules.py:40 +msgid "Allow asking questions anonymously" +msgstr "" + +#: conf/forum_data_rules.py:42 +msgid "" +"Users do not accrue reputation for anonymous questions and their identity is " +"not revealed until they change their mind" +msgstr "" + +#: conf/forum_data_rules.py:54 +msgid "Allow posting before logging in" +msgstr "" + +#: conf/forum_data_rules.py:56 +msgid "" +"Check if you want to allow users start posting questions or answers before " +"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 "" + +#: conf/forum_data_rules.py:71 +#, fuzzy +msgid "Allow swapping answer with question" +msgstr "no es una respuesa a la pregunta" + +#: conf/forum_data_rules.py:73 +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 "" + +#: conf/forum_data_rules.py:85 msgid "Maximum length of tag (number of characters)" msgstr "Tamaño máximo de una etiqueta (número de caracteres)" -#: conf/forum_data_rules.py:39 +#: conf/forum_data_rules.py:93 +#, fuzzy +msgid "Mandatory tags" +msgstr "actualizar etiquetas" + +#: conf/forum_data_rules.py:96 +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:108 +msgid "Force lowercase the tags" +msgstr "" + +#: conf/forum_data_rules.py:110 +msgid "" +"Attention: after checking this, please back up the database, and run a " +"management command: python manage.py fix_question_tags to " +"globally rename the tags" +msgstr "" + +#: conf/forum_data_rules.py:124 +msgid "Format of tag list" +msgstr "" + +#: conf/forum_data_rules.py:126 +msgid "" +"Select the format to show tags in, either as a simple list, or as a tag cloud" +msgstr "" + +#: conf/forum_data_rules.py:138 +#, fuzzy +msgid "Use wildcard tags" +msgstr "Etiquetas relacionadas" + +#: conf/forum_data_rules.py:140 +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:153 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:50 +#: conf/forum_data_rules.py:164 #, 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:60 +#: conf/forum_data_rules.py:174 +#, fuzzy +msgid "Limit time to edit comments" +msgstr "%s comentarios dejados" + +#: conf/forum_data_rules.py:176 +msgid "If unchecked, there will be no time limit to edit the comments" +msgstr "" + +#: conf/forum_data_rules.py:187 +msgid "Minutes allowed to edit a comment" +msgstr "" + +#: conf/forum_data_rules.py:188 +msgid "To enable this setting, check the previous one" +msgstr "" + +#: conf/forum_data_rules.py:197 +msgid "Save comment by pressing key" +msgstr "" + +#: conf/forum_data_rules.py:206 msgid "Minimum length of search term for Ajax search" msgstr "" -#: conf/forum_data_rules.py:61 +#: conf/forum_data_rules.py:207 msgid "Must match the corresponding database backend setting" msgstr "" -#: conf/forum_data_rules.py:70 +#: conf/forum_data_rules.py:216 +msgid "Do not make text query sticky in search" +msgstr "" + +#: conf/forum_data_rules.py:218 +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:231 msgid "Maximum number of tags per question" msgstr "Número máximo de etiquetas por cada pregunta" -#: conf/forum_data_rules.py:82 +#: conf/forum_data_rules.py:243 msgid "Number of questions to list by default" msgstr "Número máximo de preguntas a listar por defecto" -#: conf/forum_data_rules.py:92 +#: conf/forum_data_rules.py:253 #, fuzzy msgid "What should \"unanswered question\" mean?" msgstr "lista de preguntas sin contestar" -#: conf/markup.py:15 -msgid "Markup formatting" -msgstr "" +#: conf/license.py:12 +#, fuzzy +msgid "License settings" +msgstr "Configuraciones básicas" -#: conf/markup.py:29 -msgid "Enable code-friendly Markdown" +#: conf/license.py:19 +msgid "Show license clause in the site footer" msgstr "" -#: conf/markup.py:31 -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 " -"\"MathJax support\" implicitly turns this feature on, because underscores " -"are heavily used in LaTeX input." +#: conf/license.py:28 +msgid "Short name for the license" msgstr "" -#: conf/markup.py:46 -msgid "Mathjax support (rendering of LaTeX)" +#: conf/license.py:37 +msgid "Full name of the license" msgstr "" -#: conf/markup.py:48 -#, python-format -msgid "" -"If you enable this feature, mathjax must be " -"installed in directory %(dir)s" +#: conf/license.py:38 +msgid "Creative Commons Attribution Share Alike 3.0" msgstr "" -#: conf/markup.py:63 -msgid "Base url of MathJax deployment" +#: conf/license.py:46 +msgid "Add link to the license page" msgstr "" -#: conf/markup.py:65 -msgid "" +#: conf/license.py:55 +#, fuzzy +msgid "License homepage" +msgstr "volver a inicio" + +#: conf/license.py:57 +msgid "URL of the official page with all the license legal clauses" +msgstr "" + +#: conf/license.py:67 +msgid "Use license logo" +msgstr "" + +#: conf/license.py:76 +msgid "License logo image" +msgstr "" + +#: conf/login_providers.py:12 +msgid "Login provider setings" +msgstr "" + +#: conf/login_providers.py:20 +msgid "" +"Show alternative login provider buttons on the password \"Sign Up\" page" +msgstr "" + +#: conf/login_providers.py:29 +msgid "Always display local login form and hide \"Askbot\" button." +msgstr "" + +#: conf/login_providers.py:38 +msgid "Activate to allow login with self-hosted wordpress site" +msgstr "" + +#: conf/login_providers.py:39 +msgid "" +"to activate this feature you must fill out the wordpress xml-rpc setting " +"bellow" +msgstr "" + +#: conf/login_providers.py:48 +msgid "" +"Fill it with the wordpress url to the xml-rpc, normally http://mysite.com/" +"xmlrpc.php" +msgstr "" + +#: conf/login_providers.py:49 +msgid "" +"To enable, go to Settings->Writing->Remote Publishing and check the box for " +"XML-RPC" +msgstr "" + +#: conf/login_providers.py:60 +msgid "Upload your icon" +msgstr "" + +#: conf/login_providers.py:90 +#, python-format +msgid "Activate %(provider)s login" +msgstr "" + +#: conf/login_providers.py:95 +#, python-format +msgid "" +"Note: to really enable %(provider)s login some additional parameters will " +"need to be set in the \"External keys\" section" +msgstr "" + +#: conf/markup.py:14 +msgid "Markup formatting" +msgstr "" + +#: conf/markup.py:39 +msgid "Enable code-friendly Markdown" +msgstr "" + +#: conf/markup.py:41 +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 " +"\"MathJax support\" implicitly turns this feature on, because underscores " +"are heavily used in LaTeX input." +msgstr "" + +#: conf/markup.py:56 +msgid "Mathjax support (rendering of LaTeX)" +msgstr "" + +#: conf/markup.py:58 +#, python-format +msgid "" +"If you enable this feature, mathjax must be " +"installed on your server in its own directory." +msgstr "" + +#: conf/markup.py:72 +msgid "Base url of MathJax deployment" +msgstr "" + +#: conf/markup.py:74 +msgid "" "Note - MathJax is not included with askbot - 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 "" +#: conf/markup.py:89 +msgid "Enable autolinking with specific patterns" +msgstr "" + +#: conf/markup.py:91 +msgid "" +"If you enable this feature, the application will be able to detect patterns " +"and auto link to URLs" +msgstr "" + +#: conf/markup.py:104 +msgid "Regexes to detect the link patterns" +msgstr "" + +#: conf/markup.py:106 +msgid "" +"Enter valid regular expressions for the patters, one per line. For example " +"to detect a bug pattern like #bug123, use the following regex: #bug(\\d+). " +"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 "" + +#: conf/markup.py:125 +msgid "URLs for autolinking" +msgstr "" + +#: conf/markup.py:127 +msgid "" +"Here, please enter url templates for the patterns entered in the previous " +"setting, also one entry per line. Make sure that number of lines in " +"this setting and the previous one are the same 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 "" + #: conf/minimum_reputation.py:11 msgid "Minimum reputation required to perform actions" msgstr "" @@ -644,66 +1145,86 @@ msgstr "voto negativo" #: conf/minimum_reputation.py:38 #, fuzzy +msgid "Answer own question immediately" +msgstr "Responde tu pregunta" + +#: conf/minimum_reputation.py:47 +#, fuzzy +msgid "Accept own answer" +msgstr "editar cualquier respuesta" + +#: conf/minimum_reputation.py:56 +#, fuzzy msgid "Flag offensive" msgstr "marcar como ofensivo" -#: conf/minimum_reputation.py:47 +#: conf/minimum_reputation.py:65 #, fuzzy msgid "Leave comments" msgstr "comentar" -#: conf/minimum_reputation.py:56 +#: conf/minimum_reputation.py:74 msgid "Delete comments posted by others" msgstr "Borrar comentarios creados por otros usuarios" -#: conf/minimum_reputation.py:65 +#: conf/minimum_reputation.py:83 #, fuzzy msgid "Delete questions and answers posted by others" msgstr "" "eliminar cualquier pregunta y respuesta, y agregar otras tareas de moderación" -#: conf/minimum_reputation.py:74 +#: conf/minimum_reputation.py:92 #, fuzzy msgid "Upload files" msgstr "archivos-subidos/" -#: conf/minimum_reputation.py:83 +#: conf/minimum_reputation.py:101 #, fuzzy msgid "Close own questions" msgstr "Cerrar pregunta" -#: conf/minimum_reputation.py:92 +#: conf/minimum_reputation.py:110 msgid "Retag questions posted by other people" msgstr "Re-etiquetar las preguntas creadas por otros usuarios" -#: conf/minimum_reputation.py:101 +#: conf/minimum_reputation.py:119 #, fuzzy msgid "Reopen own questions" msgstr "Re-abrir pregunta" -#: conf/minimum_reputation.py:110 +#: conf/minimum_reputation.py:128 #, fuzzy msgid "Edit community wiki posts" msgstr "editar preguntas wiki" -#: conf/minimum_reputation.py:119 +#: conf/minimum_reputation.py:137 msgid "Edit posts authored by other people" msgstr "" -#: conf/minimum_reputation.py:128 +#: conf/minimum_reputation.py:146 #, fuzzy msgid "View offensive flags" msgstr "marcar como ofensivo" -#: conf/minimum_reputation.py:137 +#: conf/minimum_reputation.py:155 #, fuzzy msgid "Close questions asked by others" msgstr "ver preguntas etiquetadas" -#: conf/minimum_reputation.py:146 +#: conf/minimum_reputation.py:164 msgid "Lock posts" msgstr "" +#: conf/minimum_reputation.py:173 +msgid "Remove rel=nofollow from own homepage" +msgstr "" + +#: conf/minimum_reputation.py:175 +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 "" + #: conf/reputation_changes.py:12 msgid "Reputation loss and gain rules" msgstr "" @@ -765,56 +1286,169 @@ msgstr "" msgid "Loss for post owner when upvote is canceled" msgstr "" -#: conf/site_settings.py:13 +#: conf/sidebar_main.py:11 +msgid "Sidebar widget settings - main page" +msgstr "" + +#: conf/sidebar_main.py:18 conf/sidebar_profile.py:18 +#: conf/sidebar_question.py:18 +msgid "Custom sidebar header" +msgstr "" + +#: conf/sidebar_main.py:21 conf/sidebar_profile.py:21 +#: conf/sidebar_question.py:21 +msgid "" +"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." +msgstr "" + +#: conf/sidebar_main.py:34 +msgid "Show avatar block in sidebar" +msgstr "" + +#: conf/sidebar_main.py:36 +msgid "Uncheck this if you want to hide the avatar block from the sidebar " +msgstr "" + +#: conf/sidebar_main.py:47 +msgid "Limit how many avatars will be displayed on the sidebar" +msgstr "" + +#: conf/sidebar_main.py:57 +msgid "Show tag selector in sidebar" +msgstr "" + +#: conf/sidebar_main.py:59 +msgid "" +"Uncheck this if you want to hide the options for choosing interesting and " +"ignored tags " +msgstr "" + +#: conf/sidebar_main.py:70 +msgid "Show tag list/cloud in sidebar" +msgstr "" + +#: conf/sidebar_main.py:72 +msgid "" +"Uncheck this if you want to hide the tag cloud or tag list from the sidebar " +msgstr "" + +#: conf/sidebar_main.py:83 conf/sidebar_profile.py:34 +#: conf/sidebar_question.py:74 +msgid "Custom sidebar footer" +msgstr "" + +#: conf/sidebar_main.py:86 conf/sidebar_profile.py:37 +#: conf/sidebar_question.py:77 +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 "" + +#: conf/sidebar_profile.py:11 +msgid "Sidebar widget settings - profile page" +msgstr "" + +#: conf/sidebar_question.py:11 +msgid "Sidebar widget settings - question page" +msgstr "" + +#: conf/sidebar_question.py:34 +msgid "Show tag list in sidebar" +msgstr "" + +#: conf/sidebar_question.py:36 +msgid "Uncheck this if you want to hide the tag list from the sidebar " +msgstr "" + +#: conf/sidebar_question.py:47 +msgid "Show meta information in sidebar" +msgstr "" + +#: conf/sidebar_question.py:49 +msgid "" +"Uncheck this if you want to hide the meta information about the question " +"(post date, views, last updated). " +msgstr "" + +#: conf/sidebar_question.py:61 +#, fuzzy +msgid "Show related questions in sidebar" +msgstr "Preguntas relacionadas" + +#: conf/sidebar_question.py:63 +#, fuzzy +msgid "Uncheck this if you want to hide the list of related questions. " +msgstr "últimas preguntas actualizadas" + +#: conf/site_modes.py:63 +#, fuzzy +msgid "Site modes" +msgstr "título" + +#: conf/site_modes.py:72 +msgid "Activate a \"Bootstrap\" mode" +msgstr "" + +#: conf/site_modes.py:74 +msgid "" +"Bootstrap mode lowers reputation and certain badge thresholds, to values, " +"more suitable for the smaller communities, WARNING: your " +"current value for Minimum reputation, Bagde Settings and Vote Rules will be " +"changed after you modify this setting." +msgstr "" + +#: conf/site_settings.py:11 msgid "Q&A forum website parameters and urls" msgstr "" -#: conf/site_settings.py:21 +#: conf/site_settings.py:19 #, fuzzy msgid "Site title for the Q&A forum" msgstr "Agradecer desde foro de P&R" -#: conf/site_settings.py:30 +#: conf/site_settings.py:28 msgid "Comma separated list of Q&A site keywords" msgstr "" -#: conf/site_settings.py:40 +#: conf/site_settings.py:37 msgid "Copyright message to show in the footer" msgstr "" -#: conf/site_settings.py:50 +#: conf/site_settings.py:47 msgid "Site description for the search engines" msgstr "" -#: conf/site_settings.py:58 -#, fuzzy -msgid "Askbot" -msgstr "Acerca de" - -#: conf/site_settings.py:59 +#: conf/site_settings.py:56 msgid "Short name for your Q&A forum" msgstr "" -#: conf/site_settings.py:69 +#: conf/site_settings.py:66 msgid "Base URL for your Q&A forum, must start with http or https" msgstr "" -#: conf/site_settings.py:82 -msgid "Link shown in the greeting message shown to the anonymous user" +#: conf/site_settings.py:77 +msgid "Check to enable greeting for anonymous user" msgstr "" -#: conf/site_settings.py:85 -msgid "" -"If you change this url from the default - then you will also probably want " -"to adjust translation of the following string: " +#: conf/site_settings.py:88 +msgid "Text shown in the greeting message shown to the anonymous user" msgstr "" -#: conf/site_settings.py:98 +#: conf/site_settings.py:92 +msgid "Use HTML to format the message " +msgstr "" + +#: conf/site_settings.py:101 #, fuzzy msgid "Feedback site URL" msgstr "Sugerencias" -#: conf/site_settings.py:100 +#: conf/site_settings.py:103 msgid "If left empty, a simple internal feedback form will be used instead" msgstr "" @@ -927,23 +1561,33 @@ msgstr "" msgid "Foreground color for accepted answer" msgstr "" -#: conf/skin_general_settings.py:15 +#: conf/skin_general_settings.py:14 msgid "Skin and User Interface settings" msgstr "" -#: conf/skin_general_settings.py:22 +#: conf/skin_general_settings.py:21 msgid "Q&A site logo" msgstr "" -#: conf/skin_general_settings.py:24 +#: conf/skin_general_settings.py:23 msgid "To change the logo, select new file, then submit this whole form." msgstr "" -#: conf/skin_general_settings.py:38 +#: conf/skin_general_settings.py:37 +msgid "Show logo" +msgstr "" + +#: 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 msgid "Site favicon" msgstr "" -#: conf/skin_general_settings.py:40 +#: conf/skin_general_settings.py:53 #, python-format msgid "" "A small 16x16 or 32x32 pixel icon image used to distinguish your site in the " @@ -951,40 +1595,148 @@ msgid "" "href=\"%(favicon_info_url)s\">this page." msgstr "" -#: conf/skin_general_settings.py:56 +#: conf/skin_general_settings.py:71 msgid "Password login button" msgstr "" -#: conf/skin_general_settings.py:58 +#: conf/skin_general_settings.py:73 msgid "" "An 88x38 pixel image that is used on the login screen for the password login " "button." msgstr "" -#: conf/skin_general_settings.py:73 +#: conf/skin_general_settings.py:88 msgid "Show all UI functions to all users" msgstr "" -#: conf/skin_general_settings.py:75 +#: conf/skin_general_settings.py:90 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:90 +#: conf/skin_general_settings.py:105 #, fuzzy msgid "Select skin" msgstr "seleccionar revisión" -#: conf/skin_general_settings.py:99 -msgid "Skin media revision number" +#: conf/skin_general_settings.py:116 +msgid "Customize HTML " +msgstr "" + +#: conf/skin_general_settings.py:125 +msgid "Custom portion of the HTML " +msgstr "" + +#: conf/skin_general_settings.py:127 +msgid "" +"To use this option, check \"Customize HTML <HEAD>\" " +"above. Contents of this box will be inserted into the <HEAD> portion " +"of the HTML output, where elements such as <script>, <link>, <" +"meta> may be added. Please, keep in mind that adding external javascript " +"to the <HEAD> 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. Note: if you do use this setting, " +"please test the site with the W3C HTML validator service." +msgstr "" + +#: conf/skin_general_settings.py:149 +msgid "Custom header additions" +msgstr "" + +#: conf/skin_general_settings.py:151 +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 " +"headerin the HTML format. When customizing the site header (as well as " +"footer and the HTML <HEAD>), use the HTML validation service to make " +"sure that your input is valid and works well in all browsers." +msgstr "" + +#: conf/skin_general_settings.py:166 +msgid "Site footer mode" msgstr "" -#: conf/skin_general_settings.py:101 +#: conf/skin_general_settings.py:168 msgid "" -"Increment this number when you change image in skin media or stylesheet. " -"This helps avoid showing your users outdated images from their browser cache." +"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:185 +msgid "Custom footer (HTML format)" +msgstr "" + +#: conf/skin_general_settings.py:187 +msgid "" +"To enable this function, please select option 'customize' " +"in the \"Site footer mode\" above. Use this area to enter contents of the " +"footer in the HTML format. When customizing the site footer (as well as the " +"header and HTML <HEAD>), use the HTML validation service to make sure " +"that your input is valid and works well in all browsers." +msgstr "" + +#: conf/skin_general_settings.py:202 +msgid "Apply custom style sheet (CSS)" +msgstr "" + +#: conf/skin_general_settings.py:204 +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:216 +msgid "Custom style sheet (CSS)" +msgstr "" + +#: conf/skin_general_settings.py:218 +msgid "" +"To use this function, 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 \"<forum url>/custom.css\", where the \"<forum url> part " +"depends (default is empty string) on the url configuration in your urls.py." +msgstr "" + +#: conf/skin_general_settings.py:234 +msgid "Add custom javascript" +msgstr "" + +#: conf/skin_general_settings.py:237 +msgid "Check to enable javascript that you can enter in the next field" +msgstr "" + +#: conf/skin_general_settings.py:247 +msgid "Custom javascript" +msgstr "" + +#: conf/skin_general_settings.py:249 +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 \"<forum url>/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 (to " +"enable your custom code, check \"Add custom javascript\" option " +"above)." +msgstr "" + +#: conf/skin_general_settings.py:267 +msgid "Skin media revision number" +msgstr "" + +#: conf/skin_general_settings.py:269 +msgid "Will be set automatically but you can modify it if necessary." +msgstr "" + +#: conf/skin_general_settings.py:280 +msgid "Hash to update the media revision number automatically." +msgstr "" + +#: conf/skin_general_settings.py:284 +msgid "Will be set automatically, it is not necesary to modify manually." msgstr "" #: conf/social_sharing.py:10 @@ -992,22 +1744,81 @@ msgid "Sharing content on social networks" msgstr "" #: conf/social_sharing.py:18 -msgid "Check to enable sharing of questions on Twitter and Facebook" +#, fuzzy +msgid "Check to enable sharing of questions on Twitter" +msgstr "Reabrir esta pregunta" + +#: conf/social_sharing.py:27 +#, fuzzy +msgid "Check to enable sharing of questions on Facebook" +msgstr "última información de la pregunta" + +#: conf/social_sharing.py:36 +msgid "Check to enable sharing of questions on LinkedIn" +msgstr "" + +#: conf/social_sharing.py:45 +msgid "Check to enable sharing of questions on Identi.ca" +msgstr "" + +#: conf/social_sharing.py:54 +msgid "Check to enable sharing of questions on Google+" +msgstr "" + +#: conf/spam_and_moderation.py:9 +msgid "Spam control and content moderation" +msgstr "" + +#: conf/spam_and_moderation.py:16 +msgid "Enable Akismet spam detection(keys below are required)" +msgstr "" + +#: conf/spam_and_moderation.py:19 +#, python-format +msgid "To get an Akismet key please visit Akismet site" +msgstr "" + +#: conf/spam_and_moderation.py:29 +msgid "Akismet key for spam detection" msgstr "" -#: conf/user_settings.py:10 +#: conf/user_settings.py:11 #, fuzzy -msgid "User policy settings" +msgid "User settings" msgstr "Configuraciones básicas" -#: conf/user_settings.py:18 +#: conf/user_settings.py:19 msgid "Allow editing user screen name" msgstr "" #: conf/user_settings.py:28 +#, fuzzy +msgid "Allow account recovery by email" +msgstr "tu dirección de email" + +#: conf/user_settings.py:37 +msgid "Allow adding and removing login methods" +msgstr "" + +#: conf/user_settings.py:47 msgid "Minimum allowed length for screen name" msgstr "" +#: conf/user_settings.py:57 +msgid "Default Gravatar icon type" +msgstr "" + +#: conf/user_settings.py:59 +msgid "" +"This option allows you to set the default avatar type for email addresses " +"without associated gravatar images. For more information, please visit this page." +msgstr "" + +#: conf/user_settings.py:69 +msgid "Name for the Anonymous user" +msgstr "" + #: conf/vote_rules.py:13 msgid "Limits applicable to votes and moderation flags" msgstr "" @@ -1029,295 +1840,439 @@ msgid "Number of days to allow canceling votes" msgstr "" #: conf/vote_rules.py:58 -msgid "Number of flags required to automatically hide posts" +msgid "Number of days required before answering own question" msgstr "" #: conf/vote_rules.py:67 +msgid "Number of flags required to automatically hide posts" +msgstr "" + +#: conf/vote_rules.py:76 msgid "Number of flags required to automatically delete posts" msgstr "" -#: const/__init__.py:9 +#: const/__init__.py:10 msgid "duplicate question" msgstr "pregunta duplicada" -#: const/__init__.py:10 +#: const/__init__.py:11 msgid "question is off-topic or not relevant" msgstr "la pregunta esta fuera de luga o no es relevante" -#: const/__init__.py:11 +#: const/__init__.py:12 msgid "too subjective and argumentative" msgstr "demasiado subjetivo y argumentativo" -#: const/__init__.py:12 +#: const/__init__.py:13 #, fuzzy msgid "not a real question" msgstr "preguntar" -#: const/__init__.py:13 +#: const/__init__.py:14 msgid "the question is answered, right answer was accepted" msgstr "la pregunta ha sido respondida, la respuesta correcta ha sido aceptada" -#: const/__init__.py:14 +#: const/__init__.py:15 #, fuzzy msgid "question is not relevant or outdated" msgstr "no es reproducible o esta desactualizado" -#: const/__init__.py:15 +#: const/__init__.py:16 #, fuzzy msgid "question contains offensive or malicious remarks" msgstr "la pregunta contiene comentarios inapropiados, ofensivo o malicioso" -#: const/__init__.py:16 +#: const/__init__.py:17 msgid "spam or advertising" msgstr "spam o publicidad" -#: const/__init__.py:17 +#: const/__init__.py:18 msgid "too localized" msgstr "" -#: const/__init__.py:40 +#: const/__init__.py:41 msgid "newest" msgstr "nuevas" -#: const/__init__.py:41 skins/default/templates/users.html:25 -#: skins/default/templates/users.html:26 +#: const/__init__.py:42 skins/default/templates/users.html:26 msgid "oldest" msgstr "viejos" -#: const/__init__.py:42 +#: const/__init__.py:43 msgid "active" msgstr "activa" -#: const/__init__.py:43 +#: const/__init__.py:44 #, fuzzy msgid "inactive" msgstr "activa" -#: const/__init__.py:44 +#: const/__init__.py:45 msgid "hottest" msgstr "lo más caliente" -#: const/__init__.py:45 +#: const/__init__.py:46 #, fuzzy msgid "coldest" msgstr "viejos" -#: const/__init__.py:46 +#: const/__init__.py:47 msgid "most voted" msgstr "más votado" -#: const/__init__.py:47 +#: const/__init__.py:48 #, fuzzy msgid "least voted" msgstr "más votado" -#: const/__init__.py:48 +#: const/__init__.py:49 msgid "relevance" msgstr "" -#: const/__init__.py:55 skins/default/templates/questions.html:14 -#: skins/default/templates/user_inbox.html:47 +#: const/__init__.py:57 skins/default/templates/main_page/tab_bar.html:10 +#: skins/default/templates/user_profile/user_inbox.html:50 msgid "all" msgstr "" -#: const/__init__.py:56 skins/default/templates/questions.html:19 +#: const/__init__.py:58 skins/default/templates/main_page/tab_bar.html:15 #, fuzzy msgid "unanswered" msgstr "sinrespuesta/" -#: const/__init__.py:57 skins/default/templates/questions.html:25 +#: const/__init__.py:59 #, fuzzy msgid "favorite" msgstr "favoritos" -#: const/__init__.py:70 +#: const/__init__.py:64 +#, fuzzy +msgid "list" +msgstr "Lista de etiquetas" + +#: const/__init__.py:65 +msgid "cloud" +msgstr "" + +#: const/__init__.py:78 #, fuzzy msgid "Question has no answers" msgstr "Preguntas que he respondido" -#: const/__init__.py:71 +#: const/__init__.py:79 #, fuzzy msgid "Question has no accepted answers" msgstr "Preguntas que he respondido" -#: const/__init__.py:111 +#: const/__init__.py:121 #, fuzzy msgid "asked a question" msgstr "preguntar" -#: const/__init__.py:112 +#: const/__init__.py:122 #, fuzzy msgid "answered a question" msgstr "preguntas sin contestar" -#: const/__init__.py:113 +#: const/__init__.py:123 msgid "commented question" msgstr "comentar pregunta" -#: const/__init__.py:114 +#: const/__init__.py:124 msgid "commented answer" msgstr "comentar respuesta" -#: const/__init__.py:115 +#: const/__init__.py:125 msgid "edited question" msgstr "editar pregunta" -#: const/__init__.py:116 +#: const/__init__.py:126 msgid "edited answer" msgstr "editar respuesta" -#: const/__init__.py:117 +#: const/__init__.py:127 msgid "received award" msgstr "recibió un trofeo" -#: const/__init__.py:118 +#: const/__init__.py:128 msgid "marked best answer" msgstr "la mejor respuesta fue marcada" -#: const/__init__.py:119 +#: const/__init__.py:129 msgid "upvoted" msgstr "voto positivo" -#: const/__init__.py:120 +#: const/__init__.py:130 msgid "downvoted" msgstr "voto negativo" -#: const/__init__.py:121 +#: const/__init__.py:131 msgid "canceled vote" msgstr "voto cancelado" -#: const/__init__.py:122 +#: const/__init__.py:132 msgid "deleted question" msgstr "eliminar pregunta" -#: const/__init__.py:123 +#: const/__init__.py:133 msgid "deleted answer" msgstr "eliminar respuesta" -#: const/__init__.py:124 +#: const/__init__.py:134 msgid "marked offensive" msgstr "marcar como ofensivo" -#: const/__init__.py:125 +#: const/__init__.py:135 msgid "updated tags" msgstr "actualizar etiquetas" -#: const/__init__.py:126 +#: const/__init__.py:136 msgid "selected favorite" msgstr "seleccionar favorito" -#: const/__init__.py:127 +#: const/__init__.py:137 msgid "completed user profile" msgstr "completar perfil de usuario" -#: const/__init__.py:128 +#: const/__init__.py:138 msgid "email update sent to user" msgstr "enviar actualizaciones al usuario" -#: const/__init__.py:129 +#: const/__init__.py:141 +#, fuzzy +msgid "reminder about unanswered questions sent" +msgstr "preguntas sin contestar" + +#: const/__init__.py:143 msgid "mentioned in the post" msgstr "" -#: const/__init__.py:180 +#: const/__init__.py:194 msgid "question_answered" msgstr "pregunta_respondida" -#: const/__init__.py:181 +#: const/__init__.py:195 msgid "question_commented" msgstr "pregunta_comentada" -#: const/__init__.py:182 +#: const/__init__.py:196 msgid "answer_commented" msgstr "respuesta_comentada" -#: const/__init__.py:183 +#: const/__init__.py:197 msgid "answer_accepted" msgstr "respuesta_aceptada" -#: const/__init__.py:187 +#: const/__init__.py:201 msgid "[closed]" msgstr "[cerrado]" -#: const/__init__.py:188 +#: const/__init__.py:202 msgid "[deleted]" msgstr "[eliminado]" -#: const/__init__.py:189 views/readers.py:549 +#: const/__init__.py:203 views/readers.py:614 msgid "initial version" msgstr "versión inicial" -#: const/__init__.py:190 +#: const/__init__.py:204 msgid "retagged" msgstr "re-etiquetado" -#: const/__init__.py:195 -msgid "exclude ignored tags" +#: const/__init__.py:212 +msgid "off" +msgstr "" + +#: const/__init__.py:213 +#, fuzzy +msgid "exclude ignored" msgstr "excluir etiquetas ignoradas" -#: const/__init__.py:196 -msgid "allow only selected tags" -msgstr "permitir unicamente etiquetas seleccionadas" +#: const/__init__.py:214 +#, fuzzy +msgid "only selected" +msgstr "Selección individual" -#: const/__init__.py:200 +#: const/__init__.py:218 msgid "instantly" msgstr "" -#: const/__init__.py:201 +#: const/__init__.py:219 msgid "daily" msgstr "diario" -#: const/__init__.py:202 +#: const/__init__.py:220 msgid "weekly" msgstr "semanal" -#: const/__init__.py:203 +#: const/__init__.py:221 msgid "no email" msgstr "no enviar emails" +#: const/__init__.py:228 +msgid "identicon" +msgstr "" + +#: const/__init__.py:229 +#, fuzzy +msgid "mystery-man" +msgstr "ayer" + +#: const/__init__.py:230 +msgid "monsterid" +msgstr "" + +#: const/__init__.py:231 +#, fuzzy +msgid "wavatar" +msgstr "que es gravatar" + +#: const/__init__.py:232 +msgid "retro" +msgstr "" + +#: const/__init__.py:279 skins/default/templates/badges.html:37 +msgid "gold" +msgstr "oro" + +#: const/__init__.py:280 skins/default/templates/badges.html:46 +msgid "silver" +msgstr "plata" + +#: const/__init__.py:281 skins/default/templates/badges.html:53 +msgid "bronze" +msgstr "bronce" + +#: const/__init__.py:293 +msgid "None" +msgstr "" + +#: const/__init__.py:294 +msgid "Gravatar" +msgstr "" + +#: const/__init__.py:295 +msgid "Uploaded Avatar" +msgstr "" + +#: const/message_keys.py:15 +#, fuzzy +msgid "most relevant questions" +msgstr "últimas preguntas respondidas" + +#: const/message_keys.py:16 +#, fuzzy +msgid "click to see most relevant questions" +msgstr "preguntas más votadas" + +#: const/message_keys.py:17 +msgid "by relevance" +msgstr "" + +#: const/message_keys.py:18 +#, fuzzy +msgid "click to see the oldest questions" +msgstr "ver las últimas preguntas" + #: const/message_keys.py:19 -#, python-format -msgid "First time here? Check out the FAQ!" -msgstr "Primera vez? Lee nuestra Preguntas Mas Frecuentes!" +#, fuzzy +msgid "by date" +msgstr "Actualizar" + +#: const/message_keys.py:20 +#, fuzzy +msgid "click to see the newest questions" +msgstr "ver las últimas preguntas" + +#: const/message_keys.py:21 +#, fuzzy +msgid "click to see the least recently updated questions" +msgstr "últimas preguntas actualizadas" + +#: const/message_keys.py:22 +#, fuzzy +msgid "by activity" +msgstr "activa" + +#: const/message_keys.py:23 +#, fuzzy +msgid "click to see the most recently updated questions" +msgstr "últimas preguntas actualizadas" + +#: const/message_keys.py:24 +#, fuzzy +msgid "click to see the least answered questions" +msgstr "ver las últimas preguntas" + +#: const/message_keys.py:25 +#, fuzzy +msgid "by answers" +msgstr "respuestas" + +#: const/message_keys.py:26 +#, fuzzy +msgid "click to see the most answered questions" +msgstr "preguntas más votadas" -#: deps/django_authopenid/forms.py:116 deps/django_authopenid/views.py:137 +#: const/message_keys.py:27 +#, fuzzy +msgid "click to see least voted questions" +msgstr "preguntas más votadas" + +#: const/message_keys.py:28 +#, fuzzy +msgid "by votes" +msgstr "votos" + +#: const/message_keys.py:29 +#, fuzzy +msgid "click to see most voted questions" +msgstr "preguntas más votadas" + +#: deps/django_authopenid/backends.py:88 +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 #, fuzzy msgid "i-names are not supported" msgstr "HTML básico es soportado" -#: deps/django_authopenid/forms.py:237 +#: deps/django_authopenid/forms.py:233 #, fuzzy, python-format msgid "Please enter your %(username_token)s" msgstr "Ingrese su nombre de usuario" -#: deps/django_authopenid/forms.py:263 +#: deps/django_authopenid/forms.py:259 #, fuzzy msgid "Please, enter your user name" msgstr "Ingrese su nombre de usuario" -#: deps/django_authopenid/forms.py:267 +#: deps/django_authopenid/forms.py:263 #, fuzzy msgid "Please, enter your password" msgstr "Ingrese su contraseña" -#: deps/django_authopenid/forms.py:274 deps/django_authopenid/forms.py:278 +#: deps/django_authopenid/forms.py:270 deps/django_authopenid/forms.py:274 #, fuzzy msgid "Please, enter your new password" msgstr "Ingrese su contraseña" -#: deps/django_authopenid/forms.py:289 +#: deps/django_authopenid/forms.py:285 msgid "Passwords did not match" msgstr "" -#: deps/django_authopenid/forms.py:301 +#: deps/django_authopenid/forms.py:297 #, python-format msgid "Please choose password > %(len)s characters" msgstr "" -#: deps/django_authopenid/forms.py:336 +#: deps/django_authopenid/forms.py:335 msgid "Current password" msgstr "Contraseña actual" -#: deps/django_authopenid/forms.py:347 +#: deps/django_authopenid/forms.py:346 msgid "" "Old password is incorrect. Please enter the correct " "password." @@ -1325,7 +2280,7 @@ msgstr "" "Contraseña antigua es incorrecta. Por favor ingrese la " "contraseña correcta." -#: deps/django_authopenid/forms.py:400 +#: deps/django_authopenid/forms.py:399 #, fuzzy msgid "Sorry, we don't have this email address in the database" msgstr "Lo sentimos, pero este email no esta en nuestra base de datos" @@ -1340,222 +2295,214 @@ msgstr "nombre de usuario es requerido" msgid "Incorrect username." msgstr "seleccione un nombre de usuario" -#: deps/django_authopenid/urls.py:10 deps/django_authopenid/urls.py:11 -#: deps/django_authopenid/urls.py:12 deps/django_authopenid/urls.py:15 -#: deps/django_authopenid/urls.py:18 setup_templates/settings.py:182 +#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12 +#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:202 msgid "signin/" msgstr "ingresar/" -#: deps/django_authopenid/urls.py:11 -#, fuzzy -msgid "newquestion/" -msgstr "nueva pregunta" - -#: deps/django_authopenid/urls.py:12 -#, fuzzy -msgid "newanswer/" -msgstr "responder/" - -#: deps/django_authopenid/urls.py:13 +#: deps/django_authopenid/urls.py:10 msgid "signout/" msgstr "eliminar-cuenta/" -#: deps/django_authopenid/urls.py:15 +#: deps/django_authopenid/urls.py:12 #, fuzzy msgid "complete/" msgstr "comentarios/" -#: deps/django_authopenid/urls.py:18 +#: deps/django_authopenid/urls.py:15 #, fuzzy msgid "complete-oauth/" msgstr "comentarios/" -#: deps/django_authopenid/urls.py:22 +#: deps/django_authopenid/urls.py:19 msgid "register/" msgstr "registrar/" -#: deps/django_authopenid/urls.py:24 +#: deps/django_authopenid/urls.py:21 #, fuzzy msgid "signup/" msgstr "eliminar-cuenta/" -#: deps/django_authopenid/urls.py:32 +#: deps/django_authopenid/urls.py:25 +msgid "logout/" +msgstr "salir/" + +#: deps/django_authopenid/urls.py:30 #, fuzzy msgid "recover/" msgstr "remover/" -#: deps/django_authopenid/util.py:196 +#: deps/django_authopenid/util.py:378 #, fuzzy, python-format msgid "%(site)s user name and password" msgstr "Ingrese su nombre de usuario y contraseña." -#: deps/django_authopenid/util.py:202 -#: skins/default/templates/authopenid/signin.html:124 +#: deps/django_authopenid/util.py:384 +#: skins/default/templates/authopenid/signin.html:108 msgid "Create a password-protected account" msgstr "" -#: deps/django_authopenid/util.py:203 +#: deps/django_authopenid/util.py:385 #, fuzzy msgid "Change your password" msgstr "Cambiar Contraseña" -#: deps/django_authopenid/util.py:265 +#: deps/django_authopenid/util.py:473 msgid "Sign in with Yahoo" msgstr "" -#: deps/django_authopenid/util.py:272 +#: deps/django_authopenid/util.py:480 #, fuzzy msgid "AOL screen name" msgstr "Nombre para mostrar" -#: deps/django_authopenid/util.py:280 +#: deps/django_authopenid/util.py:488 #, fuzzy msgid "OpenID url" msgstr "Obetener OpenID" -#: deps/django_authopenid/util.py:297 -#, fuzzy -msgid "MyOpenid user name" -msgstr "por nombre de usuario" - -#: deps/django_authopenid/util.py:305 deps/django_authopenid/util.py:313 +#: deps/django_authopenid/util.py:517 #, fuzzy msgid "Flickr user name" msgstr "nombr de usuario" -#: deps/django_authopenid/util.py:321 +#: deps/django_authopenid/util.py:525 #, fuzzy msgid "Technorati user name" msgstr "seleccione un nombre de usuario" -#: deps/django_authopenid/util.py:329 +#: deps/django_authopenid/util.py:533 msgid "WordPress blog name" msgstr "" -#: deps/django_authopenid/util.py:337 +#: deps/django_authopenid/util.py:541 msgid "Blogger blog name" msgstr "" -#: deps/django_authopenid/util.py:345 +#: deps/django_authopenid/util.py:549 msgid "LiveJournal blog name" msgstr "" -#: deps/django_authopenid/util.py:353 +#: deps/django_authopenid/util.py:557 #, fuzzy msgid "ClaimID user name" msgstr "nombr de usuario" -#: deps/django_authopenid/util.py:361 +#: deps/django_authopenid/util.py:565 #, fuzzy msgid "Vidoop user name" msgstr "nombr de usuario" -#: deps/django_authopenid/util.py:369 +#: deps/django_authopenid/util.py:573 #, fuzzy msgid "Verisign user name" msgstr "nombr de usuario" -#: deps/django_authopenid/util.py:393 +#: deps/django_authopenid/util.py:608 #, fuzzy, python-format msgid "Change your %(provider)s password" msgstr "Cambiar Contraseña" -#: deps/django_authopenid/util.py:397 +#: deps/django_authopenid/util.py:612 #, python-format msgid "Click to see if your %(provider)s signin still works for %(site_name)s" msgstr "" -#: deps/django_authopenid/util.py:406 +#: deps/django_authopenid/util.py:621 #, python-format msgid "Create password for %(provider)s" msgstr "" -#: deps/django_authopenid/util.py:410 +#: deps/django_authopenid/util.py:625 #, fuzzy, python-format msgid "Connect your %(provider)s account to %(site_name)s" msgstr "Conectar tu OpenID con tu cuenta en este sitio" -#: deps/django_authopenid/util.py:419 +#: deps/django_authopenid/util.py:634 #, fuzzy, python-format msgid "Signin with %(provider)s user name and password" msgstr "Ingrese su nombre de usuario y contraseña." -#: deps/django_authopenid/util.py:426 +#: deps/django_authopenid/util.py:641 #, python-format msgid "Sign in with your %(provider)s account" msgstr "" -#: deps/django_authopenid/views.py:144 +#: deps/django_authopenid/views.py:158 #, python-format msgid "OpenID %(openid_url)s is invalid" msgstr "" -#: deps/django_authopenid/views.py:256 deps/django_authopenid/views.py:399 -#: deps/django_authopenid/views.py:427 +#: deps/django_authopenid/views.py:270 deps/django_authopenid/views.py:415 +#: deps/django_authopenid/views.py:443 #, 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:349 +#: deps/django_authopenid/views.py:365 #, fuzzy msgid "Your new password saved" msgstr "Tu contraseña ha sido cambiada." -#: deps/django_authopenid/views.py:511 +#: deps/django_authopenid/views.py:469 +msgid "The login password combination was not correct" +msgstr "" + +#: deps/django_authopenid/views.py:573 msgid "Please click any of the icons below to sign in" msgstr "" -#: deps/django_authopenid/views.py:513 +#: deps/django_authopenid/views.py:575 msgid "Account recovery email sent" msgstr "" -#: deps/django_authopenid/views.py:516 +#: deps/django_authopenid/views.py:578 msgid "Please add one or more login methods." msgstr "" -#: deps/django_authopenid/views.py:518 +#: deps/django_authopenid/views.py:580 msgid "If you wish, please add, remove or re-validate your login methods" msgstr "" -#: deps/django_authopenid/views.py:520 +#: deps/django_authopenid/views.py:582 msgid "Please wait a second! Your account is recovered, but ..." msgstr "" -#: deps/django_authopenid/views.py:522 +#: deps/django_authopenid/views.py:584 msgid "Sorry, this account recovery key has expired or is invalid" msgstr "" -#: deps/django_authopenid/views.py:578 +#: deps/django_authopenid/views.py:657 #, python-format msgid "Login method %(provider_name)s does not exist" msgstr "" -#: deps/django_authopenid/views.py:584 +#: deps/django_authopenid/views.py:663 #, fuzzy msgid "Oops, sorry - there was some error - please try again" msgstr "" "lo sentimos, las contraseñas que haz ingresado no coinciden, intenta de nuevo" -#: deps/django_authopenid/views.py:675 +#: deps/django_authopenid/views.py:754 #, python-format msgid "Your %(provider)s login works fine" msgstr "" -#: deps/django_authopenid/views.py:973 deps/django_authopenid/views.py:979 +#: deps/django_authopenid/views.py:1065 deps/django_authopenid/views.py:1071 #, fuzzy, python-format msgid "your email needs to be validated see %(details_url)s" msgstr "" -"subscrición guardada, necesitamos una validación de %(email)s , mira %" -"(details_url)s" +"subscrición guardada, necesitamos una validación de %(email)s , mira " +"%(details_url)s" -#: deps/django_authopenid/views.py:1000 -#, fuzzy -msgid "Email verification subject line" -msgstr "Configuración de suscripciones por email" +#: deps/django_authopenid/views.py:1092 +#, fuzzy, python-format +msgid "Recover your %(site)s account" +msgstr "Obtener una nueva contraseña" -#: deps/django_authopenid/views.py:1065 +#: deps/django_authopenid/views.py:1162 msgid "Please check your email and visit the enclosed link." msgstr "" @@ -1564,25 +2511,25 @@ msgstr "" msgid "Site" msgstr "título" -#: deps/livesettings/values.py:107 +#: deps/livesettings/values.py:106 #, fuzzy msgid "Base Settings" msgstr "Configuraciones básicas" -#: deps/livesettings/values.py:214 +#: deps/livesettings/values.py:213 msgid "Default value: \"\"" msgstr "" -#: deps/livesettings/values.py:221 +#: deps/livesettings/values.py:220 msgid "Default value: " msgstr "" -#: deps/livesettings/values.py:224 +#: deps/livesettings/values.py:223 #, python-format msgid "Default value: %s" msgstr "" -#: deps/livesettings/values.py:589 +#: deps/livesettings/values.py:601 #, python-format msgid "Allowed image file types are %(types)s" msgstr "" @@ -1600,7 +2547,7 @@ msgstr "Localización" #: deps/livesettings/templates/livesettings/group_settings.html:11 #: deps/livesettings/templates/livesettings/site_settings.html:23 -#: skins/default/templates/authopenid/signin.html:142 +#: skins/default/templates/authopenid/signin.html:132 msgid "Change password" msgstr "Cambiar Contraseña" @@ -1663,72 +2610,69 @@ msgstr "" msgid "Uncollapse all" msgstr "" -#: deps/recaptcha_django/__init__.py:19 deps/recaptcha_django/__init__.py:80 -msgid "Unknown error." -msgstr "" - -#: deps/recaptcha_django/__init__.py:20 deps/recaptcha_django/__init__.py:21 -msgid "ReCAPTCHA is wrongly configured." -msgstr "" - -#: deps/recaptcha_django/__init__.py:22 -msgid "Bad reCAPTCHA challenge parameter." -msgstr "" - -#: deps/recaptcha_django/__init__.py:23 -msgid "The CAPTCHA solution was incorrect." -msgstr "" - -#: deps/recaptcha_django/__init__.py:24 -msgid "Bad reCAPTCHA verification parameters." +#: importers/stackexchange/management/commands/load_stackexchange.py:141 +msgid "Congratulations, you are now an Administrator" msgstr "" -#: deps/recaptcha_django/__init__.py:25 -msgid "Provided reCAPTCHA API keys are not valid for this domain." +#: 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 "" -#: deps/recaptcha_django/__init__.py:26 -msgid "ReCAPTCHA could not be reached." +#: management/commands/post_emailed_questions.py:35 +msgid "" +"

    To ask by email, please:

    \n" +"
      \n" +"
    • Format the subject line as: [Tag1; Tag2] Question title
    • \n" +"
    • Type details of your question into the email body
    • \n" +"
    \n" +"

    Note that tags may consist of more than one word, and tags\n" +"may be separated by a semicolon or a comma

    \n" msgstr "" -#: deps/recaptcha_django/__init__.py:73 -#, fuzzy -msgid "Invalid request" -msgstr "Validación incorrecta" - -#: importers/stackexchange/management/commands/load_stackexchange.py:125 -msgid "Congratulations, you are now an Administrator" +#: management/commands/post_emailed_questions.py:55 +#, python-format +msgid "" +"

    Sorry, there was an error posting your question please contact the " +"%(site)s administrator

    " msgstr "" -#: management/commands/send_email_alerts.py:105 +#: management/commands/post_emailed_questions.py:61 #, python-format -msgid "\" and \"%s\"" +msgid "" +"

    Sorry, in order to post questions on %(site)s by email, please register first

    " msgstr "" -#: management/commands/send_email_alerts.py:108 -#, fuzzy -msgid "\" and more" -msgstr "Para saber más" +#: management/commands/post_emailed_questions.py:69 +msgid "" +"

    Sorry, your question could not be posted due to insufficient privileges " +"of your user account

    " +msgstr "" -#: management/commands/send_email_alerts.py:113 +#: management/commands/send_email_alerts.py:411 #, 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:467 +#: management/commands/send_email_alerts.py:421 #, python-format msgid "%(name)s, this is an update message header for %(num)d question" msgid_plural "%(name)s, this is an update message header for %(num)d questions" msgstr[0] "" msgstr[1] "" -#: management/commands/send_email_alerts.py:484 +#: management/commands/send_email_alerts.py:438 msgid "new question" msgstr "nueva pregunta" -#: management/commands/send_email_alerts.py:501 +#: management/commands/send_email_alerts.py:455 #, fuzzy msgid "" "Please visit the askbot and see what's new! Could you spread the word about " @@ -1738,7 +2682,7 @@ msgstr "" "Por favor, visita el foro y mira lo que hay de nuevo. ¿Podría correr la voz " "sobre ello - conoce a alguien que sepa la respuesta a las preguntas?" -#: management/commands/send_email_alerts.py:513 +#: management/commands/send_email_alerts.py:465 #, fuzzy msgid "" "Your most frequent subscription setting is 'daily' on selected questions. If " @@ -1750,7 +2694,7 @@ msgstr "" "por favor no dude en reportar acerca de este problema al administrador del " "foro." -#: management/commands/send_email_alerts.py:519 +#: management/commands/send_email_alerts.py:471 #, fuzzy msgid "" "Your most frequent subscription setting is 'weekly' if you are receiving " @@ -1762,7 +2706,7 @@ msgstr "" "semana, por favor no dude en reportar acerca de este problema al " "administrador del foro." -#: management/commands/send_email_alerts.py:525 +#: 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. " @@ -1770,982 +2714,866 @@ msgstr "" "Existe la posibilidad de que usted puede estar recibiendo enlaces visto " "antes - debido a un tecnicismo que a la larga va a desaparecer." -#: management/commands/send_email_alerts.py:530 +#: management/commands/send_email_alerts.py:490 #, fuzzy, python-format msgid "" -"go to %(email_settings_link)s to change frequency of email updates or %" -"(admin_email)s administrator" +"go to %(email_settings_link)s to change frequency of email updates or " +"%(admin_email)s administrator" msgstr "" "ir a %(link)s para cambiar la frecuencia de notificaciones por email o " "contacte al administrador" -#: migrations/0005_install_badges.py:11 -msgid "Disciplined" +#: management/commands/send_unanswered_question_reminders.py:80 +#, python-format +msgid "%(question_count)d unanswered question about %(topics)s" +msgid_plural "%(question_count)d unanswered questions about %(topics)s" +msgstr[0] "" +msgstr[1] "" + +#: models/__init__.py:316 +msgid "" +"Sorry, you cannot accept or unaccept best answers because your account is " +"blocked" msgstr "" -#: migrations/0005_install_badges.py:11 -msgid "disciplined" +#: models/__init__.py:320 +msgid "" +"Sorry, you cannot accept or unaccept best answers because your account is " +"suspended" msgstr "" -#: migrations/0005_install_badges.py:11 -#, fuzzy -msgid "Deleted own post with score of 3 or higher" -msgstr "Eliminó su propio post con %s puntos o superior" +#: models/__init__.py:333 +#, fuzzy, python-format +msgid "" +">%(points)s points required to accept or unaccept your own answer to your " +"own question" +msgstr "Primer respuesta aceptada a un pregunta tuya" -#: migrations/0005_install_badges.py:12 -msgid "Peer Pressure" +#: models/__init__.py:347 +#, python-format +msgid "" +"Sorry, only original author of the question - %(username)s - can accept or " +"unaccept the best answer" msgstr "" -#: migrations/0005_install_badges.py:12 -msgid "peer-pressure" -msgstr "" +#: models/__init__.py:375 +msgid "cannot vote for own posts" +msgstr "no se puede votar por sus propias publicaciones" -#: migrations/0005_install_badges.py:12 -#, fuzzy -msgid "Deleted own post with score of -3 or lower" -msgstr "Elminió su propio post con %s puntos o inferior" +#: models/__init__.py:378 +msgid "Sorry your account appears to be blocked " +msgstr "" -#: migrations/0005_install_badges.py:13 -#, fuzzy -msgid "Nice answer" -msgstr "editar respuesta" +#: models/__init__.py:383 +msgid "Sorry your account appears to be suspended " +msgstr "" -#: migrations/0005_install_badges.py:13 -#, fuzzy -msgid "nice-answer" -msgstr "respuesta" +#: models/__init__.py:393 +#, python-format +msgid ">%(points)s points required to upvote" +msgstr ">%(points)s puntos requeridos para votar positivamente " -#: migrations/0005_install_badges.py:13 -#, fuzzy -msgid "Answer voted up 10 times" -msgstr "Respuesta votada %s veces" +#: models/__init__.py:399 +#, python-format +msgid ">%(points)s points required to downvote" +msgstr ">%(points)s puntos requeridos para votar negativamente" -#: migrations/0005_install_badges.py:14 +#: models/__init__.py:414 #, fuzzy -msgid "Nice Question" -msgstr "Preguntas" +msgid "Sorry, blocked users cannot upload files" +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." -#: migrations/0005_install_badges.py:14 +#: models/__init__.py:415 #, fuzzy -msgid "nice-question" -msgstr "nueva pregunta" +msgid "Sorry, suspended users cannot upload files" +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." -#: migrations/0005_install_badges.py:14 -#, fuzzy -msgid "Question voted up 10 times" -msgstr "Pregunta votada %s veces" +#: models/__init__.py:417 +#, python-format +msgid "" +"uploading images is limited to users with >%(min_rep)s reputation points" +msgstr "" -#: migrations/0005_install_badges.py:15 +#: models/__init__.py:436 models/__init__.py:503 models/__init__.py:918 #, fuzzy -msgid "Pundit" -msgstr "editar" +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." -#: migrations/0005_install_badges.py:15 +#: models/__init__.py:437 models/__init__.py:921 #, fuzzy -msgid "pundit" -msgstr "editar" - -#: migrations/0005_install_badges.py:15 -#, fuzzy -msgid "Left 10 comments with score of 10 or more" -msgstr "Elminió su propio post con %s puntos o inferior" - -#: migrations/0005_install_badges.py:16 -#, fuzzy -msgid "Popular Question" -msgstr "Formula tu pregunta" - -#: migrations/0005_install_badges.py:16 -#, fuzzy -msgid "popular-question" -msgstr "pregunta" +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." -#: migrations/0005_install_badges.py:16 -#, fuzzy -msgid "Asked a question with 1,000 views" -msgstr "Hizo una pregunta con %s visitas" +#: models/__init__.py:464 +#, python-format +msgid "" +"Sorry, comments (except the last one) are editable only within %(minutes)s " +"minute from posting" +msgid_plural "" +"Sorry, comments (except the last one) are editable only within %(minutes)s " +"minutes from posting" +msgstr[0] "" +msgstr[1] "" -#: migrations/0005_install_badges.py:17 -msgid "Citizen patrol" +#: models/__init__.py:476 +msgid "Sorry, but only post owners or moderators can edit comments" msgstr "" -#: migrations/0005_install_badges.py:17 -msgid "citizen-patrol" +#: models/__init__.py:489 +msgid "" +"Sorry, since your account is suspended you can comment only your own posts" msgstr "" -#: migrations/0005_install_badges.py:17 -msgid "First flagged post" -msgstr "Primer comentario reportado" - -#: migrations/0005_install_badges.py:18 -msgid "Cleanup" +#: models/__init__.py:493 +#, 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 "" -#: migrations/0005_install_badges.py:18 -msgid "cleanup" +#: models/__init__.py:521 +msgid "" +"This post has been deleted and can be seen only by post owners, site " +"administrators and moderators" msgstr "" -#: migrations/0005_install_badges.py:18 -msgid "First rollback" -msgstr "Reversión Primera" - -#: migrations/0005_install_badges.py:19 -msgid "Critic" +#: models/__init__.py:538 +msgid "" +"Sorry, only moderators, site administrators and post owners can edit deleted " +"posts" msgstr "" -#: migrations/0005_install_badges.py:19 -msgid "critic" +#: models/__init__.py:553 +msgid "Sorry, since your account is blocked you cannot edit posts" msgstr "" -#: migrations/0005_install_badges.py:19 -msgid "First down vote" -msgstr "Primer voto negativo" - -#: migrations/0005_install_badges.py:20 -#, fuzzy -msgid "Editor" -msgstr "editar" - -#: migrations/0005_install_badges.py:20 -#, fuzzy -msgid "editor" -msgstr "editar" - -#: migrations/0005_install_badges.py:20 -msgid "First edit" -msgstr "Primer edicion" - -#: migrations/0005_install_badges.py:21 -msgid "Organizer" +#: models/__init__.py:557 +msgid "Sorry, since your account is suspended you can edit only your own posts" msgstr "" -#: migrations/0005_install_badges.py:21 -#, fuzzy -msgid "organizer" -msgstr "Tu respuesta" - -#: migrations/0005_install_badges.py:21 -msgid "First retag" -msgstr "Primer re-etiquetado" - -#: migrations/0005_install_badges.py:22 -msgid "Scholar" +#: models/__init__.py:562 +#, python-format +msgid "" +"Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required" msgstr "" -#: migrations/0005_install_badges.py:22 -msgid "scholar" +#: models/__init__.py:569 +#, python-format +msgid "" +"Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is " +"required" msgstr "" -#: migrations/0005_install_badges.py:22 -msgid "First accepted answer on your own question" -msgstr "Primer respuesta aceptada a un pregunta tuya" +#: models/__init__.py:632 +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] "" +msgstr[1] "" -#: migrations/0005_install_badges.py:23 -msgid "Student" +#: models/__init__.py:647 +msgid "Sorry, since your account is blocked you cannot delete posts" msgstr "" -#: migrations/0005_install_badges.py:23 -msgid "student" +#: models/__init__.py:651 +msgid "" +"Sorry, since your account is suspended you can delete only your own posts" msgstr "" -#: migrations/0005_install_badges.py:23 -msgid "Asked first question with at least one up vote" -msgstr "Primera pregunta con al menos un voto" - -#: migrations/0005_install_badges.py:24 -#, fuzzy -msgid "Supporter" -msgstr "voto positivo" - -#: migrations/0005_install_badges.py:24 -#, fuzzy -msgid "supporter" -msgstr "voto positivo" - -#: migrations/0005_install_badges.py:24 -msgid "First up vote" -msgstr "Primer voto positivo" - -#: migrations/0005_install_badges.py:25 -#, fuzzy -msgid "Teacher" -msgstr "buscar" - -#: migrations/0005_install_badges.py:25 -#, fuzzy -msgid "teacher" -msgstr "buscar" +#: models/__init__.py:655 +#, python-format +msgid "" +"Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s " +"is required" +msgstr "" -#: migrations/0005_install_badges.py:25 -msgid "Answered first question with at least one up vote" -msgstr "La primera pregunta respondió con al menos un voto" +#: models/__init__.py:675 +msgid "Sorry, since your account is blocked you cannot close questions" +msgstr "" -#: migrations/0005_install_badges.py:26 -msgid "Autobiographer" +#: models/__init__.py:679 +msgid "Sorry, since your account is suspended you cannot close questions" msgstr "" -#: migrations/0005_install_badges.py:26 -msgid "autobiographer" +#: models/__init__.py:683 +#, python-format +msgid "" +"Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is " +"required" msgstr "" -#: migrations/0005_install_badges.py:26 -msgid "Completed all user profile fields" -msgstr "Completar todos los campos del perfil de usuario" +#: models/__init__.py:692 +#, python-format +msgid "" +"Sorry, to close own question a minimum reputation of %(min_rep)s is required" +msgstr "" -#: migrations/0005_install_badges.py:27 -msgid "Self-Learner" +#: models/__init__.py:716 +#, python-format +msgid "" +"Sorry, only administrators, moderators or post owners with reputation > " +"%(min_rep)s can reopen questions." msgstr "" -#: migrations/0005_install_badges.py:27 -msgid "self-learner" +#: models/__init__.py:722 +#, python-format +msgid "" +"Sorry, to reopen own question a minimum reputation of %(min_rep)s is required" msgstr "" -#: migrations/0005_install_badges.py:27 -#, fuzzy -msgid "Answered your own question with at least 3 up votes" -msgstr "Respondido a su propia pregunta con un mínimo de hasta %s votos" +#: models/__init__.py:742 +msgid "cannot flag message as offensive twice" +msgstr "" -#: migrations/0005_install_badges.py:28 +#: models/__init__.py:747 #, fuzzy -msgid "Great Answer" -msgstr "respuesta" +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." -#: migrations/0005_install_badges.py:28 +#: models/__init__.py:749 #, fuzzy -msgid "great-answer" -msgstr "respuesta" +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." -#: migrations/0005_install_badges.py:28 -#, fuzzy -msgid "Answer voted up 100 times" -msgstr "Respuesta votada %s veces" +#: models/__init__.py:751 +#, python-format +msgid "need > %(min_rep)s points to flag spam" +msgstr "" -#: migrations/0005_install_badges.py:29 -#, fuzzy -msgid "Great Question" -msgstr "re-etiquetar preguntas" +#: models/__init__.py:770 +#, python-format +msgid "%(max_flags_per_day)s exceeded" +msgstr "" -#: migrations/0005_install_badges.py:29 -#, fuzzy -msgid "great-question" -msgstr "re-etiquetar preguntas" +#: models/__init__.py:785 +msgid "" +"Sorry, only question owners, site administrators and moderators can retag " +"deleted questions" +msgstr "" -#: migrations/0005_install_badges.py:29 -#, fuzzy -msgid "Question voted up 100 times" -msgstr "Pregunta votada %s veces" +#: models/__init__.py:792 +msgid "Sorry, since your account is blocked you cannot retag questions" +msgstr "" -#: migrations/0005_install_badges.py:30 -#, fuzzy -msgid "Stellar Question" -msgstr "Aún tiene preguntas?" +#: models/__init__.py:796 +msgid "" +"Sorry, since your account is suspended you can retag only your own questions" +msgstr "" -#: migrations/0005_install_badges.py:30 -#, fuzzy -msgid "stellar-question" -msgstr "ver todas las preguntas" +#: models/__init__.py:800 +#, python-format +msgid "" +"Sorry, to retag questions a minimum reputation of %(min_rep)s is required" +msgstr "" -#: migrations/0005_install_badges.py:30 -#, fuzzy -msgid "Question favorited by 100 users" -msgstr "Pregunta marcada como favorita por %s usuarios" +#: models/__init__.py:819 +msgid "Sorry, since your account is blocked you cannot delete comment" +msgstr "" -#: migrations/0005_install_badges.py:31 -#, fuzzy -msgid "Famous question" -msgstr "Cerrar pregunta" +#: models/__init__.py:823 +msgid "" +"Sorry, since your account is suspended you can delete only your own comments" +msgstr "" -#: migrations/0005_install_badges.py:31 -#, fuzzy -msgid "famous-question" -msgstr "pregunta" +#: models/__init__.py:827 +#, python-format +msgid "Sorry, to delete comments reputation of %(min_rep)s is required" +msgstr "" -#: migrations/0005_install_badges.py:31 -#, fuzzy -msgid "Asked a question with 10,000 views" -msgstr "Hizo una pregunta con %s visitas" +#: models/__init__.py:850 +msgid "cannot revoke old vote" +msgstr "no puede revocar un voto viejo" -#: migrations/0005_install_badges.py:32 -msgid "Alpha" +#: models/__init__.py:1325 utils/functions.py:70 +#, python-format +msgid "on %(date)s" msgstr "" -#: migrations/0005_install_badges.py:32 -msgid "alpha" +#: models/__init__.py:1327 +msgid "in two days" msgstr "" -#: migrations/0005_install_badges.py:32 -msgid "Actively participated in the private alpha" +#: models/__init__.py:1329 +msgid "tomorrow" msgstr "" -#: migrations/0005_install_badges.py:33 -#, fuzzy -msgid "Good Answer" -msgstr "antiguar respuestas" - -#: migrations/0005_install_badges.py:33 -#, fuzzy -msgid "good-answer" -msgstr "respuesta" - -#: migrations/0005_install_badges.py:33 -#, fuzzy -msgid "Answer voted up 25 times" -msgstr "Respuesta votada %s veces" - -#: migrations/0005_install_badges.py:34 -#, fuzzy -msgid "Good Question" -msgstr "Preguntas" +#: models/__init__.py:1331 +#, python-format +msgid "in %(hr)d hour" +msgid_plural "in %(hr)d hours" +msgstr[0] "" +msgstr[1] "" -#: migrations/0005_install_badges.py:34 -#, fuzzy -msgid "good-question" -msgstr "pregunta" +#: models/__init__.py:1333 +#, python-format +msgid "in %(min)d min" +msgid_plural "in %(min)d mins" +msgstr[0] "" +msgstr[1] "" -#: migrations/0005_install_badges.py:34 -#, fuzzy -msgid "Question voted up 25 times" -msgstr "Pregunta votada %s veces" +#: models/__init__.py:1334 +#, python-format +msgid "%(days)d day" +msgid_plural "%(days)d days" +msgstr[0] "" +msgstr[1] "" -#: migrations/0005_install_badges.py:35 -#, fuzzy -msgid "Favorite Question" -msgstr "preguntas favoritas" +#: models/__init__.py:1336 +#, python-format +msgid "" +"New users must wait %(days)s before answering their own question. You can " +"post an answer %(left)s" +msgstr "" -#: migrations/0005_install_badges.py:35 -#, fuzzy -msgid "favorite-question" -msgstr "preguntas favoritas" +#: models/__init__.py:1501 skins/default/templates/feedback_email.txt:9 +msgid "Anonymous" +msgstr "" -#: migrations/0005_install_badges.py:35 +#: models/__init__.py:1597 views/users.py:365 #, fuzzy -msgid "Question favorited by 25 users" -msgstr "Pregunta marcada como favorita por %s usuarios" - -#: migrations/0005_install_badges.py:36 -msgid "Civic duty" +msgid "Site Adminstrator" msgstr "" +"Sinceramente,
    \n" +" Administrador del Foro" -#: migrations/0005_install_badges.py:36 -msgid "civic-duty" +#: models/__init__.py:1599 views/users.py:367 +msgid "Forum Moderator" msgstr "" -#: migrations/0005_install_badges.py:36 +#: models/__init__.py:1601 views/users.py:369 #, fuzzy -msgid "Voted 300 times" -msgstr "Votado %s veces" +msgid "Suspended User" +msgstr "Enviar enlace" -#: migrations/0005_install_badges.py:37 -msgid "Strunk & White" -msgstr "Strunk & White" +#: models/__init__.py:1603 views/users.py:371 +msgid "Blocked User" +msgstr "" -#: migrations/0005_install_badges.py:37 +#: models/__init__.py:1605 views/users.py:373 #, fuzzy -msgid "strunk-and-white" -msgstr "Strunk & White" +msgid "Registered User" +msgstr "Usuario registrado" + +#: models/__init__.py:1607 +msgid "Watched User" +msgstr "" -#: migrations/0005_install_badges.py:37 +#: models/__init__.py:1609 #, fuzzy -msgid "Edited 100 entries" -msgstr "Ha editado %s entradas" +msgid "Approved User" +msgstr "proveedores/" -#: migrations/0005_install_badges.py:38 -msgid "Generalist" +#: models/__init__.py:1718 +#, python-format +msgid "%(username)s karma is %(reputation)s" msgstr "" -#: migrations/0005_install_badges.py:38 -msgid "generalist" -msgstr "" +#: models/__init__.py:1728 +#, python-format +msgid "one gold badge" +msgid_plural "%(count)d gold badges" +msgstr[0] "" +msgstr[1] "" -#: migrations/0005_install_badges.py:38 -msgid "Active in many different tags" -msgstr "" +#: models/__init__.py:1735 +#, fuzzy, python-format +msgid "one silver badge" +msgid_plural "%(count)d silver badges" +msgstr[0] "descripción de la medalla de plata" +msgstr[1] "descripción de la medalla de plata" -#: migrations/0005_install_badges.py:39 -msgid "Expert" +#: models/__init__.py:1742 +#, fuzzy, python-format +msgid "one bronze badge" +msgid_plural "%(count)d bronze badges" +msgstr[0] "descripción de la medalla de bronce" +msgstr[1] "descripción de la medalla de bronce" + +#: models/__init__.py:1753 +#, python-format +msgid "%(item1)s and %(item2)s" msgstr "" -#: migrations/0005_install_badges.py:39 -#, fuzzy -msgid "expert" -msgstr "texto" +#: models/__init__.py:1757 +#, python-format +msgid "%(user)s has %(badges)s" +msgstr "" -#: migrations/0005_install_badges.py:39 -msgid "Very active in one tag" +#: models/__init__.py:2164 models/__init__.py:2170 models/__init__.py:2175 +#: models/__init__.py:2180 +#, python-format +msgid "Re: \"%(title)s\"" msgstr "" -#: migrations/0005_install_badges.py:40 -msgid "Yearling" +#: models/__init__.py:2185 models/__init__.py:2190 +#, fuzzy, python-format +msgid "Question: \"%(title)s\"" +msgstr "Etiquetas de la pregunta" + +#: models/__init__.py:2371 +#, python-format +msgid "" +"Congratulations, you have received a badge '%(badge_name)s'. Check out your profile." msgstr "" -#: migrations/0005_install_badges.py:40 -msgid "yearling" +#: models/__init__.py:2550 views/commands.py:396 +msgid "Your tag subscription was saved, thanks!" msgstr "" -#: migrations/0005_install_badges.py:40 -msgid "Active member for a year" +#: models/answer.py:105 +msgid "" +"Sorry, the answer you are looking for is no longer available, because the " +"parent question has been removed" msgstr "" -#: migrations/0005_install_badges.py:41 +#: models/answer.py:112 #, fuzzy -msgid "Notable Question" -msgstr "todas las preguntas" +msgid "Sorry, this answer has been removed and is no longer accessible" +msgstr "esta pregunta ha sido seleccionada como la favorita" -#: migrations/0005_install_badges.py:41 -#, fuzzy -msgid "notable-question" -msgstr "nueva pregunta" +#: models/badges.py:129 +#, fuzzy, python-format +msgid "Deleted own post with %(votes)s or more upvotes" +msgstr "Elminió su propio post con %s puntos o inferior" -#: migrations/0005_install_badges.py:41 -#, fuzzy -msgid "Asked a question with 2,500 views" -msgstr "Hizo una pregunta con %s visitas" +#: models/badges.py:133 +msgid "Disciplined" +msgstr "" -#: migrations/0005_install_badges.py:42 -msgid "Enlightened" +#: models/badges.py:151 +#, fuzzy, python-format +msgid "Deleted own post with %(votes)s or more downvotes" +msgstr "Elminió su propio post con %s puntos o inferior" + +#: models/badges.py:155 +msgid "Peer Pressure" msgstr "" -#: migrations/0005_install_badges.py:42 -msgid "enlightened" +#: models/badges.py:174 +#, python-format +msgid "Received at least %(votes)s upvote for an answer for the first time" msgstr "" -#: migrations/0005_install_badges.py:42 +#: models/badges.py:178 #, fuzzy -msgid "First answer was accepted with at least 10 up votes" -msgstr "Primera respuesta que fue aceptada con un mínimo de %s votos" +msgid "Teacher" +msgstr "buscar" -#: migrations/0005_install_badges.py:43 -msgid "Beta" -msgstr "" +#: models/badges.py:218 +#, fuzzy +msgid "Supporter" +msgstr "voto positivo" -#: migrations/0005_install_badges.py:43 -msgid "beta" -msgstr "" +#: models/badges.py:219 +#, fuzzy +msgid "First upvote" +msgstr "Primer voto positivo" -#: migrations/0005_install_badges.py:43 -msgid "Actively participated in the private beta" +#: models/badges.py:227 +msgid "Critic" msgstr "" -#: migrations/0005_install_badges.py:44 -msgid "Guru" +#: models/badges.py:228 +#, fuzzy +msgid "First downvote" +msgstr "Primer voto negativo" + +#: models/badges.py:237 +msgid "Civic Duty" msgstr "" -#: migrations/0005_install_badges.py:44 -msgid "guru" +#: models/badges.py:238 +#, fuzzy, python-format +msgid "Voted %(num)s times" +msgstr "Votado %s veces" + +#: models/badges.py:252 +#, fuzzy, python-format +msgid "Answered own question with at least %(num)s up votes" +msgstr "Respondido a su propia pregunta con un mínimo de hasta %s votos" + +#: models/badges.py:256 +msgid "Self-Learner" msgstr "" -#: migrations/0005_install_badges.py:44 +#: models/badges.py:304 #, fuzzy -msgid "Accepted answer and voted up 40 times" -msgstr "Respuesta acetada y votada %s veces" +msgid "Nice Answer" +msgstr "editar respuesta" -#: migrations/0005_install_badges.py:45 -msgid "Necromancer" -msgstr "" +#: models/badges.py:309 models/badges.py:321 models/badges.py:333 +#, fuzzy, python-format +msgid "Answer voted up %(num)s times" +msgstr "Respuesta votada %s veces" -#: migrations/0005_install_badges.py:45 -msgid "necromancer" -msgstr "" +#: models/badges.py:316 +#, fuzzy +msgid "Good Answer" +msgstr "antiguar respuestas" -#: migrations/0005_install_badges.py:45 +#: models/badges.py:328 #, fuzzy -msgid "Answered a question more than 60 days later with at least 5 votes" -msgstr "" -"Respondio una pregunta más de `%(dif_days)s` días con al menos `%(up_votes)" -"s` votos" +msgid "Great Answer" +msgstr "respuesta" -#: migrations/0005_install_badges.py:46 -msgid "Taxonomist" -msgstr "" +#: models/badges.py:340 +#, fuzzy +msgid "Nice Question" +msgstr "Preguntas" + +#: models/badges.py:345 models/badges.py:357 models/badges.py:369 +#, fuzzy, python-format +msgid "Question voted up %(num)s times" +msgstr "Pregunta votada %s veces" -#: migrations/0005_install_badges.py:46 -msgid "taxonomist" +#: models/badges.py:352 +#, fuzzy +msgid "Good Question" +msgstr "Preguntas" + +#: models/badges.py:364 +#, fuzzy +msgid "Great Question" +msgstr "re-etiquetar preguntas" + +#: models/badges.py:376 +msgid "Student" msgstr "" -#: migrations/0005_install_badges.py:46 +#: models/badges.py:381 +msgid "Asked first question with at least one up vote" +msgstr "Primera pregunta con al menos un voto" + +#: models/badges.py:414 #, fuzzy -msgid "Created a tag used by 50 questions" -msgstr "Creo una etiqueta usada por %s preguntas" +msgid "Popular Question" +msgstr "Formula tu pregunta" -#: models/__init__.py:169 -msgid "" -"Sorry, you cannot accept or unaccept best answers because your account is " -"blocked" +#: models/badges.py:418 models/badges.py:429 models/badges.py:441 +#, fuzzy, python-format +msgid "Asked a question with %(views)s views" +msgstr "Hizo una pregunta con %s visitas" + +#: models/badges.py:425 +#, fuzzy +msgid "Notable Question" +msgstr "todas las preguntas" + +#: models/badges.py:436 +#, fuzzy +msgid "Famous Question" +msgstr "Cerrar pregunta" + +#: models/badges.py:450 +#, fuzzy +msgid "Asked a question and accepted an answer" +msgstr "Preguntas que he respondido" + +#: models/badges.py:453 +msgid "Scholar" msgstr "" -#: models/__init__.py:174 -msgid "" -"Sorry, you cannot accept or unaccept best answers because your account is " -"suspended" +#: models/badges.py:495 +msgid "Enlightened" msgstr "" -#: models/__init__.py:180 -#, fuzzy -msgid "" -"Sorry, you cannot accept or unaccept your own answer to your own question" -msgstr "Primer respuesta aceptada a un pregunta tuya" +#: models/badges.py:499 +#, fuzzy, python-format +msgid "First answer was accepted with %(num)s or more votes" +msgstr "Primera respuesta que fue aceptada con un mínimo de %s votos" -#: models/__init__.py:187 -#, python-format +#: models/badges.py:507 +msgid "Guru" +msgstr "" + +#: models/badges.py:510 +#, fuzzy, python-format +msgid "Answer accepted with %(num)s or more votes" +msgstr "Primera respuesta que fue aceptada con un mínimo de %s votos" + +#: models/badges.py:518 +#, fuzzy, python-format msgid "" -"Sorry, only original author of the question - %(username)s - can accept the " -"best answer" +"Answered a question more than %(days)s days later with at least %(votes)s " +"votes" msgstr "" +"Respondio una pregunta más de `%(dif_days)s` días con al menos `" +"%(up_votes)s` votos" -#: models/__init__.py:210 -msgid "cannot vote for own posts" -msgstr "no se puede votar por sus propias publicaciones" +#: models/badges.py:525 +msgid "Necromancer" +msgstr "" -#: models/__init__.py:213 -msgid "Sorry your account appears to be blocked " +#: models/badges.py:548 +msgid "Citizen Patrol" msgstr "" -#: models/__init__.py:218 -msgid "Sorry your account appears to be suspended " +#: models/badges.py:551 +msgid "First flagged post" +msgstr "Primer comentario reportado" + +#: models/badges.py:563 +msgid "Cleanup" msgstr "" -#: models/__init__.py:228 -#, python-format -msgid ">%(points)s points required to upvote" -msgstr ">%(points)s puntos requeridos para votar positivamente " +#: models/badges.py:566 +msgid "First rollback" +msgstr "Reversión Primera" -#: models/__init__.py:234 -#, python-format -msgid ">%(points)s points required to downvote" -msgstr ">%(points)s puntos requeridos para votar negativamente" +#: models/badges.py:577 +#, fuzzy +msgid "Pundit" +msgstr "editar" -#: models/__init__.py:249 +#: models/badges.py:580 #, fuzzy -msgid "Sorry, blocked users cannot upload files" -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 "Left 10 comments with score of 10 or more" +msgstr "Elminió su propio post con %s puntos o inferior" -#: models/__init__.py:250 +#: models/badges.py:612 #, fuzzy -msgid "Sorry, suspended users cannot upload files" +msgid "Editor" +msgstr "editar" + +#: models/badges.py:615 +msgid "First edit" +msgstr "Primer edicion" + +#: models/badges.py:623 +msgid "Associate Editor" 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:252 -#, python-format -msgid "" -"uploading images is limited to users with >%(min_rep)s reputation points" +#: models/badges.py:627 +#, fuzzy, python-format +msgid "Edited %(num)s entries" +msgstr "Ha editado %s entradas" + +#: models/badges.py:634 +msgid "Organizer" msgstr "" -#: models/__init__.py:271 models/__init__.py:331 models/__init__.py:1950 -#, fuzzy -msgid "blocked users cannot post" +#: models/badges.py:637 +msgid "First retag" +msgstr "Primer re-etiquetado" + +#: models/badges.py:644 +msgid "Autobiographer" 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:272 models/__init__.py:1953 +#: models/badges.py:647 +msgid "Completed all user profile fields" +msgstr "Completar todos los campos del perfil de usuario" + +#: models/badges.py:663 +#, fuzzy, python-format +msgid "Question favorited by %(num)s users" +msgstr "Pregunta marcada como favorita por %s usuarios" + +#: models/badges.py:689 #, 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 "Stellar Question" +msgstr "Aún tiene preguntas?" -#: models/__init__.py:297 -msgid "" -"Sorry, comments (except the last one) are editable only within 10 minutes " -"from posting" -msgstr "" +#: models/badges.py:698 +#, fuzzy +msgid "Favorite Question" +msgstr "preguntas favoritas" -#: models/__init__.py:303 -msgid "Sorry, but only post owners or moderators can edit comments" +#: models/badges.py:710 +msgid "Enthusiast" msgstr "" -#: models/__init__.py:317 -msgid "" -"Sorry, since your account is suspended you can comment only your own posts" +#: models/badges.py:714 +#, python-format +msgid "Visited site every day for %(num)s days in a row" msgstr "" -#: models/__init__.py:321 +#: models/badges.py:732 +#, fuzzy +msgid "Commentator" +msgstr "Localización" + +#: models/badges.py:736 #, 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" +msgid "Posted %(num_comments)s comments" msgstr "" -#: models/__init__.py:349 -msgid "" -"This post has been deleted and can be seen only by post ownwers, site " -"administrators and moderators" +#: models/badges.py:752 +msgid "Taxonomist" msgstr "" -#: models/__init__.py:366 -msgid "" -"Sorry, only moderators, site administrators and post owners can edit deleted " -"posts" -msgstr "" +#: models/badges.py:756 +#, fuzzy, python-format +msgid "Created a tag used by %(num)s questions" +msgstr "Creo una etiqueta usada por %s preguntas" -#: models/__init__.py:381 -msgid "Sorry, since your account is blocked you cannot edit posts" +#: models/badges.py:776 +msgid "Expert" msgstr "" -#: models/__init__.py:385 -msgid "Sorry, since your account is suspended you can edit only your own posts" +#: models/badges.py:779 +msgid "Very active in one tag" msgstr "" -#: models/__init__.py:390 -#, python-format +#: models/meta.py:112 msgid "" -"Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required" +"Sorry, the comment you are looking for is no longer accessible, because the " +"parent question has been removed" msgstr "" -#: models/__init__.py:397 -#, python-format +#: models/meta.py:119 msgid "" -"Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is " -"required" +"Sorry, the comment you are looking for is no longer accessible, because the " +"parent answer has been removed" msgstr "" -#: models/__init__.py:460 -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] "" -msgstr[1] "" +#: models/question.py:72 +#, python-format +msgid "\" and \"%s\"" +msgstr "" -#: models/__init__.py:475 -msgid "Sorry, since your account is blocked you cannot delete posts" -msgstr "" - -#: models/__init__.py:479 -msgid "" -"Sorry, since your account is suspended you can delete only your own posts" -msgstr "" - -#: models/__init__.py:483 -#, python-format -msgid "" -"Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s " -"is required" -msgstr "" - -#: models/__init__.py:503 -msgid "Sorry, since your account is blocked you cannot close questions" -msgstr "" - -#: models/__init__.py:507 -msgid "Sorry, since your account is suspended you cannot close questions" -msgstr "" - -#: models/__init__.py:511 -#, python-format -msgid "" -"Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is " -"required" -msgstr "" - -#: models/__init__.py:520 -#, python-format -msgid "" -"Sorry, to close own question a minimum reputation of %(min_rep)s is required" -msgstr "" - -#: models/__init__.py:544 -#, python-format -msgid "" -"Sorry, only administrators, moderators or post owners with reputation > %" -"(min_rep)s can reopen questions." -msgstr "" - -#: models/__init__.py:550 -#, python-format -msgid "" -"Sorry, to reopen own question a minimum reputation of %(min_rep)s is required" -msgstr "" - -#: models/__init__.py:570 -msgid "cannot flag message as offensive twice" -msgstr "" - -#: models/__init__.py:575 -#, 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." - -#: models/__init__.py:577 -#, 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." - -#: models/__init__.py:579 -#, python-format -msgid "need > %(min_rep)s points to flag spam" -msgstr "" - -#: models/__init__.py:598 -#, python-format -msgid "%(max_flags_per_day)s exceeded" -msgstr "" - -#: models/__init__.py:613 -msgid "" -"Sorry, only question owners, site administrators and moderators can retag " -"deleted questions" -msgstr "" - -#: models/__init__.py:620 -msgid "Sorry, since your account is blocked you cannot retag questions" -msgstr "" - -#: models/__init__.py:624 -msgid "" -"Sorry, since your account is suspended you can retag only your own questions" -msgstr "" - -#: models/__init__.py:628 -#, python-format -msgid "" -"Sorry, to retag questions a minimum reputation of %(min_rep)s is required" -msgstr "" - -#: models/__init__.py:647 -msgid "Sorry, since your account is blocked you cannot delete comment" -msgstr "" - -#: models/__init__.py:651 -msgid "" -"Sorry, since your account is suspended you can delete only your own comments" -msgstr "" - -#: models/__init__.py:655 -#, python-format -msgid "Sorry, to delete comments reputation of %(min_rep)s is required" -msgstr "" - -#: models/__init__.py:678 -msgid "cannot revoke old vote" -msgstr "no puede revocar un voto viejo" - -#: models/__init__.py:1166 views/users.py:388 -#, fuzzy -msgid "Site Adminstrator" -msgstr "" -"Sinceramente,
    \n" -" Administrador del Foro" - -#: models/__init__.py:1168 views/users.py:390 -msgid "Forum Moderator" -msgstr "" - -#: models/__init__.py:1170 views/users.py:392 -#, fuzzy -msgid "Suspended User" -msgstr "Enviar enlace" - -#: models/__init__.py:1172 views/users.py:394 -msgid "Blocked User" -msgstr "" - -#: models/__init__.py:1174 views/users.py:396 +#: models/question.py:75 #, fuzzy -msgid "Registered User" -msgstr "Usuario registrado" - -#: models/__init__.py:1176 -msgid "Watched User" -msgstr "" +msgid "\" and more" +msgstr "Para saber más" -#: models/__init__.py:1178 +#: models/question.py:452 #, fuzzy -msgid "Approved User" -msgstr "proveedores/" - -#: models/__init__.py:1234 -#, python-format -msgid "%(username)s karma is %(reputation)s" -msgstr "" - -#: models/__init__.py:1244 -#, python-format -msgid "one gold badge" -msgid_plural "%(count)d gold badges" -msgstr[0] "" -msgstr[1] "" - -#: models/__init__.py:1251 -#, fuzzy, python-format -msgid "one silver badge" -msgid_plural "%(count)d silver badges" -msgstr[0] "descripción de la medalla de plata" -msgstr[1] "descripción de la medalla de plata" - -#: models/__init__.py:1258 -#, fuzzy, python-format -msgid "one bronze badge" -msgid_plural "%(count)d bronze badges" -msgstr[0] "descripción de la medalla de bronce" -msgstr[1] "descripción de la medalla de bronce" - -#: models/__init__.py:1269 -#, python-format -msgid "%(item1)s and %(item2)s" -msgstr "" - -#: models/__init__.py:1273 -#, python-format -msgid "%(user)s has %(badges)s" -msgstr "" - -#: models/__init__.py:1566 models/__init__.py:1572 models/__init__.py:1577 -#: models/__init__.py:1582 -#, python-format -msgid "Re: \"%(title)s\"" -msgstr "" - -#: models/__init__.py:1587 models/__init__.py:1592 -#, fuzzy, python-format -msgid "Question: \"%(title)s\"" -msgstr "Etiquetas de la pregunta" - -#: models/__init__.py:1773 -#, python-format -msgid "" -"Congratulations, you have received a badge '%(badge_name)s'. Check out your profile." -msgstr "" +msgid "Sorry, this question has been deleted and is no longer accessible" +msgstr "esta pregunta ha sido seleccionada como la favorita" -#: models/question.py:687 +#: models/question.py:908 #, fuzzy, python-format msgid "%(author)s modified the question" msgstr "%(author)s modificaron la pregunta" -#: models/question.py:691 +#: models/question.py:912 #, fuzzy, python-format msgid "%(people)s posted %(new_answer_count)s new answers" msgstr "%(people)s publicaron %(new_answer_count)s nuevas respuestas" -#: models/question.py:696 +#: models/question.py:917 #, fuzzy, python-format msgid "%(people)s commented the question" msgstr "%(people)s comentaron la pregunta" -#: models/question.py:701 +#: models/question.py:922 #, fuzzy, python-format msgid "%(people)s commented answers" msgstr "%(people)s comentaron respuestas" -#: models/question.py:703 +#: models/question.py:924 #, python-format msgid "%(people)s commented an answer" msgstr "%(people)s comentaron una respuesta" -#: models/repute.py:16 skins/default/templates/badges.html:43 -msgid "gold" -msgstr "oro" - -#: models/repute.py:17 skins/default/templates/badges.html:52 -msgid "silver" -msgstr "plata" - -#: models/repute.py:18 skins/default/templates/badges.html:59 -msgid "bronze" -msgstr "bronce" - -#: models/repute.py:150 +#: models/repute.py:142 #, python-format msgid "Changed by moderator. Reason: %(reason)s" msgstr "" -#: models/repute.py:161 +#: models/repute.py:153 #, python-format msgid "" -"%(points)s points were added for %(username)s's contribution to question %" -"(question_title)s" +"%(points)s points were added for %(username)s's contribution to question " +"%(question_title)s" msgstr "" -#: models/repute.py:166 +#: models/repute.py:158 #, python-format msgid "" "%(points)s points were subtracted for %(username)s's contribution to " "question %(question_title)s" msgstr "" -#: models/tag.py:91 +#: models/tag.py:151 msgid "interesting" msgstr "interesante" -#: models/tag.py:91 +#: models/tag.py:151 msgid "ignored" msgstr "ignorado" -#: models/user.py:233 +#: models/user.py:264 msgid "Entire forum" msgstr "Foro entero" -#: models/user.py:234 +#: models/user.py:265 msgid "Questions that I asked" msgstr "Preguntas que he formulado" -#: models/user.py:235 +#: models/user.py:266 msgid "Questions that I answered" msgstr "Preguntas que he respondido" -#: models/user.py:236 +#: models/user.py:267 msgid "Individually selected questions" msgstr "Selección individual de preguntas" -#: models/user.py:237 +#: models/user.py:268 msgid "Mentions and comment responses" msgstr "" -#: models/user.py:240 +#: models/user.py:271 msgid "Instantly" msgstr "" -#: models/user.py:241 +#: models/user.py:272 msgid "Daily" msgstr "Diario" -#: models/user.py:242 +#: models/user.py:273 msgid "Weekly" msgstr "Semanal" -#: models/user.py:243 +#: models/user.py:274 msgid "No email" msgstr "No enviar email" #: skins/default/templates/404.jinja.html:3 -#: skins/default/templates/404.jinja.html:11 +#: skins/default/templates/404.jinja.html:10 msgid "Page not found" msgstr "" -#: skins/default/templates/404.jinja.html:15 +#: skins/default/templates/404.jinja.html:13 msgid "Sorry, could not find the page you requested." msgstr "Lo sentimos, no hemos encontrado la pagina que haz solicitado" -#: skins/default/templates/404.jinja.html:17 +#: skins/default/templates/404.jinja.html:15 msgid "This might have happened for the following reasons:" msgstr "Estas son las posibles razones:" -#: skins/default/templates/404.jinja.html:19 +#: skins/default/templates/404.jinja.html:17 msgid "this question or answer has been deleted;" msgstr "la pregunta o respuesta ha sido eliminada;" -#: skins/default/templates/404.jinja.html:20 +#: skins/default/templates/404.jinja.html:18 msgid "url has error - please check it;" msgstr "la url es errónea - por favor verificala;" -#: skins/default/templates/404.jinja.html:21 +#: skins/default/templates/404.jinja.html:19 msgid "" "the page you tried to visit is protected or you don't have sufficient " "points, see" @@ -2753,61 +3581,62 @@ 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:21 -#: skins/default/templates/footer.html:6 -#: skins/default/templates/header.html:57 -#: skins/default/templates/question_edit_tips.html:16 +#: skins/default/templates/404.jinja.html:19 +#: skins/default/templates/blocks/footer.html:5 +#: skins/default/templates/blocks/header_meta_links.html:13 +#: skins/default/templates/blocks/question_edit_tips.html:15 msgid "faq" msgstr "faq" -#: skins/default/templates/404.jinja.html:22 +#: skins/default/templates/404.jinja.html:20 msgid "if you believe this error 404 should not have occured, please" msgstr "Si usted cree que este error 404 no debería haber ocurrido, por favor" -#: skins/default/templates/404.jinja.html:23 +#: skins/default/templates/404.jinja.html:21 msgid "report this problem" msgstr "reporte este problema" -#: skins/default/templates/404.jinja.html:32 -#: skins/default/templates/500.jinja.html:13 +#: skins/default/templates/404.jinja.html:30 +#: skins/default/templates/500.jinja.html:11 msgid "back to previous page" msgstr "regrese a la pagina anterior" -#: skins/default/templates/404.jinja.html:33 -#: skins/default/templates/questions.html:13 +#: skins/default/templates/404.jinja.html:31 +#: skins/default/templates/main_page/tab_bar.html:9 msgid "see all questions" msgstr "ver todas las preguntas" -#: skins/default/templates/404.jinja.html:34 +#: skins/default/templates/404.jinja.html:32 msgid "see all tags" msgstr "ver todas las etiquetas" #: skins/default/templates/500.jinja.html:3 -#: skins/default/templates/500.jinja.html:6 +#: skins/default/templates/500.jinja.html:5 msgid "Internal server error" msgstr "" -#: skins/default/templates/500.jinja.html:10 +#: 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" -#: skins/default/templates/500.jinja.html:11 +#: skins/default/templates/500.jinja.html:9 msgid "please report the error to the site administrators if you wish" msgstr "por favor reporte el error con el administrador de este sitio" -#: skins/default/templates/500.jinja.html:14 +#: skins/default/templates/500.jinja.html:12 msgid "see latest questions" msgstr "ver las últimas preguntas" -#: skins/default/templates/500.jinja.html:15 +#: skins/default/templates/500.jinja.html:13 msgid "see tags" msgstr "ver las etiquetas" -#: skins/default/templates/about.html:3 skins/default/templates/about.html:6 -msgid "About" -msgstr "Acerca de" +#: 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 @@ -2815,303 +3644,174 @@ msgid "Edit answer" msgstr "Editar respuesta" #: skins/default/templates/answer_edit.html:10 -#: skins/default/templates/question_edit.html:10 -#: skins/default/templates/question_retag.html:6 +#: skins/default/templates/question_edit.html:9 +#: skins/default/templates/question_retag.html:5 #: skins/default/templates/revisions.html:7 msgid "back" msgstr "regresar" -#: skins/default/templates/answer_edit.html:15 -#: skins/default/templates/question_edit.html:14 +#: skins/default/templates/answer_edit.html:14 msgid "revision" msgstr "revisión" -#: skins/default/templates/answer_edit.html:18 -#: skins/default/templates/question_edit.html:19 +#: skins/default/templates/answer_edit.html:17 +#: skins/default/templates/question_edit.html:16 msgid "select revision" msgstr "seleccionar revisión" -#: skins/default/templates/answer_edit.html:22 -#: skins/default/templates/question_edit.html:28 +#: skins/default/templates/answer_edit.html:21 +#: skins/default/templates/question_edit.html:27 msgid "Save edit" msgstr "Guardar edición" -#: skins/default/templates/answer_edit.html:23 -#: skins/default/templates/close.html:19 -#: skins/default/templates/feedback.html:45 -#: skins/default/templates/question_edit.html:29 -#: skins/default/templates/question_retag.html:26 -#: skins/default/templates/reopen.html:30 -#: skins/default/templates/user_edit.html:76 +#: skins/default/templates/answer_edit.html:22 +#: skins/default/templates/close.html:16 +#: skins/default/templates/feedback.html:42 +#: skins/default/templates/question_edit.html:28 +#: skins/default/templates/question_retag.html:22 +#: skins/default/templates/reopen.html:27 +#: skins/default/templates/subscribe_for_tags.html:16 #: skins/default/templates/authopenid/changeemail.html:38 +#: skins/default/templates/user_profile/user_edit.html:84 msgid "Cancel" msgstr "Cancelar" -#: skins/default/templates/answer_edit.html:59 -#: skins/default/templates/answer_edit.html:62 -#: skins/default/templates/ask.html:36 skins/default/templates/ask.html:39 -#: skins/default/templates/macros.html:398 -#: skins/default/templates/question.html:456 -#: skins/default/templates/question.html:459 -#: skins/default/templates/question_edit.html:63 -#: skins/default/templates/question_edit.html:66 +#: skins/default/templates/answer_edit.html:60 +#: skins/default/templates/answer_edit.html:63 +#: skins/default/templates/ask.html:46 skins/default/templates/ask.html:49 +#: skins/default/templates/macros.html:698 +#: skins/default/templates/question.html:562 +#: skins/default/templates/question.html:565 +#: skins/default/templates/question_edit.html:72 +#: skins/default/templates/question_edit.html:75 msgid "hide preview" msgstr "ocultar vista previa" -#: skins/default/templates/answer_edit.html:62 -#: skins/default/templates/ask.html:39 -#: skins/default/templates/question.html:459 -#: skins/default/templates/question_edit.html:66 +#: skins/default/templates/answer_edit.html:63 +#: skins/default/templates/ask.html:49 +#: skins/default/templates/question.html:565 +#: skins/default/templates/question_edit.html:75 msgid "show preview" msgstr "mostrar vista previa" -#: skins/default/templates/answer_edit_tips.html:3 -msgid "answer tips" -msgstr "responder tips" +#: skins/default/templates/ask.html:4 +msgid "Ask a question" +msgstr "Formula una pregunta" -#: skins/default/templates/answer_edit_tips.html:6 -msgid "please make your answer relevant to this community" -msgstr "por favor intenta que tu respuesta sea relevante para la comunidad" +#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:8 +#: skins/default/templates/user_profile/user_recent.html:16 +#: skins/default/templates/user_profile/user_stats.html:110 +#, python-format +msgid "%(name)s" +msgstr "" -#: skins/default/templates/answer_edit_tips.html:9 -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/badge.html:4 +msgid "Badge" +msgstr "Medalla" -#: skins/default/templates/answer_edit_tips.html:12 -msgid "please try to provide details" -msgstr "intenta dar algunos detalles" +#: skins/default/templates/badge.html:6 +#, python-format +msgid "Badge \"%(name)s\"" +msgstr "" -#: skins/default/templates/answer_edit_tips.html:15 -#: skins/default/templates/question_edit_tips.html:12 -msgid "be clear and concise" -msgstr "se claro y conciso" +#: skins/default/templates/badge.html:8 +#: skins/default/templates/user_profile/user_recent.html:16 +#: skins/default/templates/user_profile/user_stats.html:108 +#, fuzzy, python-format +msgid "%(description)s" +msgstr "suscripción por email" -#: skins/default/templates/answer_edit_tips.html:19 -#: skins/default/templates/question_edit_tips.html:16 -msgid "see frequently asked questions" -msgstr "mira las preguntas más frecuentes" +#: skins/default/templates/badge.html:13 +msgid "user received this badge:" +msgid_plural "users received this badge:" +msgstr[0] "" +msgstr[1] "" -#: skins/default/templates/answer_edit_tips.html:25 -#: skins/default/templates/question_edit_tips.html:22 -msgid "Markdown tips" -msgstr "Markdown tips" +#: skins/default/templates/badges.html:3 +msgid "Badges summary" +msgstr "Resúmen de medallas" -#: skins/default/templates/answer_edit_tips.html:29 -#: skins/default/templates/question_edit_tips.html:26 -msgid "*italic*" -msgstr "" +#: skins/default/templates/badges.html:5 +msgid "Badges" +msgstr "Medallas" -#: skins/default/templates/answer_edit_tips.html:32 -#: skins/default/templates/question_edit_tips.html:29 -msgid "**bold**" +#: skins/default/templates/badges.html:7 +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 +#, 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 "" +"A continuación se muestra una lista de las medallas disponibles y el " +"numero \n" +" de veces que ha sido otorgada. Dinos que piensas al respecto en " +"%(feedback_faq_url)s.\n" +" " -#: skins/default/templates/answer_edit_tips.html:36 -#: skins/default/templates/question_edit_tips.html:33 -#, fuzzy -msgid "*italic* or _italic_" -msgstr "*italic* o __italic__" +#: skins/default/templates/badges.html:35 +msgid "Community badges" +msgstr "Medallas de la comunidad" -#: skins/default/templates/answer_edit_tips.html:39 -#: skins/default/templates/question_edit_tips.html:36 -msgid "**bold** or __bold__" -msgstr "**bold** o __bold__" - -#: skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/question_edit_tips.html:40 -msgid "link" -msgstr "enlace" - -#: skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:40 -#: skins/default/templates/question_edit_tips.html:45 -msgid "text" -msgstr "texto" - -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:45 -msgid "image" -msgstr "imagen" - -#: skins/default/templates/answer_edit_tips.html:51 -#: skins/default/templates/question_edit_tips.html:49 -msgid "numbered list:" -msgstr "numerar:" - -#: skins/default/templates/answer_edit_tips.html:56 -#: skins/default/templates/question_edit_tips.html:54 -msgid "basic HTML tags are also supported" -msgstr "HTML básico es soportado" - -#: skins/default/templates/answer_edit_tips.html:60 -#: skins/default/templates/question_edit_tips.html:58 -msgid "learn more about Markdown" -msgstr "lee acerca de Markdown" - -#: skins/default/templates/ask.html:3 -msgid "Ask a question" -msgstr "Formula una pregunta" - -#: skins/default/templates/ask_form.html:7 -msgid "login to post question info" -msgstr "ingresa para publicar información de la pregunta" - -#: skins/default/templates/ask_form.html:11 -#, fuzzy, python-format -msgid "" -"must have valid %(email)s to post, \n" -" see %(email_validation_faq_url)s\n" -" " -msgstr "" -"must have valid %(email)s to post, \n" -" see %(email_validation_faq_url)s\n" -" " - -#: skins/default/templates/ask_form.html:27 -msgid "Login/signup to post your question" -msgstr "Ingresa/registrate para publicar tu pregunta" - -#: skins/default/templates/ask_form.html:29 -msgid "Ask your question" -msgstr "Formula tu pregunta" - -#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:11 -#: skins/default/templates/badges.html:28 -#: skins/default/templates/user_recent.html:13 -#: skins/default/templates/user_stats.html:88 -#, python-format -msgid "%(name)s" -msgstr "" - -#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:7 -msgid "Badge" -msgstr "Medalla" - -#: skins/default/templates/badge.html:11 -#: skins/default/templates/badges.html:27 -#: skins/default/templates/badges.html:31 -#: skins/default/templates/user_recent.html:13 -#: skins/default/templates/user_stats.html:88 -#, fuzzy, python-format -msgid "%(description)s" -msgstr "suscripción por email" - -#: skins/default/templates/badge.html:16 -msgid "user received this badge:" -msgid_plural "users received this badge:" -msgstr[0] "" -msgstr[1] "" - -#: skins/default/templates/badges.html:3 -msgid "Badges summary" -msgstr "Resúmen de medallas" - -#: skins/default/templates/badges.html:6 -msgid "Badges" -msgstr "Medallas" - -#: skins/default/templates/badges.html:10 -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:11 -#, 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 "" -"A continuación se muestra una lista de las medallas disponibles y el " -"numero \n" -" de veces que ha sido otorgada. Dinos que piensas al respecto en %" -"(feedback_faq_url)s.\n" -" " - -#: skins/default/templates/badges.html:27 -#, python-format -msgid "%(type)s" -msgstr "" - -#: skins/default/templates/badges.html:40 -msgid "Community badges" -msgstr "Medallas de la comunidad" - -#: skins/default/templates/badges.html:43 +#: skins/default/templates/badges.html:37 msgid "gold badge: the highest honor and is very rare" msgstr "" -#: skins/default/templates/badges.html:46 +#: skins/default/templates/badges.html:40 msgid "gold badge description" msgstr "descripción de la medalla de oro" -#: skins/default/templates/badges.html:51 +#: skins/default/templates/badges.html:45 msgid "" "silver badge: occasionally awarded for the very high quality contributions" msgstr "" -#: skins/default/templates/badges.html:55 +#: skins/default/templates/badges.html:49 msgid "silver badge description" msgstr "descripción de la medalla de plata" -#: skins/default/templates/badges.html:58 +#: skins/default/templates/badges.html:52 msgid "bronze badge: often given as a special honor" msgstr "medalla de bronce: a menudo como un honor especial" -#: skins/default/templates/badges.html:62 +#: 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:6 +#: skins/default/templates/close.html:3 skins/default/templates/close.html:5 msgid "Close question" msgstr "Cerrar pregunta" -#: skins/default/templates/close.html:9 +#: skins/default/templates/close.html:6 msgid "Close the question" msgstr "Cerrar la pregunta" -#: skins/default/templates/close.html:14 +#: skins/default/templates/close.html:11 msgid "Reasons" msgstr "Razones" -#: skins/default/templates/close.html:18 +#: skins/default/templates/close.html:15 msgid "OK to close" msgstr "Ok cerrar" -#: skins/default/templates/editor_data.html:8 -#, 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] "las etiquetas deben contener menos de 20 carácteres" -msgstr[1] "las etiquetas deben contener menos de 20 carácteres" - -#: skins/default/templates/editor_data.html:10 -#, 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 5 etiquetas o menos" -msgstr[1] "por favor, use 5 etiquetas o menos" - -#: skins/default/templates/editor_data.html:11 -#, fuzzy, python-format -msgid "" -"please use up to %(tag_count)s tags, less than %(max_chars)s characters each" -msgstr "más de 5 etiquetas, con menos de 20 caraácteres cada una" - -#: skins/default/templates/faq.html:3 skins/default/templates/faq.html.py:6 +#: skins/default/templates/faq.html:3 +#: skins/default/templates/faq_static.html:3 +#: skins/default/templates/faq_static.html:5 msgid "FAQ" msgstr "" -#: skins/default/templates/faq.html:6 +#: skins/default/templates/faq_static.html:5 msgid "Frequently Asked Questions " msgstr "Preguntas más frecuentes" -#: skins/default/templates/faq.html:11 +#: skins/default/templates/faq_static.html:6 msgid "What kinds of questions can I ask here?" msgstr "Que tipo de preguntas puedo hacer aquí?" -#: skins/default/templates/faq.html:12 +#: skins/default/templates/faq_static.html:7 msgid "" "Most importanly - questions should be relevant to this " "community." @@ -3119,7 +3819,7 @@ msgstr "" "Los más importante - las preguntas debe de ser relevantes " "para esta comunidad." -#: skins/default/templates/faq.html:13 +#: 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." @@ -3127,11 +3827,11 @@ msgstr "" "Antes de hacer una pregunta - asegurate de haber buscado sobre ella, quizas " "ya encuentres una respuesta concreta." -#: skins/default/templates/faq.html:15 +#: skins/default/templates/faq_static.html:10 msgid "What questions should I avoid asking?" msgstr "¿Qué preguntas debo evitar hacer?" -#: skins/default/templates/faq.html:16 +#: skins/default/templates/faq_static.html:11 msgid "" "Please avoid asking questions that are not relevant to this community, too " "subjective and argumentative." @@ -3139,11 +3839,11 @@ msgstr "" "Por favor, evite hacer preguntas que no son relevantes para esta comunidad, " "demasiado subjetivas y argumentativas." -#: skins/default/templates/faq.html:20 +#: skins/default/templates/faq_static.html:13 msgid "What should I avoid in my answers?" msgstr "¿Qué debo evitar en mis respuestas?" -#: skins/default/templates/faq.html:21 +#: 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 " @@ -3152,19 +3852,19 @@ msgstr "" "es un un sitio de Preguntas y Respuestas, no un grupo de discusión. Si " "quieres discutir, hazlo en los comentarios sobrelas respuestas." -#: skins/default/templates/faq.html:24 +#: skins/default/templates/faq_static.html:15 msgid "Who moderates this community?" msgstr "Quien modera esta comunidad?" -#: skins/default/templates/faq.html:25 +#: skins/default/templates/faq_static.html:16 msgid "The short answer is: you." msgstr "La respuesta corta es: tu." -#: skins/default/templates/faq.html:26 +#: skins/default/templates/faq_static.html:17 msgid "This website is moderated by the users." msgstr "Este sitio es moderado por los usuarios." -#: skins/default/templates/faq.html:27 +#: skins/default/templates/faq_static.html:18 msgid "" "The reputation system allows users earn the authorization to perform a " "variety of moderation tasks." @@ -3172,21 +3872,21 @@ 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.html:32 +#: skins/default/templates/faq_static.html:20 msgid "How does reputation system work?" msgstr "Cómo funciona este sistema de reputación?" -#: skins/default/templates/faq.html:33 +#: skins/default/templates/faq_static.html:21 msgid "Rep system summary" msgstr "Resumen de reputación del sistema" -#: skins/default/templates/faq.html:34 +#: skins/default/templates/faq_static.html:22 #, fuzzy, 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 %" -"(REP_GAIN_FOR_RECEIVING_UPVOTE)s points, each vote against will " +"it will be downvoted. Each vote in favor will generate " +"%(REP_GAIN_FOR_RECEIVING_UPVOTE)s points, each vote against will " "subtract %(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s points. There " "is a limit of %(MAX_REP_GAIN_PER_USER_PER_DAY)s points that " "can be accumulated for a question or answer per day. The table below " @@ -3200,70 +3900,65 @@ msgstr "" "respuesta. La siguiente tabla muestra los puntos necesarios en la reputación " "para obtener autorización de realizar diversas tareas de moderación." -#: skins/default/templates/faq.html:44 -#: skins/default/templates/user_votes.html:10 +#: 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.html:49 +#: skins/default/templates/faq_static.html:37 msgid "use tags" msgstr "usar etiquetas" -#: skins/default/templates/faq.html:54 +#: skins/default/templates/faq_static.html:42 msgid "add comments" msgstr "comentar" -#: skins/default/templates/faq.html:58 -#: skins/default/templates/user_votes.html:12 +#: skins/default/templates/faq_static.html:46 +#: skins/default/templates/user_profile/user_votes.html:15 msgid "downvote" msgstr "voto negativo" -#: skins/default/templates/faq.html:61 +#: skins/default/templates/faq_static.html:49 +#, fuzzy +msgid " accept own answer to own questions" +msgstr "Primer respuesta aceptada a un pregunta tuya" + +#: skins/default/templates/faq_static.html:53 msgid "open and close own questions" msgstr "abrir y cerrar preguntas propias" -#: skins/default/templates/faq.html:65 +#: skins/default/templates/faq_static.html:57 #, fuzzy msgid "retag other's questions" msgstr "re-etiquetar preguntas" -#: skins/default/templates/faq.html:70 +#: skins/default/templates/faq_static.html:62 msgid "edit community wiki questions" msgstr "editar preguntas wiki" -#: skins/default/templates/faq.html:75 +#: skins/default/templates/faq_static.html:67 #, fuzzy msgid "\"edit any answer" msgstr "editar cualquier respuesta" -#: skins/default/templates/faq.html:79 +#: skins/default/templates/faq_static.html:71 #, fuzzy msgid "\"delete any comment" msgstr "eliminar cualquier comentario" -#: skins/default/templates/faq.html:86 -msgid "how to validate email title" -msgstr "Cómo validar una email" - -#: skins/default/templates/faq.html:88 -#, fuzzy, python-format -msgid "" -"how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)s" -msgstr "como validar una email con %(send_email_key_url)s %(gravatar_faq_url)s" - -#: skins/default/templates/faq.html:93 +#: skins/default/templates/faq_static.html:74 msgid "what is gravatar" msgstr "que es gravatar" -#: skins/default/templates/faq.html:94 +#: skins/default/templates/faq_static.html:75 msgid "gravatar faq info" msgstr "información de gravatar" -#: skins/default/templates/faq.html:97 +#: skins/default/templates/faq_static.html:76 msgid "To register, do I need to create new password?" msgstr "Para registrarme, necesito crear una contraseña?" -#: skins/default/templates/faq.html:98 +#: skins/default/templates/faq_static.html:77 #, fuzzy msgid "" "No, you don't have to. You can login through any service that supports " @@ -3272,20 +3967,20 @@ msgstr "" "No, no la necesitas. Puedes usar los datos de tus servicios que son " "compatibles con OpenID, como Google, Yahoo, AOL, etc." -#: skins/default/templates/faq.html:99 +#: skins/default/templates/faq_static.html:78 #, fuzzy msgid "\"Login now!\"" msgstr "Ingresar ahora!" -#: skins/default/templates/faq.html:103 +#: skins/default/templates/faq_static.html:80 msgid "Why other people can edit my questions/answers?" msgstr "Por que otras personas puede editar mis preguntas/respuestas?" -#: skins/default/templates/faq.html:104 +#: skins/default/templates/faq_static.html:81 msgid "Goal of this site is..." msgstr "Objetivo de este sitio es ..." -#: skins/default/templates/faq.html:104 +#: skins/default/templates/faq_static.html:81 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 " @@ -3295,15 +3990,15 @@ msgstr "" "(como Wikipedia) por usuarios con experiencia en ese sitio, y todo con el " "objetivo de aumentar la calidad del contenido." -#: skins/default/templates/faq.html:105 +#: skins/default/templates/faq_static.html:82 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.html:109 +#: skins/default/templates/faq_static.html:84 msgid "Still have questions?" msgstr "Aún tiene preguntas?" -#: skins/default/templates/faq.html:110 +#: skins/default/templates/faq_static.html:85 #, fuzzy, python-format msgid "" "Please ask your question at %(ask_question_url)s, help make our community " @@ -3312,30 +4007,22 @@ msgstr "" "Por favor formula tus inquietudes en %(ask_question_url)s, ayudanos a ser " "una mejor comunidad!" -#: skins/default/templates/faq.html:112 skins/default/templates/header.html:78 -msgid "questions" -msgstr "preguntas" - -#: skins/default/templates/faq.html:112 -msgid "." -msgstr "." - #: skins/default/templates/feedback.html:3 msgid "Feedback" msgstr "Sugerencias" -#: skins/default/templates/feedback.html:6 +#: skins/default/templates/feedback.html:5 msgid "Give us your feedback!" msgstr "Danos tu Feedback!" -#: skins/default/templates/feedback.html:12 +#: skins/default/templates/feedback.html:9 #, fuzzy, python-format msgid "" "\n" -" Dear %(user_name)s, we look " -"forward to hearing your feedback. \n" -" Please type and send us your message below.\n" -" " +" Dear %(user_name)s, we look forward " +"to hearing your feedback. \n" +" Please type and send us your message below.\n" +" " msgstr "" "\n" " Querido %(user_name)s, esperamos " @@ -3343,13 +4030,14 @@ msgstr "" " Por favor escriba y nos envíe su mensaje a continuación.\n" " " -#: skins/default/templates/feedback.html:19 +#: skins/default/templates/feedback.html:16 +#, fuzzy msgid "" "\n" -" Dear visitor, we look forward to " +" Dear visitor, we look forward to " "hearing your feedback.\n" -" Please type and send us your message below.\n" -" " +" Please type and send us your message below.\n" +" " msgstr "" "\n" " Querido visitante, esperamos con " @@ -3357,130 +4045,55 @@ msgstr "" " Por favor escriba y nos envíe su mensaje a continuación.\n" " " -#: skins/default/templates/feedback.html:28 +#: skins/default/templates/feedback.html:25 #, fuzzy msgid "(please enter a valid email)" msgstr "ingresa una dirección de email valida" -#: skins/default/templates/feedback.html:36 +#: skins/default/templates/feedback.html:33 msgid "(this field is required)" msgstr "(este campo es requerido)" -#: skins/default/templates/feedback.html:44 +#: skins/default/templates/feedback.html:41 msgid "Send Feedback" msgstr "Enviar sugerencias" -#: skins/default/templates/feedback_email.txt:3 +#: skins/default/templates/feedback_email.txt:2 #, python-format msgid "" "\n" -"Hello, this is a %(site_title)s forum feedback message\n" +"Hello, this is a %(site_title)s forum feedback message.\n" msgstr "" -#: skins/default/templates/feedback_email.txt:9 -#, fuzzy -msgid "Sender is" -msgstr "Enviar enlace" - -#: skins/default/templates/feedback_email.txt:11 -#: skins/default/templates/feedback_email.txt:14 -#, fuzzy -msgid "email" -msgstr "no enviar emails" - -#: skins/default/templates/feedback_email.txt:13 -msgid "anonymous" +#: skins/default/templates/import_data.html:2 +#: skins/default/templates/import_data.html:4 +msgid "Import StackExchange data" msgstr "" -#: skins/default/templates/feedback_email.txt:19 -msgid "Message body:" +#: skins/default/templates/import_data.html:13 +msgid "" +"Warning: if your database is not empty, please back it up\n" +" before attempting this operation." msgstr "" -#: skins/default/templates/footer.html:5 -#: skins/default/templates/header.html:56 -msgid "about" -msgstr "acerca de" - -#: skins/default/templates/footer.html:7 -msgid "privacy policy" -msgstr "políticas de privacidad" - -#: skins/default/templates/footer.html:16 -msgid "give feedback" -msgstr "enviar sugerencias" - -#: skins/default/templates/header.html:12 -#, fuzzy, python-format -msgid "responses for %(username)s" -msgstr "seleccione un nombre de usuario" - -#: skins/default/templates/header.html:15 -#, python-format -msgid "you have a new response" -msgid_plural "you nave %(response_count)s new responses" -msgstr[0] "" -msgstr[1] "" - -#: skins/default/templates/header.html:18 -#, fuzzy -msgid "no new responses yet" -msgstr "respuestas" - -#: skins/default/templates/header.html:30 -#: skins/default/templates/header.html:31 -#, python-format -msgid "%(new)s new flagged posts and %(seen)s previous" +#: skins/default/templates/import_data.html:16 +msgid "" +"Upload your stackexchange dump .zip file, then wait until\n" +" the data import completes. This process may take several minutes.\n" +" Please note that feedback will be printed in plain text.\n" +" " msgstr "" -#: skins/default/templates/header.html:33 -#: skins/default/templates/header.html:34 -#, fuzzy, python-format -msgid "%(new)s new flagged posts" -msgstr "Primer comentario reportado" - -#: skins/default/templates/header.html:39 -#: skins/default/templates/header.html:40 -#, fuzzy, python-format -msgid "%(seen)s flagged posts" -msgstr "Primer comentario reportado" - -#: skins/default/templates/header.html:52 -msgid "logout" -msgstr "salir" - -#: skins/default/templates/header.html:54 -msgid "login" -msgstr "ingresar" - -#: skins/default/templates/header.html:59 -#, fuzzy -msgid "settings" -msgstr "authsettings/" - -#: skins/default/templates/header.html:68 -msgid "back to home page" -msgstr "volver a inicio" - -#: skins/default/templates/header.html:69 -#, python-format -msgid "%(site)s logo" +#: skins/default/templates/import_data.html:25 +msgid "Import data" msgstr "" -#: skins/default/templates/header.html:88 -msgid "users" -msgstr "usuarios" - -#: skins/default/templates/header.html:93 -msgid "badges" -msgstr "medallas" - -#: skins/default/templates/header.html:98 -msgid "ask a question" -msgstr "preguntar" - -#: skins/default/templates/input_bar.html:32 -msgid "search" -msgstr "buscar" +#: 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: python manage." +"py load_stackexchange path/to/your-data.zip" +msgstr "" #: skins/default/templates/instant_notification.html:1 #, python-format @@ -3553,241 +4166,274 @@ msgstr "" "Sinceramente,
    \n" " Administrador del Foro" -#: skins/default/templates/logout.html:3 skins/default/templates/logout.html:6 -msgid "Logout" -msgstr "Salir" +#: skins/default/templates/macros.html:25 +#, fuzzy, python-format +msgid "Share this question on %(site)s" +msgstr "Reabrir esta pregunta" -#: skins/default/templates/logout.html:9 -msgid "" -"As a registered user you can login with your OpenID, log out of the site or " -"permanently remove your account." +#: skins/default/templates/macros.html:36 +#, python-format +msgid "follow %(alias)s" msgstr "" -"Como usuario registrado, puedes ingresar con tu perfil OpenID, salir del " -"sitio o eliminar permanentemente tu cuenta." -#: skins/default/templates/logout.html:10 -msgid "Logout now" -msgstr "Salir ahora" +#: skins/default/templates/macros.html:39 +#, python-format +msgid "unfollow %(alias)s" +msgstr "" + +#: skins/default/templates/macros.html:40 +#, python-format +msgid "following %(alias)s" +msgstr "" -#: skins/default/templates/macros.html:26 +#: skins/default/templates/macros.html:63 msgid "karma:" msgstr "" -#: skins/default/templates/macros.html:30 +#: skins/default/templates/macros.html:67 #, fuzzy msgid "badges:" msgstr "medallas" -#: skins/default/templates/macros.html:52 -#: skins/default/templates/macros.html:53 +#: skins/default/templates/macros.html:143 +#: skins/default/templates/macros.html:144 msgid "previous" msgstr "anterior" -#: skins/default/templates/macros.html:64 +#: skins/default/templates/macros.html:155 msgid "current page" msgstr "pagina actual" -#: skins/default/templates/macros.html:66 -#: skins/default/templates/macros.html:73 +#: skins/default/templates/macros.html:157 +#: skins/default/templates/macros.html:164 #, fuzzy, python-format msgid "page number %(num)s" msgstr "numero de pagina" -#: skins/default/templates/macros.html:77 +#: skins/default/templates/macros.html:168 msgid "next page" msgstr "pagina siguiente" -#: skins/default/templates/macros.html:88 +#: skins/default/templates/macros.html:179 msgid "posts per page" msgstr "artículos por pagina" -#: skins/default/templates/macros.html:119 templatetags/extra_tags.py:56 +#: skins/default/templates/macros.html:211 templatetags/extra_tags.py:43 #, python-format msgid "%(username)s gravatar image" msgstr "" -#: skins/default/templates/macros.html:142 +#: skins/default/templates/macros.html:220 +#, fuzzy, python-format +msgid "%(username)s's website is %(url)s" +msgstr "perfil de usuario" + +#: skins/default/templates/macros.html:232 +#, fuzzy +msgid "anonymous user" +msgstr "usuarios anónimos no pueden votar" + +#: skins/default/templates/macros.html:260 msgid "this post is marked as community wiki" msgstr "" -#: skins/default/templates/macros.html:145 +#: skins/default/templates/macros.html:263 #, python-format msgid "" "This post is a wiki.\n" " Anyone with karma >%(wiki_min_rep)s is welcome to improve it." msgstr "" -#: skins/default/templates/macros.html:151 +#: skins/default/templates/macros.html:269 msgid "asked" msgstr "preguntado" -#: skins/default/templates/macros.html:153 +#: skins/default/templates/macros.html:271 msgid "answered" msgstr "respondido" -#: skins/default/templates/macros.html:155 +#: skins/default/templates/macros.html:273 msgid "posted" msgstr "publicado" -#: skins/default/templates/macros.html:185 +#: skins/default/templates/macros.html:303 msgid "updated" msgstr "actualizado" -#: skins/default/templates/macros.html:210 -#: skins/default/templates/unused/questions_ajax.html:23 views/readers.py:237 +#: skins/default/templates/macros.html:379 +#, fuzzy, python-format +msgid "see questions tagged '%(tag)s'" +msgstr "ver preguntas etiquetadas con '%(tagname)s'" + +#: skins/default/templates/macros.html:424 views/readers.py:239 #, fuzzy -msgid "vote" -msgid_plural "votes" -msgstr[0] "votar/" -msgstr[1] "votar/" +msgid "view" +msgid_plural "views" +msgstr[0] "vistas" +msgstr[1] "vistas" -#: skins/default/templates/macros.html:227 -#: skins/default/templates/unused/questions_ajax.html:43 views/readers.py:240 +#: skins/default/templates/macros.html:441 views/readers.py:236 #, fuzzy msgid "answer" msgid_plural "answers" msgstr[0] "respuesta" msgstr[1] "respuesta" -#: skins/default/templates/macros.html:239 -#: skins/default/templates/unused/questions_ajax.html:55 views/readers.py:243 +#: skins/default/templates/macros.html:452 views/readers.py:233 #, fuzzy -msgid "view" -msgid_plural "views" -msgstr[0] "vistas" -msgstr[1] "vistas" +msgid "vote" +msgid_plural "votes" +msgstr[0] "votar/" +msgstr[1] "votar/" -#: skins/default/templates/macros.html:251 -#: skins/default/templates/question.html:88 -#: skins/default/templates/tags.html:38 -#: skins/default/templates/unused/question_list.html:64 -#: skins/default/templates/unused/question_summary_list_roll.html:52 -#: skins/default/templates/unused/questions_ajax.html:68 -#, fuzzy, python-format -msgid "see questions tagged '%(tag)s'" -msgstr "ver preguntas etiquetadas con '%(tagname)s'" +#: skins/default/templates/macros.html:491 +msgid "delete this comment" +msgstr "eliminar este comentario" -#: skins/default/templates/macros.html:272 -#: skins/default/templates/question.html:94 -#: skins/default/templates/question.html:247 +#: skins/default/templates/macros.html:502 +#: skins/default/templates/question.html:79 +#: skins/default/templates/question.html:235 #: skins/default/templates/revisions.html:37 msgid "edit" msgstr "editar" -#: skins/default/templates/macros.html:277 -msgid "delete this comment" -msgstr "eliminar este comentario" - -#: skins/default/templates/macros.html:295 -#: skins/default/templates/macros.html:303 -#: skins/default/templates/question.html:423 +#: skins/default/templates/macros.html:520 +#: skins/default/templates/macros.html:528 +#: skins/default/templates/question.html:511 msgid "add comment" msgstr "comentar" -#: skins/default/templates/macros.html:296 +#: skins/default/templates/macros.html:521 #, python-format msgid "see %(counter)s more" msgid_plural "see %(counter)s more" msgstr[0] "" msgstr[1] "" -#: skins/default/templates/macros.html:298 +#: skins/default/templates/macros.html:523 #, python-format msgid "see %(counter)s more comment" msgid_plural "" "see %(counter)s more comments\n" -" " +" " msgstr[0] "" msgstr[1] "" -#: skins/default/templates/macros.html:375 +#: skins/default/templates/macros.html:661 +#, fuzzy +msgid "one of these is required" +msgstr "este campo es requerido" + +#: skins/default/templates/macros.html:673 msgid "(required)" msgstr "(requerido)" -#: skins/default/templates/macros.html:396 +#: skins/default/templates/macros.html:696 msgid "Toggle the real time Markdown editor preview" msgstr "Vista preliminar en tiempo real del editor Markdown" -#: skins/default/templates/privacy.html:3 -#: skins/default/templates/privacy.html:6 -msgid "Privacy policy" -msgstr "Políticas de privacidad" - -#: skins/default/templates/question.html:30 -#: skins/default/templates/question.html:31 -#: skins/default/templates/question.html:46 -#: skins/default/templates/question.html:48 -msgid "i like this post (click again to cancel)" -msgstr "me gusta este artículo (clic de nuevo para cancelar)" +#: skins/default/templates/macros.html:708 +#, fuzzy, python-format +msgid "responses for %(username)s" +msgstr "seleccione un nombre de usuario" -#: skins/default/templates/question.html:33 -#: skins/default/templates/question.html:50 -#: skins/default/templates/question.html:198 -msgid "current number of votes" -msgstr "numero actual de votos" +#: skins/default/templates/macros.html:711 +#, python-format +msgid "you have a new response" +msgid_plural "you have %(response_count)s new responses" +msgstr[0] "" +msgstr[1] "" -#: skins/default/templates/question.html:42 -#: skins/default/templates/question.html:43 -#: skins/default/templates/question.html:55 -#: skins/default/templates/question.html:56 -msgid "i dont like this post (click again to cancel)" -msgstr "no me gusta este artículo (clic de nuevo para cancelar)" - -#: skins/default/templates/question.html:60 -#: skins/default/templates/question.html:61 -msgid "mark this question as favorite (click again to cancel)" -msgstr "marcar esta pregunta como favorita (clic de nuevo para cancelar)" +#: skins/default/templates/macros.html:714 +#, fuzzy +msgid "no new responses yet" +msgstr "respuestas" -#: skins/default/templates/question.html:67 -#: skins/default/templates/question.html:68 -msgid "remove favorite mark from this question (click again to restore mark)" +#: skins/default/templates/macros.html:729 +#: skins/default/templates/macros.html:730 +#, python-format +msgid "%(new)s new flagged posts and %(seen)s previous" msgstr "" -"remover la marca de favorito de esta pregunta (clic de nuevo para restaurar " -"marca)" -#: skins/default/templates/question.html:74 -#, fuzzy -msgid "Share this question on twitter" -msgstr "Reabrir esta pregunta" +#: skins/default/templates/macros.html:732 +#: skins/default/templates/macros.html:733 +#, fuzzy, python-format +msgid "%(new)s new flagged posts" +msgstr "Primer comentario reportado" -#: skins/default/templates/question.html:75 -#, fuzzy -msgid "Share this question on facebook" -msgstr "última información de la pregunta" +#: skins/default/templates/macros.html:738 +#: skins/default/templates/macros.html:739 +#, fuzzy, python-format +msgid "%(seen)s flagged posts" +msgstr "Primer comentario reportado" + +#: skins/default/templates/main_page.html:11 +msgid "Questions" +msgstr "Preguntas" + +#: skins/default/templates/privacy.html:3 +#: skins/default/templates/privacy.html:5 +msgid "Privacy policy" +msgstr "Políticas de privacidad" + +#: skins/default/templates/question.html:26 +#: skins/default/templates/question.html:27 +#: skins/default/templates/question.html:42 +#: skins/default/templates/question.html:44 +msgid "i like this post (click again to cancel)" +msgstr "me gusta este artículo (clic de nuevo para cancelar)" + +#: skins/default/templates/question.html:29 +#: skins/default/templates/question.html:46 +#: skins/default/templates/question.html:186 +msgid "current number of votes" +msgstr "numero actual de votos" + +#: skins/default/templates/question.html:38 +#: skins/default/templates/question.html:39 +#: skins/default/templates/question.html:51 +#: skins/default/templates/question.html:52 +msgid "i dont like this post (click again to cancel)" +msgstr "no me gusta este artículo (clic de nuevo para cancelar)" -#: skins/default/templates/question.html:97 +#: skins/default/templates/question.html:82 #, fuzzy msgid "retag" msgstr "re-etiquetado" -#: skins/default/templates/question.html:104 +#: skins/default/templates/question.html:89 msgid "reopen" msgstr "reabrir" -#: skins/default/templates/question.html:108 +#: skins/default/templates/question.html:93 msgid "close" msgstr "cerrar" -#: skins/default/templates/question.html:113 -#: skins/default/templates/question.html:251 +#: skins/default/templates/question.html:98 +#: skins/default/templates/question.html:239 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.)" -#: skins/default/templates/question.html:114 -#: skins/default/templates/question.html:252 +#: skins/default/templates/question.html:99 +#: skins/default/templates/question.html:240 msgid "flag offensive" msgstr "marcar como ofensivo" -#: skins/default/templates/question.html:121 -#: skins/default/templates/question.html:262 -#: skins/default/templates/authopenid/signin.html:175 +#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:250 +msgid "undelete" +msgstr "revivir" + +#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:250 +#: skins/default/templates/authopenid/signin.html:166 msgid "delete" msgstr "eliminar" -#: skins/default/templates/question.html:156 +#: skins/default/templates/question.html:143 #, fuzzy, python-format msgid "" "The question has been closed for the following reason \"%(close_reason)s\" by" @@ -3795,419 +4441,313 @@ msgstr "" "Esta pregunta ha sido cerrada por las siguientes razones \"%(close_reason)s" "\" por" -#: skins/default/templates/question.html:158 +#: skins/default/templates/question.html:145 #, fuzzy, python-format msgid "close date %(closed_at)s" msgstr "tiempo %(closed_at)s" -#: skins/default/templates/question.html:166 +#: skins/default/templates/question.html:151 #, 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.html:174 +#: skins/default/templates/question.html:159 msgid "oldest answers will be shown first" msgstr "antiguar respuestas serán mostradas primero" -#: skins/default/templates/question.html:174 +#: skins/default/templates/question.html:160 msgid "oldest answers" msgstr "antiguar respuestas" -#: skins/default/templates/question.html:176 +#: skins/default/templates/question.html:162 msgid "newest answers will be shown first" msgstr "nuevas respuestas serán mostradas primero" -#: skins/default/templates/question.html:176 +#: skins/default/templates/question.html:163 msgid "newest answers" msgstr "nuevas respuestas" -#: skins/default/templates/question.html:178 +#: skins/default/templates/question.html:165 msgid "most voted answers will be shown first" msgstr "respuestas mejor valoradas serán mostradas primero" -#: skins/default/templates/question.html:178 +#: skins/default/templates/question.html:166 msgid "popular answers" msgstr "respuestas populares" -#: skins/default/templates/question.html:196 -#: skins/default/templates/question.html:197 +#: skins/default/templates/question.html:184 +#: skins/default/templates/question.html:185 msgid "i like this answer (click again to cancel)" msgstr "me gusta esta respuesta (clic de nuevo para cancelar)" -#: skins/default/templates/question.html:207 -#: skins/default/templates/question.html:208 +#: skins/default/templates/question.html:195 +#: skins/default/templates/question.html:196 msgid "i dont like this answer (click again to cancel)" msgstr "no me gusta esta respuesta (clic de nuevo para cancelar)" -#: skins/default/templates/question.html:216 -#: skins/default/templates/question.html:217 +#: skins/default/templates/question.html:204 +#: skins/default/templates/question.html:205 msgid "mark this answer as favorite (click again to undo)" msgstr "marcar esta respuesta como la favorita (clic de nuevo para deshacer)" -#: skins/default/templates/question.html:226 -#: skins/default/templates/question.html:227 +#: skins/default/templates/question.html:214 +#: skins/default/templates/question.html:215 #, fuzzy, python-format msgid "%(question_author)s has selected this answer as correct" msgstr "" "el autor de esta pregunta ha seleccionado esta respuesta como la correcta" -#: skins/default/templates/question.html:242 +#: skins/default/templates/question.html:230 msgid "answer permanent link" msgstr "enlace permanente a esta respuesta" -#: skins/default/templates/question.html:243 +#: skins/default/templates/question.html:231 msgid "permanent link" msgstr "enlace permanente" -#: skins/default/templates/question.html:262 -msgid "undelete" -msgstr "revivir" +#: skins/default/templates/question.html:256 +#, fuzzy +msgid "swap with question" +msgstr "Responde la pregunta" + +#: skins/default/templates/question.html:297 +#, python-format +msgid "" +"Know someone who can answer? Share a link " +"to this question via" +msgstr "" -#: skins/default/templates/question.html:309 -#: skins/default/templates/question.html:311 +#: skins/default/templates/question.html:303 +#, fuzzy +msgid " or" +msgstr "o" + +#: skins/default/templates/question.html:305 +#, fuzzy +msgid "email" +msgstr "no enviar emails" + +#: skins/default/templates/question.html:320 +#: skins/default/templates/question.html:322 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.html:313 +#: skins/default/templates/question.html:324 msgid "Notify me weekly when there are any new answers" msgstr "Notificarme semanalmente cuando tenga alguna nueva respuesta" -#: skins/default/templates/question.html:315 +#: skins/default/templates/question.html:326 #, fuzzy msgid "Notify me immediately when there are any new answers" msgstr "Notificarme semanalmente cuando tenga alguna nueva respuesta" -#: skins/default/templates/question.html:318 +#: skins/default/templates/question.html:329 #, fuzzy, python-format msgid "" "You can always adjust frequency of email updates from your %(profile_url)s" msgstr "" "\n" -" Puedes ajustar la frecuencia de emails recibidos en tu %" -"(profile_url)s\n" +" Puedes ajustar la frecuencia de emails recibidos en tu " +"%(profile_url)s\n" " " -#: skins/default/templates/question.html:323 +#: skins/default/templates/question.html:334 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.html:333 +#: skins/default/templates/question.html:344 +#, fuzzy +msgid "Login/Signup to Answer" +msgstr "Ingresa/Registrate para publicar tu respuesta" + +#: skins/default/templates/question.html:352 msgid "Your answer" msgstr "Tu respuesta" -#: skins/default/templates/question.html:335 +#: skins/default/templates/question.html:354 msgid "Be the first one to answer this question!" msgstr "Se el primero en contestar esta pregunta" -#: skins/default/templates/question.html:341 +#: skins/default/templates/question.html:360 msgid "you can answer anonymously and then login" msgstr "tu puedes contestar anonimamente y luego ingresar" -#: skins/default/templates/question.html:345 +#: skins/default/templates/question.html:364 msgid "answer your own question only to give an answer" msgstr "responder a tu pregunta sólo para dar una respuesta" -#: skins/default/templates/question.html:347 +#: skins/default/templates/question.html:366 msgid "please only give an answer, no discussions" msgstr "por favor intenta responder, no discutir" -#: skins/default/templates/question.html:354 +#: skins/default/templates/question.html:373 msgid "Login/Signup to Post Your Answer" msgstr "Ingresa/Registrate para publicar tu respuesta" -#: skins/default/templates/question.html:357 +#: skins/default/templates/question.html:376 +#: skins/default/templates/question.html:389 msgid "Answer Your Own Question" msgstr "Responde tu pregunta" -#: skins/default/templates/question.html:359 +#: skins/default/templates/question.html:378 msgid "Answer the question" msgstr "Responde la pregunta" -#: skins/default/templates/question.html:373 -msgid "Question tags" +#: skins/default/templates/question.html:397 +#, fuzzy +msgid "Question tools" msgstr "Etiquetas de la pregunta" -#: skins/default/templates/question.html:378 -#: skins/default/templates/questions.html:222 -#: skins/default/templates/tag_selector.html:9 -#: skins/default/templates/tag_selector.html:26 +#: skins/default/templates/question.html:400 +#, fuzzy +msgid "click to unfollow this question" +msgstr "preguntas calientes" + +#: skins/default/templates/question.html:401 +msgid "Following" +msgstr "" + +#: skins/default/templates/question.html:402 +msgid "Unfollow" +msgstr "" + +#: skins/default/templates/question.html:406 +#, fuzzy +msgid "click to follow this question" +msgstr "preguntas calientes" + +#: skins/default/templates/question.html:407 +msgid "Follow" +msgstr "" + +#: skins/default/templates/question.html:414 #, python-format -msgid "see questions tagged '%(tag_name)s'" -msgstr "ver etiquetas de la pregunta '%(tag_name)s'" +msgid "%(count)s follower" +msgid_plural "%(count)s followers" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/templates/question.html:420 +#, fuzzy +msgid "email the updates" +msgstr "notificaciones por email cancelada" + +#: skins/default/templates/question.html:423 +msgid "" +"Here (once you log in) you will be able to sign up for the " +"periodic email updates about this question." +msgstr "" + +#: skins/default/templates/question.html:428 +#, fuzzy +msgid "subscribe to this question rss feed" +msgstr "suscribirse al feed de esta pregunta" + +#: skins/default/templates/question.html:429 +#, fuzzy +msgid "subsribe to rss feed" +msgstr "suscribirse al feed de esta pregunta" + +#: skins/default/templates/question.html:438 +msgid "Question tags" +msgstr "Etiquetas de la pregunta" + +#: skins/default/templates/question.html:460 +msgid "Stats:" +msgstr "" -#: skins/default/templates/question.html:384 +#: skins/default/templates/question.html:462 msgid "question asked" msgstr "pregunta formulada" -#: skins/default/templates/question.html:387 +#: skins/default/templates/question.html:465 msgid "question was seen" msgstr "la pregunta ha sido vista" -#: skins/default/templates/question.html:387 +#: skins/default/templates/question.html:465 msgid "times" msgstr "veces" -#: skins/default/templates/question.html:390 +#: skins/default/templates/question.html:468 msgid "last updated" msgstr "última actualización" -#: skins/default/templates/question.html:397 +#: skins/default/templates/question.html:477 msgid "Related questions" msgstr "Preguntas relacionadas" #: skins/default/templates/question_edit.html:4 -#: skins/default/templates/question_edit.html:10 +#: skins/default/templates/question_edit.html:9 msgid "Edit question" msgstr "Editar pregunta" -#: skins/default/templates/question_edit_tips.html:3 -msgid "question tips" -msgstr "tips para preguntar" - -#: skins/default/templates/question_edit_tips.html:6 -msgid "please ask a relevant question" -msgstr "por favor, haz que tu pregunta sea relevante" - -#: skins/default/templates/question_edit_tips.html:9 -msgid "please try provide enough details" -msgstr "intenta dar todos los detalles" - #: skins/default/templates/question_retag.html:3 -#: skins/default/templates/question_retag.html:6 +#: skins/default/templates/question_retag.html:5 msgid "Change tags" msgstr "Cambiar etiquetas" -#: skins/default/templates/question_retag.html:25 +#: skins/default/templates/question_retag.html:21 #, fuzzy msgid "Retag" msgstr "etiquetas" -#: skins/default/templates/question_retag.html:34 +#: skins/default/templates/question_retag.html:28 msgid "Why use and modify tags?" msgstr "Por que usar o modificar etiquetas?" -#: skins/default/templates/question_retag.html:36 +#: skins/default/templates/question_retag.html:30 msgid "Tags help to keep the content better organized and searchable" msgstr "" -#: skins/default/templates/question_retag.html:38 +#: skins/default/templates/question_retag.html:32 msgid "tag editors receive special awards from the community" msgstr "quienes etiquetan sus preguntas, son premiados por la comunidad" -#: skins/default/templates/question_retag.html:79 +#: skins/default/templates/question_retag.html:59 msgid "up to 5 tags, less than 20 characters each" msgstr "más de 5 etiquetas, con menos de 20 caraácteres cada una" -#: skins/default/templates/questions.html:4 -msgid "Questions" -msgstr "Preguntas" - -#: skins/default/templates/questions.html:9 -msgid "In:" -msgstr "" - -#: skins/default/templates/questions.html:18 -#, fuzzy -msgid "see unanswered questions" -msgstr "preguntas sin contestar" - -#: skins/default/templates/questions.html:24 -#, fuzzy -msgid "see your favorite questions" -msgstr "preguntas favoritas del usuario" - -#: skins/default/templates/questions.html:29 -msgid "Sort by:" -msgstr "" - -#: skins/default/templates/questions.html:97 -#: skins/default/templates/questions.html:100 -msgid "subscribe to the questions feed" -msgstr "suscribirse al feed de esta pregunta" - -#: skins/default/templates/questions.html:101 -msgid "rss feed" -msgstr "" - -#: skins/default/templates/questions.html:105 -#, python-format -msgid "" -"\n" -" %(q_num)s question\n" -" " -msgid_plural "" -"\n" -" %(q_num)s questions\n" -" " -msgstr[0] "" -msgstr[1] "" - -#: skins/default/templates/questions.html:111 views/readers.py:157 -#, fuzzy, python-format -msgid "%(q_num)s question" -msgid_plural "%(q_num)s questions" -msgstr[0] "nueva pregunta" -msgstr[1] "nueva pregunta" - -#: skins/default/templates/questions.html:114 -#, python-format -msgid "with %(author_name)s's contributions" -msgstr "" - -#: skins/default/templates/questions.html:117 -#, fuzzy -msgid "tagged" -msgstr "re-etiquetado" - -#: skins/default/templates/questions.html:122 -#, fuzzy -msgid "Search tips:" -msgstr "Resultados de busqueda" - -#: skins/default/templates/questions.html:125 -#, fuzzy -msgid "reset author" -msgstr "preguntar al autor" - -#: skins/default/templates/questions.html:127 -#: skins/default/templates/questions.html:130 -#: skins/default/templates/questions.html:168 -#: skins/default/templates/questions.html:171 -#, fuzzy -msgid " or " -msgstr "o" - -#: skins/default/templates/questions.html:128 -#, fuzzy -msgid "reset tags" -msgstr "ver las etiquetas" - -#: skins/default/templates/questions.html:131 -#: skins/default/templates/questions.html:134 -msgid "start over" -msgstr "" - -#: skins/default/templates/questions.html:136 -msgid " - to expand, or dig in by adding more tags and revising the query." -msgstr "" - -#: skins/default/templates/questions.html:139 -#, fuzzy -msgid "Search tip:" -msgstr "Resultados de busqueda" - -#: skins/default/templates/questions.html:139 -msgid "add tags and a query to focus your search" -msgstr "" - -#: skins/default/templates/questions.html:154 -#: skins/default/templates/unused/questions_ajax.html:79 -#, fuzzy -msgid "There are no unanswered questions here" -msgstr "lista de preguntas sin contestar" - -#: skins/default/templates/questions.html:157 -#: skins/default/templates/unused/questions_ajax.html:82 -#, fuzzy -msgid "No favorite questions here. " -msgstr "preguntas favoritas" - -#: skins/default/templates/questions.html:158 -#: skins/default/templates/unused/questions_ajax.html:83 -msgid "Please start (bookmark) some questions when you visit them" -msgstr "" - -#: skins/default/templates/questions.html:163 -#: skins/default/templates/unused/questions_ajax.html:88 -msgid "You can expand your search by " -msgstr "" - -#: skins/default/templates/questions.html:166 -#: skins/default/templates/unused/questions_ajax.html:92 -#, fuzzy -msgid "resetting author" -msgstr "preguntar al autor" - -#: skins/default/templates/questions.html:169 -#: skins/default/templates/unused/questions_ajax.html:96 -#, fuzzy -msgid "resetting tags" -msgstr "Etiquetas de interes" - -#: skins/default/templates/questions.html:172 -#: skins/default/templates/questions.html:175 -#: skins/default/templates/unused/questions_ajax.html:100 -#: skins/default/templates/unused/questions_ajax.html:104 -msgid "starting over" -msgstr "" - -#: skins/default/templates/questions.html:180 -#: skins/default/templates/unused/questions_ajax.html:109 -#, fuzzy -msgid "Please always feel free to ask your question!" -msgstr "por favor, haz que tu pregunta sea relevante" - -#: skins/default/templates/questions.html:184 -#: skins/default/templates/unused/questions_ajax.html:113 -msgid "Did not find what you were looking for?" -msgstr "" - -#: skins/default/templates/questions.html:185 -#: skins/default/templates/unused/questions_ajax.html:114 -#, fuzzy -msgid "Please, post your question!" -msgstr "Formula tu pregunta" - -#: skins/default/templates/questions.html:200 -msgid "Contributors" -msgstr "" - -#: skins/default/templates/questions.html:217 -msgid "Related tags" -msgstr "Etiquetas relacionadas" - -#: skins/default/templates/reopen.html:3 skins/default/templates/reopen.html:6 +#: skins/default/templates/reopen.html:3 skins/default/templates/reopen.html:5 msgid "Reopen question" msgstr "Re-abrir pregunta" -#: skins/default/templates/reopen.html:9 +#: skins/default/templates/reopen.html:6 #, fuzzy msgid "Title" msgstr "título" -#: skins/default/templates/reopen.html:14 +#: skins/default/templates/reopen.html:11 #, python-format msgid "" "This question has been closed by \n" -" %(closed_by_username)s\n" -" " +" %(closed_by_username)s\n" msgstr "" -#: skins/default/templates/reopen.html:19 +#: skins/default/templates/reopen.html:16 #, fuzzy msgid "Close reason:" msgstr "Cerrar pregunta" -#: skins/default/templates/reopen.html:22 +#: skins/default/templates/reopen.html:19 msgid "When:" msgstr "" -#: skins/default/templates/reopen.html:25 +#: skins/default/templates/reopen.html:22 #, fuzzy msgid "Reopen this question?" msgstr "Reabrir esta pregunta" -#: skins/default/templates/reopen.html:29 +#: skins/default/templates/reopen.html:26 msgid "Reopen this question" msgstr "Reabrir esta pregunta" @@ -4225,1016 +4765,1427 @@ msgstr "clic para mostrar u ocultar revision" msgid "revision %(number)s" msgstr "revisiones/" -#: skins/default/templates/tag_selector.html:3 -msgid "Interesting tags" -msgstr "Etiquetas de interes" - -#: skins/default/templates/tag_selector.html:13 -#, python-format -msgid "remove '%(tag_name)s' from the list of interesting tags" -msgstr "remover '%(tag_name)s' de la lista de etiquetas interesante" - -#: skins/default/templates/tag_selector.html:19 -#: skins/default/templates/tag_selector.html:36 -#: skins/default/templates/user_moderate.html:35 -msgid "Add" -msgstr "Agregar" - -#: skins/default/templates/tag_selector.html:20 -msgid "Ignored tags" -msgstr "Ignorar etiqueta" +#: skins/default/templates/subscribe_for_tags.html:3 +#: skins/default/templates/subscribe_for_tags.html:5 +#, fuzzy +msgid "Subscribe for tags" +msgstr "usar etiquetas" -#: skins/default/templates/tag_selector.html:30 -#, python-format -msgid "remove '%(tag_name)s' from the list of ignored tags" -msgstr "remover '%(tag_name)s' de la lista de etiquetas ignoradas" +#: skins/default/templates/subscribe_for_tags.html:6 +#, fuzzy +msgid "Please, subscribe for the following tags:" +msgstr "La pregunta se cerro por las siguientes razones" -#: skins/default/templates/tag_selector.html:39 -msgid "keep ignored questions hidden" -msgstr "mantener ocultas las etiquetas ignoradas" +#: skins/default/templates/subscribe_for_tags.html:15 +msgid "Subscribe" +msgstr "" -#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:8 +#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:11 msgid "Tag list" msgstr "Lista de etiquetas" -#: skins/default/templates/tags.html:14 +#: skins/default/templates/tags.html:9 +#, python-format +msgid "Tags, matching \"%(stag)s\"" +msgstr "" + +#: skins/default/templates/tags.html:19 msgid "sorted alphabetically" msgstr "mostrar alfabeticamente" -#: skins/default/templates/tags.html:15 +#: skins/default/templates/tags.html:20 msgid "by name" msgstr "por nombre" -#: skins/default/templates/tags.html:20 +#: skins/default/templates/tags.html:25 msgid "sorted by frequency of tag use" msgstr "ordenar etiquetas por frecuencia de uso" -#: skins/default/templates/tags.html:21 +#: skins/default/templates/tags.html:26 msgid "by popularity" msgstr "por popularidad" -#: skins/default/templates/tags.html:27 -#, python-format -msgid "" -"All tags matching '%(stag)s'" -msgstr "" - -#: skins/default/templates/tags.html:30 +#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:56 msgid "Nothing found" msgstr "Nada encontrado" -#: skins/default/templates/user.html:14 -#, fuzzy, python-format -msgid "%(username)s's profile" -msgstr "perfil de usuario" - -#: skins/default/templates/user_edit.html:4 -msgid "Edit user profile" -msgstr "Editar perfil de usuario" - -#: skins/default/templates/user_edit.html:7 -msgid "edit profile" -msgstr "editar perfil" +#: skins/default/templates/users.html:4 skins/default/templates/users.html:7 +msgid "Users" +msgstr "Usuarios" -#: skins/default/templates/user_edit.html:17 -#: skins/default/templates/user_info.html:11 -msgid "change picture" +#: skins/default/templates/users.html:13 +msgid "see people with the highest reputation" msgstr "" -#: skins/default/templates/user_edit.html:20 -msgid "Registered user" -msgstr "Usuario registrado" - -#: skins/default/templates/user_edit.html:27 -msgid "Screen Name" -msgstr "Nombre para mostrar" +#: skins/default/templates/users.html:14 +#: skins/default/templates/user_profile/user_info.html:25 +msgid "reputation" +msgstr "reputación" -#: skins/default/templates/user_edit.html:75 -#: skins/default/templates/user_email_subscriptions.html:18 -msgid "Update" -msgstr "Actualizar" +#: skins/default/templates/users.html:19 +msgid "see people who joined most recently" +msgstr "" -#: skins/default/templates/user_email_subscriptions.html:4 -msgid "Email subscription settings" -msgstr "Configuración de suscripciones por email" +#: skins/default/templates/users.html:20 +msgid "recent" +msgstr "reciente" -#: skins/default/templates/user_email_subscriptions.html:5 -msgid "email subscription settings info" -msgstr "información de suscripciones por email" +#: skins/default/templates/users.html:25 +msgid "see people who joined the site first" +msgstr "" -#: skins/default/templates/user_email_subscriptions.html:19 -msgid "Stop sending email" -msgstr "Detener el envió de emails" +#: skins/default/templates/users.html:31 +msgid "see people sorted by name" +msgstr "" -#: skins/default/templates/user_inbox.html:31 -#, fuzzy -msgid "Sections:" -msgstr "preguntas" +#: skins/default/templates/users.html:32 +msgid "by username" +msgstr "por nombre de usuario" -#: skins/default/templates/user_inbox.html:35 +#: skins/default/templates/users.html:37 #, python-format -msgid "forum responses (%(re_count)s)" -msgstr "" +msgid "users matching query %(suser)s:" +msgstr "usurios que coinciden con la consulta %(suser)s:" -#: skins/default/templates/user_inbox.html:40 -#, python-format -msgid "flagged items (%(flag_count)s)" -msgstr "" +#: skins/default/templates/users.html:40 +msgid "Nothing found." +msgstr "Nada encontrado." -#: skins/default/templates/user_inbox.html:46 +#: skins/default/templates/authopenid/changeemail.html:2 +#: skins/default/templates/authopenid/changeemail.html:8 +#: skins/default/templates/authopenid/changeemail.html:36 #, fuzzy -msgid "select:" -msgstr "eliminar" +msgid "Change email" +msgstr "Cambiar email" -#: skins/default/templates/user_inbox.html:48 +#: skins/default/templates/authopenid/changeemail.html:10 #, fuzzy -msgid "seen" -msgstr "últimas visita" +msgid "Save your email address" +msgstr "tu dirección de email" + +#: skins/default/templates/authopenid/changeemail.html:15 +#, fuzzy, python-format +msgid "change %(email)s info" +msgstr "Cambiar email" + +#: skins/default/templates/authopenid/changeemail.html:17 +#, fuzzy, python-format +msgid "here is why email is required, see %(gravatar_faq_url)s" +msgstr "avatar, ver información %(gravatar_faq_url)s" -#: skins/default/templates/user_inbox.html:49 +#: skins/default/templates/authopenid/changeemail.html:29 #, fuzzy -msgid "new" -msgstr "nuevas" +msgid "Your new Email" +msgstr "Tu cuenta de email" -#: skins/default/templates/user_inbox.html:50 +#: skins/default/templates/authopenid/changeemail.html:29 #, fuzzy -msgid "none" -msgstr "hecho/" +msgid "Your Email" +msgstr "no enviar emails" -#: skins/default/templates/user_inbox.html:51 +#: skins/default/templates/authopenid/changeemail.html:36 #, fuzzy -msgid "mark as seen" -msgstr "últimas visita" +msgid "Save Email" +msgstr "Guardar edición" -#: skins/default/templates/user_inbox.html:52 +#: skins/default/templates/authopenid/changeemail.html:45 #, fuzzy -msgid "mark as new" -msgstr "la mejor respuesta fue marcada" +msgid "Validate email" +msgstr "Cómo validar una email" -#: skins/default/templates/user_inbox.html:53 -msgid "dismiss" +#: skins/default/templates/authopenid/changeemail.html:48 +#, python-format +msgid "validate %(email)s info or go to %(change_email_url)s" msgstr "" -#: skins/default/templates/user_info.html:18 -#: skins/default/templates/users.html:13 skins/default/templates/users.html:14 -msgid "reputation" -msgstr "reputación" +#: skins/default/templates/authopenid/changeemail.html:52 +#, fuzzy +msgid "Email not changed" +msgstr "notificaciones por email cancelada" -#: skins/default/templates/user_info.html:30 -msgid "manage login methods" +#: skins/default/templates/authopenid/changeemail.html:55 +#, python-format +msgid "old %(email)s kept, if you like go to %(change_email_url)s" msgstr "" -#: skins/default/templates/user_info.html:34 -msgid "update profile" -msgstr "actualizar perfil" - -#: skins/default/templates/user_info.html:46 -msgid "real name" -msgstr "nombre real" +#: skins/default/templates/authopenid/changeemail.html:59 +msgid "Email changed" +msgstr "" -#: skins/default/templates/user_info.html:51 -msgid "member for" -msgstr "miembro desde" +#: skins/default/templates/authopenid/changeemail.html:62 +#, python-format +msgid "your current %(email)s can be used for this" +msgstr "" -#: skins/default/templates/user_info.html:56 -msgid "last seen" -msgstr "últimas visita" +#: skins/default/templates/authopenid/changeemail.html:66 +msgid "Email verified" +msgstr "" -#: skins/default/templates/user_info.html:62 -msgid "user website" -msgstr "sitio web del usuario" +#: skins/default/templates/authopenid/changeemail.html:69 +msgid "thanks for verifying email" +msgstr "" -#: skins/default/templates/user_info.html:68 -msgid "location" -msgstr "localización" +#: skins/default/templates/authopenid/changeemail.html:73 +#, fuzzy +msgid "email key not sent" +msgstr "enviar actualizaciones al usuario" -#: skins/default/templates/user_info.html:75 -msgid "age" -msgstr "edad" +#: skins/default/templates/authopenid/changeemail.html:76 +#, python-format +msgid "email key not sent %(email)s change email here %(change_link)s" +msgstr "" -#: skins/default/templates/user_info.html:76 -msgid "age unit" -msgstr "medida de unidad" +#: skins/default/templates/authopenid/complete.html:21 +#: skins/default/templates/authopenid/complete.html:23 +#, fuzzy +msgid "Registration" +msgstr "Registrar" -#: skins/default/templates/user_info.html:83 -msgid "todays unused votes" -msgstr "votos no utilizados el día de hoy" +#: skins/default/templates/authopenid/complete.html:27 +#, fuzzy, python-format +msgid "register new %(provider)s account info, see %(gravatar_faq_url)s" +msgstr "avatar, ver información %(gravatar_faq_url)s" -#: skins/default/templates/user_info.html:84 -msgid "votes left" -msgstr "votos restantes" +#: skins/default/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 "" +"must have valid %(email)s to post, \n" +" see %(email_validation_faq_url)s\n" +" " -#: skins/default/templates/user_moderate.html:5 +#: skins/default/templates/authopenid/complete.html:34 #, python-format -msgid "%(username)s's current status is \"%(status)s\"" +msgid "" +"register new external %(provider)s account info, see %(gravatar_faq_url)s" msgstr "" -#: skins/default/templates/user_moderate.html:8 -msgid "User status changed" +#: skins/default/templates/authopenid/complete.html:37 +#, python-format +msgid "register new Facebook connect account info, see %(gravatar_faq_url)s" msgstr "" -#: skins/default/templates/user_moderate.html:15 -#, fuzzy -msgid "Save" -msgstr "Guardar edición" +#: skins/default/templates/authopenid/complete.html:40 +msgid "This account already exists, please use another." +msgstr "Esta cuenta ya existe, por favor use otra." -#: skins/default/templates/user_moderate.html:21 -#, python-format -msgid "Your current reputation is %(reputation)s points" -msgstr "" +#: skins/default/templates/authopenid/complete.html:59 +msgid "Screen name label" +msgstr "Nombre de usuario" -#: skins/default/templates/user_moderate.html:23 -#, python-format -msgid "User's current reputation is %(reputation)s points" -msgstr "" +#: skins/default/templates/authopenid/complete.html:66 +msgid "Email address label" +msgstr "Dirección de correo electrónico" -#: skins/default/templates/user_moderate.html:27 -#, fuzzy -msgid "User reputation changed" -msgstr "reputación del usuario en la comunidad" +#: skins/default/templates/authopenid/complete.html:72 +#: skins/default/templates/authopenid/signup_with_password.html:36 +msgid "receive updates motivational blurb" +msgstr "recibir actualizaciones de motivación" -#: skins/default/templates/user_moderate.html:34 -msgid "Subtract" -msgstr "" +#: skins/default/templates/authopenid/complete.html:76 +#: skins/default/templates/authopenid/signup_with_password.html:40 +msgid "please select one of the options above" +msgstr "selecciona una de las siguientes opciones" -#: skins/default/templates/user_moderate.html:39 -#, python-format -msgid "Send message to %(username)s" +#: skins/default/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/default/templates/user_moderate.html:40 -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." +#: skins/default/templates/authopenid/complete.html:80 +msgid "create account" +msgstr "crear cuenta" + +#: skins/default/templates/authopenid/confirm_email.txt:1 +msgid "Thank you for registering at our Q&A forum!" msgstr "" -#: skins/default/templates/user_moderate.html:42 +#: skins/default/templates/authopenid/confirm_email.txt:3 #, fuzzy -msgid "Message sent" -msgstr "mensajes/" +msgid "Your account details are:" +msgstr "Tu cuenta de email" -#: skins/default/templates/user_moderate.html:60 +#: skins/default/templates/authopenid/confirm_email.txt:5 #, fuzzy -msgid "Send message" -msgstr "mensajes/" +msgid "Username:" +msgstr "nombr de usuario" -#: skins/default/templates/user_reputation.html:7 +#: skins/default/templates/authopenid/confirm_email.txt:6 #, fuzzy -msgid "Your karma change log." -msgstr "Tu contraseña ha sido cambiada." +msgid "Password:" +msgstr "contraseña" -#: skins/default/templates/user_reputation.html:9 -#, python-format -msgid "%(user_name)s's karma change log" +#: skins/default/templates/authopenid/confirm_email.txt:8 +msgid "Please sign in here:" msgstr "" -#: skins/default/templates/user_stats.html:7 -#, python-format -msgid "%(counter)s Question" -msgid_plural "%(counter)s Questions" -msgstr[0] "" -msgstr[1] "" - -#: skins/default/templates/user_stats.html:12 -#, python-format -msgid "%(counter)s Answer" -msgid_plural "%(counter)s Answers" -msgstr[0] "" -msgstr[1] "" +#: skins/default/templates/authopenid/confirm_email.txt:11 +#: skins/default/templates/authopenid/email_validation.txt:13 +#, fuzzy +msgid "" +"Sincerely,\n" +"Forum Administrator" +msgstr "" +"Sinceramente,
    \n" +" Administrador del Foro" -#: skins/default/templates/user_stats.html:20 -#, fuzzy, python-format -msgid "the answer has been voted for %(answer_score)s times" -msgstr "la respuesta ha sido votada %(vote_count)s veces" +#: skins/default/templates/authopenid/email_validation.txt:1 +msgid "Greetings from the Q&A forum" +msgstr "Agradecer desde foro de P&R" -#: skins/default/templates/user_stats.html:20 -msgid "this answer has been selected as correct" -msgstr "esta respuesta ha sido seleccionada como la correcta" +#: skins/default/templates/authopenid/email_validation.txt:3 +msgid "To make use of the Forum, please follow the link below:" +msgstr "Para usar este foro, ingresa al siguiente enlace:" -#: skins/default/templates/user_stats.html:30 -#, python-format -msgid "(%(comment_count)s comment)" -msgid_plural "the answer has been commented %(comment_count)s times" -msgstr[0] "" -msgstr[1] "" +#: skins/default/templates/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." -#: skins/default/templates/user_stats.html:40 -#, python-format -msgid "%(cnt)s Vote" -msgid_plural "%(cnt)s Votes " -msgstr[0] "" -msgstr[1] "" +#: skins/default/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" +"for any inconvenience" +msgstr "" +"Si crees que este mensaje ha sido enviado por error -\n" +" no es necesario que tomes acción alguna. Solo ignoralo, y disculpa\n" +" por los iconvenientes" -#: skins/default/templates/user_stats.html:46 -msgid "thumb up" -msgstr "pulgar hacia arriba" +#: skins/default/templates/authopenid/logout.html:3 +msgid "Logout" +msgstr "Salir" -#: skins/default/templates/user_stats.html:47 -msgid "user has voted up this many times" -msgstr "usuarios han votado positivo esto varias veces" +#: skins/default/templates/authopenid/logout.html:5 +msgid "You have successfully logged out" +msgstr "" -#: skins/default/templates/user_stats.html:50 -msgid "thumb down" -msgstr "pulgar hacia abajo" +#: skins/default/templates/authopenid/logout.html: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 "" -#: skins/default/templates/user_stats.html:51 -msgid "user voted down this many times" -msgstr "usuarios han votado negativo esto varias veces" +#: skins/default/templates/authopenid/macros.html:53 +msgid "Please enter your user name, then sign in" +msgstr "" -#: skins/default/templates/user_stats.html:59 -#, python-format -msgid "%(counter)s Tag" -msgid_plural "%(counter)s Tags" -msgstr[0] "" -msgstr[1] "" +#: skins/default/templates/authopenid/macros.html:54 +#: skins/default/templates/authopenid/signin.html:90 +#, fuzzy +msgid "(or select another login method above)" +msgstr "selecciona una de las siguientes opciones" + +#: skins/default/templates/authopenid/macros.html:56 +#, fuzzy +msgid "Sign in" +msgstr "ingresar/" + +#: skins/default/templates/authopenid/signin.html:4 +msgid "User login" +msgstr "Nombre de usuario" -#: skins/default/templates/user_stats.html:67 +#: skins/default/templates/authopenid/signin.html:14 #, fuzzy, python-format msgid "" -"see other questions with %(view_user)s's contributions tagged '%(tag_name)s' " +"\n" +" Your answer to %(title)s %(summary)s will be posted once you log in\n" +" " msgstr "" -"ver otras preguntas con %(view_user)s's que ha etiquetado con '%(tag_name)s' " +"\n" +" Puedes ajustar la frecuencia de emails recibidos en tu " +"%(profile_url)s\n" +" " -#: skins/default/templates/user_stats.html:81 -#, python-format -msgid "%(counter)s Badge" -msgid_plural "%(counter)s Badges" -msgstr[0] "" -msgstr[1] "" +#: skins/default/templates/authopenid/signin.html:21 +#, fuzzy, python-format +msgid "" +"Your question \n" +" %(title)s %(summary)s will be posted once you log in\n" +" " +msgstr "" +"\n" +" Puedes ajustar la frecuencia de emails recibidos en tu " +"%(profile_url)s\n" +" " -#: skins/default/templates/user_tabs.html:5 -msgid "User profile" -msgstr "Pefil de usuario" +#: skins/default/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." +msgstr "" -#: skins/default/templates/user_tabs.html:6 -msgid "overview" -msgstr "descripción general" +#: skins/default/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 "" -#: skins/default/templates/user_tabs.html:9 views/users.py:753 -msgid "comments and answers to others questions" -msgstr "comentar y responder otras preguntas" +#: skins/default/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 "" -#: skins/default/templates/user_tabs.html:10 -msgid "inbox" +#: skins/default/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 "" -#: skins/default/templates/user_tabs.html:13 -msgid "graph of user reputation" -msgstr "grafica de la reputación de este usuario" +#: skins/default/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 "" -#: skins/default/templates/user_tabs.html:14 -msgid "reputation history" -msgstr "historial de reputación" +#: skins/default/templates/authopenid/signin.html:42 +msgid "" +"Please check your email and visit the enclosed link to re-connect to your " +"account" +msgstr "" -#: skins/default/templates/user_tabs.html:16 -msgid "questions that user selected as his/her favorite" -msgstr "preguntas que el usuario seleccione como su favorito" +#: skins/default/templates/authopenid/signin.html:87 +#, fuzzy +msgid "Please enter your user name and password, then sign in" +msgstr "Ingrese su nombre de usuario y contraseña." -#: skins/default/templates/user_tabs.html:17 -msgid "favorites" -msgstr "favoritos" +#: skins/default/templates/authopenid/signin.html:93 +msgid "Login failed, please try again" +msgstr "" -#: skins/default/templates/user_tabs.html:19 -msgid "recent activity" -msgstr "actividad reciente" +#: skins/default/templates/authopenid/signin.html:97 +#, fuzzy +msgid "Login or email" +msgstr "no enviar emails" -#: skins/default/templates/user_tabs.html:20 +#: skins/default/templates/authopenid/signin.html:101 #, fuzzy -msgid "activity" -msgstr "activa" +msgid "Password" +msgstr "contraseña" -#: skins/default/templates/user_tabs.html:23 views/users.py:818 -msgid "user vote record" -msgstr "registro de votos de este usuario" +#: skins/default/templates/authopenid/signin.html:106 +#, fuzzy +msgid "Login" +msgstr "ingresar" -#: skins/default/templates/user_tabs.html:24 -msgid "casted votes" -msgstr "votos emitidos" +#: skins/default/templates/authopenid/signin.html:113 +msgid "To change your password - please enter the new one twice, then submit" +msgstr "" -#: skins/default/templates/user_tabs.html:28 views/users.py:928 -msgid "email subscription settings" -msgstr "configuraciones de suscripción por email" +#: skins/default/templates/authopenid/signin.html:117 +#, fuzzy +msgid "New password" +msgstr "Seleccionar nueva contraseña" -#: skins/default/templates/user_tabs.html:29 +#: skins/default/templates/authopenid/signin.html:124 #, fuzzy -msgid "subscriptions" -msgstr "suscripción por email" +msgid "Please, retype" +msgstr "por favor, re-escribe tu contraseña" + +#: skins/default/templates/authopenid/signin.html:146 +msgid "Here are your current login methods" +msgstr "" -#: skins/default/templates/user_tabs.html:33 views/users.py:216 +#: skins/default/templates/authopenid/signin.html:150 #, fuzzy -msgid "moderate this user" -msgstr "Moderar este usuario" +msgid "provider" +msgstr "proveedores/" -#: skins/default/templates/user_tabs.html:34 +#: skins/default/templates/authopenid/signin.html:151 #, fuzzy -msgid "moderation" -msgstr "Localización" +msgid "last used" +msgstr "últimas visita" -#: skins/default/templates/users.html:4 skins/default/templates/users.html:7 -msgid "Users" -msgstr "Usuarios" +#: skins/default/templates/authopenid/signin.html:152 +msgid "delete, if you like" +msgstr "" -#: skins/default/templates/users.html:19 skins/default/templates/users.html:20 -msgid "recent" -msgstr "reciente" +#: skins/default/templates/authopenid/signin.html:168 +#, fuzzy +msgid "cannot be deleted" +msgstr "revivir" -#: skins/default/templates/users.html:31 skins/default/templates/users.html:32 -msgid "by username" -msgstr "por nombre de usuario" +#: skins/default/templates/authopenid/signin.html:181 +#, fuzzy +msgid "Still have trouble signing in?" +msgstr "si estas teniendo problemas para ingresar." -#: skins/default/templates/users.html:38 -#, python-format -msgid "users matching query %(suser)s:" -msgstr "usurios que coinciden con la consulta %(suser)s:" +#: skins/default/templates/authopenid/signin.html:186 +msgid "Please, enter your email address below and obtain a new key" +msgstr "" -#: skins/default/templates/users.html:41 -msgid "Nothing found." -msgstr "Nada encontrado." +#: skins/default/templates/authopenid/signin.html:188 +msgid "Please, enter your email address below to recover your account" +msgstr "" -#: skins/default/templates/users_questions.html:9 -#: skins/default/templates/users_questions.html:17 -#, fuzzy, python-format -msgid "this questions was selected as favorite %(cnt)s time" -msgid_plural "this questions was selected as favorite %(cnt)s times" -msgstr[0] "esta pregunta ha sido seleccionada como favorita" -msgstr[1] "esta pregunta ha sido seleccionada como favorita" +#: skins/default/templates/authopenid/signin.html:191 +#, fuzzy +msgid "recover your account via email" +msgstr "Obtener una nueva contraseña" + +#: skins/default/templates/authopenid/signin.html:202 +msgid "Send a new recovery key" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:204 +#, fuzzy +msgid "Recover your account via email" +msgstr "Obtener una nueva contraseña" + +#: skins/default/templates/authopenid/signin.html:216 +msgid "Why use OpenID?" +msgstr "Por que usar OpenID?" + +#: skins/default/templates/authopenid/signin.html:219 +msgid "with openid it is easier" +msgstr "con OpenID es más fácil" + +#: skins/default/templates/authopenid/signin.html:222 +msgid "reuse openid" +msgstr "re-usar openid" + +#: skins/default/templates/authopenid/signin.html:225 +msgid "openid is widely adopted" +msgstr "openID es ampliamente adoptado" + +#: skins/default/templates/authopenid/signin.html:228 +msgid "openid is supported open standard" +msgstr "openID es un estándar abierto" + +#: skins/default/templates/authopenid/signin.html:232 +msgid "Find out more" +msgstr "Para saber más" + +#: skins/default/templates/authopenid/signin.html:233 +msgid "Get OpenID" +msgstr "Obetener OpenID" -#: skins/default/templates/users_questions.html:10 +#: skins/default/templates/authopenid/signup_with_password.html:4 +msgid "Signup" +msgstr "Darte de alta" + +#: skins/default/templates/authopenid/signup_with_password.html:10 #, fuzzy -msgid "thumb-up on" -msgstr "thumb-up on" +msgid "Please register by clicking on any of the icons below" +msgstr "selecciona una de las siguientes opciones" -#: skins/default/templates/users_questions.html:18 +#: skins/default/templates/authopenid/signup_with_password.html:23 #, fuzzy -msgid "thumb-up off" -msgstr "thumb-up off" +msgid "or create a new user name and password here" +msgstr "Crear nombre de usuario y contraseña" -#: skins/default/templates/authopenid/changeemail.html:2 -#: skins/default/templates/authopenid/changeemail.html:8 -#: skins/default/templates/authopenid/changeemail.html:36 +#: skins/default/templates/authopenid/signup_with_password.html:25 +msgid "Create login name and password" +msgstr "Crear nombre de usuario y contraseña" + +#: skins/default/templates/authopenid/signup_with_password.html:26 +msgid "Traditional signup info" +msgstr "Registro tradicional" + +#: skins/default/templates/authopenid/signup_with_password.html:44 +msgid "" +"Please read and type in the two words below to help us prevent automated " +"account creation." +msgstr "" + +#: skins/default/templates/authopenid/signup_with_password.html:47 +msgid "Create Account" +msgstr "Crear cuenta" + +#: skins/default/templates/authopenid/signup_with_password.html:49 +msgid "or" +msgstr "o" + +#: skins/default/templates/authopenid/signup_with_password.html:50 #, fuzzy -msgid "Change email" -msgstr "Cambiar email" +msgid "return to OpenID login" +msgstr "regresar a la pagina de ingreso" -#: skins/default/templates/authopenid/changeemail.html:10 +#: skins/default/templates/avatar/add.html:3 #, fuzzy -msgid "Save your email address" -msgstr "tu dirección de email" +msgid "add avatar" +msgstr "que es gravatar" -#: skins/default/templates/authopenid/changeemail.html:15 +#: skins/default/templates/avatar/add.html:5 +#, fuzzy +msgid "Change avatar" +msgstr "Cambiar etiquetas" + +#: skins/default/templates/avatar/add.html:6 +#: skins/default/templates/avatar/change.html:7 +#, fuzzy +msgid "Your current avatar: " +msgstr "Tu cuenta de email" + +#: skins/default/templates/avatar/add.html:9 +#: skins/default/templates/avatar/change.html:11 +msgid "You haven't uploaded an avatar yet. Please upload one now." +msgstr "" + +#: skins/default/templates/avatar/add.html:13 +msgid "Upload New Image" +msgstr "" + +#: skins/default/templates/avatar/change.html:4 +#, fuzzy +msgid "change avatar" +msgstr "cambios guardados" + +#: skins/default/templates/avatar/change.html:17 +msgid "Choose new Default" +msgstr "" + +#: skins/default/templates/avatar/change.html:22 +#, fuzzy +msgid "Upload" +msgstr "subir/" + +#: skins/default/templates/avatar/confirm_delete.html:3 +#, fuzzy +msgid "delete avatar" +msgstr "eliminar respuesta" + +#: skins/default/templates/avatar/confirm_delete.html:5 +msgid "Please select the avatars that you would like to delete." +msgstr "" + +#: skins/default/templates/avatar/confirm_delete.html:7 +#, python-format +msgid "" +"You have no avatars to delete. Please upload one now." +msgstr "" + +#: skins/default/templates/avatar/confirm_delete.html:13 +#, fuzzy +msgid "Delete These" +msgstr "eliminar respuesta" + +#: skins/default/templates/blocks/answer_edit_tips.html:3 +msgid "answer tips" +msgstr "responder tips" + +#: skins/default/templates/blocks/answer_edit_tips.html:6 +msgid "please make your answer relevant to this community" +msgstr "por favor intenta que tu respuesta sea relevante para la comunidad" + +#: skins/default/templates/blocks/answer_edit_tips.html:9 +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/blocks/answer_edit_tips.html:12 +msgid "please try to provide details" +msgstr "intenta dar algunos detalles" + +#: skins/default/templates/blocks/answer_edit_tips.html:15 +#: skins/default/templates/blocks/question_edit_tips.html:11 +msgid "be clear and concise" +msgstr "se claro y conciso" + +#: skins/default/templates/blocks/answer_edit_tips.html:19 +#: skins/default/templates/blocks/question_edit_tips.html:15 +msgid "see frequently asked questions" +msgstr "mira las preguntas más frecuentes" + +#: skins/default/templates/blocks/answer_edit_tips.html:25 +#: skins/default/templates/blocks/question_edit_tips.html:20 +msgid "Markdown tips" +msgstr "Markdown tips" + +#: skins/default/templates/blocks/answer_edit_tips.html:29 +#: skins/default/templates/blocks/question_edit_tips.html:24 +msgid "*italic*" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:32 +#: skins/default/templates/blocks/question_edit_tips.html:27 +msgid "**bold**" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:36 +#: skins/default/templates/blocks/question_edit_tips.html:31 +#, fuzzy +msgid "*italic* or _italic_" +msgstr "*italic* o __italic__" + +#: skins/default/templates/blocks/answer_edit_tips.html:39 +#: skins/default/templates/blocks/question_edit_tips.html:34 +msgid "**bold** or __bold__" +msgstr "**bold** o __bold__" + +#: skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/question_edit_tips.html:38 +msgid "link" +msgstr "enlace" + +#: skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:38 +#: skins/default/templates/blocks/question_edit_tips.html:43 +msgid "text" +msgstr "texto" + +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:43 +msgid "image" +msgstr "imagen" + +#: skins/default/templates/blocks/answer_edit_tips.html:51 +#: skins/default/templates/blocks/question_edit_tips.html:47 +msgid "numbered list:" +msgstr "numerar:" + +#: skins/default/templates/blocks/answer_edit_tips.html:56 +#: skins/default/templates/blocks/question_edit_tips.html:52 +msgid "basic HTML tags are also supported" +msgstr "HTML básico es soportado" + +#: skins/default/templates/blocks/answer_edit_tips.html:60 +#: skins/default/templates/blocks/question_edit_tips.html:56 +msgid "learn more about Markdown" +msgstr "lee acerca de Markdown" + +#: skins/default/templates/blocks/ask_form.html:6 +msgid "login to post question info" +msgstr "ingresa para publicar información de la pregunta" + +#: skins/default/templates/blocks/ask_form.html:10 #, fuzzy, python-format -msgid "change %(email)s info" -msgstr "Cambiar email" +msgid "" +"must have valid %(email)s to post, \n" +" see %(email_validation_faq_url)s\n" +" " +msgstr "" +"must have valid %(email)s to post, \n" +" see %(email_validation_faq_url)s\n" +" " -#: skins/default/templates/authopenid/changeemail.html:17 +#: skins/default/templates/blocks/ask_form.html:34 +msgid "Login/signup to post your question" +msgstr "Ingresa/registrate para publicar tu pregunta" + +#: skins/default/templates/blocks/ask_form.html:36 +msgid "Ask your question" +msgstr "Formula tu pregunta" + +#: skins/default/templates/blocks/bottom_scripts.html:7 +#, python-format +msgid "" +"Please note: %(app_name)s requires javascript to work properly, please " +"enable javascript in your browser, here is how" +msgstr "" + +#: skins/default/templates/blocks/editor_data.html:5 #, fuzzy, python-format -msgid "here is why email is required, see %(gravatar_faq_url)s" -msgstr "avatar, ver información %(gravatar_faq_url)s" +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] "las etiquetas deben contener menos de 20 carácteres" +msgstr[1] "las etiquetas deben contener menos de 20 carácteres" -#: skins/default/templates/authopenid/changeemail.html:29 +#: skins/default/templates/blocks/editor_data.html:7 +#, 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 5 etiquetas o menos" +msgstr[1] "por favor, use 5 etiquetas o menos" + +#: skins/default/templates/blocks/editor_data.html:8 +#, fuzzy, python-format +msgid "" +"please use up to %(tag_count)s tags, less than %(max_chars)s characters each" +msgstr "más de 5 etiquetas, con menos de 20 caraácteres cada una" + +#: skins/default/templates/blocks/footer.html:4 +#: skins/default/templates/blocks/header_meta_links.html:12 +msgid "about" +msgstr "acerca de" + +#: skins/default/templates/blocks/footer.html:6 +msgid "privacy policy" +msgstr "políticas de privacidad" + +#: skins/default/templates/blocks/footer.html:15 +msgid "give feedback" +msgstr "enviar sugerencias" + +#: skins/default/templates/blocks/footer.html:41 +#, python-format +msgid "Content on this site is licensed under a %(license)s" +msgstr "" + +#: skins/default/templates/blocks/header.html:8 +msgid "back to home page" +msgstr "volver a inicio" + +#: skins/default/templates/blocks/header.html:9 +#, python-format +msgid "%(site)s logo" +msgstr "" + +#: skins/default/templates/blocks/header.html:20 +msgid "questions" +msgstr "preguntas" + +#: skins/default/templates/blocks/header.html:30 +msgid "users" +msgstr "usuarios" + +#: skins/default/templates/blocks/header.html:35 +msgid "badges" +msgstr "medallas" + +#: skins/default/templates/blocks/header.html:40 +msgid "ask a question" +msgstr "preguntar" + +#: skins/default/templates/blocks/header_meta_links.html:8 +msgid "logout" +msgstr "salir" + +#: skins/default/templates/blocks/header_meta_links.html:10 +msgid "login" +msgstr "ingresar" + +#: skins/default/templates/blocks/header_meta_links.html:15 #, fuzzy -msgid "Your new Email" -msgstr "Tu cuenta de email" +msgid "settings" +msgstr "authsettings/" + +#: skins/default/templates/blocks/input_bar.html:34 +msgid "search" +msgstr "buscar" + +#: skins/default/templates/blocks/question_edit_tips.html:3 +msgid "question tips" +msgstr "tips para preguntar" + +#: skins/default/templates/blocks/question_edit_tips.html:5 +msgid "please ask a relevant question" +msgstr "por favor, haz que tu pregunta sea relevante" + +#: skins/default/templates/blocks/question_edit_tips.html:8 +msgid "please try provide enough details" +msgstr "intenta dar todos los detalles" -#: skins/default/templates/authopenid/changeemail.html:29 -#, fuzzy -msgid "Your Email" -msgstr "no enviar emails" +#: skins/default/templates/blocks/tag_selector.html:4 +msgid "Interesting tags" +msgstr "Etiquetas de interes" -#: skins/default/templates/authopenid/changeemail.html:36 -#, fuzzy -msgid "Save Email" -msgstr "Guardar edición" +#: skins/default/templates/blocks/tag_selector.html:18 +#: skins/default/templates/blocks/tag_selector.html:34 +#: skins/default/templates/user_profile/user_moderate.html:40 +msgid "Add" +msgstr "Agregar" -#: skins/default/templates/authopenid/changeemail.html:45 +#: skins/default/templates/blocks/tag_selector.html:20 +msgid "Ignored tags" +msgstr "Ignorar etiqueta" + +#: skins/default/templates/blocks/tag_selector.html:36 #, fuzzy -msgid "Validate email" -msgstr "Cómo validar una email" +msgid "Display tag filter" +msgstr "Seleccione una etiqueta de filtro para el email" -#: skins/default/templates/authopenid/changeemail.html:48 -#, python-format -msgid "validate %(email)s info or go to %(change_email_url)s" +#: skins/default/templates/main_page/content.html:13 +msgid "Did not find what you were looking for?" msgstr "" -#: skins/default/templates/authopenid/changeemail.html:52 +#: skins/default/templates/main_page/content.html:14 #, fuzzy -msgid "Email not changed" -msgstr "notificaciones por email cancelada" +msgid "Please, post your question!" +msgstr "Formula tu pregunta" -#: skins/default/templates/authopenid/changeemail.html:55 -#, python-format -msgid "old %(email)s kept, if you like go to %(change_email_url)s" -msgstr "" +#: skins/default/templates/main_page/headline.html:7 +msgid "subscribe to the questions feed" +msgstr "suscribirse al feed de esta pregunta" -#: skins/default/templates/authopenid/changeemail.html:59 -msgid "Email changed" +#: skins/default/templates/main_page/headline.html:8 +msgid "rss feed" msgstr "" -#: skins/default/templates/authopenid/changeemail.html:62 -#, python-format -msgid "your current %(email)s can be used for this" -msgstr "" +#: skins/default/templates/main_page/headline.html:12 views/readers.py:131 +#, fuzzy, python-format +msgid "%(q_num)s question, tagged" +msgid_plural "%(q_num)s questions, tagged" +msgstr[0] "nueva pregunta" +msgstr[1] "nueva pregunta" -#: skins/default/templates/authopenid/changeemail.html:66 -msgid "Email verified" -msgstr "" +#: skins/default/templates/main_page/headline.html:14 views/readers.py:139 +#, fuzzy, python-format +msgid "%(q_num)s question" +msgid_plural "%(q_num)s questions" +msgstr[0] "nueva pregunta" +msgstr[1] "nueva pregunta" -#: skins/default/templates/authopenid/changeemail.html:69 -msgid "thanks for verifying email" +#: skins/default/templates/main_page/headline.html:17 +#, python-format +msgid "with %(author_name)s's contributions" msgstr "" -#: skins/default/templates/authopenid/changeemail.html:73 +#: skins/default/templates/main_page/headline.html:28 #, fuzzy -msgid "email key not sent" -msgstr "enviar actualizaciones al usuario" +msgid "Search tips:" +msgstr "Resultados de busqueda" -#: skins/default/templates/authopenid/changeemail.html:76 -#, python-format -msgid "email key not sent %(email)s change email here %(change_link)s" -msgstr "" +#: skins/default/templates/main_page/headline.html:31 +#, fuzzy +msgid "reset author" +msgstr "preguntar al autor" -#: skins/default/templates/authopenid/complete.html:21 -#: skins/default/templates/authopenid/complete.html:24 +#: skins/default/templates/main_page/headline.html:33 +#: skins/default/templates/main_page/headline.html:36 +#: skins/default/templates/main_page/nothing_found.html:18 +#: skins/default/templates/main_page/nothing_found.html:21 #, fuzzy -msgid "Registration" -msgstr "Registrar" +msgid " or " +msgstr "o" -#: skins/default/templates/authopenid/complete.html:29 -#, fuzzy, python-format -msgid "register new %(provider)s account info, see %(gravatar_faq_url)s" -msgstr "avatar, ver información %(gravatar_faq_url)s" +#: skins/default/templates/main_page/headline.html:34 +#, fuzzy +msgid "reset tags" +msgstr "ver las etiquetas" -#: skins/default/templates/authopenid/complete.html:32 -#, 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" -" " +#: skins/default/templates/main_page/headline.html:37 +#: skins/default/templates/main_page/headline.html:40 +msgid "start over" msgstr "" -"must have valid %(email)s to post, \n" -" see %(email_validation_faq_url)s\n" -" " -#: skins/default/templates/authopenid/complete.html:36 -#, python-format -msgid "" -"register new external %(provider)s account info, see %(gravatar_faq_url)s" +#: skins/default/templates/main_page/headline.html:42 +msgid " - to expand, or dig in by adding more tags and revising the query." msgstr "" -#: skins/default/templates/authopenid/complete.html:39 -#, python-format -msgid "register new Facebook connect account info, see %(gravatar_faq_url)s" +#: skins/default/templates/main_page/headline.html:45 +#, fuzzy +msgid "Search tip:" +msgstr "Resultados de busqueda" + +#: skins/default/templates/main_page/headline.html:45 +msgid "add tags and a query to focus your search" msgstr "" -#: skins/default/templates/authopenid/complete.html:42 -msgid "This account already exists, please use another." -msgstr "Esta cuenta ya existe, por favor use otra." +#: skins/default/templates/main_page/nothing_found.html:4 +#, fuzzy +msgid "There are no unanswered questions here" +msgstr "lista de preguntas sin contestar" -#: skins/default/templates/authopenid/complete.html:61 -msgid "Screen name label" -msgstr "Nombre de usuario" +#: skins/default/templates/main_page/nothing_found.html:7 +#, fuzzy +msgid "No questions here. " +msgstr "preguntas favoritas" -#: skins/default/templates/authopenid/complete.html:68 -msgid "Email address label" -msgstr "Dirección de correo electrónico" +#: skins/default/templates/main_page/nothing_found.html:8 +msgid "Please star (bookmark) some questions or follow some users." +msgstr "" -#: skins/default/templates/authopenid/complete.html:74 -#: skins/default/templates/authopenid/signup_with_password.html:17 -msgid "receive updates motivational blurb" -msgstr "recibir actualizaciones de motivación" +#: skins/default/templates/main_page/nothing_found.html:13 +msgid "You can expand your search by " +msgstr "" -#: skins/default/templates/authopenid/complete.html:78 -#: skins/default/templates/authopenid/signup_with_password.html:21 -msgid "please select one of the options above" -msgstr "selecciona una de las siguientes opciones" +#: skins/default/templates/main_page/nothing_found.html:16 +#, fuzzy +msgid "resetting author" +msgstr "preguntar al autor" -#: skins/default/templates/authopenid/complete.html:81 -msgid "Tag filter tool will be your right panel, once you log in." +#: skins/default/templates/main_page/nothing_found.html:19 +#, fuzzy +msgid "resetting tags" +msgstr "Etiquetas de interes" + +#: skins/default/templates/main_page/nothing_found.html:22 +#: skins/default/templates/main_page/nothing_found.html:25 +msgid "starting over" msgstr "" -"Una herramienta para filtrar por etiquetas será mostrada cuando ingreses" -#: skins/default/templates/authopenid/complete.html:82 -msgid "create account" -msgstr "crear cuenta" +#: skins/default/templates/main_page/nothing_found.html:30 +#, fuzzy +msgid "Please always feel free to ask your question!" +msgstr "por favor, haz que tu pregunta sea relevante" -#: skins/default/templates/authopenid/confirm_email.txt:1 -msgid "Thank you for registering at our Q&A forum!" +#: skins/default/templates/main_page/sidebar.html:8 +msgid "Contributors" msgstr "" -#: skins/default/templates/authopenid/confirm_email.txt:3 -#, fuzzy -msgid "Your account details are:" -msgstr "Tu cuenta de email" +#: skins/default/templates/main_page/sidebar.html:25 +msgid "Related tags" +msgstr "Etiquetas relacionadas" -#: skins/default/templates/authopenid/confirm_email.txt:5 +#: skins/default/templates/main_page/tab_bar.html:5 +msgid "In:" +msgstr "" + +#: skins/default/templates/main_page/tab_bar.html:14 #, fuzzy -msgid "Username:" -msgstr "nombr de usuario" +msgid "see unanswered questions" +msgstr "preguntas sin contestar" -#: skins/default/templates/authopenid/confirm_email.txt:6 +#: skins/default/templates/main_page/tab_bar.html:20 #, fuzzy -msgid "Password:" -msgstr "contraseña" +msgid "see your followed questions" +msgstr "preguntas favoritas del usuario" -#: skins/default/templates/authopenid/confirm_email.txt:8 -msgid "Please sign in here:" +#: skins/default/templates/main_page/tab_bar.html:21 +msgid "followed" msgstr "" -#: skins/default/templates/authopenid/confirm_email.txt:11 -#: skins/default/templates/authopenid/email_validation.txt:13 -#, fuzzy -msgid "" -"Sincerely,\n" -"Forum Administrator" +#: skins/default/templates/main_page/tab_bar.html:25 +msgid "Sort by:" msgstr "" -"Sinceramente,
    \n" -" Administrador del Foro" -#: skins/default/templates/authopenid/email_validation.txt:1 -msgid "Greetings from the Q&A forum" -msgstr "Agradecer desde foro de P&R" +#: skins/default/templates/user_profile/user.html:13 +#, fuzzy, python-format +msgid "%(username)s's profile" +msgstr "perfil de usuario" -#: skins/default/templates/authopenid/email_validation.txt:3 -msgid "To make use of the Forum, please follow the link below:" -msgstr "Para usar este foro, ingresa al siguiente enlace:" +#: skins/default/templates/user_profile/user_edit.html:4 +msgid "Edit user profile" +msgstr "Editar perfil de usuario" -#: skins/default/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." +#: skins/default/templates/user_profile/user_edit.html:7 +msgid "edit profile" +msgstr "editar perfil" -#: skins/default/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" -"for any inconvenience" +#: skins/default/templates/user_profile/user_edit.html:17 +#: skins/default/templates/user_profile/user_info.html:15 +msgid "change picture" msgstr "" -"Si crees que este mensaje ha sido enviado por error -\n" -" no es necesario que tomes acción alguna. Solo ignoralo, y disculpa\n" -" por los iconvenientes" -#: skins/default/templates/authopenid/signin.html:3 -msgid "User login" -msgstr "Nombre de usuario" +#: skins/default/templates/user_profile/user_edit.html:20 +msgid "Registered user" +msgstr "Usuario registrado" -#: skins/default/templates/authopenid/signin.html:11 -#, fuzzy, python-format -msgid "" -"\n" -" Your answer to %(title)s %(summary)s will be posted once you log in\n" -" " -msgstr "" -"\n" -" Puedes ajustar la frecuencia de emails recibidos en tu %" -"(profile_url)s\n" -" " +#: skins/default/templates/user_profile/user_edit.html:27 +msgid "Screen Name" +msgstr "Nombre para mostrar" -#: skins/default/templates/authopenid/signin.html:18 -#, fuzzy, python-format -msgid "" -"Your question \n" -" %(title)s %(summary)s will be posted once you log in\n" -" " -msgstr "" -"\n" -" Puedes ajustar la frecuencia de emails recibidos en tu %" -"(profile_url)s\n" -" " +#: skins/default/templates/user_profile/user_edit.html:83 +#: skins/default/templates/user_profile/user_email_subscriptions.html:21 +msgid "Update" +msgstr "Actualizar" -#: skins/default/templates/authopenid/signin.html:25 -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 "" +#: skins/default/templates/user_profile/user_email_subscriptions.html:4 +#: skins/default/templates/user_profile/user_tabs.html:42 +#, fuzzy +msgid "subscriptions" +msgstr "suscripción por email" -#: skins/default/templates/authopenid/signin.html:28 -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 "" +#: skins/default/templates/user_profile/user_email_subscriptions.html:7 +msgid "Email subscription settings" +msgstr "Configuración de suscripciones por email" -#: skins/default/templates/authopenid/signin.html:30 -msgid "" -"Please add a more permanent login method by clicking one of the icons below, " -"to avoid logging in via email each time." -msgstr "" +#: 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/authopenid/signin.html:34 -msgid "" -"Click on one of the icons below to add a new login method or re-validate an " -"existing one." -msgstr "" +#: skins/default/templates/user_profile/user_email_subscriptions.html:22 +msgid "Stop sending email" +msgstr "Detener el envió de emails" -#: skins/default/templates/authopenid/signin.html:36 -msgid "" -"You don't have a method to log in right now, please add one or more by " -"clicking any of the icons below." +#: skins/default/templates/user_profile/user_favorites.html:4 +#: skins/default/templates/user_profile/user_tabs.html:27 +#, fuzzy +msgid "followed questions" +msgstr "Todas las preguntas" + +#: skins/default/templates/user_profile/user_inbox.html:18 +#: skins/default/templates/user_profile/user_tabs.html:12 +msgid "inbox" msgstr "" -#: skins/default/templates/authopenid/signin.html:39 -msgid "" -"Please check your email and visit the enclosed link to re-connect to your " -"account" +#: skins/default/templates/user_profile/user_inbox.html:34 +#, fuzzy +msgid "Sections:" +msgstr "preguntas" + +#: skins/default/templates/user_profile/user_inbox.html:38 +#, python-format +msgid "forum responses (%(re_count)s)" msgstr "" -#: skins/default/templates/authopenid/signin.html:86 -msgid "Please enter your user name, then sign in" +#: skins/default/templates/user_profile/user_inbox.html:43 +#, python-format +msgid "flagged items (%(flag_count)s)" msgstr "" -#: skins/default/templates/authopenid/signin.html:87 -#: skins/default/templates/authopenid/signin.html:109 +#: skins/default/templates/user_profile/user_inbox.html:49 #, fuzzy -msgid "(or select another login method above)" -msgstr "selecciona una de las siguientes opciones" +msgid "select:" +msgstr "eliminar" -#: skins/default/templates/authopenid/signin.html:89 +#: skins/default/templates/user_profile/user_inbox.html:51 #, fuzzy -msgid "Sign in" -msgstr "ingresar/" +msgid "seen" +msgstr "últimas visita" -#: skins/default/templates/authopenid/signin.html:107 +#: skins/default/templates/user_profile/user_inbox.html:52 #, fuzzy -msgid "Please enter your user name and password, then sign in" -msgstr "Ingrese su nombre de usuario y contraseña." - -#: skins/default/templates/authopenid/signin.html:111 -msgid "Login failed, please try again" -msgstr "" +msgid "new" +msgstr "nuevas" -#: skins/default/templates/authopenid/signin.html:114 +#: skins/default/templates/user_profile/user_inbox.html:53 #, fuzzy -msgid "Login name" -msgstr "Ingresar ahora!" +msgid "none" +msgstr "hecho/" -#: skins/default/templates/authopenid/signin.html:118 +#: skins/default/templates/user_profile/user_inbox.html:54 #, fuzzy -msgid "Password" -msgstr "contraseña" +msgid "mark as seen" +msgstr "últimas visita" -#: skins/default/templates/authopenid/signin.html:122 +#: skins/default/templates/user_profile/user_inbox.html:55 #, fuzzy -msgid "Login" -msgstr "ingresar" +msgid "mark as new" +msgstr "la mejor respuesta fue marcada" -#: skins/default/templates/authopenid/signin.html:129 -msgid "To change your password - please enter the new one twice, then submit" +#: skins/default/templates/user_profile/user_inbox.html:56 +msgid "dismiss" msgstr "" -#: skins/default/templates/authopenid/signin.html:132 -#, fuzzy -msgid "New password" -msgstr "Seleccionar nueva contraseña" +#: skins/default/templates/user_profile/user_info.html:19 +msgid "remove" +msgstr "remover" -#: skins/default/templates/authopenid/signin.html:137 -#, fuzzy -msgid "Please, retype" -msgstr "por favor, re-escribe tu contraseña" +#: skins/default/templates/user_profile/user_info.html:36 +msgid "update profile" +msgstr "actualizar perfil" -#: skins/default/templates/authopenid/signin.html:156 -msgid "Here are your current login methods" +#: skins/default/templates/user_profile/user_info.html:40 +msgid "manage login methods" msgstr "" -#: skins/default/templates/authopenid/signin.html:160 -#, fuzzy -msgid "provider" -msgstr "proveedores/" +#: skins/default/templates/user_profile/user_info.html:53 +msgid "real name" +msgstr "nombre real" -#: skins/default/templates/authopenid/signin.html:161 -#, fuzzy -msgid "last used" +#: skins/default/templates/user_profile/user_info.html:58 +msgid "member for" +msgstr "miembro desde" + +#: skins/default/templates/user_profile/user_info.html:63 +msgid "last seen" msgstr "últimas visita" -#: skins/default/templates/authopenid/signin.html:162 -msgid "delete, if you like" -msgstr "" +#: skins/default/templates/user_profile/user_info.html:69 +msgid "user website" +msgstr "sitio web del usuario" + +#: skins/default/templates/user_profile/user_info.html:75 +msgid "location" +msgstr "localización" + +#: skins/default/templates/user_profile/user_info.html:82 +msgid "age" +msgstr "edad" + +#: skins/default/templates/user_profile/user_info.html:83 +msgid "age unit" +msgstr "medida de unidad" + +#: skins/default/templates/user_profile/user_info.html:90 +msgid "todays unused votes" +msgstr "votos no utilizados el día de hoy" + +#: skins/default/templates/user_profile/user_info.html:91 +msgid "votes left" +msgstr "votos restantes" -#: skins/default/templates/authopenid/signin.html:187 +#: skins/default/templates/user_profile/user_moderate.html:4 +#: skins/default/templates/user_profile/user_tabs.html:48 #, fuzzy -msgid "Still have trouble signing in?" -msgstr "si estas teniendo problemas para ingresar." +msgid "moderation" +msgstr "Localización" -#: skins/default/templates/authopenid/signin.html:192 -msgid "Please, enter your email address below and obtain a new key" +#: skins/default/templates/user_profile/user_moderate.html:8 +#, python-format +msgid "%(username)s's current status is \"%(status)s\"" msgstr "" -#: skins/default/templates/authopenid/signin.html:194 -msgid "Please, enter your email address below to recover your account" +#: skins/default/templates/user_profile/user_moderate.html:11 +msgid "User status changed" msgstr "" -#: skins/default/templates/authopenid/signin.html:197 +#: skins/default/templates/user_profile/user_moderate.html:20 #, fuzzy -msgid "recover your account via email" -msgstr "Obtener una nueva contraseña" +msgid "Save" +msgstr "Guardar edición" -#: skins/default/templates/authopenid/signin.html:208 -msgid "Send a new recovery key" +#: skins/default/templates/user_profile/user_moderate.html:26 +#, python-format +msgid "Your current reputation is %(reputation)s points" msgstr "" -#: skins/default/templates/authopenid/signin.html:210 -#, fuzzy -msgid "Recover your account via email" -msgstr "Obtener una nueva contraseña" +#: skins/default/templates/user_profile/user_moderate.html:28 +#, python-format +msgid "User's current reputation is %(reputation)s points" +msgstr "" -#: skins/default/templates/authopenid/signin.html:221 -msgid "Why use OpenID?" -msgstr "Por que usar OpenID?" +#: skins/default/templates/user_profile/user_moderate.html:32 +#, fuzzy +msgid "User reputation changed" +msgstr "reputación del usuario en la comunidad" -#: skins/default/templates/authopenid/signin.html:224 -msgid "with openid it is easier" -msgstr "con OpenID es más fácil" +#: skins/default/templates/user_profile/user_moderate.html:39 +msgid "Subtract" +msgstr "" -#: skins/default/templates/authopenid/signin.html:227 -msgid "reuse openid" -msgstr "re-usar openid" +#: skins/default/templates/user_profile/user_moderate.html:44 +#, python-format +msgid "Send message to %(username)s" +msgstr "" -#: skins/default/templates/authopenid/signin.html:230 -msgid "openid is widely adopted" -msgstr "openID es ampliamente adoptado" +#: skins/default/templates/user_profile/user_moderate.html:45 +msgid "" +"An email will be sent to the user with 'reply-to' field set to your email " +"address. Please make sure that your address is entered correctly." +msgstr "" -#: skins/default/templates/authopenid/signin.html:233 -msgid "openid is supported open standard" -msgstr "openID es un estándar abierto" +#: skins/default/templates/user_profile/user_moderate.html:47 +#, fuzzy +msgid "Message sent" +msgstr "mensajes/" -#: skins/default/templates/authopenid/signin.html:237 -msgid "Find out more" -msgstr "Para saber más" +#: skins/default/templates/user_profile/user_moderate.html:65 +#, fuzzy +msgid "Send message" +msgstr "mensajes/" -#: skins/default/templates/authopenid/signin.html:238 -msgid "Get OpenID" -msgstr "Obetener OpenID" +#: skins/default/templates/user_profile/user_moderate.html:75 +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 "" -#: skins/default/templates/authopenid/signup_with_password.html:3 -msgid "Signup" -msgstr "Darte de alta" +#: skins/default/templates/user_profile/user_moderate.html:78 +msgid "" +"Moderators have the same privileges as administrators, but cannot add or " +"remove user status of 'moderator' or 'administrator'." +msgstr "" -#: skins/default/templates/authopenid/signup_with_password.html:6 -msgid "Create login name and password" -msgstr "Crear nombre de usuario y contraseña" +#: skins/default/templates/user_profile/user_moderate.html:81 +msgid "'Approved' status means the same as regular user." +msgstr "" -#: skins/default/templates/authopenid/signup_with_password.html:8 -msgid "Traditional signup info" -msgstr "Registro tradicional" +#: skins/default/templates/user_profile/user_moderate.html:84 +#, fuzzy +msgid "Suspended users can only edit or delete their own 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." -#: skins/default/templates/authopenid/signup_with_password.html:24 +#: skins/default/templates/user_profile/user_moderate.html:87 msgid "" -"Please read and type in the two words below to help us prevent automated " -"account creation." +"Blocked users can only login and send feedback to the site administrators." msgstr "" -#: skins/default/templates/authopenid/signup_with_password.html:26 -msgid "Create Account" -msgstr "Crear cuenta" +#: skins/default/templates/user_profile/user_network.html:5 +#: skins/default/templates/user_profile/user_tabs.html:18 +msgid "network" +msgstr "" -#: skins/default/templates/authopenid/signup_with_password.html:27 -msgid "or" -msgstr "o" +#: 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[1] "" + +#: 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[1] "" + +#: skins/default/templates/user_profile/user_network.html:19 +msgid "" +"Your network is empty. Would you like to follow someone? - Just visit their " +"profiles and click \"follow\"" +msgstr "" + +#: skins/default/templates/user_profile/user_network.html:21 +#, fuzzy, python-format +msgid "%(username)s's network is empty" +msgstr "perfil de usuario" -#: skins/default/templates/authopenid/signup_with_password.html:28 +#: skins/default/templates/user_profile/user_recent.html:4 +#: skins/default/templates/user_profile/user_tabs.html:31 #, fuzzy -msgid "return to OpenID login" -msgstr "regresar a la pagina de ingreso" +msgid "activity" +msgstr "activa" -#: skins/default/templates/unused/email_base.html:8 -msgid "home" -msgstr "inicio" +#: skins/default/templates/user_profile/user_recent.html:21 +#: skins/default/templates/user_profile/user_recent.html:28 +msgid "source" +msgstr "" -#: skins/default/templates/unused/notarobot.html:3 -msgid "Please prove that you are a Human Being" -msgstr "Demuestranos que eres humano de verdad" +#: skins/default/templates/user_profile/user_reputation.html:4 +msgid "karma" +msgstr "" -#: skins/default/templates/unused/notarobot.html:10 -msgid "I am a Human Being" -msgstr "Soy un humano de verdad" +#: skins/default/templates/user_profile/user_reputation.html:11 +#, fuzzy +msgid "Your karma change log." +msgstr "Tu contraseña ha sido cambiada." -#: skins/default/templates/unused/question_counter_widget.html:78 -msgid "Please decide if you like this question or not by voting" +#: skins/default/templates/user_profile/user_reputation.html:13 +#, python-format +msgid "%(user_name)s's karma change log" msgstr "" -#: skins/default/templates/unused/question_counter_widget.html:84 -msgid "" -"\n" -" vote\n" -" " -msgid_plural "" -"\n" -" votes\n" -" " +#: skins/default/templates/user_profile/user_stats.html:5 +#: skins/default/templates/user_profile/user_tabs.html:7 +msgid "overview" +msgstr "descripción general" + +#: skins/default/templates/user_profile/user_stats.html:11 +#, python-format +msgid "%(counter)s Question" +msgid_plural "%(counter)s Questions" msgstr[0] "" msgstr[1] "" -#: skins/default/templates/unused/question_counter_widget.html:93 -#: skins/default/templates/unused/question_list.html:23 -#: skins/default/templates/unused/questions_ajax.html:27 -msgid "this answer has been accepted to be correct" -msgstr "Esta respuesta ha sido aceptada como la correcta" - -#: skins/default/templates/unused/question_counter_widget.html:99 -msgid "" -"\n" -" answer \n" -" " -msgid_plural "" -"\n" -" answers \n" -" " +#: skins/default/templates/user_profile/user_stats.html:16 +#, python-format +msgid "%(counter)s Answer" +msgid_plural "%(counter)s Answers" msgstr[0] "" msgstr[1] "" -#: skins/default/templates/unused/question_counter_widget.html:111 -msgid "" -"\n" -" view\n" -" " -msgid_plural "" -"\n" -" views\n" -" " +#: skins/default/templates/user_profile/user_stats.html:24 +#, fuzzy, python-format +msgid "the answer has been voted for %(answer_score)s times" +msgstr "la respuesta ha sido votada %(vote_count)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)" +msgid_plural "the answer has been commented %(comment_count)s times" msgstr[0] "" msgstr[1] "" -#: skins/default/templates/unused/question_list.html:15 -msgid "" -"\n" -" vote\n" -" " -msgid_plural "" -"\n" -" votes\n" -" " +#: skins/default/templates/user_profile/user_stats.html:44 +#, python-format +msgid "%(cnt)s Vote" +msgid_plural "%(cnt)s Votes " msgstr[0] "" msgstr[1] "" -#: skins/default/templates/unused/question_list.html:35 -msgid "" -"\n" -" answer \n" -" " -msgid_plural "" -"\n" -" answers \n" -" " +#: skins/default/templates/user_profile/user_stats.html:50 +msgid "thumb up" +msgstr "pulgar hacia arriba" + +#: skins/default/templates/user_profile/user_stats.html:51 +msgid "user has voted up this many times" +msgstr "usuarios han votado positivo esto varias veces" + +#: skins/default/templates/user_profile/user_stats.html:54 +msgid "thumb down" +msgstr "pulgar hacia abajo" + +#: skins/default/templates/user_profile/user_stats.html:55 +msgid "user voted down this many times" +msgstr "usuarios han votado negativo esto varias veces" + +#: skins/default/templates/user_profile/user_stats.html:63 +#, python-format +msgid "%(counter)s Tag" +msgid_plural "%(counter)s Tags" msgstr[0] "" msgstr[1] "" -#: skins/default/templates/unused/question_list.html:47 -msgid "" -"\n" -" view\n" -" " -msgid_plural "" -"\n" -" views\n" -" " +#: skins/default/templates/user_profile/user_stats.html:99 +#, python-format +msgid "%(counter)s Badge" +msgid_plural "%(counter)s Badges" msgstr[0] "" msgstr[1] "" -#: skins/default/templates/unused/question_summary_list_roll.html:13 -msgid "answers" -msgstr "respuestas" +#: skins/default/templates/user_profile/user_stats.html:122 +#, fuzzy +msgid "Answer to:" +msgstr "responder tips" -#: skins/default/templates/unused/question_summary_list_roll.html:14 -msgid "votes" -msgstr "votos" +#: skins/default/templates/user_profile/user_tabs.html:5 +msgid "User profile" +msgstr "Pefil de usuario" -#: skins/default/templates/unused/question_summary_list_roll.html:15 -msgid "views" -msgstr "vistas" +#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:772 +msgid "comments and answers to others questions" +msgstr "comentar y responder otras preguntas" -#: templatetags/extra_filters.py:168 templatetags/extra_filters_jinja.py:234 -msgid "no items in counter" +#: skins/default/templates/user_profile/user_tabs.html:16 +msgid "followers and followed users" msgstr "" -#: templatetags/extra_tags.py:155 views/readers.py:187 -#, python-format -msgid "%(badge_count)d %(badge_level)s badge" -msgid_plural "%(badge_count)d %(badge_level)s badges" -msgstr[0] "" -msgstr[1] "" +#: skins/default/templates/user_profile/user_tabs.html:21 +msgid "graph of user reputation" +msgstr "grafica de la reputación de este usuario" -#: templatetags/extra_tags.py:178 templatetags/extra_tags.py:225 -#: templatetags/extra_tags.py:229 -msgid "reputation points" -msgstr "puntos de reputación" +#: skins/default/templates/user_profile/user_tabs.html:23 +msgid "reputation history" +msgstr "historial de reputación" -#: templatetags/extra_tags.py:221 -#, python-format -msgid "your karma is %(reputation)s" -msgstr "" +#: skins/default/templates/user_profile/user_tabs.html:25 +#, fuzzy +msgid "questions that user is following" +msgstr "preguntas que el usuario seleccione como su favorito" + +#: 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:847 +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_tabs.html:40 views/users.py:960 +msgid "email subscription settings" +msgstr "configuraciones de suscripción por email" -#: templatetags/extra_tags.py:237 +#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:224 #, fuzzy -msgid "badges: " -msgstr "medallas" +msgid "moderate this user" +msgstr "Moderar este usuario" + +#: skins/default/templates/user_profile/user_votes.html:4 +msgid "votes" +msgstr "votos" + +#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:240 +msgid "no items in counter" +msgstr "" -#: utils/decorators.py:82 views/commands.py:132 views/commands.py:149 +#: utils/decorators.py:90 views/commands.py:112 views/commands.py:132 msgid "Oops, apologies - there was some error" msgstr "" +#: utils/decorators.py:109 +msgid "Please login to post" +msgstr "" + +#: utils/decorators.py:205 +msgid "Spam was detected on your post, sorry for if this is a mistake" +msgstr "" + #: utils/forms.py:32 msgid "this field is required" msgstr "este campo es requerido" @@ -5309,103 +6260,129 @@ msgid "sorry, entered passwords did not match, please try again" msgstr "" "lo sentimos, las contraseñas que haz ingresado no coinciden, intenta de nuevo" -#: utils/functions.py:63 -#, python-format -msgid "on %(date)s" -msgstr "" - -#: utils/functions.py:67 +#: utils/functions.py:74 msgid "2 days ago" msgstr "2 días atrás" -#: utils/functions.py:69 +#: utils/functions.py:76 msgid "yesterday" msgstr "ayer" -#: utils/functions.py:71 +#: utils/functions.py:79 #, python-format msgid "%(hr)d hour ago" msgid_plural "%(hr)d hours ago" msgstr[0] "" msgstr[1] "" -#: utils/functions.py:73 +#: utils/functions.py:85 #, python-format msgid "%(min)d min ago" msgid_plural "%(min)d mins ago" msgstr[0] "" msgstr[1] "" -#: views/commands.py:42 +#: views/avatar_views.py:99 +msgid "Successfully uploaded a new avatar." +msgstr "" + +#: views/avatar_views.py:140 +msgid "Successfully updated your avatar." +msgstr "" + +#: views/avatar_views.py:180 +msgid "Successfully deleted the requested avatars." +msgstr "" + +#: views/commands.py:39 msgid "anonymous users cannot vote" msgstr "usuarios anónimos no pueden votar" -#: views/commands.py:62 +#: views/commands.py:59 msgid "Sorry you ran out of votes for today" msgstr "" -#: views/commands.py:68 +#: views/commands.py:65 #, python-format msgid "You have %(votes_left)s votes left for today" msgstr "" -#: views/commands.py:139 +#: views/commands.py:122 #, fuzzy msgid "Sorry, but anonymous users cannot access the inbox" msgstr "usuarios anónimos no pueden votar" -#: views/commands.py:209 +#: views/commands.py:192 msgid "Sorry, something is not right here..." msgstr "" -#: views/commands.py:224 +#: views/commands.py:207 #, fuzzy msgid "Sorry, but anonymous users cannot accept answers" msgstr "usuarios anónimos no pueden votar" -#: views/commands.py:305 +#: views/commands.py:288 #, 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" +"subscrición guardada, necesitamos una validación de %(email)s , mira " +"%(details_url)s" -#: views/commands.py:313 +#: views/commands.py:295 msgid "email update frequency has been set to daily" msgstr "la frecuencia de notificaciones por email ha sido cambiada a diario" -#: views/commands.py:371 +#: views/commands.py:400 +#, python-format +msgid "Tag subscription was canceled (
    undo)." +msgstr "" + +#: views/commands.py:409 +#, python-format +msgid "Please sign in to subscribe for: %(tags)s" +msgstr "" + +#: views/commands.py:542 #, fuzzy -msgid "Bad request" -msgstr "Validación incorrecta" +msgid "Please sign in to vote" +msgstr "más votado" -#: views/meta.py:58 +#: views/meta.py:83 msgid "Q&A forum feedback" msgstr "Foro de sugerencias" -#: views/meta.py:59 +#: views/meta.py:84 msgid "Thanks for the feedback!" msgstr "Gracias por tus sugerencias" -#: views/meta.py:69 +#: views/meta.py:92 msgid "We look forward to hearing your feedback! Please, give it next time :)" msgstr "Esperamos con interés escuchar sus comentarios! :)" -#: views/readers.py:432 +#: views/readers.py:177 +#, 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:441 #, fuzzy -msgid "Sorry, this question has been deleted and is no longer accessible" +msgid "" +"Sorry, the comment you are looking for has been deleted and is no longer " +"accessible" msgstr "esta pregunta ha sido seleccionada como la favorita" -#: views/users.py:217 +#: views/users.py:225 #, fuzzy msgid "moderate user" msgstr "moderar-usuario/" -#: views/users.py:401 +#: views/users.py:380 msgid "user profile" msgstr "perfil de usuario" -#: views/users.py:402 +#: views/users.py:381 msgid "user profile overview" msgstr "vista del perfil de usuario" @@ -5417,87 +6394,386 @@ msgstr "actividad reciente del usuario" msgid "profile - recent activity" msgstr "perfil - actividad reciente" -#: views/users.py:754 +#: views/users.py:773 msgid "profile - responses" msgstr "perfil - respuestas" -#: views/users.py:819 +#: views/users.py:848 msgid "profile - votes" msgstr "pefil - votos" -#: views/users.py:857 +#: views/users.py:883 msgid "user reputation in the community" msgstr "reputación del usuario en la comunidad" -#: views/users.py:858 +#: views/users.py:884 msgid "profile - user reputation" msgstr "perfil - reputación del usuario" -#: views/users.py:886 +#: views/users.py:911 msgid "users favorite questions" msgstr "preguntas favoritas del usuario" -#: views/users.py:887 +#: views/users.py:912 msgid "profile - favorite questions" msgstr "pefil - preguntas favoritas" -#: views/users.py:907 views/users.py:911 +#: views/users.py:932 views/users.py:936 msgid "changes saved" msgstr "cambios guardados" -#: views/users.py:917 +#: views/users.py:942 msgid "email updates canceled" msgstr "notificaciones por email cancelada" -#: views/users.py:929 +#: views/users.py:961 msgid "profile - email subscriptions" msgstr "perfil - notificación por email" -#: views/writers.py:56 +#: views/writers.py:58 #, fuzzy msgid "Sorry, anonymous users cannot upload files" msgstr "usuarios anónimos no pueden votar" -#: views/writers.py:65 +#: views/writers.py:68 #, python-format msgid "allowed file types are '%(file_types)s'" msgstr "" -#: views/writers.py:88 +#: views/writers.py:91 #, python-format msgid "maximum upload file size is %(file_size)sK" msgstr "" -#: views/writers.py:96 +#: views/writers.py:99 #, fuzzy msgid "Error uploading file. Please contact the site administrator. Thank you." msgstr "" "Error al subir el archivo. Por favor contacte el administrador del sitio. " "Gracias. %s" -#: views/writers.py:452 +#: views/writers.py:191 +#, fuzzy +msgid "Please log in to ask questions" +msgstr "por favor, haz que tu pregunta sea relevante" + +#: views/writers.py:492 +#, fuzzy +msgid "Please log in to answer questions" +msgstr "preguntas sin contestar" + +#: views/writers.py:598 #, python-format msgid "" "Sorry, you appear to be logged out and cannot post comments. Please sign in." msgstr "" -#: views/writers.py:497 +#: views/writers.py:646 #, fuzzy msgid "Sorry, anonymous users cannot edit comments" msgstr "usuarios anónimos no pueden votar" -#: views/writers.py:505 +#: views/writers.py:654 #, python-format msgid "" "Sorry, you appear to be logged out and cannot delete comments. Please sign in." msgstr "" -#: views/writers.py:526 +#: views/writers.py:675 msgid "sorry, we seem to have some technical difficulties" msgstr "" +#~ msgid "community wiki" +#~ msgstr "wiki" + +#~ msgid "Location" +#~ msgstr "Localización" + +#~ msgid "command/" +#~ msgstr "comando/" + +#~ msgid "mark-tag/" +#~ msgstr "marcar-etiqueta/" + +#~ msgid "interesting/" +#~ msgstr "interesante/" + +#~ msgid "ignored/" +#~ msgstr "ignorada/" + +#~ msgid "unmark-tag/" +#~ msgstr "desmarcar-etiqueta/" + +#~ msgid "search/" +#~ msgstr "buscar/" + +#, fuzzy +#~ msgid "Askbot" +#~ msgstr "Acerca de" + +#~ msgid "allow only selected tags" +#~ msgstr "permitir unicamente etiquetas seleccionadas" + +#~ msgid "First time here? Check out the FAQ!" +#~ msgstr "" +#~ "Primera vez? Lee nuestra Preguntas Mas Frecuentes!" + +#, fuzzy +#~ msgid "newquestion/" +#~ msgstr "nueva pregunta" + +#, fuzzy +#~ msgid "newanswer/" +#~ msgstr "responder/" + +#, fuzzy +#~ msgid "MyOpenid user name" +#~ msgstr "por nombre de usuario" + +#, fuzzy +#~ msgid "Email verification subject line" +#~ msgstr "Configuración de suscripciones por email" + +#, fuzzy +#~ msgid "Invalid request" +#~ msgstr "Validación incorrecta" + +#, fuzzy +#~ msgid "Deleted own post with score of 3 or higher" +#~ msgstr "Eliminó su propio post con %s puntos o superior" + +#, fuzzy +#~ msgid "nice-answer" +#~ msgstr "respuesta" + +#, fuzzy +#~ msgid "nice-question" +#~ msgstr "nueva pregunta" + +#, fuzzy +#~ msgid "pundit" +#~ msgstr "editar" + +#, fuzzy +#~ msgid "popular-question" +#~ msgstr "pregunta" + +#, fuzzy +#~ msgid "editor" +#~ msgstr "editar" + +#, fuzzy +#~ msgid "organizer" +#~ msgstr "Tu respuesta" + +#, fuzzy +#~ msgid "supporter" +#~ msgstr "voto positivo" + +#, fuzzy +#~ msgid "teacher" +#~ msgstr "buscar" + +#~ msgid "Answered first question with at least one up vote" +#~ msgstr "La primera pregunta respondió con al menos un voto" + +#, fuzzy +#~ msgid "great-answer" +#~ msgstr "respuesta" + +#, fuzzy +#~ msgid "Answer voted up 100 times" +#~ msgstr "Respuesta votada %s veces" + +#, fuzzy +#~ msgid "great-question" +#~ msgstr "re-etiquetar preguntas" + +#, fuzzy +#~ msgid "Question voted up 100 times" +#~ msgstr "Pregunta votada %s veces" + +#, fuzzy +#~ msgid "stellar-question" +#~ msgstr "ver todas las preguntas" + +#, fuzzy +#~ msgid "Question favorited by 100 users" +#~ msgstr "Pregunta marcada como favorita por %s usuarios" + +#, fuzzy +#~ msgid "famous-question" +#~ msgstr "pregunta" + +#, fuzzy +#~ msgid "Asked a question with 10,000 views" +#~ msgstr "Hizo una pregunta con %s visitas" + +#, fuzzy +#~ msgid "good-answer" +#~ msgstr "respuesta" + +#, fuzzy +#~ msgid "Answer voted up 25 times" +#~ msgstr "Respuesta votada %s veces" + +#, fuzzy +#~ msgid "good-question" +#~ msgstr "pregunta" + +#, fuzzy +#~ msgid "Question voted up 25 times" +#~ msgstr "Pregunta votada %s veces" + +#, fuzzy +#~ msgid "favorite-question" +#~ msgstr "preguntas favoritas" + +#~ msgid "Strunk & White" +#~ msgstr "Strunk & White" + +#, fuzzy +#~ msgid "strunk-and-white" +#~ msgstr "Strunk & White" + +#, fuzzy +#~ msgid "expert" +#~ msgstr "texto" + +#, fuzzy +#~ msgid "notable-question" +#~ msgstr "nueva pregunta" + +#, fuzzy +#~ msgid "Asked a question with 2,500 views" +#~ msgstr "Hizo una pregunta con %s visitas" + +#, fuzzy +#~ msgid "Accepted answer and voted up 40 times" +#~ msgstr "Respuesta acetada y votada %s veces" + +#~ msgid "About" +#~ msgstr "Acerca de" + +#, fuzzy +#~ msgid "" +#~ "must have valid %(email)s to post, \n" +#~ " see %(email_validation_faq_url)s\n" +#~ " " +#~ msgstr "" +#~ "must have valid %(email)s to post, \n" +#~ " see %(email_validation_faq_url)s\n" +#~ " " + +#~ msgid "how to validate email title" +#~ msgstr "Cómo validar una email" + +#, fuzzy +#~ msgid "" +#~ "how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)" +#~ "s" +#~ msgstr "" +#~ "como validar una email con %(send_email_key_url)s %(gravatar_faq_url)s" + +#~ msgid "." +#~ msgstr "." + +#, fuzzy +#~ msgid "Sender is" +#~ msgstr "Enviar enlace" + +#~ msgid "" +#~ "As a registered user you can login with your OpenID, log out of the site " +#~ "or permanently remove your account." +#~ msgstr "" +#~ "Como usuario registrado, puedes ingresar con tu perfil OpenID, salir del " +#~ "sitio o eliminar permanentemente tu cuenta." + +#~ msgid "Logout now" +#~ msgstr "Salir ahora" + +#~ msgid "mark this question as favorite (click again to cancel)" +#~ msgstr "marcar esta pregunta como favorita (clic de nuevo para cancelar)" + +#~ msgid "" +#~ "remove favorite mark from this question (click again to restore mark)" +#~ msgstr "" +#~ "remover la marca de favorito de esta pregunta (clic de nuevo para " +#~ "restaurar marca)" + +#~ msgid "see questions tagged '%(tag_name)s'" +#~ msgstr "ver etiquetas de la pregunta '%(tag_name)s'" + +#, fuzzy +#~ msgid "tagged" +#~ msgstr "re-etiquetado" + +#~ msgid "remove '%(tag_name)s' from the list of interesting tags" +#~ msgstr "remover '%(tag_name)s' de la lista de etiquetas interesante" + +#~ msgid "remove '%(tag_name)s' from the list of ignored tags" +#~ msgstr "remover '%(tag_name)s' de la lista de etiquetas ignoradas" + +#~ msgid "keep ignored questions hidden" +#~ msgstr "mantener ocultas las etiquetas ignoradas" + +#, fuzzy +#~ msgid "" +#~ "see other questions with %(view_user)s's contributions tagged '%(tag_name)" +#~ "s' " +#~ msgstr "" +#~ "ver otras preguntas con %(view_user)s's que ha etiquetado con '%(tag_name)" +#~ "s' " + +#~ msgid "favorites" +#~ msgstr "favoritos" + +#, fuzzy +#~ msgid "this questions was selected as favorite %(cnt)s time" +#~ msgid_plural "this questions was selected as favorite %(cnt)s times" +#~ msgstr[0] "esta pregunta ha sido seleccionada como favorita" +#~ msgstr[1] "esta pregunta ha sido seleccionada como favorita" + +#, fuzzy +#~ msgid "thumb-up on" +#~ msgstr "thumb-up on" + +#, fuzzy +#~ msgid "thumb-up off" +#~ msgstr "thumb-up off" + +#, fuzzy +#~ msgid "Login name" +#~ msgstr "Ingresar ahora!" + +#~ msgid "home" +#~ msgstr "inicio" + +#~ msgid "Please prove that you are a Human Being" +#~ msgstr "Demuestranos que eres humano de verdad" + +#~ msgid "I am a Human Being" +#~ msgstr "Soy un humano de verdad" + +#~ msgid "this answer has been accepted to be correct" +#~ msgstr "Esta respuesta ha sido aceptada como la correcta" + +#~ msgid "views" +#~ msgstr "vistas" + +#~ msgid "reputation points" +#~ msgstr "puntos de reputación" + +#, fuzzy +#~ msgid "badges: " +#~ msgstr "medallas" + +#, fuzzy +#~ msgid "Bad request" +#~ msgstr "Validación incorrecta" + #~ msgid "comments/" #~ msgstr "comentarios/" @@ -5556,10 +6832,6 @@ msgstr "" #~ msgid "OpenID %s is now associated with your account." #~ msgstr "Las nuevas credenciales están ahora asociadas con tu cuenta." -#, fuzzy -#~ msgid "Account deleted." -#~ msgstr "revivir" - #, fuzzy #~ msgid "Request for new password" #~ msgstr "Crear contraseña" @@ -5617,25 +6889,12 @@ msgstr "" #~ msgid "Change openid associated to your account" #~ msgstr "Cambiar el OpenID asociado a tu cuenta" -#~ msgid "Delete account" -#~ msgstr "Eliminar cuenta" - #~ msgid "Erase your username and all your data from website" #~ msgstr "Eliminar tu nombre de usuario y todos tus datos de este sitio" #~ msgid "toggle preview" #~ msgstr "Vista preliminar" -#, fuzzy -#~ msgid "" -#~ "must have valid %(email)s to post, \n" -#~ " see %(email_validation_faq_url)s\n" -#~ " " -#~ msgstr "" -#~ "must have valid %(email)s to post, \n" -#~ " see %(email_validation_faq_url)s\n" -#~ " " - #~ msgid "reading channel" #~ msgstr "leyendo canal" @@ -5744,29 +7003,6 @@ msgstr "" #~ msgid "Unanswered questions" #~ msgstr "Preguntas sin responder" -#~ msgid "All questions" -#~ msgstr "Todas las preguntas" - -#, fuzzy -#~ msgid "click to see the newest questions" -#~ msgstr "ver las últimas preguntas" - -#, fuzzy -#~ msgid "click to see the oldest questions" -#~ msgstr "ver las últimas preguntas" - -#, fuzzy -#~ msgid "click to see the most recently updated questions" -#~ msgstr "últimas preguntas actualizadas" - -#, fuzzy -#~ msgid "click to see the least recently updated questions" -#~ msgstr "últimas preguntas actualizadas" - -#, fuzzy -#~ msgid "click to see hottest questions" -#~ msgstr "preguntas calientes" - #, fuzzy #~ msgid "less answers" #~ msgstr "antiguar respuestas" @@ -5779,18 +7015,10 @@ msgstr "" #~ msgid "more answers" #~ msgstr "Tu respuesta" -#, fuzzy -#~ msgid "click to see most voted questions" -#~ msgstr "preguntas más votadas" - #, fuzzy #~ msgid "unpopular" #~ msgstr "etiquetas populars" -#, fuzzy -#~ msgid "click to see least voted questions" -#~ msgstr "preguntas más votadas" - #, fuzzy #~ msgid "popular" #~ msgstr "etiquetas populars" @@ -5798,9 +7026,6 @@ msgstr "" #~ msgid "Open the previously closed question" #~ msgstr "Abrir pregunta previamente cerrada" -#~ msgid "The question was closed for the following reason " -#~ msgstr "La pregunta se cerro por las siguientes razones" - #~ msgid "reason - leave blank in english" #~ msgstr "razones" @@ -5893,9 +7118,6 @@ msgstr "" #~ msgid "books/" #~ msgstr "libros/" -#~ msgid "is not an answer to the question" -#~ msgstr "no es una respuesa a la pregunta" - #~ msgid "" #~ "please use following characters in tags: letters 'a-z', numbers, and " #~ "characters '.-_#'" @@ -5921,9 +7143,6 @@ msgstr "" #~ msgid "using tags" #~ msgstr "usando las siguientes etiquetas" -#~ msgid "administration" -#~ msgstr "administración" - #~ msgid "last updated questions" #~ msgstr "últimas respuestas" @@ -5954,9 +7173,6 @@ msgstr "" #~ msgid "number - make blank in english" #~ msgstr "numero" -#~ msgid "most recently asked questions" -#~ msgstr "últimas preguntas respondidas" - #~ msgid "Questions are sorted by the time of last update." #~ msgstr "" #~ "Las preguntas han sido ordenadas según el tiempo de su última " @@ -5995,9 +7211,6 @@ msgstr "" #~ msgstr "" #~ "Estos son los proveedores de autenticación externa asociada a su cuenta." -#~ msgid "remove" -#~ msgstr "remover" - #~ msgid "" #~ "You currently have no external authentication provider associated with " #~ "your account." @@ -6122,10 +7335,6 @@ msgstr "" #~ msgid "You removed the association with %s" #~ msgstr "Haz removido la asociación con %s" -#, fuzzy -#~ msgid "Left %s comments" -#~ msgstr "%s comentarios dejados" - #~ msgid "Sorry, your Facebook session has expired, please try again" #~ msgstr "Lo sentimos, su sesión de Facebook ha experido, intentelo de nuevo" diff --git a/askbot/locale/es/LC_MESSAGES/djangojs.mo b/askbot/locale/es/LC_MESSAGES/djangojs.mo new file mode 100644 index 00000000..462417d2 Binary files /dev/null and b/askbot/locale/es/LC_MESSAGES/djangojs.mo differ diff --git a/askbot/locale/es/LC_MESSAGES/djangojs.po b/askbot/locale/es/LC_MESSAGES/djangojs.po new file mode 100644 index 00000000..57d10b13 --- /dev/null +++ b/askbot/locale/es/LC_MESSAGES/djangojs.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: 0.7\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-10-08 02:25-0500\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"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" + +#: skins/default/media/js/post.js:532 +msgid "Follow" +msgstr "" + +#: skins/default/media/js/post.js:541 skins/default/media/js/post.js.py:550 +#, perl-format +msgid "%s follower" +msgid_plural "%s followers" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/media/js/post.js:546 +msgid "
    Following
    Unfollow
    " +msgstr "" + +#: skins/default/media/js/post.js:1613 +msgid "Please enter question title (>10 characters)" +msgstr "" + +#: skins/default/media/js/tag_selector.js:15 +msgid "Tag \"\" matches:" +msgstr "" + +#: skins/default/media/js/tag_selector.js:84 +#, perl-format +msgid "and %s more, not shown..." +msgstr "" + +#: skins/default/media/js/user.js:129 +msgid "Please signin to follow %(username)s" +msgstr "" + +#: skins/default/media/js/user.js:161 +#, perl-format +msgid "unfollow %s" +msgstr "" + +#: skins/default/media/js/user.js:164 +#, perl-format +msgid "following %s" +msgstr "" + +#: skins/default/media/js/user.js:170 +#, perl-format +msgid "follow %s" +msgstr "" diff --git a/askbot/locale/fi/LC_MESSAGES/django.mo b/askbot/locale/fi/LC_MESSAGES/django.mo index 1764a340..cbd57018 100644 Binary files a/askbot/locale/fi/LC_MESSAGES/django.mo and b/askbot/locale/fi/LC_MESSAGES/django.mo differ diff --git a/askbot/locale/fi/LC_MESSAGES/django.po b/askbot/locale/fi/LC_MESSAGES/django.po index ecc4580d..10b5ad1e 100644 --- a/askbot/locale/fi/LC_MESSAGES/django.po +++ b/askbot/locale/fi/LC_MESSAGES/django.po @@ -7,93 +7,122 @@ msgid "" msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-11-29 16:38-0600\n" +"POT-Creation-Date: 2011-10-08 02:25-0500\n" "PO-Revision-Date: 2010-06-17 05:57+0200\n" "Last-Translator: Pekka Järvinen \n" "Language-Team: Finnish \n" +"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Finnish\n" "X-Poedit-Country: FINLAND\n" "X-Poedit-SourceCharset: utf-8\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: exceptions.py:9 +#: exceptions.py:13 #, fuzzy msgid "Sorry, but anonymous visitors cannot access this function" msgstr "kirjaudu sisään, jotta voit käyttää tätä ominaisuutta" -#: feed.py:22 +#: feed.py:26 feed.py:100 msgid " - " msgstr " - " -#: feed.py:22 +#: feed.py:26 +#, fuzzy +msgid "Individual question feed" +msgstr "Valikoidut kysymykset" + +#: feed.py:100 msgid "latest questions" msgstr "uusimmat kysymykset" -#: forms.py:54 skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:40 -#: skins/default/templates/question_edit_tips.html:45 +#: forms.py:74 +#, fuzzy +msgid "select country" +msgstr "Poista tunnus" + +#: forms.py:83 +msgid "Country" +msgstr "" + +#: forms.py:91 +#, fuzzy +msgid "Country field is required" +msgstr "vaadittu kenttä" + +#: forms.py:104 skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:38 +#: skins/default/templates/blocks/question_edit_tips.html:43 msgid "title" msgstr "otsikko" -#: forms.py:55 +#: forms.py:105 msgid "please enter a descriptive title for your question" msgstr "kirjoita mahdollisimman kuvaava otsikko kysymyksellesi" -#: forms.py:60 +#: forms.py:110 msgid "title must be > 10 characters" msgstr "otsikon tulee olla yli 10 merkkiä pitkä" -#: forms.py:69 +#: forms.py:119 msgid "content" msgstr "sisältö" -#: forms.py:75 +#: forms.py:125 msgid "question content must be > 10 characters" msgstr "kysymyksen sisällön tulee olla vähintään kymmenen merkkiä pitkä" -#: forms.py:84 skins/default/templates/header.html:83 +#: forms.py:134 skins/default/templates/macros.html:660 +#: skins/default/templates/macros.html:672 +#: skins/default/templates/blocks/header.html:25 msgid "tags" msgstr "tagit" -#: forms.py:86 +#: forms.py:136 msgid "" "Tags are short keywords, with no spaces within. Up to five tags can be used." msgstr "" "Tagit ovat lyhyitä apusanoja, joissa ei ole välilyöntejä. Viisi tagia voi " "syöttää maksimissaan." -#: forms.py:93 skins/default/templates/question_retag.html:78 +#: forms.py:164 skins/default/templates/question_retag.html:58 msgid "tags are required" msgstr "tagit ovat pakollisia" -#: forms.py:102 +#: forms.py:173 #, 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 %(tag_count)d tagia" -msgstr[1] "käytä vähintään yhtä tagia" +msgstr[0] "" +"käytä vähintään %(tag_count)dyhtä tagia" +msgstr[1] "käytä vähintään %(tag_count)d tagia" -#: forms.py:111 +#: forms.py:181 +#, python-format +msgid "At least one of the following tags is required : %(tags)s" +msgstr "" + +#: forms.py:190 #, 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 %(max_chars)d merkin pituinen" -msgstr[1] "jokaisen tagin tulee olla vähintään yhden merkin pituinen" +msgstr[0] "" +"jokaisen tagin tulee olla vähintään %(max_chars)dyhden merkin pituinen" +msgstr[1] "jokaisen tagin tulee olla vähintään %(max_chars)d merkin pituinen" -#: forms.py:119 +#: forms.py:198 msgid "use-these-chars-in-tags" msgstr "käytä-näitä-merkkejä-tageissa" -#: forms.py:130 -#: skins/default/templates/unused/question_summary_list_roll.html:26 -#: skins/default/templates/unused/question_summary_list_roll.html:38 -msgid "community wiki" -msgstr "yhteisön muokattavissa" +#: forms.py:233 +msgid "community wiki (karma is not awarded & many others can edit wiki post)" +msgstr "" -#: forms.py:131 +#: forms.py:234 msgid "" "if you choose community wiki option, the question and answer do not generate " "points and name of author will not be shown" @@ -101,11 +130,11 @@ msgstr "" "jos valitset yhteisön muokattavissa olevan asetuksen, kysymykset ja " "vastaukset eivät anna pisteitä kirjoittajalle eikä kirjoittajan nimeä näy" -#: forms.py:147 +#: forms.py:250 msgid "update summary:" msgstr "päivitysvedos:" -#: forms.py:148 +#: forms.py:251 msgid "" "enter a brief summary of your revision (e.g. fixed spelling, grammar, " "improved style, this field is optional)" @@ -113,285 +142,439 @@ msgstr "" "kirjoita lyhyt yhteenveto mitä teit (esim. kirjotusvirheiden korjaus, " "paranneltiin tekstisijoittelua, jne. Ei pakollinen.)" -#: forms.py:161 +#: forms.py:327 msgid "Enter number of points to add or subtract" msgstr "" -#: forms.py:175 const/__init__.py:219 +#: forms.py:341 const/__init__.py:245 msgid "approved" msgstr "" -#: forms.py:176 const/__init__.py:220 +#: forms.py:342 const/__init__.py:246 msgid "watched" msgstr "" -#: forms.py:177 const/__init__.py:221 +#: forms.py:343 const/__init__.py:247 #, fuzzy msgid "suspended" msgstr "päivitetty" -#: forms.py:178 const/__init__.py:222 +#: forms.py:344 const/__init__.py:248 msgid "blocked" msgstr "" -#: forms.py:180 const/__init__.py:218 +#: forms.py:346 +#, fuzzy +msgid "administrator" +msgstr "Terveisin ylläpito" + +#: forms.py:347 const/__init__.py:244 #, fuzzy msgid "moderator" msgstr "hallitse-kayttajaa/" -#: forms.py:200 +#: forms.py:367 #, fuzzy msgid "Change status to" msgstr "Vaihda tageja" -#: forms.py:227 +#: forms.py:394 msgid "which one?" msgstr "" -#: forms.py:248 +#: forms.py:415 #, fuzzy msgid "Cannot change own status" msgstr "et voi äänestää omia postauksia" -#: forms.py:254 +#: forms.py:421 msgid "Cannot turn other user to moderator" msgstr "" -#: forms.py:261 +#: forms.py:428 msgid "Cannot change status of another moderator" msgstr "" -#: forms.py:267 +#: forms.py:434 +#, fuzzy +msgid "Cannot change status to admin" +msgstr "et voi äänestää omia postauksia" + +#: forms.py:440 #, python-format -msgid "If you wish to change %(username)s's status, " +msgid "" +"If you wish to change %(username)s's status, please make a meaningful " +"selection." msgstr "" -#: forms.py:276 +#: forms.py:449 #, fuzzy msgid "Subject line" msgstr "Valitse teema" -#: forms.py:283 +#: forms.py:456 #, fuzzy msgid "Message text" msgstr "Viestin sisältö:" -#: forms.py:360 +#: forms.py:542 msgid "Your name:" msgstr "Nimi:" -#: forms.py:361 +#: forms.py:543 msgid "Email (not shared with anyone):" msgstr "Sähköpostiosoite:" -#: forms.py:362 +#: forms.py:544 msgid "Your message:" msgstr "Viesti:" -#: forms.py:449 -msgid "this email does not have to be linked to gravatar" +#: forms.py:581 +#, fuzzy +msgid "ask anonymously" +msgstr "anonyymi" + +#: forms.py:583 +msgid "Check if you do not want to reveal your name when asking this question" +msgstr "" + +#: forms.py:743 +msgid "" +"You have asked this question anonymously, if you decide to reveal your " +"identity, please check this box." +msgstr "" + +#: forms.py:747 +msgid "reveal identity" +msgstr "" + +#: forms.py:805 +msgid "" +"Sorry, only owner of the anonymous question can reveal his or her identity, " +"please uncheck the box" +msgstr "" + +#: forms.py:818 +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:856 +#, fuzzy +msgid "this email will be linked to gravatar" msgstr "tämä sähköpostiosoite ei ole linkitetty gravatariin" -#: forms.py:456 +#: forms.py:863 msgid "Real name" msgstr "Nimi" -#: forms.py:463 +#: forms.py:870 msgid "Website" msgstr "Websivu" -#: forms.py:470 -msgid "Location" -msgstr "Paikka" +#: forms.py:877 +msgid "City" +msgstr "" -#: forms.py:477 +#: forms.py:886 +msgid "Show country" +msgstr "" + +#: forms.py:891 msgid "Date of birth" msgstr "Syntymäpäivä" -#: forms.py:478 +#: forms.py:892 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:484 +#: forms.py:898 msgid "Profile" msgstr "Profiili" -#: forms.py:493 +#: forms.py:907 msgid "Screen name" msgstr "Tunnus" -#: forms.py:518 forms.py:519 +#: forms.py:938 forms.py:939 msgid "this email has already been registered, please use another one" msgstr "sähköpostiosoite on jo tietokannassa" -#: forms.py:525 +#: forms.py:946 msgid "Choose email tag filter" msgstr "" -#: forms.py:564 +#: forms.py:993 msgid "Asked by me" msgstr "Kysyjänä minä" -#: forms.py:567 +#: forms.py:996 msgid "Answered by me" msgstr "Vastaajana minä" -#: forms.py:570 +#: forms.py:999 msgid "Individually selected" msgstr "Yksittäin valittu" -#: forms.py:573 +#: forms.py:1002 msgid "Entire forum (tag filtered)" msgstr "Koko keskustelupalsta (tagi-suodatettu)" -#: forms.py:577 +#: forms.py:1006 msgid "Comments and posts mentioning me" msgstr "" -#: forms.py:635 +#: forms.py:1085 msgid "okay, let's try!" msgstr "OK, koitetaan!" -#: forms.py:636 +#: forms.py:1086 msgid "no community email please, thanks" msgstr "ei sähköpostipäivityksiä" -#: forms.py:640 +#: forms.py:1090 msgid "please choose one of the options above" msgstr "valitse yksi valinta seuraavista" -#: urls.py:42 +#: urls.py:53 msgid "about/" msgstr "sivusta/" -#: urls.py:43 conf/site_settings.py:79 +#: urls.py:54 msgid "faq/" msgstr "ukk/" -#: urls.py:44 +#: urls.py:55 msgid "privacy/" msgstr "yksityisyys/" -#: urls.py:45 -msgid "logout/" -msgstr "kirjaudu-ulos/" - -#: urls.py:47 urls.py:52 +#: urls.py:57 urls.py:62 msgid "answers/" msgstr "vastaukset/" -#: urls.py:47 urls.py:68 urls.py:164 +#: urls.py:57 urls.py:83 urls.py:198 msgid "edit/" msgstr "muokkaa/" -#: urls.py:52 urls.py:98 +#: urls.py:62 urls.py:113 msgid "revisions/" msgstr "revisiot/" -#: urls.py:58 urls.py:63 urls.py:68 urls.py:73 urls.py:78 urls.py:83 -#: urls.py:88 urls.py:93 urls.py:98 +#: urls.py:68 urls.py:78 urls.py:83 urls.py:88 urls.py:93 urls.py:98 +#: urls.py:103 urls.py:108 urls.py:113 urls.py:285 +#: skins/default/templates/question.html:508 msgid "questions/" msgstr "kysymykset/" -#: urls.py:63 +#: urls.py:78 msgid "ask/" msgstr "kysy/" -#: urls.py:73 +#: urls.py:88 #, fuzzy msgid "retag/" msgstr "tagit/" -#: urls.py:78 +#: urls.py:93 msgid "close/" msgstr "sulje/" -#: urls.py:83 +#: urls.py:98 msgid "reopen/" msgstr "avaa-uudelleen/" -#: urls.py:88 +#: urls.py:103 msgid "answer/" msgstr "vastaa/" -#: urls.py:93 +#: urls.py:108 skins/default/templates/question.html:508 msgid "vote/" msgstr "aanesta/" -#: urls.py:114 -msgid "command/" -msgstr "komento/" - -#: urls.py:130 -msgid "question/" -msgstr "kysymys/" - -#: urls.py:135 +#: urls.py:144 msgid "tags/" msgstr "tagit/" -#: urls.py:140 urls.py:146 -msgid "mark-tag/" -msgstr "merkitse-tagi/" - -#: urls.py:140 -msgid "interesting/" -msgstr "mielenkiintoista/" - -#: urls.py:146 -msgid "ignored/" -msgstr "hylatyt/" - -#: urls.py:152 -msgid "unmark-tag/" -msgstr "poista-tagi/" +#: urls.py:187 +msgid "subscribe-for-tags/" +msgstr "" -#: urls.py:158 urls.py:164 urls.py:169 +#: urls.py:192 urls.py:198 urls.py:204 urls.py:212 +#: skins/default/templates/main_page/javascript.html:23 msgid "users/" msgstr "kayttajat/" -#: urls.py:174 urls.py:179 +#: urls.py:205 +#, fuzzy +msgid "subscriptions/" +msgstr "kysymykset" + +#: urls.py:217 +msgid "users/update_has_custom_avatar/" +msgstr "" + +#: urls.py:222 urls.py:227 msgid "badges/" msgstr "kunniamerkit/" -#: urls.py:184 +#: urls.py:232 msgid "messages/" msgstr "viestit/" -#: urls.py:184 +#: urls.py:232 msgid "markread/" msgstr "merkkaa-luetuksi/" -#: urls.py:199 +#: urls.py:248 msgid "upload/" msgstr "laheta/" -#: urls.py:200 -msgid "search/" -msgstr "haku" - -#: urls.py:201 +#: urls.py:249 msgid "feedback/" msgstr "palaute/" -#: urls.py:202 setup_templates/settings.py:182 -#: skins/default/templates/authopenid/signin.html:249 +#: urls.py:291 skins/default/templates/question.html:506 +#: skins/default/templates/main_page/javascript.html:22 +msgid "question/" +msgstr "kysymys/" + +#: urls.py:298 setup_templates/settings.py:202 +#: skins/default/templates/authopenid/providers_javascript.html:7 msgid "account/" msgstr "tunnus/" -#: conf/email.py:12 +#: conf/badges.py:12 +#, fuzzy +msgid "Badge settings" +msgstr "nollataan tagit" + +#: conf/badges.py:21 +msgid "Disciplined: minimum upvotes for deleted post" +msgstr "" + +#: conf/badges.py:30 +msgid "Peer Pressure: minimum downvotes for deleted post" +msgstr "" + +#: conf/badges.py:39 +msgid "Teacher: minimum upvotes for the answer" +msgstr "" + +#: conf/badges.py:48 +msgid "Nice Answer: minimum upvotes for the answer" +msgstr "" + +#: conf/badges.py:57 +msgid "Good Answer: minimum upvotes for the answer" +msgstr "" + +#: conf/badges.py:66 +msgid "Great Answer: minimum upvotes for the answer" +msgstr "" + +#: conf/badges.py:75 +msgid "Nice Question: minimum upvotes for the question" +msgstr "" + +#: conf/badges.py:84 +msgid "Good Question: minimum upvotes for the question" +msgstr "" + +#: conf/badges.py:93 +msgid "Great Question: minimum upvotes for the question" +msgstr "" + +#: conf/badges.py:102 +#, fuzzy +msgid "Popular Question: minimum views" +msgstr "Suosittu kysymys" + +#: conf/badges.py:111 +#, fuzzy +msgid "Notable Question: minimum views" +msgstr "Huomattava kysymys" + +#: conf/badges.py:120 +#, fuzzy +msgid "Famous Question: minimum views" +msgstr "Tunnettu kysymys" + +#: conf/badges.py:129 +msgid "Self-Learner: minimum answer upvotes" +msgstr "" + +#: conf/badges.py:138 +msgid "Civic Duty: minimum votes" +msgstr "" + +#: conf/badges.py:147 +msgid "Enlightened Duty: minimum upvotes" +msgstr "" + +#: conf/badges.py:156 +msgid "Guru: minimum upvotes" +msgstr "" + +#: conf/badges.py:165 +msgid "Necromancer: minimum upvotes" +msgstr "" + +#: conf/badges.py:174 +msgid "Necromancer: minimum delay in days" +msgstr "" + +#: conf/badges.py:183 +msgid "Associate Editor: minimum number of edits" +msgstr "" + +#: conf/badges.py:192 +#, fuzzy +msgid "Favorite Question: minimum stars" +msgstr "Suosikkikysymys" + +#: conf/badges.py:201 +#, fuzzy +msgid "Stellar Question: minimum stars" +msgstr "Tähtikysymys" + +#: conf/badges.py:210 +msgid "Commentator: minimum comments" +msgstr "" + +#: conf/badges.py:219 +msgid "Taxonomist: minimum tag use count" +msgstr "" + +#: conf/badges.py:228 +msgid "Enthusiast: minimum days" +msgstr "" + +#: conf/email.py:14 msgid "Email and email alert settings" msgstr "Sähköposti ja sen asetukset" -#: conf/email.py:20 +#: conf/email.py:22 +#, fuzzy +msgid "Prefix for the email subject line" +msgstr "Tervetuloa" + +#: conf/email.py:24 +msgid "" +"This setting takes default from the django settingEMAIL_SUBJECT_PREFIX. A " +"value entered here will overridethe default." +msgstr "" + +#: conf/email.py:36 msgid "Maximum number of news entries in an email alert" msgstr "" -#: conf/email.py:30 +#: conf/email.py:46 msgid "Default news notification frequency" msgstr "Vakio aikaväli sähköpostien lähetyksessä" -#: conf/email.py:32 +#: conf/email.py:48 msgid "" "This option currently defines default frequency of emailed updates in the " "following five categories: questions asked by user, answered by user, " @@ -399,35 +582,84 @@ msgid "" "posts mentioning the user and comment responses" msgstr "" -#: conf/email.py:47 +#: conf/email.py:62 +#, fuzzy +msgid "Send periodic reminders about unanswered questions" +msgstr "Ei vastaamattomia kysymyksiä" + +#: conf/email.py:64 +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) and an IMAP server with a dedicated inbox " +"must be configured " +msgstr "" + +#: conf/email.py:78 +#, fuzzy +msgid "Days before starting to send reminders about unanswered questions" +msgstr "Ei vastaamattomia kysymyksiä" + +#: conf/email.py:89 +msgid "" +"How often to send unanswered question reminders (in days between the " +"reminders sent)." +msgstr "" + +#: conf/email.py:101 +msgid "Max. number of reminders to send about unanswered questions" +msgstr "" + +#: conf/email.py:113 msgid "Require email verification before allowing to post" msgstr "Vaadi sähköpostiosoitteen tarkistus ennen hyväksyntää" -#: conf/email.py:48 +#: conf/email.py:114 msgid "" "Active email verification is done by sending a verification key in email" msgstr "" -#: conf/email.py:57 +#: conf/email.py:123 msgid "Allow only one account per email address" msgstr "Hyväksy vain yksi tunnus per sähköpostiosoite" -#: conf/email.py:66 +#: conf/email.py:132 msgid "Fake email for anonymous user" msgstr "Sähköpostiosoite anonyymeille käyttäjille" -#: conf/email.py:67 +#: conf/email.py:133 msgid "Use this setting to control gravatar for email-less user" msgstr "" "Käytä tätä asetusta kontrolloidaksesi käyttäjien gravataria, joilla ei ole " "sähköpostiosoitetta" -#: conf/email.py:76 +#: conf/email.py:142 #, fuzzy -msgid "Prefix for the email subject line" -msgstr "Tervetuloa" +msgid "Allow posting questions by email" +msgstr "" +"You are welcome to start submitting your question " +"anonymously. 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:144 +msgid "" +"Before enabling this setting - please fill out IMAP settings in the settings." +"py file" +msgstr "" + +#: conf/email.py:155 +msgid "Replace space in emailed tags with dash" +msgstr "" + +#: conf/email.py:157 +msgid "" +"This setting applies to tags written in the subject line of questions asked " +"by email" +msgstr "" -#: conf/external_keys.py:11 +#: conf/external_keys.py:10 msgid "Keys to connect the site with external services like Facebook, etc." msgstr "" @@ -438,95 +670,119 @@ msgstr "" #: conf/external_keys.py:20 #, python-format msgid "" -"This key helps google index your site please obtain is at google webmasters tools site" +"This key helps google index your site please obtain is at google webmasters tools site" msgstr "" -#: conf/external_keys.py:34 +#: conf/external_keys.py:35 msgid "Google Analytics key" msgstr "Google Analytics -palvelun avain" -#: conf/external_keys.py:36 -#, python-format +#: conf/external_keys.py:37 +#, fuzzy, python-format msgid "" -"Obtain is at Google Analytics site, if you wish " -"to use Google Analytics to monitor your site" +"Obtain is at Google Analytics site, if you wish to " +"use Google Analytics to monitor your site" msgstr "" "Hae Google Analytics -palvelun avain, jos haluat " "käyttää sitä sivustollasi" -#: conf/external_keys.py:49 +#: conf/external_keys.py:50 msgid "Enable recaptcha (keys below are required)" msgstr "" -#: conf/external_keys.py:58 +#: conf/external_keys.py:59 msgid "Recaptcha public key" msgstr "Recaptcha-palvelun julkinen avain (public key)" -#: conf/external_keys.py:66 +#: conf/external_keys.py:67 msgid "Recaptcha private key" msgstr "Recaptcha-palvelun yksityinen avain (private key)" -#: conf/external_keys.py:68 +#: conf/external_keys.py:69 +#, fuzzy, 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 recaptcha.net" +"robots. Please get this and a public key at the %(url)s" msgstr "" "Recaptcha on työkalu, joka auttaa erottamaan robotit ihmisistä. Käyttö on " "suositeltavaa. Saat avaimen osoitteesta recaptcha.net." -#: conf/external_keys.py:80 +#: conf/external_keys.py:81 msgid "Facebook public API key" msgstr "Facebook-rajapinnan julkinen avain (public key)" -#: conf/external_keys.py:82 +#: conf/external_keys.py:83 +#, python-format msgid "" "Facebook API key and Facebook secret allow to use Facebook Connect login " -"method at your site. Please obtain these keys at facebook create app site" +"method at your site. Please obtain these keys at facebook create app site" msgstr "" -#: conf/external_keys.py:95 +#: conf/external_keys.py:96 msgid "Facebook secret key" msgstr "Facebook-rajapinnan salainen avain (secret key)" -#: conf/external_keys.py:103 +#: conf/external_keys.py:104 msgid "Twitter consumer key" msgstr "" -#: conf/external_keys.py:105 conf/external_keys.py:126 +#: conf/external_keys.py:106 +#, python-format msgid "" -"Please register your forum at twitter applications site" +"Please register your forum at twitter applications site" msgstr "" -#: conf/external_keys.py:116 +#: conf/external_keys.py:117 msgid "Twitter consumer secret" msgstr "" -#: conf/external_keys.py:124 +#: conf/external_keys.py:125 msgid "LinkedIn consumer key" msgstr "" -#: conf/external_keys.py:137 +#: conf/external_keys.py:127 +#, python-format +msgid "" +"Please register your forum at LinkedIn developer site" +msgstr "" + +#: conf/external_keys.py:138 msgid "LinkedIn consumer secret" msgstr "" -#: conf/external_keys.py:145 -msgid "User LDAP authentication for the password login" +#: conf/external_keys.py:146 +msgid "ident.ca consumer key" +msgstr "" + +#: conf/external_keys.py:148 +#, python-format +msgid "" +"Please register your forum at Identi.ca applications " +"site" +msgstr "" + +#: conf/external_keys.py:159 +msgid "ident.ca consumer secret" +msgstr "" + +#: conf/external_keys.py:167 +msgid "Use LDAP authentication for the password login" msgstr "" -#: conf/external_keys.py:154 +#: conf/external_keys.py:176 msgid "LDAP service provider name" msgstr "" -#: conf/external_keys.py:162 +#: conf/external_keys.py:184 msgid "URL for the LDAP service" msgstr "" -#: conf/external_keys.py:170 +#: conf/external_keys.py:192 #, fuzzy msgid "Explain how to change LDAP password" msgstr "Vaihda salasanasi" @@ -547,159 +803,435 @@ msgstr "" "Tallenna ja validoi tietoa-sivu" #: conf/flatpages.py:30 +#, fuzzy +msgid "Text of the Q&A forum FAQ page (html format)" +msgstr "Teksti sivuston tietoa-sivua varten (HTML-muodossa)" + +#: conf/flatpages.py:33 +#, fuzzy +msgid "" +"Save, then use HTML validator on " +"the \"faq\" page to check your input." +msgstr "" +"Tallenna ja validoi tietoa-sivu" + +#: conf/flatpages.py:44 msgid "Text of the Q&A forum Privacy Policy (html format)" msgstr "Teksti yksityisyyttä koskevaa sivua varten (HTML-muodossa)" -#: conf/flatpages.py:33 +#: conf/flatpages.py:47 msgid "" "Save, then use HTML validator on " "the \"privacy\" page to check your input." msgstr "" -#: conf/forum_data_rules.py:12 -msgid "Settings for askbot data entry and display" +#: conf/forum_data_rules.py:11 +msgid "Data entry and display" msgstr "" #: conf/forum_data_rules.py:20 +#, python-format +msgid "" +"Enable embedding videos. Note: please read read this first." +msgstr "" + +#: conf/forum_data_rules.py:31 msgid "Check to enable community wiki feature" msgstr "Yhteisölle jaettu -toiminto päälle" -#: conf/forum_data_rules.py:29 -msgid "Maximum length of tag (number of characters)" -msgstr "Maksimi tagin koko merkkeinä" - -#: conf/forum_data_rules.py:39 -msgid "Default max number of comments to display under posts" +#: conf/forum_data_rules.py:40 +msgid "Allow asking questions anonymously" msgstr "" -#: conf/forum_data_rules.py:50 -#, python-format -msgid "Maximum comment length, must be < %(max_len)s" +#: conf/forum_data_rules.py:42 +msgid "" +"Users do not accrue reputation for anonymous questions and their identity is " +"not revealed until they change their mind" msgstr "" -#: conf/forum_data_rules.py:60 -msgid "Minimum length of search term for Ajax search" +#: conf/forum_data_rules.py:54 +msgid "Allow posting before logging in" msgstr "" -#: conf/forum_data_rules.py:61 -msgid "Must match the corresponding database backend setting" +#: conf/forum_data_rules.py:56 +msgid "" +"Check if you want to allow users start posting questions or answers before " +"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 "" -#: conf/forum_data_rules.py:70 -msgid "Maximum number of tags per question" -msgstr "Maksimi määrä tageja per kysymys" - -#: conf/forum_data_rules.py:82 -msgid "Number of questions to list by default" -msgstr "Kysymyksien määrä sivulla vakiona" - -#: conf/forum_data_rules.py:92 -msgid "What should \"unanswered question\" mean?" -msgstr "Mitä \"vastaamattomien kysymysten\" tulisi tarkoittaa?" +#: conf/forum_data_rules.py:71 +#, fuzzy +msgid "Allow swapping answer with question" +msgstr "Post Your Answer" -#: conf/markup.py:15 -msgid "Markup formatting" +#: conf/forum_data_rules.py:73 +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 "" -#: conf/markup.py:29 -msgid "Enable code-friendly Markdown" -msgstr "" +#: conf/forum_data_rules.py:85 +msgid "Maximum length of tag (number of characters)" +msgstr "Maksimi tagin koko merkkeinä" + +#: conf/forum_data_rules.py:93 +#, fuzzy +msgid "Mandatory tags" +msgstr "päivitetyt tagit" -#: conf/markup.py:31 +#: conf/forum_data_rules.py:96 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 " -"\"MathJax support\" implicitly turns this feature on, because underscores " -"are heavily used in LaTeX input." +"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/markup.py:46 -msgid "Mathjax support (rendering of LaTeX)" +#: conf/forum_data_rules.py:108 +msgid "Force lowercase the tags" msgstr "" -#: conf/markup.py:48 -#, python-format +#: conf/forum_data_rules.py:110 msgid "" -"If you enable this feature, mathjax must be " -"installed in directory %(dir)s" +"Attention: after checking this, please back up the database, and run a " +"management command: python manage.py fix_question_tags to " +"globally rename the tags" msgstr "" -#: conf/markup.py:63 -msgid "Base url of MathJax deployment" +#: conf/forum_data_rules.py:124 +msgid "Format of tag list" msgstr "" -#: conf/markup.py:65 +#: conf/forum_data_rules.py:126 msgid "" -"Note - MathJax is not included with askbot - you should " -"deploy it yourself, preferably at a separate domain and enter url pointing " -"to the \"mathjax\" directory (for example: http://mysite.com/mathjax)" +"Select the format to show tags in, either as a simple list, or as a tag cloud" msgstr "" -#: conf/minimum_reputation.py:11 -msgid "Minimum reputation required to perform actions" -msgstr "Pienin äänimäärä, jollavoi suorittaa toimenpiteitä" +#: conf/forum_data_rules.py:138 +#, fuzzy +msgid "Use wildcard tags" +msgstr "Tagit" -#: conf/minimum_reputation.py:20 -msgid "Upvote" +#: conf/forum_data_rules.py:140 +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/minimum_reputation.py:29 -msgid "Downvote" +#: conf/forum_data_rules.py:153 +msgid "Default max number of comments to display under posts" msgstr "" -#: conf/minimum_reputation.py:38 +#: conf/forum_data_rules.py:164 +#, python-format +msgid "Maximum comment length, must be < %(max_len)s" +msgstr "" + +#: conf/forum_data_rules.py:174 +msgid "Limit time to edit comments" +msgstr "" + +#: conf/forum_data_rules.py:176 +msgid "If unchecked, there will be no time limit to edit the comments" +msgstr "" + +#: conf/forum_data_rules.py:187 +msgid "Minutes allowed to edit a comment" +msgstr "" + +#: conf/forum_data_rules.py:188 +msgid "To enable this setting, check the previous one" +msgstr "" + +#: conf/forum_data_rules.py:197 +msgid "Save comment by pressing key" +msgstr "" + +#: conf/forum_data_rules.py:206 +msgid "Minimum length of search term for Ajax search" +msgstr "" + +#: conf/forum_data_rules.py:207 +msgid "Must match the corresponding database backend setting" +msgstr "" + +#: conf/forum_data_rules.py:216 +msgid "Do not make text query sticky in search" +msgstr "" + +#: conf/forum_data_rules.py:218 +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:231 +msgid "Maximum number of tags per question" +msgstr "Maksimi määrä tageja per kysymys" + +#: conf/forum_data_rules.py:243 +msgid "Number of questions to list by default" +msgstr "Kysymyksien määrä sivulla vakiona" + +#: conf/forum_data_rules.py:253 +msgid "What should \"unanswered question\" mean?" +msgstr "Mitä \"vastaamattomien kysymysten\" tulisi tarkoittaa?" + +#: conf/license.py:12 +#, fuzzy +msgid "License settings" +msgstr "nollataan tagit" + +#: conf/license.py:19 +msgid "Show license clause in the site footer" +msgstr "" + +#: conf/license.py:28 +msgid "Short name for the license" +msgstr "" + +#: conf/license.py:37 +msgid "Full name of the license" +msgstr "" + +#: conf/license.py:38 +msgid "Creative Commons Attribution Share Alike 3.0" +msgstr "" + +#: conf/license.py:46 +msgid "Add link to the license page" +msgstr "" + +#: conf/license.py:55 +#, fuzzy +msgid "License homepage" +msgstr "takaisin kotisivulle" + +#: conf/license.py:57 +msgid "URL of the official page with all the license legal clauses" +msgstr "" + +#: conf/license.py:67 +msgid "Use license logo" +msgstr "" + +#: conf/license.py:76 +msgid "License logo image" +msgstr "" + +#: conf/login_providers.py:12 +msgid "Login provider setings" +msgstr "" + +#: conf/login_providers.py:20 +msgid "" +"Show alternative login provider buttons on the password \"Sign Up\" page" +msgstr "" + +#: conf/login_providers.py:29 +msgid "Always display local login form and hide \"Askbot\" button." +msgstr "" + +#: conf/login_providers.py:38 +msgid "Activate to allow login with self-hosted wordpress site" +msgstr "" + +#: conf/login_providers.py:39 +msgid "" +"to activate this feature you must fill out the wordpress xml-rpc setting " +"bellow" +msgstr "" + +#: conf/login_providers.py:48 +msgid "" +"Fill it with the wordpress url to the xml-rpc, normally http://mysite.com/" +"xmlrpc.php" +msgstr "" + +#: conf/login_providers.py:49 +msgid "" +"To enable, go to Settings->Writing->Remote Publishing and check the box for " +"XML-RPC" +msgstr "" + +#: conf/login_providers.py:60 +msgid "Upload your icon" +msgstr "" + +#: conf/login_providers.py:90 +#, python-format +msgid "Activate %(provider)s login" +msgstr "" + +#: conf/login_providers.py:95 +#, python-format +msgid "" +"Note: to really enable %(provider)s login some additional parameters will " +"need to be set in the \"External keys\" section" +msgstr "" + +#: conf/markup.py:14 +msgid "Markup formatting" +msgstr "" + +#: conf/markup.py:39 +msgid "Enable code-friendly Markdown" +msgstr "" + +#: conf/markup.py:41 +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 " +"\"MathJax support\" implicitly turns this feature on, because underscores " +"are heavily used in LaTeX input." +msgstr "" + +#: conf/markup.py:56 +msgid "Mathjax support (rendering of LaTeX)" +msgstr "" + +#: conf/markup.py:58 +#, python-format +msgid "" +"If you enable this feature, mathjax must be " +"installed on your server in its own directory." +msgstr "" + +#: conf/markup.py:72 +msgid "Base url of MathJax deployment" +msgstr "" + +#: conf/markup.py:74 +msgid "" +"Note - MathJax is not included with askbot - 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 "" + +#: conf/markup.py:89 +msgid "Enable autolinking with specific patterns" +msgstr "" + +#: conf/markup.py:91 +msgid "" +"If you enable this feature, the application will be able to detect patterns " +"and auto link to URLs" +msgstr "" + +#: conf/markup.py:104 +msgid "Regexes to detect the link patterns" +msgstr "" + +#: conf/markup.py:106 +msgid "" +"Enter valid regular expressions for the patters, one per line. For example " +"to detect a bug pattern like #bug123, use the following regex: #bug(\\d+). " +"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 "" + +#: conf/markup.py:125 +msgid "URLs for autolinking" +msgstr "" + +#: conf/markup.py:127 +msgid "" +"Here, please enter url templates for the patterns entered in the previous " +"setting, also one entry per line. Make sure that number of lines in " +"this setting and the previous one are the same 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 "" + +#: conf/minimum_reputation.py:11 +msgid "Minimum reputation required to perform actions" +msgstr "Pienin äänimäärä, jollavoi suorittaa toimenpiteitä" + +#: conf/minimum_reputation.py:20 +msgid "Upvote" +msgstr "" + +#: conf/minimum_reputation.py:29 +msgid "Downvote" +msgstr "" + +#: conf/minimum_reputation.py:38 +#, fuzzy +msgid "Answer own question immediately" +msgstr "Vastaa omaan kysymykseesi" + +#: conf/minimum_reputation.py:47 +#, fuzzy +msgid "Accept own answer" +msgstr "muokkaa mitä tahansa vastausta" + +#: conf/minimum_reputation.py:56 msgid "Flag offensive" msgstr "Merkkaa loukkaavaksi" -#: conf/minimum_reputation.py:47 +#: conf/minimum_reputation.py:65 msgid "Leave comments" msgstr "Jätä kommentteja" -#: conf/minimum_reputation.py:56 +#: conf/minimum_reputation.py:74 msgid "Delete comments posted by others" msgstr "Poista muiden kommentteja" -#: conf/minimum_reputation.py:65 +#: conf/minimum_reputation.py:83 #, fuzzy msgid "Delete questions and answers posted by others" msgstr "Sulje muiden kysymyksiä" -#: conf/minimum_reputation.py:74 +#: conf/minimum_reputation.py:92 msgid "Upload files" msgstr "Lähetä tiedostoja" -#: conf/minimum_reputation.py:83 +#: conf/minimum_reputation.py:101 msgid "Close own questions" msgstr "Sulje oma kysymys" -#: conf/minimum_reputation.py:92 +#: conf/minimum_reputation.py:110 msgid "Retag questions posted by other people" msgstr "Uudelleentagita muiden postauksia" -#: conf/minimum_reputation.py:101 +#: conf/minimum_reputation.py:119 msgid "Reopen own questions" msgstr "Uudelleenavaa oma kysymys" -#: conf/minimum_reputation.py:110 +#: conf/minimum_reputation.py:128 msgid "Edit community wiki posts" msgstr "Muokkaa yhteisölle omistettuja postauksia" -#: conf/minimum_reputation.py:119 +#: conf/minimum_reputation.py:137 msgid "Edit posts authored by other people" msgstr "Muokkaa muiden postauksia" -#: conf/minimum_reputation.py:128 +#: conf/minimum_reputation.py:146 msgid "View offensive flags" msgstr "Näytä loukkaavat merkit" -#: conf/minimum_reputation.py:137 +#: conf/minimum_reputation.py:155 msgid "Close questions asked by others" msgstr "Sulje muiden kysymyksiä" -#: conf/minimum_reputation.py:146 +#: conf/minimum_reputation.py:164 msgid "Lock posts" msgstr "Lukitse postauksia" +#: conf/minimum_reputation.py:173 +msgid "Remove rel=nofollow from own homepage" +msgstr "" + +#: conf/minimum_reputation.py:175 +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 "" + #: conf/reputation_changes.py:12 #, fuzzy msgid "Reputation loss and gain rules" @@ -761,53 +1293,169 @@ msgstr "" msgid "Loss for post owner when upvote is canceled" msgstr "" -#: conf/site_settings.py:13 +#: conf/sidebar_main.py:11 +msgid "Sidebar widget settings - main page" +msgstr "" + +#: conf/sidebar_main.py:18 conf/sidebar_profile.py:18 +#: conf/sidebar_question.py:18 +msgid "Custom sidebar header" +msgstr "" + +#: conf/sidebar_main.py:21 conf/sidebar_profile.py:21 +#: conf/sidebar_question.py:21 +msgid "" +"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." +msgstr "" + +#: conf/sidebar_main.py:34 +msgid "Show avatar block in sidebar" +msgstr "" + +#: conf/sidebar_main.py:36 +msgid "Uncheck this if you want to hide the avatar block from the sidebar " +msgstr "" + +#: conf/sidebar_main.py:47 +msgid "Limit how many avatars will be displayed on the sidebar" +msgstr "" + +#: conf/sidebar_main.py:57 +msgid "Show tag selector in sidebar" +msgstr "" + +#: conf/sidebar_main.py:59 +msgid "" +"Uncheck this if you want to hide the options for choosing interesting and " +"ignored tags " +msgstr "" + +#: conf/sidebar_main.py:70 +msgid "Show tag list/cloud in sidebar" +msgstr "" + +#: conf/sidebar_main.py:72 +msgid "" +"Uncheck this if you want to hide the tag cloud or tag list from the sidebar " +msgstr "" + +#: conf/sidebar_main.py:83 conf/sidebar_profile.py:34 +#: conf/sidebar_question.py:74 +msgid "Custom sidebar footer" +msgstr "" + +#: conf/sidebar_main.py:86 conf/sidebar_profile.py:37 +#: conf/sidebar_question.py:77 +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 "" + +#: conf/sidebar_profile.py:11 +msgid "Sidebar widget settings - profile page" +msgstr "" + +#: conf/sidebar_question.py:11 +msgid "Sidebar widget settings - question page" +msgstr "" + +#: conf/sidebar_question.py:34 +msgid "Show tag list in sidebar" +msgstr "" + +#: conf/sidebar_question.py:36 +msgid "Uncheck this if you want to hide the tag list from the sidebar " +msgstr "" + +#: conf/sidebar_question.py:47 +msgid "Show meta information in sidebar" +msgstr "" + +#: conf/sidebar_question.py:49 +msgid "" +"Uncheck this if you want to hide the meta information about the question " +"(post date, views, last updated). " +msgstr "" + +#: conf/sidebar_question.py:61 +#, fuzzy +msgid "Show related questions in sidebar" +msgstr "Liittyvät kysymykset" + +#: conf/sidebar_question.py:63 +#, fuzzy +msgid "Uncheck this if you want to hide the list of related questions. " +msgstr "klikkaa nähdäksesi vanhimmat päivitetyt kysymykset" + +#: conf/site_modes.py:63 +#, fuzzy +msgid "Site modes" +msgstr "Sivustot" + +#: conf/site_modes.py:72 +msgid "Activate a \"Bootstrap\" mode" +msgstr "" + +#: conf/site_modes.py:74 +msgid "" +"Bootstrap mode lowers reputation and certain badge thresholds, to values, " +"more suitable for the smaller communities, WARNING: your " +"current value for Minimum reputation, Bagde Settings and Vote Rules will be " +"changed after you modify this setting." +msgstr "" + +#: conf/site_settings.py:11 msgid "Q&A forum website parameters and urls" msgstr "" -#: conf/site_settings.py:21 +#: conf/site_settings.py:19 msgid "Site title for the Q&A forum" msgstr "" -#: conf/site_settings.py:30 +#: conf/site_settings.py:28 msgid "Comma separated list of Q&A site keywords" msgstr "Pilkulla erotellut hakusanat sivustoa varten" -#: conf/site_settings.py:40 +#: conf/site_settings.py:37 msgid "Copyright message to show in the footer" msgstr "" -#: conf/site_settings.py:50 +#: conf/site_settings.py:47 msgid "Site description for the search engines" msgstr "Sivuston kuvaus hakurobotteja varten" -#: conf/site_settings.py:58 -msgid "Askbot" -msgstr "Askbot" - -#: conf/site_settings.py:59 +#: conf/site_settings.py:56 msgid "Short name for your Q&A forum" msgstr "Lyhyt nimi sivustolle" -#: conf/site_settings.py:69 +#: conf/site_settings.py:66 msgid "Base URL for your Q&A forum, must start with http or https" msgstr "" -#: conf/site_settings.py:82 -msgid "Link shown in the greeting message shown to the anonymous user" +#: conf/site_settings.py:77 +#, fuzzy +msgid "Check to enable greeting for anonymous user" +msgstr "Sähköpostiosoite anonyymeille käyttäjille" + +#: conf/site_settings.py:88 +#, fuzzy +msgid "Text shown in the greeting message shown to the anonymous user" msgstr "Linkki, joka näytetään tervetuloviestissä tuntemattomalle käyttäjälle" -#: conf/site_settings.py:85 -msgid "" -"If you change this url from the default - then you will also probably want " -"to adjust translation of the following string: " +#: conf/site_settings.py:92 +msgid "Use HTML to format the message " msgstr "" -#: conf/site_settings.py:98 +#: conf/site_settings.py:101 msgid "Feedback site URL" msgstr "Palautesivun URL-osoite" -#: conf/site_settings.py:100 +#: conf/site_settings.py:103 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" @@ -926,24 +1574,34 @@ msgstr "" msgid "Foreground color for accepted answer" msgstr "" -#: conf/skin_general_settings.py:15 +#: conf/skin_general_settings.py:14 #, fuzzy msgid "Skin and User Interface settings" msgstr "Sähköposti ja sen asetukset" -#: conf/skin_general_settings.py:22 +#: conf/skin_general_settings.py:21 msgid "Q&A site logo" msgstr "" -#: conf/skin_general_settings.py:24 +#: conf/skin_general_settings.py:23 msgid "To change the logo, select new file, then submit this whole form." msgstr "" -#: conf/skin_general_settings.py:38 +#: conf/skin_general_settings.py:37 +msgid "Show logo" +msgstr "" + +#: 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 msgid "Site favicon" msgstr "" -#: conf/skin_general_settings.py:40 +#: conf/skin_general_settings.py:53 #, python-format msgid "" "A small 16x16 or 32x32 pixel icon image used to distinguish your site in the " @@ -951,64 +1609,232 @@ msgid "" "href=\"%(favicon_info_url)s\">this page." msgstr "" -#: conf/skin_general_settings.py:56 +#: conf/skin_general_settings.py:71 msgid "Password login button" msgstr "" -#: conf/skin_general_settings.py:58 +#: conf/skin_general_settings.py:73 msgid "" "An 88x38 pixel image that is used on the login screen for the password login " "button." msgstr "" -#: conf/skin_general_settings.py:73 +#: conf/skin_general_settings.py:88 msgid "Show all UI functions to all users" msgstr "" -#: conf/skin_general_settings.py:75 +#: conf/skin_general_settings.py:90 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:90 +#: conf/skin_general_settings.py:105 msgid "Select skin" msgstr "Valitse teema" -#: conf/skin_general_settings.py:99 -msgid "Skin media revision number" +#: conf/skin_general_settings.py:116 +msgid "Customize HTML " +msgstr "" + +#: conf/skin_general_settings.py:125 +msgid "Custom portion of the HTML " msgstr "" -#: conf/skin_general_settings.py:101 +#: conf/skin_general_settings.py:127 msgid "" -"Increment this number when you change image in skin media or stylesheet. " -"This helps avoid showing your users outdated images from their browser cache." +"To use this option, check \"Customize HTML <HEAD>\" " +"above. Contents of this box will be inserted into the <HEAD> portion " +"of the HTML output, where elements such as <script>, <link>, <" +"meta> may be added. Please, keep in mind that adding external javascript " +"to the <HEAD> 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. Note: if you do use this setting, " +"please test the site with the W3C HTML validator service." msgstr "" -#: conf/social_sharing.py:10 -msgid "Sharing content on social networks" +#: conf/skin_general_settings.py:149 +msgid "Custom header additions" msgstr "" -#: conf/social_sharing.py:18 -msgid "Check to enable sharing of questions on Twitter and Facebook" +#: conf/skin_general_settings.py:151 +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 " +"headerin the HTML format. When customizing the site header (as well as " +"footer and the HTML <HEAD>), use the HTML validation service to make " +"sure that your input is valid and works well in all browsers." msgstr "" -#: conf/user_settings.py:10 -msgid "User policy settings" +#: conf/skin_general_settings.py:166 +msgid "Site footer mode" msgstr "" -"Järjestelmä käyttää hyväkseen keksejä ylläpitäessään kirjautuneita " -"käyttäjiä. Sinulla tulee olla keksit päällä selaimessasi, jotta sivusto " -"toimii." -#: conf/user_settings.py:18 -msgid "Allow editing user screen name" +#: conf/skin_general_settings.py:168 +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:185 +msgid "Custom footer (HTML format)" +msgstr "" + +#: conf/skin_general_settings.py:187 +msgid "" +"To enable this function, please select option 'customize' " +"in the \"Site footer mode\" above. Use this area to enter contents of the " +"footer in the HTML format. When customizing the site footer (as well as the " +"header and HTML <HEAD>), use the HTML validation service to make sure " +"that your input is valid and works well in all browsers." +msgstr "" + +#: conf/skin_general_settings.py:202 +msgid "Apply custom style sheet (CSS)" +msgstr "" + +#: conf/skin_general_settings.py:204 +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:216 +msgid "Custom style sheet (CSS)" +msgstr "" + +#: conf/skin_general_settings.py:218 +msgid "" +"To use this function, 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 \"<forum url>/custom.css\", where the \"<forum url> part " +"depends (default is empty string) on the url configuration in your urls.py." +msgstr "" + +#: conf/skin_general_settings.py:234 +msgid "Add custom javascript" +msgstr "" + +#: conf/skin_general_settings.py:237 +msgid "Check to enable javascript that you can enter in the next field" +msgstr "" + +#: conf/skin_general_settings.py:247 +msgid "Custom javascript" +msgstr "" + +#: conf/skin_general_settings.py:249 +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 \"<forum url>/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 (to " +"enable your custom code, check \"Add custom javascript\" option " +"above)." +msgstr "" + +#: conf/skin_general_settings.py:267 +msgid "Skin media revision number" +msgstr "" + +#: conf/skin_general_settings.py:269 +msgid "Will be set automatically but you can modify it if necessary." +msgstr "" + +#: conf/skin_general_settings.py:280 +msgid "Hash to update the media revision number automatically." +msgstr "" + +#: conf/skin_general_settings.py:284 +msgid "Will be set automatically, it is not necesary to modify manually." +msgstr "" + +#: conf/social_sharing.py:10 +msgid "Sharing content on social networks" +msgstr "" + +#: conf/social_sharing.py:18 +#, fuzzy +msgid "Check to enable sharing of questions on Twitter" +msgstr "Avaa tämä kysymys uudelleen" + +#: conf/social_sharing.py:27 +msgid "Check to enable sharing of questions on Facebook" +msgstr "" + +#: conf/social_sharing.py:36 +msgid "Check to enable sharing of questions on LinkedIn" +msgstr "" + +#: conf/social_sharing.py:45 +msgid "Check to enable sharing of questions on Identi.ca" +msgstr "" + +#: conf/social_sharing.py:54 +msgid "Check to enable sharing of questions on Google+" +msgstr "" + +#: conf/spam_and_moderation.py:9 +msgid "Spam control and content moderation" +msgstr "" + +#: conf/spam_and_moderation.py:16 +msgid "Enable Akismet spam detection(keys below are required)" +msgstr "" + +#: conf/spam_and_moderation.py:19 +#, python-format +msgid "To get an Akismet key please visit Akismet site" +msgstr "" + +#: conf/spam_and_moderation.py:29 +msgid "Akismet key for spam detection" +msgstr "" + +#: conf/user_settings.py:11 +#, fuzzy +msgid "User settings" +msgstr "" +"Järjestelmä käyttää hyväkseen keksejä ylläpitäessään kirjautuneita " +"käyttäjiä. Sinulla tulee olla keksit päällä selaimessasi, jotta sivusto " +"toimii." + +#: conf/user_settings.py:19 +msgid "Allow editing user screen name" msgstr "Hyväksy tunnuksen nimen muokkaaminen" #: conf/user_settings.py:28 +#, fuzzy +msgid "Allow account recovery by email" +msgstr "Hyväksy vain yksi tunnus per sähköpostiosoite" + +#: conf/user_settings.py:37 +msgid "Allow adding and removing login methods" +msgstr "" + +#: conf/user_settings.py:47 msgid "Minimum allowed length for screen name" msgstr "Minimi tunnuksen pituus" +#: conf/user_settings.py:57 +msgid "Default Gravatar icon type" +msgstr "" + +#: conf/user_settings.py:59 +msgid "" +"This option allows you to set the default avatar type for email addresses " +"without associated gravatar images. For more information, please visit this page." +msgstr "" + +#: conf/user_settings.py:69 +#, fuzzy +msgid "Name for the Anonymous user" +msgstr "Sähköpostiosoite anonyymeille käyttäjille" + #: conf/vote_rules.py:13 msgid "Limits applicable to votes and moderation flags" msgstr "" @@ -1030,289 +1856,427 @@ msgid "Number of days to allow canceling votes" msgstr "" #: conf/vote_rules.py:58 -msgid "Number of flags required to automatically hide posts" +msgid "Number of days required before answering own question" msgstr "" #: conf/vote_rules.py:67 +msgid "Number of flags required to automatically hide posts" +msgstr "" + +#: conf/vote_rules.py:76 msgid "Number of flags required to automatically delete posts" msgstr "" -#: const/__init__.py:9 +#: const/__init__.py:10 msgid "duplicate question" msgstr "duplikaattikysymys" -#: const/__init__.py:10 +#: const/__init__.py:11 msgid "question is off-topic or not relevant" msgstr "kysymys ei kuulu aihealueeseemme tai ei ole olennainen" -#: const/__init__.py:11 +#: const/__init__.py:12 msgid "too subjective and argumentative" msgstr "liian subjektiivinen tai väittelynhaluinen" -#: const/__init__.py:12 +#: const/__init__.py:13 msgid "not a real question" msgstr "ei oikea kysymys" -#: const/__init__.py:13 +#: const/__init__.py:14 msgid "the question is answered, right answer was accepted" msgstr "kysymykseen on vastattu, vastaus on hyväksytty" -#: const/__init__.py:14 +#: const/__init__.py:15 msgid "question is not relevant or outdated" msgstr "kysymys ei ole asiaankuuluva tai se ei ole enää ajankohtainen" -#: const/__init__.py:15 +#: const/__init__.py:16 msgid "question contains offensive or malicious remarks" msgstr "kysymys sisältää loukkaavia tai ilkeitä asioita" -#: const/__init__.py:16 +#: const/__init__.py:17 msgid "spam or advertising" msgstr "roskapostia tai mainostusta" -#: const/__init__.py:17 +#: const/__init__.py:18 msgid "too localized" msgstr "liian paikallinen" -#: const/__init__.py:40 +#: const/__init__.py:41 msgid "newest" msgstr "uusin" -#: const/__init__.py:41 skins/default/templates/users.html:25 -#: skins/default/templates/users.html:26 +#: const/__init__.py:42 skins/default/templates/users.html:26 msgid "oldest" msgstr "vanhin" -#: const/__init__.py:42 +#: const/__init__.py:43 msgid "active" msgstr "aktiivinen" -#: const/__init__.py:43 +#: const/__init__.py:44 msgid "inactive" msgstr "inaktiivinen" -#: const/__init__.py:44 +#: const/__init__.py:45 msgid "hottest" msgstr "kuumin" -#: const/__init__.py:45 +#: const/__init__.py:46 msgid "coldest" msgstr "kylmin" -#: const/__init__.py:46 +#: const/__init__.py:47 msgid "most voted" msgstr "eniten äänestetyin" -#: const/__init__.py:47 +#: const/__init__.py:48 msgid "least voted" msgstr "vähiten äänestetetyin" -#: const/__init__.py:48 +#: const/__init__.py:49 msgid "relevance" msgstr "merkitys" -#: const/__init__.py:55 skins/default/templates/questions.html:14 -#: skins/default/templates/user_inbox.html:47 +#: const/__init__.py:57 skins/default/templates/main_page/tab_bar.html:10 +#: skins/default/templates/user_profile/user_inbox.html:50 msgid "all" msgstr "kaikki" -#: const/__init__.py:56 skins/default/templates/questions.html:19 +#: const/__init__.py:58 skins/default/templates/main_page/tab_bar.html:15 msgid "unanswered" msgstr "vastaamaton" -#: const/__init__.py:57 skins/default/templates/questions.html:25 +#: const/__init__.py:59 msgid "favorite" msgstr "suosikki" -#: const/__init__.py:70 +#: const/__init__.py:64 +#, fuzzy +msgid "list" +msgstr "Tagilista" + +#: const/__init__.py:65 +msgid "cloud" +msgstr "" + +#: const/__init__.py:78 msgid "Question has no answers" msgstr "Ei vastauksia" -#: const/__init__.py:71 +#: const/__init__.py:79 msgid "Question has no accepted answers" msgstr "Kysymyksellä ei ole hyväksyttyjä vastauksia" -#: const/__init__.py:111 +#: const/__init__.py:121 msgid "asked a question" msgstr "kysyi kysymyksen" -#: const/__init__.py:112 +#: const/__init__.py:122 msgid "answered a question" msgstr "vastasi" -#: const/__init__.py:113 +#: const/__init__.py:123 msgid "commented question" msgstr "kommentoi kysymystä" -#: const/__init__.py:114 +#: const/__init__.py:124 msgid "commented answer" msgstr "kommentoi vastausta" -#: const/__init__.py:115 +#: const/__init__.py:125 msgid "edited question" msgstr "muokasi kysymystä" -#: const/__init__.py:116 +#: const/__init__.py:126 msgid "edited answer" msgstr "muokkasi vastausta" -#: const/__init__.py:117 +#: const/__init__.py:127 msgid "received award" msgstr "sai arvomerkin" -#: const/__init__.py:118 +#: const/__init__.py:128 msgid "marked best answer" msgstr "merkitty parhaaksi vastaukseksi" -#: const/__init__.py:119 +#: const/__init__.py:129 msgid "upvoted" msgstr "" -#: const/__init__.py:120 +#: const/__init__.py:130 msgid "downvoted" msgstr "" -#: const/__init__.py:121 +#: const/__init__.py:131 msgid "canceled vote" msgstr "perui äänen" -#: const/__init__.py:122 +#: const/__init__.py:132 msgid "deleted question" msgstr "poisti kysymyksen" -#: const/__init__.py:123 +#: const/__init__.py:133 msgid "deleted answer" msgstr "poisti vastauksen" -#: const/__init__.py:124 +#: const/__init__.py:134 msgid "marked offensive" msgstr "merkitsi loukkaavaksi" -#: const/__init__.py:125 +#: const/__init__.py:135 msgid "updated tags" msgstr "päivitetyt tagit" -#: const/__init__.py:126 +#: const/__init__.py:136 msgid "selected favorite" msgstr "valitsi suosikiksi" -#: const/__init__.py:127 +#: const/__init__.py:137 msgid "completed user profile" msgstr "täydensi käyttäjäprofiilin" -#: const/__init__.py:128 +#: const/__init__.py:138 msgid "email update sent to user" msgstr "sähköpostipäivitys lähetettiin käyttäjälle" -#: const/__init__.py:129 +#: const/__init__.py:141 +#, fuzzy +msgid "reminder about unanswered questions sent" +msgstr "näytä vastaamattomat kysymykset" + +#: const/__init__.py:143 msgid "mentioned in the post" msgstr "mainittu postauksessa" -#: const/__init__.py:180 +#: const/__init__.py:194 msgid "question_answered" msgstr "vastasi" -#: const/__init__.py:181 +#: const/__init__.py:195 msgid "question_commented" msgstr "kommentoi" -#: const/__init__.py:182 +#: const/__init__.py:196 msgid "answer_commented" msgstr "vastausta kommentoitu" -#: const/__init__.py:183 +#: const/__init__.py:197 msgid "answer_accepted" msgstr "vastaus hyväksytty" -#: const/__init__.py:187 +#: const/__init__.py:201 msgid "[closed]" msgstr "[suljettu]" -#: const/__init__.py:188 +#: const/__init__.py:202 msgid "[deleted]" msgstr "[poistettu]" -#: const/__init__.py:189 views/readers.py:549 +#: const/__init__.py:203 views/readers.py:614 msgid "initial version" msgstr "ensimmäinen versio" -#: const/__init__.py:190 +#: const/__init__.py:204 msgid "retagged" msgstr "uudelleentagitettu" -#: const/__init__.py:195 -msgid "exclude ignored tags" +#: const/__init__.py:212 +msgid "off" msgstr "" -#: const/__init__.py:196 -msgid "allow only selected tags" -msgstr "" +#: const/__init__.py:213 +#, fuzzy +msgid "exclude ignored" +msgstr "jätetty huomioitta" -#: const/__init__.py:200 +#: const/__init__.py:214 +#, fuzzy +msgid "only selected" +msgstr "Yksittäin valittu" + +#: const/__init__.py:218 msgid "instantly" msgstr "" -#: const/__init__.py:201 +#: const/__init__.py:219 msgid "daily" msgstr "päivittäin" -#: const/__init__.py:202 +#: const/__init__.py:220 msgid "weekly" msgstr "viikottain" -#: const/__init__.py:203 +#: const/__init__.py:221 msgid "no email" msgstr "ei sähköpostia" +#: const/__init__.py:228 +msgid "identicon" +msgstr "" + +#: const/__init__.py:229 +#, fuzzy +msgid "mystery-man" +msgstr "eilen" + +#: const/__init__.py:230 +msgid "monsterid" +msgstr "" + +#: const/__init__.py:231 +#, fuzzy +msgid "wavatar" +msgstr "Miten vaihdan profiilissani olevan kuvan (gravatar)?" + +#: const/__init__.py:232 +msgid "retro" +msgstr "" + +#: const/__init__.py:279 skins/default/templates/badges.html:37 +msgid "gold" +msgstr "kulta" + +#: const/__init__.py:280 skins/default/templates/badges.html:46 +msgid "silver" +msgstr "hopea" + +#: const/__init__.py:281 skins/default/templates/badges.html:53 +msgid "bronze" +msgstr "bronssi" + +#: const/__init__.py:293 +msgid "None" +msgstr "" + +#: const/__init__.py:294 +msgid "Gravatar" +msgstr "" + +#: const/__init__.py:295 +msgid "Uploaded Avatar" +msgstr "" + +#: const/message_keys.py:15 +#, fuzzy +msgid "most relevant questions" +msgstr "kysy kysymys mikä koskee aiheitamme" + +#: const/message_keys.py:16 +#, fuzzy +msgid "click to see most relevant questions" +msgstr "klikkaa nähdäksesi äänestetyimmät kysymykset" + +#: const/message_keys.py:17 +#, fuzzy +msgid "by relevance" +msgstr "merkitys" + +#: const/message_keys.py:18 +msgid "click to see the oldest questions" +msgstr "klikkaa nähdäksesi vanhimmat kysymykset" + #: const/message_keys.py:19 -#, python-format -msgid "First time here? Check out the FAQ!" +#, fuzzy +msgid "by date" +msgstr "Päivitä" + +#: const/message_keys.py:20 +msgid "click to see the newest questions" +msgstr "klikkaa nähdäksesi uusimmat kysymykset" + +#: const/message_keys.py:21 +msgid "click to see the least recently updated questions" +msgstr "klikkaa nähdäksesi vanhimmat päivitetyt kysymykset" + +#: const/message_keys.py:22 +#, fuzzy +msgid "by activity" +msgstr "aktiivinen" + +#: const/message_keys.py:23 +msgid "click to see the most recently updated questions" +msgstr "klikkaa nähdäksesi viimeksi päivitetyt kysymykset" + +#: const/message_keys.py:24 +#, fuzzy +msgid "click to see the least answered questions" +msgstr "klikkaa nähdäksesi vanhimmat kysymykset" + +#: const/message_keys.py:25 +#, fuzzy +msgid "by answers" +msgstr "vastaukset" + +#: const/message_keys.py:26 +#, fuzzy +msgid "click to see the most answered questions" +msgstr "klikkaa nähdäksesi äänestetyimmät kysymykset" + +#: const/message_keys.py:27 +msgid "click to see least voted questions" +msgstr "least voted questions" + +#: const/message_keys.py:28 +#, fuzzy +msgid "by votes" +msgstr "äänet" + +#: const/message_keys.py:29 +msgid "click to see most voted questions" +msgstr "klikkaa nähdäksesi äänestetyimmät kysymykset" + +#: deps/django_authopenid/backends.py:88 +msgid "" +"Welcome! Please set email address (important!) in your profile and adjust " +"screen name, if necessary." msgstr "" -"Ensimmäistä kertaa täällä? Katso Usein Kysytyt Kysymykset!" -#: deps/django_authopenid/forms.py:116 deps/django_authopenid/views.py:137 +#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:151 msgid "i-names are not supported" msgstr "i-nimet eivät ole tuetut" -#: deps/django_authopenid/forms.py:237 +#: deps/django_authopenid/forms.py:233 #, fuzzy, python-format msgid "Please enter your %(username_token)s" msgstr "Syötä käyttäjätunnuksesi" -#: deps/django_authopenid/forms.py:263 +#: deps/django_authopenid/forms.py:259 #, fuzzy msgid "Please, enter your user name" msgstr "Syötä käyttäjätunnuksesi" -#: deps/django_authopenid/forms.py:267 +#: deps/django_authopenid/forms.py:263 #, fuzzy msgid "Please, enter your password" msgstr "Syötä salasanasi" -#: deps/django_authopenid/forms.py:274 deps/django_authopenid/forms.py:278 +#: deps/django_authopenid/forms.py:270 deps/django_authopenid/forms.py:274 #, fuzzy msgid "Please, enter your new password" msgstr "Syötä salasanasi" -#: deps/django_authopenid/forms.py:289 +#: deps/django_authopenid/forms.py:285 msgid "Passwords did not match" msgstr "" -#: deps/django_authopenid/forms.py:301 +#: deps/django_authopenid/forms.py:297 #, python-format msgid "Please choose password > %(len)s characters" msgstr "" -#: deps/django_authopenid/forms.py:336 +#: deps/django_authopenid/forms.py:335 msgid "Current password" msgstr "Nykyinen salasana" -#: deps/django_authopenid/forms.py:347 +#: deps/django_authopenid/forms.py:346 msgid "" "Old password is incorrect. Please enter the correct " "password." msgstr "" -#: deps/django_authopenid/forms.py:400 +#: deps/django_authopenid/forms.py:399 msgid "Sorry, we don't have this email address in the database" msgstr "" @@ -1324,215 +2288,210 @@ msgstr "Käyttäjätunnuksesi (pakollinen)" msgid "Incorrect username." msgstr "Virheellinen tunnus" -#: deps/django_authopenid/urls.py:10 deps/django_authopenid/urls.py:11 -#: deps/django_authopenid/urls.py:12 deps/django_authopenid/urls.py:15 -#: deps/django_authopenid/urls.py:18 setup_templates/settings.py:182 +#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12 +#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:202 msgid "signin/" msgstr "kirjautuminen/" -#: deps/django_authopenid/urls.py:11 -msgid "newquestion/" -msgstr "uusi-kysymys/" - -#: deps/django_authopenid/urls.py:12 -msgid "newanswer/" -msgstr "uusi-vastaus/" - -#: deps/django_authopenid/urls.py:13 +#: deps/django_authopenid/urls.py:10 msgid "signout/" msgstr "poistu/" -#: deps/django_authopenid/urls.py:15 +#: deps/django_authopenid/urls.py:12 msgid "complete/" msgstr "valmis/" -#: deps/django_authopenid/urls.py:18 +#: deps/django_authopenid/urls.py:15 #, fuzzy msgid "complete-oauth/" msgstr "valmis/" -#: deps/django_authopenid/urls.py:22 +#: deps/django_authopenid/urls.py:19 msgid "register/" msgstr "rekisteroidy/" -#: deps/django_authopenid/urls.py:24 +#: deps/django_authopenid/urls.py:21 msgid "signup/" msgstr "luo-tunnus/" -#: deps/django_authopenid/urls.py:32 +#: deps/django_authopenid/urls.py:25 +msgid "logout/" +msgstr "kirjaudu-ulos/" + +#: deps/django_authopenid/urls.py:30 #, fuzzy msgid "recover/" msgstr "avaa-uudelleen/" -#: deps/django_authopenid/util.py:196 +#: deps/django_authopenid/util.py:378 #, fuzzy, python-format msgid "%(site)s user name and password" msgstr "Syötä käyttäjätunnus ja salasana" -#: deps/django_authopenid/util.py:202 -#: skins/default/templates/authopenid/signin.html:124 +#: deps/django_authopenid/util.py:384 +#: skins/default/templates/authopenid/signin.html:108 msgid "Create a password-protected account" msgstr "" -#: deps/django_authopenid/util.py:203 +#: deps/django_authopenid/util.py:385 #, fuzzy msgid "Change your password" msgstr "Vaihda salasana" -#: deps/django_authopenid/util.py:265 +#: deps/django_authopenid/util.py:473 msgid "Sign in with Yahoo" msgstr "" -#: deps/django_authopenid/util.py:272 +#: deps/django_authopenid/util.py:480 #, fuzzy msgid "AOL screen name" msgstr "Tunnus" -#: deps/django_authopenid/util.py:280 +#: deps/django_authopenid/util.py:488 #, fuzzy msgid "OpenID url" msgstr "OpenID-palvelun URL-osoite:" -#: deps/django_authopenid/util.py:297 -#, fuzzy -msgid "MyOpenid user name" -msgstr "käyttäjänimen mukaan" - -#: deps/django_authopenid/util.py:305 deps/django_authopenid/util.py:313 +#: deps/django_authopenid/util.py:517 #, fuzzy msgid "Flickr user name" msgstr "käyttäjätunnus" -#: deps/django_authopenid/util.py:321 +#: deps/django_authopenid/util.py:525 #, fuzzy msgid "Technorati user name" msgstr "Valitse tunnus" -#: deps/django_authopenid/util.py:329 +#: deps/django_authopenid/util.py:533 msgid "WordPress blog name" msgstr "" -#: deps/django_authopenid/util.py:337 +#: deps/django_authopenid/util.py:541 msgid "Blogger blog name" msgstr "" -#: deps/django_authopenid/util.py:345 +#: deps/django_authopenid/util.py:549 msgid "LiveJournal blog name" msgstr "" -#: deps/django_authopenid/util.py:353 +#: deps/django_authopenid/util.py:557 #, fuzzy msgid "ClaimID user name" msgstr "käyttäjätunnus" -#: deps/django_authopenid/util.py:361 +#: deps/django_authopenid/util.py:565 #, fuzzy msgid "Vidoop user name" msgstr "käyttäjätunnus" -#: deps/django_authopenid/util.py:369 +#: deps/django_authopenid/util.py:573 #, fuzzy msgid "Verisign user name" msgstr "käyttäjätunnus" -#: deps/django_authopenid/util.py:393 +#: deps/django_authopenid/util.py:608 #, fuzzy, python-format msgid "Change your %(provider)s password" msgstr "Vaihda salasana" -#: deps/django_authopenid/util.py:397 +#: deps/django_authopenid/util.py:612 #, python-format msgid "Click to see if your %(provider)s signin still works for %(site_name)s" msgstr "" -#: deps/django_authopenid/util.py:406 +#: deps/django_authopenid/util.py:621 #, python-format msgid "Create password for %(provider)s" msgstr "" -#: deps/django_authopenid/util.py:410 +#: deps/django_authopenid/util.py:625 #, fuzzy, python-format msgid "Connect your %(provider)s account to %(site_name)s" msgstr "Kirjautuminen" -#: deps/django_authopenid/util.py:419 +#: deps/django_authopenid/util.py:634 #, fuzzy, python-format msgid "Signin with %(provider)s user name and password" msgstr "Syötä käyttäjätunnus ja salasana" -#: deps/django_authopenid/util.py:426 +#: deps/django_authopenid/util.py:641 #, python-format msgid "Sign in with your %(provider)s account" msgstr "" -#: deps/django_authopenid/views.py:144 +#: deps/django_authopenid/views.py:158 #, python-format msgid "OpenID %(openid_url)s is invalid" msgstr "" -#: deps/django_authopenid/views.py:256 deps/django_authopenid/views.py:399 -#: deps/django_authopenid/views.py:427 +#: deps/django_authopenid/views.py:270 deps/django_authopenid/views.py:415 +#: deps/django_authopenid/views.py:443 #, 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:349 +#: deps/django_authopenid/views.py:365 #, fuzzy msgid "Your new password saved" msgstr "Salasanasi vaihdettiin" -#: deps/django_authopenid/views.py:511 +#: deps/django_authopenid/views.py:469 +msgid "The login password combination was not correct" +msgstr "" + +#: deps/django_authopenid/views.py:573 msgid "Please click any of the icons below to sign in" msgstr "" -#: deps/django_authopenid/views.py:513 +#: deps/django_authopenid/views.py:575 msgid "Account recovery email sent" msgstr "" -#: deps/django_authopenid/views.py:516 +#: deps/django_authopenid/views.py:578 msgid "Please add one or more login methods." msgstr "" -#: deps/django_authopenid/views.py:518 +#: deps/django_authopenid/views.py:580 msgid "If you wish, please add, remove or re-validate your login methods" msgstr "" -#: deps/django_authopenid/views.py:520 +#: deps/django_authopenid/views.py:582 msgid "Please wait a second! Your account is recovered, but ..." msgstr "" -#: deps/django_authopenid/views.py:522 +#: deps/django_authopenid/views.py:584 msgid "Sorry, this account recovery key has expired or is invalid" msgstr "" -#: deps/django_authopenid/views.py:578 +#: deps/django_authopenid/views.py:657 #, python-format msgid "Login method %(provider_name)s does not exist" msgstr "" -#: deps/django_authopenid/views.py:584 +#: deps/django_authopenid/views.py:663 msgid "Oops, sorry - there was some error - please try again" msgstr "" -#: deps/django_authopenid/views.py:675 +#: deps/django_authopenid/views.py:754 #, python-format msgid "Your %(provider)s login works fine" msgstr "" -#: deps/django_authopenid/views.py:973 deps/django_authopenid/views.py:979 +#: deps/django_authopenid/views.py:1065 deps/django_authopenid/views.py:1071 #, python-format msgid "your email needs to be validated see %(details_url)s" msgstr "" "Your email needs to be validated. Please see details here." -#: deps/django_authopenid/views.py:1000 -msgid "Email verification subject line" -msgstr "Verification Email from Q&A forum" +#: deps/django_authopenid/views.py:1092 +#, fuzzy, python-format +msgid "Recover your %(site)s account" +msgstr "Anna tunnuksellesi uusi salasana." -#: deps/django_authopenid/views.py:1065 +#: deps/django_authopenid/views.py:1162 msgid "Please check your email and visit the enclosed link." msgstr "" @@ -1540,24 +2499,24 @@ msgstr "" msgid "Site" msgstr "Sivusto" -#: deps/livesettings/values.py:107 +#: deps/livesettings/values.py:106 msgid "Base Settings" msgstr "" -#: deps/livesettings/values.py:214 +#: deps/livesettings/values.py:213 msgid "Default value: \"\"" msgstr "" -#: deps/livesettings/values.py:221 +#: deps/livesettings/values.py:220 msgid "Default value: " msgstr "" -#: deps/livesettings/values.py:224 +#: deps/livesettings/values.py:223 #, python-format msgid "Default value: %s" msgstr "" -#: deps/livesettings/values.py:589 +#: deps/livesettings/values.py:601 #, fuzzy, python-format msgid "Allowed image file types are %(types)s" msgstr "hyväksytyt tiedostotyypit ovat '%(file_types)s'" @@ -1573,7 +2532,7 @@ msgstr "Dokumentaatio" #: deps/livesettings/templates/livesettings/group_settings.html:11 #: deps/livesettings/templates/livesettings/site_settings.html:23 -#: skins/default/templates/authopenid/signin.html:142 +#: skins/default/templates/authopenid/signin.html:132 msgid "Change password" msgstr "Vaihda salasana" @@ -1595,8 +2554,8 @@ msgstr "" #: deps/livesettings/templates/livesettings/site_settings.html:50 msgid "Please correct the error below." msgid_plural "Please correct the errors below." -msgstr[0] "Korjaa allaoleva virheet:" -msgstr[1] "Korjaa allaolevat virhe:" +msgstr[0] "Korjaa allaolevat virhe:" +msgstr[1] "Korjaa allaoleva virheet:" #: deps/livesettings/templates/livesettings/group_settings.html:28 #, python-format @@ -1633,102 +2592,100 @@ msgstr "Ryhmäasetukset: %(name)s" msgid "Uncollapse all" msgstr "Luhista kaikki" -#: deps/recaptcha_django/__init__.py:19 deps/recaptcha_django/__init__.py:80 -msgid "Unknown error." -msgstr "Tuntematon virhe." - -#: deps/recaptcha_django/__init__.py:20 deps/recaptcha_django/__init__.py:21 -msgid "ReCAPTCHA is wrongly configured." -msgstr "ReCAPTCHA ei ole konfiguroitu oikein." +#: importers/stackexchange/management/commands/load_stackexchange.py:141 +msgid "Congratulations, you are now an Administrator" +msgstr "Onnittelut, olet nyt pääkäyttäjä" -#: deps/recaptcha_django/__init__.py:22 -msgid "Bad reCAPTCHA challenge parameter." +#: 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 "" -#: deps/recaptcha_django/__init__.py:23 -msgid "The CAPTCHA solution was incorrect." +#: management/commands/post_emailed_questions.py:35 +msgid "" +"

    To ask by email, please:

    \n" +"
      \n" +"
    • Format the subject line as: [Tag1; Tag2] Question title
    • \n" +"
    • Type details of your question into the email body
    • \n" +"
    \n" +"

    Note that tags may consist of more than one word, and tags\n" +"may be separated by a semicolon or a comma

    \n" msgstr "" -#: deps/recaptcha_django/__init__.py:24 -msgid "Bad reCAPTCHA verification parameters." +#: management/commands/post_emailed_questions.py:55 +#, python-format +msgid "" +"

    Sorry, there was an error posting your question please contact the " +"%(site)s administrator

    " msgstr "" -#: deps/recaptcha_django/__init__.py:25 -msgid "Provided reCAPTCHA API keys are not valid for this domain." -msgstr "reCAPTCHA-palvelun avaimet ovat väärät." - -#: deps/recaptcha_django/__init__.py:26 -msgid "ReCAPTCHA could not be reached." -msgstr "reCAPTCHA-palveluun ei saatu yhteyttä." - -#: deps/recaptcha_django/__init__.py:73 -msgid "Invalid request" -msgstr "Tuntematon pyyntö" - -#: importers/stackexchange/management/commands/load_stackexchange.py:125 -msgid "Congratulations, you are now an Administrator" -msgstr "Onnittelut, olet nyt pääkäyttäjä" - -#: management/commands/send_email_alerts.py:105 +#: management/commands/post_emailed_questions.py:61 #, python-format -msgid "\" and \"%s\"" +msgid "" +"

    Sorry, in order to post questions on %(site)s by email, please register first

    " msgstr "" -#: management/commands/send_email_alerts.py:108 -#, fuzzy -msgid "\" and more" -msgstr "Ota selvää" +#: management/commands/post_emailed_questions.py:69 +msgid "" +"

    Sorry, your question could not be posted due to insufficient privileges " +"of your user account

    " +msgstr "" -#: management/commands/send_email_alerts.py:113 +#: management/commands/send_email_alerts.py:411 #, 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:467 +#: management/commands/send_email_alerts.py:421 #, python-format msgid "%(name)s, this is an update message header for %(num)d question" msgid_plural "%(name)s, this is an update message header for %(num)d questions" msgstr[0] "" msgstr[1] "" -#: management/commands/send_email_alerts.py:484 +#: management/commands/send_email_alerts.py:438 msgid "new question" msgstr "uusi kysymys" -#: management/commands/send_email_alerts.py:501 +#: 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:513 +#: 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:519 +#: 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:525 +#: 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:530 +#: management/commands/send_email_alerts.py:490 #, fuzzy, python-format msgid "" -"go to %(email_settings_link)s to change frequency of email updates or %" -"(admin_email)s administrator" +"go to %(email_settings_link)s to change frequency of email updates or " +"%(admin_email)s administrator" msgstr "" "

    Please remember that you can always adjust " "frequency of the email updates or turn them off entirely.
    If you believe " @@ -1736,486 +2693,62 @@ msgstr "" "administrator at %(email)s.

    Sincerely,

    Your friendly Q&A forum " "server.

    " -#: migrations/0005_install_badges.py:11 -msgid "Disciplined" -msgstr "Kurinalainen" - -#: migrations/0005_install_badges.py:11 -msgid "disciplined" -msgstr "kurinalainen" - -#: migrations/0005_install_badges.py:11 -msgid "Deleted own post with score of 3 or higher" -msgstr "Poisti oman postauksen jolla oli kolme tai yli kolme ääntä" - -#: migrations/0005_install_badges.py:12 -msgid "Peer Pressure" -msgstr "Ryhmäpainostus" - -#: migrations/0005_install_badges.py:12 -msgid "peer-pressure" -msgstr "ryhma-painostus" - -#: migrations/0005_install_badges.py:12 -msgid "Deleted own post with score of -3 or lower" -msgstr "Poisti oman postauksen, jolla oli -3 tai vähemmän ääniä" - -#: migrations/0005_install_badges.py:13 -msgid "Nice answer" -msgstr "Hyvä vastaus" - -#: migrations/0005_install_badges.py:13 -msgid "nice-answer" -msgstr "hyva-vastaus" - -#: migrations/0005_install_badges.py:13 -msgid "Answer voted up 10 times" -msgstr "Vastausta äänestetty kymmenen kertaa" - -#: migrations/0005_install_badges.py:14 -msgid "Nice Question" -msgstr "Hyvä kysymys" - -#: migrations/0005_install_badges.py:14 -msgid "nice-question" -msgstr "hyva-kysymys" - -#: migrations/0005_install_badges.py:14 -msgid "Question voted up 10 times" -msgstr "Kysymystä äänestetty kymmenen kertaa" - -#: migrations/0005_install_badges.py:15 -msgid "Pundit" -msgstr "" - -#: migrations/0005_install_badges.py:15 -msgid "pundit" -msgstr "" - -#: migrations/0005_install_badges.py:15 -msgid "Left 10 comments with score of 10 or more" -msgstr "Jätti kymmenen kommenttia, joka sai kymmenen ääntä tai enemmän" - -#: migrations/0005_install_badges.py:16 -msgid "Popular Question" -msgstr "Suosittu kysymys" - -#: migrations/0005_install_badges.py:16 -msgid "popular-question" -msgstr "suosittu-kysymys" - -#: migrations/0005_install_badges.py:16 -msgid "Asked a question with 1,000 views" -msgstr "" - -#: migrations/0005_install_badges.py:17 -msgid "Citizen patrol" -msgstr "" - -#: migrations/0005_install_badges.py:17 -msgid "citizen-patrol" -msgstr "" - -#: migrations/0005_install_badges.py:17 -msgid "First flagged post" -msgstr "" - -#: migrations/0005_install_badges.py:18 -msgid "Cleanup" -msgstr "Siivoaja" - -#: migrations/0005_install_badges.py:18 -msgid "cleanup" -msgstr "siivoaja" - -#: migrations/0005_install_badges.py:18 -msgid "First rollback" -msgstr "" - -#: migrations/0005_install_badges.py:19 -msgid "Critic" -msgstr "Kriitikko" - -#: migrations/0005_install_badges.py:19 -msgid "critic" -msgstr "kriitikko" - -#: migrations/0005_install_badges.py:19 -msgid "First down vote" -msgstr "Ensimmäinen alasäänestys" - -#: migrations/0005_install_badges.py:20 -msgid "Editor" -msgstr "Muokkaaja" - -#: migrations/0005_install_badges.py:20 -msgid "editor" -msgstr "muokkaaja" - -#: migrations/0005_install_badges.py:20 -msgid "First edit" -msgstr "Ensimmäinen muokkaus" - -#: migrations/0005_install_badges.py:21 -msgid "Organizer" -msgstr "Järjestelijä" - -#: migrations/0005_install_badges.py:21 -msgid "organizer" -msgstr "jarjestelija" - -#: migrations/0005_install_badges.py:21 -msgid "First retag" -msgstr "Ensimmäinen uudelleentagitus" - -#: migrations/0005_install_badges.py:22 -msgid "Scholar" -msgstr "Oppilas" - -#: migrations/0005_install_badges.py:22 -msgid "scholar" -msgstr "oppilas" - -#: migrations/0005_install_badges.py:22 -msgid "First accepted answer on your own question" -msgstr "Ensimmäinen hyväksytty vastaus omaan kysymykseesi" - -#: migrations/0005_install_badges.py:23 -msgid "Student" -msgstr "Oppilas" - -#: migrations/0005_install_badges.py:23 -msgid "student" -msgstr "oppilas" - -#: migrations/0005_install_badges.py:23 -msgid "Asked first question with at least one up vote" -msgstr "Kysyi ensimmäisen kysymyksen joka sai vähintään yhden äänen" - -#: migrations/0005_install_badges.py:24 -msgid "Supporter" -msgstr "Tukija" - -#: migrations/0005_install_badges.py:24 -msgid "supporter" -msgstr "tukija" - -#: migrations/0005_install_badges.py:24 -msgid "First up vote" -msgstr "Ensimmäinen ääni" - -#: migrations/0005_install_badges.py:25 -msgid "Teacher" -msgstr "Opettaja" - -#: migrations/0005_install_badges.py:25 -msgid "teacher" -msgstr "opettaja" - -#: migrations/0005_install_badges.py:25 -msgid "Answered first question with at least one up vote" -msgstr "Vastasi ensimmäiseen kysymykseen bvähintään yhdellä äänellä" - -#: migrations/0005_install_badges.py:26 -msgid "Autobiographer" -msgstr "Elämänkerran kirjoittaja" - -#: migrations/0005_install_badges.py:26 -msgid "autobiographer" -msgstr "elamankerta" - -#: migrations/0005_install_badges.py:26 -msgid "Completed all user profile fields" -msgstr "Täytti kaikki profiilinsa kentät" - -#: migrations/0005_install_badges.py:27 -msgid "Self-Learner" -msgstr "Itseoppija" - -#: migrations/0005_install_badges.py:27 -msgid "self-learner" -msgstr "itseoppija" - -#: migrations/0005_install_badges.py:27 -msgid "Answered your own question with at least 3 up votes" -msgstr "Vastasi omaan kysymykseensä, joka sai vähintään 3 ääntä" - -#: migrations/0005_install_badges.py:28 -msgid "Great Answer" -msgstr "Loistava vastaus" - -#: migrations/0005_install_badges.py:28 -msgid "great-answer" -msgstr "loistava-vastaus" - -#: migrations/0005_install_badges.py:28 -msgid "Answer voted up 100 times" -msgstr "Vastausta äänestetty sata kertaa" - -#: migrations/0005_install_badges.py:29 -msgid "Great Question" -msgstr "Loistava kysymys" - -#: migrations/0005_install_badges.py:29 -msgid "great-question" -msgstr "loistava-kysymys" - -#: migrations/0005_install_badges.py:29 -msgid "Question voted up 100 times" -msgstr "Kysymystä äänestetty sata kertaa" - -#: migrations/0005_install_badges.py:30 -msgid "Stellar Question" -msgstr "Tähtikysymys" - -#: migrations/0005_install_badges.py:30 -msgid "stellar-question" -msgstr "tahtikysymys" - -#: migrations/0005_install_badges.py:30 -msgid "Question favorited by 100 users" -msgstr "Kysymys lisättiin sadan käyttäjän suosikkilistalle" - -#: migrations/0005_install_badges.py:31 -msgid "Famous question" -msgstr "Tunnettu kysymys" - -#: migrations/0005_install_badges.py:31 -msgid "famous-question" -msgstr "tunnettu-kysymys" - -#: migrations/0005_install_badges.py:31 -msgid "Asked a question with 10,000 views" -msgstr "Kysyi kysymyksen, joka sai kymmenentuhatta katselukertaa" - -#: migrations/0005_install_badges.py:32 -msgid "Alpha" -msgstr "Alfa" - -#: migrations/0005_install_badges.py:32 -msgid "alpha" -msgstr "alfa" - -#: migrations/0005_install_badges.py:32 -msgid "Actively participated in the private alpha" -msgstr "Osallistui aktiivisesti alfaversion kehittämiseen" - -#: migrations/0005_install_badges.py:33 -msgid "Good Answer" -msgstr "Pätevä vastaus" - -#: migrations/0005_install_badges.py:33 -msgid "good-answer" -msgstr "pateva-vastaus" - -#: migrations/0005_install_badges.py:33 -msgid "Answer voted up 25 times" -msgstr "Vastausta äänestetty 25 kertaa" - -#: migrations/0005_install_badges.py:34 -msgid "Good Question" -msgstr "Pätevä kysymys" - -#: migrations/0005_install_badges.py:34 -msgid "good-question" -msgstr "pateva-kysymys" - -#: migrations/0005_install_badges.py:34 -msgid "Question voted up 25 times" -msgstr "Kysymystä äänestettiin vähintään 25 kertaa" - -#: migrations/0005_install_badges.py:35 -msgid "Favorite Question" -msgstr "Suosikkikysymys" - -#: migrations/0005_install_badges.py:35 -msgid "favorite-question" -msgstr "suosikki-kysymys" - -#: migrations/0005_install_badges.py:35 -msgid "Question favorited by 25 users" -msgstr "25 käyttäjää lisäsi kysymyksen suosikikseen" - -#: migrations/0005_install_badges.py:36 -msgid "Civic duty" -msgstr "Kansalaisvelvollisuus" - -#: migrations/0005_install_badges.py:36 -msgid "civic-duty" -msgstr "kansalaisvelvollisuus" - -#: migrations/0005_install_badges.py:36 -msgid "Voted 300 times" -msgstr "Äänestetty kolmesataa kertaa" - -#: migrations/0005_install_badges.py:37 -msgid "Strunk & White" -msgstr "" - -#: migrations/0005_install_badges.py:37 -msgid "strunk-and-white" -msgstr "" - -#: migrations/0005_install_badges.py:37 -msgid "Edited 100 entries" -msgstr "Muokkasi sata merkintää" - -#: migrations/0005_install_badges.py:38 -msgid "Generalist" -msgstr "Yleistäjä" - -#: migrations/0005_install_badges.py:38 -msgid "generalist" -msgstr "yleistaja" - -#: migrations/0005_install_badges.py:38 -msgid "Active in many different tags" -msgstr "Aktiivinen monen tagin alla" - -#: migrations/0005_install_badges.py:39 -msgid "Expert" -msgstr "Ekspertti" - -#: migrations/0005_install_badges.py:39 -msgid "expert" -msgstr "ekspertti" - -#: migrations/0005_install_badges.py:39 -msgid "Very active in one tag" -msgstr "Aktiivinen yhden tagin alla" - -#: migrations/0005_install_badges.py:40 -msgid "Yearling" -msgstr "Yksivuotias" - -#: migrations/0005_install_badges.py:40 -msgid "yearling" -msgstr "yksivuotias" - -#: migrations/0005_install_badges.py:40 -msgid "Active member for a year" -msgstr "Aktiivinen jäsen vuoden ajan" - -#: migrations/0005_install_badges.py:41 -msgid "Notable Question" -msgstr "Huomattava kysymys" - -#: migrations/0005_install_badges.py:41 -msgid "notable-question" -msgstr "huomattava-kysymys" - -#: migrations/0005_install_badges.py:41 -msgid "Asked a question with 2,500 views" -msgstr "Kysyi kysymyksen, joka sai vähintään 2500 katselijaa" - -#: migrations/0005_install_badges.py:42 -msgid "Enlightened" -msgstr "Valistunut" - -#: migrations/0005_install_badges.py:42 -msgid "enlightened" -msgstr "valistunut" - -#: migrations/0005_install_badges.py:42 -msgid "First answer was accepted with at least 10 up votes" -msgstr "" - -#: migrations/0005_install_badges.py:43 -msgid "Beta" -msgstr "Beeta" - -#: migrations/0005_install_badges.py:43 -msgid "beta" -msgstr "beeta" - -#: migrations/0005_install_badges.py:43 -msgid "Actively participated in the private beta" -msgstr "" - -#: migrations/0005_install_badges.py:44 -msgid "Guru" -msgstr "Guru" - -#: migrations/0005_install_badges.py:44 -msgid "guru" -msgstr "guru" - -#: migrations/0005_install_badges.py:44 -msgid "Accepted answer and voted up 40 times" -msgstr "" - -#: migrations/0005_install_badges.py:45 -msgid "Necromancer" -msgstr "Kuolleistaherättäjä" - -#: migrations/0005_install_badges.py:45 -msgid "necromancer" -msgstr "kuolleistaherattaja" - -#: migrations/0005_install_badges.py:45 -msgid "Answered a question more than 60 days later with at least 5 votes" -msgstr "Vastasi kysymykseen 60 päivää myöhemmin ja sai vähintään viisi ääntä" - -#: migrations/0005_install_badges.py:46 -msgid "Taxonomist" -msgstr "Taksonomi" - -#: migrations/0005_install_badges.py:46 -msgid "taxonomist" -msgstr "taksonomi" - -#: migrations/0005_install_badges.py:46 -msgid "Created a tag used by 50 questions" -msgstr "Loi tagin, jota käytetään yli viidessäkymmenessä kysymyksessä" +#: management/commands/send_unanswered_question_reminders.py:80 +#, python-format +msgid "%(question_count)d unanswered question about %(topics)s" +msgid_plural "%(question_count)d unanswered questions about %(topics)s" +msgstr[0] "" +msgstr[1] "" -#: models/__init__.py:169 +#: models/__init__.py:316 msgid "" "Sorry, you cannot accept or unaccept best answers because your account is " "blocked" msgstr "" -#: models/__init__.py:174 +#: models/__init__.py:320 msgid "" "Sorry, you cannot accept or unaccept best answers because your account is " "suspended" msgstr "" -#: models/__init__.py:180 -#, fuzzy +#: models/__init__.py:333 +#, fuzzy, python-format msgid "" -"Sorry, you cannot accept or unaccept your own answer to your own question" +">%(points)s points required to accept or unaccept your own answer to your " +"own question" msgstr "Ensimmäinen hyväksytty vastaus omaan kysymykseesi" -#: models/__init__.py:187 +#: models/__init__.py:347 #, python-format msgid "" -"Sorry, only original author of the question - %(username)s - can accept the " -"best answer" +"Sorry, only original author of the question - %(username)s - can accept or " +"unaccept the best answer" msgstr "" -#: models/__init__.py:210 +#: models/__init__.py:375 msgid "cannot vote for own posts" msgstr "et voi äänestää omia postauksia" -#: models/__init__.py:213 +#: models/__init__.py:378 msgid "Sorry your account appears to be blocked " msgstr "" -#: models/__init__.py:218 +#: models/__init__.py:383 msgid "Sorry your account appears to be suspended " msgstr "" -#: models/__init__.py:228 +#: models/__init__.py:393 #, python-format msgid ">%(points)s points required to upvote" msgstr "tarvitset >%(points)s points äänestämiseen " -#: models/__init__.py:234 +#: models/__init__.py:399 #, python-format msgid ">%(points)s points required to downvote" msgstr ">%(points)s mainetta tarvitaan" -#: models/__init__.py:249 +#: models/__init__.py:414 #, fuzzy msgid "Sorry, blocked users cannot upload files" msgstr "" @@ -2223,7 +2756,7 @@ msgstr "" "until this issue is resolved. Please contact the forum administrator to " "reach a resolution." -#: models/__init__.py:250 +#: models/__init__.py:415 #, fuzzy msgid "Sorry, suspended users cannot upload files" msgstr "" @@ -2231,13 +2764,13 @@ 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:252 +#: models/__init__.py:417 #, 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:271 models/__init__.py:331 models/__init__.py:1950 +#: models/__init__.py:436 models/__init__.py:503 models/__init__.py:918 #, fuzzy msgid "blocked users cannot post" msgstr "" @@ -2245,7 +2778,7 @@ msgstr "" "until this issue is resolved. Please contact the forum administrator to " "reach a resolution." -#: models/__init__.py:272 models/__init__.py:1953 +#: models/__init__.py:437 models/__init__.py:921 #, fuzzy msgid "suspended users cannot post" msgstr "" @@ -2253,62 +2786,67 @@ 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:297 +#: models/__init__.py:464 +#, python-format msgid "" -"Sorry, comments (except the last one) are editable only within 10 minutes " -"from posting" -msgstr "" +"Sorry, comments (except the last one) are editable only within %(minutes)s " +"minute from posting" +msgid_plural "" +"Sorry, comments (except the last one) are editable only within %(minutes)s " +"minutes from posting" +msgstr[0] "" +msgstr[1] "" -#: models/__init__.py:303 +#: models/__init__.py:476 msgid "Sorry, but only post owners or moderators can edit comments" msgstr "" -#: models/__init__.py:317 +#: models/__init__.py:489 msgid "" "Sorry, since your account is suspended you can comment only your own posts" msgstr "" -#: models/__init__.py:321 +#: models/__init__.py:493 #, 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:349 +#: models/__init__.py:521 msgid "" -"This post has been deleted and can be seen only by post ownwers, site " +"This post has been deleted and can be seen only by post owners, site " "administrators and moderators" msgstr "" -#: models/__init__.py:366 +#: models/__init__.py:538 msgid "" "Sorry, only moderators, site administrators and post owners can edit deleted " "posts" msgstr "" -#: models/__init__.py:381 +#: models/__init__.py:553 msgid "Sorry, since your account is blocked you cannot edit posts" msgstr "" -#: models/__init__.py:385 +#: models/__init__.py:557 msgid "Sorry, since your account is suspended you can edit only your own posts" msgstr "" -#: models/__init__.py:390 +#: models/__init__.py:562 #, python-format msgid "" "Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required" msgstr "" -#: models/__init__.py:397 +#: models/__init__.py:569 #, python-format msgid "" "Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is " "required" msgstr "" -#: models/__init__.py:460 +#: models/__init__.py:632 msgid "" "Sorry, cannot delete your question since it has an upvoted answer posted by " "someone else" @@ -2318,61 +2856,61 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: models/__init__.py:475 +#: models/__init__.py:647 msgid "Sorry, since your account is blocked you cannot delete posts" msgstr "" -#: models/__init__.py:479 +#: models/__init__.py:651 msgid "" "Sorry, since your account is suspended you can delete only your own posts" msgstr "" -#: models/__init__.py:483 +#: models/__init__.py:655 #, python-format msgid "" "Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s " "is required" msgstr "" -#: models/__init__.py:503 +#: models/__init__.py:675 msgid "Sorry, since your account is blocked you cannot close questions" msgstr "" -#: models/__init__.py:507 +#: models/__init__.py:679 msgid "Sorry, since your account is suspended you cannot close questions" msgstr "" -#: models/__init__.py:511 +#: models/__init__.py:683 #, python-format msgid "" "Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is " "required" msgstr "" -#: models/__init__.py:520 +#: models/__init__.py:692 #, python-format msgid "" "Sorry, to close own question a minimum reputation of %(min_rep)s is required" msgstr "" -#: models/__init__.py:544 +#: models/__init__.py:716 #, python-format msgid "" -"Sorry, only administrators, moderators or post owners with reputation > %" -"(min_rep)s can reopen questions." +"Sorry, only administrators, moderators or post owners with reputation > " +"%(min_rep)s can reopen questions." msgstr "" -#: models/__init__.py:550 +#: models/__init__.py:722 #, python-format msgid "" "Sorry, to reopen own question a minimum reputation of %(min_rep)s is required" msgstr "" -#: models/__init__.py:570 +#: models/__init__.py:742 msgid "cannot flag message as offensive twice" msgstr "" -#: models/__init__.py:575 +#: models/__init__.py:747 #, fuzzy msgid "blocked users cannot flag posts" msgstr "" @@ -2380,7 +2918,7 @@ msgstr "" "until this issue is resolved. Please contact the forum administrator to " "reach a resolution." -#: models/__init__.py:577 +#: models/__init__.py:749 #, fuzzy msgid "suspended users cannot flag posts" msgstr "" @@ -2388,110 +2926,157 @@ 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:579 +#: models/__init__.py:751 #, python-format msgid "need > %(min_rep)s points to flag spam" msgstr "" -#: models/__init__.py:598 +#: models/__init__.py:770 #, python-format msgid "%(max_flags_per_day)s exceeded" msgstr "" -#: models/__init__.py:613 +#: models/__init__.py:785 msgid "" "Sorry, only question owners, site administrators and moderators can retag " "deleted questions" msgstr "" -#: models/__init__.py:620 +#: models/__init__.py:792 msgid "Sorry, since your account is blocked you cannot retag questions" msgstr "" -#: models/__init__.py:624 +#: models/__init__.py:796 msgid "" "Sorry, since your account is suspended you can retag only your own questions" msgstr "" -#: models/__init__.py:628 +#: models/__init__.py:800 #, python-format msgid "" "Sorry, to retag questions a minimum reputation of %(min_rep)s is required" msgstr "" -#: models/__init__.py:647 +#: models/__init__.py:819 msgid "Sorry, since your account is blocked you cannot delete comment" msgstr "" -#: models/__init__.py:651 +#: models/__init__.py:823 msgid "" "Sorry, since your account is suspended you can delete only your own comments" msgstr "" -#: models/__init__.py:655 +#: models/__init__.py:827 #, python-format msgid "Sorry, to delete comments reputation of %(min_rep)s is required" msgstr "" -#: models/__init__.py:678 +#: models/__init__.py:850 msgid "cannot revoke old vote" msgstr "vanhoja ääniä ei voi muuttaa" -#: models/__init__.py:1166 views/users.py:388 +#: models/__init__.py:1325 utils/functions.py:70 +#, python-format +msgid "on %(date)s" +msgstr "%(date)s" + +#: models/__init__.py:1327 +msgid "in two days" +msgstr "" + +#: models/__init__.py:1329 +msgid "tomorrow" +msgstr "" + +#: models/__init__.py:1331 +#, fuzzy, python-format +msgid "in %(hr)d hour" +msgid_plural "in %(hr)d hours" +msgstr[0] "%(hr)d tunti sitten" +msgstr[1] "%(hr)d tuntia sitten" + +#: models/__init__.py:1333 +#, fuzzy, python-format +msgid "in %(min)d min" +msgid_plural "in %(min)d mins" +msgstr[0] "%(min)d minuutti sitten" +msgstr[1] "%(min)d minuuttia sitten" + +#: models/__init__.py:1334 +#, python-format +msgid "%(days)d day" +msgid_plural "%(days)d days" +msgstr[0] "" +msgstr[1] "" + +#: models/__init__.py:1336 +#, 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:1501 skins/default/templates/feedback_email.txt:9 +#, fuzzy +msgid "Anonymous" +msgstr "anonyymi" + +#: models/__init__.py:1597 views/users.py:365 #, fuzzy msgid "Site Adminstrator" msgstr "Terveisin ylläpito" -#: models/__init__.py:1168 views/users.py:390 +#: models/__init__.py:1599 views/users.py:367 msgid "Forum Moderator" msgstr "" -#: models/__init__.py:1170 views/users.py:392 +#: models/__init__.py:1601 views/users.py:369 #, fuzzy msgid "Suspended User" msgstr "Lähettäjä on" -#: models/__init__.py:1172 views/users.py:394 +#: models/__init__.py:1603 views/users.py:371 msgid "Blocked User" msgstr "" -#: models/__init__.py:1174 views/users.py:396 +#: models/__init__.py:1605 views/users.py:373 #, fuzzy msgid "Registered User" msgstr "Rekisteröity käyttäjä" -#: models/__init__.py:1176 +#: models/__init__.py:1607 msgid "Watched User" msgstr "" -#: models/__init__.py:1178 +#: models/__init__.py:1609 msgid "Approved User" msgstr "" -#: models/__init__.py:1234 +#: models/__init__.py:1718 #, fuzzy, python-format msgid "%(username)s karma is %(reputation)s" msgstr "maineesi on %(reputation)s" -#: models/__init__.py:1244 +#: models/__init__.py:1728 #, python-format msgid "one gold badge" msgid_plural "%(count)d gold badges" msgstr[0] "" msgstr[1] "" -#: models/__init__.py:1251 +#: models/__init__.py:1735 #, fuzzy, python-format msgid "one silver badge" msgid_plural "%(count)d silver badges" msgstr[0] "" "Obtaining silver badge requires significant patience. If you have received " -"one, that means you have greatly contributed to this community." +"%(count)done, that means you have greatly " +"contributed to this community." msgstr[1] "" "Obtaining silver badge requires significant patience. If you have received " -"one, that means you have greatly contributed to this community." +"%(count)d, that means you have greatly contributed to this community." -#: models/__init__.py:1258 +#: models/__init__.py:1742 #, fuzzy, python-format msgid "one bronze badge" msgid_plural "%(count)d bronze badges" @@ -2500,157 +3085,456 @@ msgstr[0] "" msgstr[1] "" "Jos olet aktiivinen osallistuja sivustolla, saat tämän kunniamerkin." -#: models/__init__.py:1269 +#: models/__init__.py:1753 #, python-format msgid "%(item1)s and %(item2)s" msgstr "" -#: models/__init__.py:1273 +#: models/__init__.py:1757 #, python-format msgid "%(user)s has %(badges)s" msgstr "" -#: models/__init__.py:1566 models/__init__.py:1572 models/__init__.py:1577 -#: models/__init__.py:1582 +#: models/__init__.py:2164 models/__init__.py:2170 models/__init__.py:2175 +#: models/__init__.py:2180 #, python-format msgid "Re: \"%(title)s\"" msgstr "" -#: models/__init__.py:1587 models/__init__.py:1592 +#: models/__init__.py:2185 models/__init__.py:2190 #, fuzzy, python-format msgid "Question: \"%(title)s\"" msgstr "Tagit" -#: models/__init__.py:1773 +#: models/__init__.py:2371 #, python-format msgid "" "Congratulations, you have received a badge '%(badge_name)s'. Check out your profile." msgstr "" -#: models/question.py:687 -#, python-format -msgid "%(author)s modified the question" -msgstr "%(author)s muokkasi kysymystä" +#: models/__init__.py:2550 views/commands.py:396 +msgid "Your tag subscription was saved, thanks!" +msgstr "" -#: models/question.py:691 -#, python-format -msgid "%(people)s posted %(new_answer_count)s new answers" +#: models/answer.py:105 +msgid "" +"Sorry, the answer you are looking for is no longer available, because the " +"parent question has been removed" msgstr "" -#: models/question.py:696 -#, python-format -msgid "%(people)s commented the question" -msgstr "%(people)s kommentoi kysymystä" +#: models/answer.py:112 +#, fuzzy +msgid "Sorry, this answer has been removed and is no longer accessible" +msgstr "tämä kysymys valittiin suosikiksi" -#: models/question.py:701 -#, python-format +#: models/badges.py:129 +#, fuzzy, python-format +msgid "Deleted own post with %(votes)s or more upvotes" +msgstr "Poisti oman postauksen, jolla oli -3 tai vähemmän ääniä" + +#: models/badges.py:133 +msgid "Disciplined" +msgstr "Kurinalainen" + +#: models/badges.py:151 +#, fuzzy, python-format +msgid "Deleted own post with %(votes)s or more downvotes" +msgstr "Poisti oman postauksen, jolla oli -3 tai vähemmän ääniä" + +#: models/badges.py:155 +msgid "Peer Pressure" +msgstr "Ryhmäpainostus" + +#: models/badges.py:174 +#, python-format +msgid "Received at least %(votes)s upvote for an answer for the first time" +msgstr "" + +#: models/badges.py:178 +msgid "Teacher" +msgstr "Opettaja" + +#: models/badges.py:218 +msgid "Supporter" +msgstr "Tukija" + +#: models/badges.py:219 +#, fuzzy +msgid "First upvote" +msgstr "Ensimmäinen ääni" + +#: models/badges.py:227 +msgid "Critic" +msgstr "Kriitikko" + +#: models/badges.py:228 +#, fuzzy +msgid "First downvote" +msgstr "Ensimmäinen alasäänestys" + +#: models/badges.py:237 +#, fuzzy +msgid "Civic Duty" +msgstr "Kansalaisvelvollisuus" + +#: models/badges.py:238 +#, fuzzy, python-format +msgid "Voted %(num)s times" +msgstr "Äänestetty kolmesataa kertaa" + +#: models/badges.py:252 +#, fuzzy, python-format +msgid "Answered own question with at least %(num)s up votes" +msgstr "Vastasi omaan kysymykseensä, joka sai vähintään 3 ääntä" + +#: models/badges.py:256 +msgid "Self-Learner" +msgstr "Itseoppija" + +#: models/badges.py:304 +#, fuzzy +msgid "Nice Answer" +msgstr "Hyvä vastaus" + +#: models/badges.py:309 models/badges.py:321 models/badges.py:333 +#, fuzzy, python-format +msgid "Answer voted up %(num)s times" +msgstr "Vastausta äänestetty kymmenen kertaa" + +#: models/badges.py:316 +msgid "Good Answer" +msgstr "Pätevä vastaus" + +#: models/badges.py:328 +msgid "Great Answer" +msgstr "Loistava vastaus" + +#: models/badges.py:340 +msgid "Nice Question" +msgstr "Hyvä kysymys" + +#: models/badges.py:345 models/badges.py:357 models/badges.py:369 +#, fuzzy, python-format +msgid "Question voted up %(num)s times" +msgstr "Kysymystä äänestetty kymmenen kertaa" + +#: models/badges.py:352 +msgid "Good Question" +msgstr "Pätevä kysymys" + +#: models/badges.py:364 +msgid "Great Question" +msgstr "Loistava kysymys" + +#: models/badges.py:376 +msgid "Student" +msgstr "Oppilas" + +#: 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 äänen" + +#: models/badges.py:414 +msgid "Popular Question" +msgstr "Suosittu kysymys" + +#: models/badges.py:418 models/badges.py:429 models/badges.py:441 +#, fuzzy, python-format +msgid "Asked a question with %(views)s views" +msgstr "Kysyi kysymyksen, joka sai vähintään 2500 katselijaa" + +#: models/badges.py:425 +msgid "Notable Question" +msgstr "Huomattava kysymys" + +#: models/badges.py:436 +#, fuzzy +msgid "Famous Question" +msgstr "Tunnettu kysymys" + +#: models/badges.py:450 +#, fuzzy +msgid "Asked a question and accepted an answer" +msgstr "Kysymyksellä ei ole hyväksyttyjä vastauksia" + +#: models/badges.py:453 +msgid "Scholar" +msgstr "Oppilas" + +#: models/badges.py:495 +msgid "Enlightened" +msgstr "Valistunut" + +#: models/badges.py:499 +#, fuzzy, python-format +msgid "First answer was accepted with %(num)s or more votes" +msgstr "tämä vastaus on valittu oikeaksi" + +#: models/badges.py:507 +msgid "Guru" +msgstr "Guru" + +#: models/badges.py:510 +#, python-format +msgid "Answer accepted with %(num)s or more votes" +msgstr "" + +#: models/badges.py:518 +#, fuzzy, python-format +msgid "" +"Answered a question more than %(days)s days later with at least %(votes)s " +"votes" +msgstr "Vastasi kysymykseen 60 päivää myöhemmin ja sai vähintään viisi ääntä" + +#: models/badges.py:525 +msgid "Necromancer" +msgstr "Kuolleistaherättäjä" + +#: models/badges.py:548 +msgid "Citizen Patrol" +msgstr "" + +#: models/badges.py:551 +msgid "First flagged post" +msgstr "" + +#: models/badges.py:563 +msgid "Cleanup" +msgstr "Siivoaja" + +#: models/badges.py:566 +msgid "First rollback" +msgstr "" + +#: models/badges.py:577 +msgid "Pundit" +msgstr "" + +#: models/badges.py:580 +msgid "Left 10 comments with score of 10 or more" +msgstr "Jätti kymmenen kommenttia, joka sai kymmenen ääntä tai enemmän" + +#: models/badges.py:612 +msgid "Editor" +msgstr "Muokkaaja" + +#: models/badges.py:615 +msgid "First edit" +msgstr "Ensimmäinen muokkaus" + +#: models/badges.py:623 +msgid "Associate Editor" +msgstr "" + +#: models/badges.py:627 +#, fuzzy, python-format +msgid "Edited %(num)s entries" +msgstr "Muokkasi sata merkintää" + +#: models/badges.py:634 +msgid "Organizer" +msgstr "Järjestelijä" + +#: models/badges.py:637 +msgid "First retag" +msgstr "Ensimmäinen uudelleentagitus" + +#: models/badges.py:644 +msgid "Autobiographer" +msgstr "Elämänkerran kirjoittaja" + +#: models/badges.py:647 +msgid "Completed all user profile fields" +msgstr "Täytti kaikki profiilinsa kentät" + +#: models/badges.py:663 +#, fuzzy, python-format +msgid "Question favorited by %(num)s users" +msgstr "25 käyttäjää lisäsi kysymyksen suosikikseen" + +#: models/badges.py:689 +msgid "Stellar Question" +msgstr "Tähtikysymys" + +#: models/badges.py:698 +msgid "Favorite Question" +msgstr "Suosikkikysymys" + +#: models/badges.py:710 +msgid "Enthusiast" +msgstr "" + +#: models/badges.py:714 +#, python-format +msgid "Visited site every day for %(num)s days in a row" +msgstr "" + +#: models/badges.py:732 +#, fuzzy +msgid "Commentator" +msgstr "Dokumentaatio" + +#: models/badges.py:736 +#, fuzzy, python-format +msgid "Posted %(num_comments)s comments" +msgstr "vastausta kommentoitiin %(comment_count)s kerran" + +#: models/badges.py:752 +msgid "Taxonomist" +msgstr "Taksonomi" + +#: models/badges.py:756 +#, fuzzy, python-format +msgid "Created a tag used by %(num)s questions" +msgstr "Loi tagin, jota käytetään yli viidessäkymmenessä kysymyksessä" + +#: models/badges.py:776 +msgid "Expert" +msgstr "Ekspertti" + +#: models/badges.py:779 +msgid "Very active in one tag" +msgstr "Aktiivinen yhden tagin alla" + +#: models/meta.py:112 +msgid "" +"Sorry, the comment you are looking for is no longer accessible, because the " +"parent question has been removed" +msgstr "" + +#: models/meta.py:119 +msgid "" +"Sorry, the comment you are looking for is no longer accessible, because the " +"parent answer has been removed" +msgstr "" + +#: models/question.py:72 +#, python-format +msgid "\" and \"%s\"" +msgstr "" + +#: models/question.py:75 +#, fuzzy +msgid "\" and more" +msgstr "Ota selvää" + +#: models/question.py:452 +#, fuzzy +msgid "Sorry, this question has been deleted and is no longer accessible" +msgstr "tämä kysymys valittiin suosikiksi" + +#: models/question.py:908 +#, python-format +msgid "%(author)s modified the question" +msgstr "%(author)s muokkasi kysymystä" + +#: models/question.py:912 +#, python-format +msgid "%(people)s posted %(new_answer_count)s new answers" +msgstr "" + +#: models/question.py:917 +#, python-format +msgid "%(people)s commented the question" +msgstr "%(people)s kommentoi kysymystä" + +#: models/question.py:922 +#, python-format msgid "%(people)s commented answers" msgstr "%(people)s kommentoi vastauksia" -#: models/question.py:703 +#: models/question.py:924 #, python-format msgid "%(people)s commented an answer" msgstr "%(people)s kommentoi vastausta" -#: models/repute.py:16 skins/default/templates/badges.html:43 -msgid "gold" -msgstr "kulta" - -#: models/repute.py:17 skins/default/templates/badges.html:52 -msgid "silver" -msgstr "hopea" - -#: models/repute.py:18 skins/default/templates/badges.html:59 -msgid "bronze" -msgstr "bronssi" - -#: models/repute.py:150 +#: models/repute.py:142 #, python-format msgid "Changed by moderator. Reason: %(reason)s" msgstr "" -#: models/repute.py:161 +#: models/repute.py:153 #, python-format msgid "" -"%(points)s points were added for %(username)s's contribution to question %" -"(question_title)s" +"%(points)s points were added for %(username)s's contribution to question " +"%(question_title)s" msgstr "" -#: models/repute.py:166 +#: models/repute.py:158 #, python-format msgid "" "%(points)s points were subtracted for %(username)s's contribution to " "question %(question_title)s" msgstr "" -#: models/tag.py:91 +#: models/tag.py:151 msgid "interesting" msgstr "kiinnostava" -#: models/tag.py:91 +#: models/tag.py:151 msgid "ignored" msgstr "jätetty huomioitta" -#: models/user.py:233 +#: models/user.py:264 #, fuzzy msgid "Entire forum" msgstr "Koko askbot" -#: models/user.py:234 +#: models/user.py:265 msgid "Questions that I asked" msgstr "Omat kysymykseni" -#: models/user.py:235 +#: models/user.py:266 msgid "Questions that I answered" msgstr "Omat vastaukseni" -#: models/user.py:236 +#: models/user.py:267 msgid "Individually selected questions" msgstr "Valikoidut kysymykset" -#: models/user.py:237 +#: models/user.py:268 msgid "Mentions and comment responses" msgstr "" -#: models/user.py:240 +#: models/user.py:271 msgid "Instantly" msgstr "Heti" -#: models/user.py:241 +#: models/user.py:272 msgid "Daily" msgstr "Päivittäin" -#: models/user.py:242 +#: models/user.py:273 msgid "Weekly" msgstr "Viikottain" -#: models/user.py:243 +#: models/user.py:274 msgid "No email" msgstr "Ei sähköpostia" #: skins/default/templates/404.jinja.html:3 -#: skins/default/templates/404.jinja.html:11 +#: skins/default/templates/404.jinja.html:10 msgid "Page not found" msgstr "" -#: skins/default/templates/404.jinja.html:15 +#: skins/default/templates/404.jinja.html:13 msgid "Sorry, could not find the page you requested." msgstr "Sivua ei löytynyt." -#: skins/default/templates/404.jinja.html:17 +#: skins/default/templates/404.jinja.html:15 msgid "This might have happened for the following reasons:" msgstr "Tämä saattoi tapahtua seuraavista syistä:" -#: skins/default/templates/404.jinja.html:19 +#: skins/default/templates/404.jinja.html:17 msgid "this question or answer has been deleted;" msgstr "kysymys tai vastaus on poistettu;" -#: skins/default/templates/404.jinja.html:20 +#: skins/default/templates/404.jinja.html:18 msgid "url has error - please check it;" msgstr "URL-osoitteessa on virhe;" -#: skins/default/templates/404.jinja.html:21 +#: skins/default/templates/404.jinja.html:19 msgid "" "the page you tried to visit is protected or you don't have sufficient " "points, see" @@ -2658,60 +3542,61 @@ msgstr "" "sivu jota yritit käyttää on suojattu tai sinulla ei ole tarpeeksi ääniä, " "katso" -#: skins/default/templates/404.jinja.html:21 -#: skins/default/templates/footer.html:6 -#: skins/default/templates/header.html:57 -#: skins/default/templates/question_edit_tips.html:16 +#: skins/default/templates/404.jinja.html:19 +#: skins/default/templates/blocks/footer.html:5 +#: skins/default/templates/blocks/header_meta_links.html:13 +#: skins/default/templates/blocks/question_edit_tips.html:15 msgid "faq" msgstr "ukk" -#: skins/default/templates/404.jinja.html:22 +#: skins/default/templates/404.jinja.html:20 msgid "if you believe this error 404 should not have occured, please" msgstr "jos uskot, että tämä 404-sivu on aiheeton, ole hyvä" -#: skins/default/templates/404.jinja.html:23 +#: skins/default/templates/404.jinja.html:21 msgid "report this problem" msgstr "kerro tästä ongelmasta" -#: skins/default/templates/404.jinja.html:32 -#: skins/default/templates/500.jinja.html:13 +#: skins/default/templates/404.jinja.html:30 +#: skins/default/templates/500.jinja.html:11 msgid "back to previous page" msgstr "takaisin edelliselle sivulle" -#: skins/default/templates/404.jinja.html:33 -#: skins/default/templates/questions.html:13 +#: skins/default/templates/404.jinja.html:31 +#: skins/default/templates/main_page/tab_bar.html:9 msgid "see all questions" msgstr "näytä kaikki kysymykset" -#: skins/default/templates/404.jinja.html:34 +#: skins/default/templates/404.jinja.html:32 msgid "see all tags" msgstr "näytä kaikki tagit" #: skins/default/templates/500.jinja.html:3 -#: skins/default/templates/500.jinja.html:6 +#: skins/default/templates/500.jinja.html:5 msgid "Internal server error" msgstr "" -#: skins/default/templates/500.jinja.html:10 +#: 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" -#: skins/default/templates/500.jinja.html:11 +#: skins/default/templates/500.jinja.html:9 msgid "please report the error to the site administrators if you wish" msgstr "" -#: skins/default/templates/500.jinja.html:14 +#: skins/default/templates/500.jinja.html:12 msgid "see latest questions" msgstr "katso uusimmat kysymykset" -#: skins/default/templates/500.jinja.html:15 +#: skins/default/templates/500.jinja.html:13 msgid "see tags" msgstr "näytä tagit" -#: skins/default/templates/about.html:3 skins/default/templates/about.html:6 -msgid "About" -msgstr "Tietoa sivustosta" +#: 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 @@ -2719,320 +3604,184 @@ msgid "Edit answer" msgstr "Muokkaa vastausta" #: skins/default/templates/answer_edit.html:10 -#: skins/default/templates/question_edit.html:10 -#: skins/default/templates/question_retag.html:6 +#: skins/default/templates/question_edit.html:9 +#: skins/default/templates/question_retag.html:5 #: skins/default/templates/revisions.html:7 msgid "back" msgstr "takaisin" -#: skins/default/templates/answer_edit.html:15 -#: skins/default/templates/question_edit.html:14 +#: skins/default/templates/answer_edit.html:14 msgid "revision" msgstr "revisio" -#: skins/default/templates/answer_edit.html:18 -#: skins/default/templates/question_edit.html:19 +#: skins/default/templates/answer_edit.html:17 +#: skins/default/templates/question_edit.html:16 msgid "select revision" msgstr "valitse revisio" -#: skins/default/templates/answer_edit.html:22 -#: skins/default/templates/question_edit.html:28 +#: skins/default/templates/answer_edit.html:21 +#: skins/default/templates/question_edit.html:27 msgid "Save edit" msgstr "Tallenna muokkaus" -#: skins/default/templates/answer_edit.html:23 -#: skins/default/templates/close.html:19 -#: skins/default/templates/feedback.html:45 -#: skins/default/templates/question_edit.html:29 -#: skins/default/templates/question_retag.html:26 -#: skins/default/templates/reopen.html:30 -#: skins/default/templates/user_edit.html:76 +#: skins/default/templates/answer_edit.html:22 +#: skins/default/templates/close.html:16 +#: skins/default/templates/feedback.html:42 +#: skins/default/templates/question_edit.html:28 +#: skins/default/templates/question_retag.html:22 +#: skins/default/templates/reopen.html:27 +#: skins/default/templates/subscribe_for_tags.html:16 #: skins/default/templates/authopenid/changeemail.html:38 +#: skins/default/templates/user_profile/user_edit.html:84 msgid "Cancel" msgstr "Peruuta" -#: skins/default/templates/answer_edit.html:59 -#: skins/default/templates/answer_edit.html:62 -#: skins/default/templates/ask.html:36 skins/default/templates/ask.html:39 -#: skins/default/templates/macros.html:398 -#: skins/default/templates/question.html:456 -#: skins/default/templates/question.html:459 -#: skins/default/templates/question_edit.html:63 -#: skins/default/templates/question_edit.html:66 +#: skins/default/templates/answer_edit.html:60 +#: skins/default/templates/answer_edit.html:63 +#: skins/default/templates/ask.html:46 skins/default/templates/ask.html:49 +#: skins/default/templates/macros.html:698 +#: skins/default/templates/question.html:562 +#: skins/default/templates/question.html:565 +#: skins/default/templates/question_edit.html:72 +#: skins/default/templates/question_edit.html:75 msgid "hide preview" msgstr "piilota esikatselu" -#: skins/default/templates/answer_edit.html:62 -#: skins/default/templates/ask.html:39 -#: skins/default/templates/question.html:459 -#: skins/default/templates/question_edit.html:66 +#: skins/default/templates/answer_edit.html:63 +#: skins/default/templates/ask.html:49 +#: skins/default/templates/question.html:565 +#: skins/default/templates/question_edit.html:75 msgid "show preview" msgstr "näytä esikatselu" -#: skins/default/templates/answer_edit_tips.html:3 -msgid "answer tips" -msgstr "Vastausvinkkejä" - -#: skins/default/templates/answer_edit_tips.html:6 -msgid "please make your answer relevant to this community" -msgstr "vastaus käsittelee tämän sivuston aihealuita" +#: skins/default/templates/ask.html:4 +msgid "Ask a question" +msgstr "Kysy" -#: skins/default/templates/answer_edit_tips.html:9 -msgid "try to give an answer, rather than engage into a discussion" -msgstr "yritä vastata kysymykseen mielummin, kuin että osallistut keskusteluun" +#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:8 +#: skins/default/templates/user_profile/user_recent.html:16 +#: skins/default/templates/user_profile/user_stats.html:110 +#, fuzzy, python-format +msgid "%(name)s" +msgstr "%(date)s" -#: skins/default/templates/answer_edit_tips.html:12 -msgid "please try to provide details" -msgstr "anna yksityiskohtia, sillä emme omista kristallipalloa" - -#: skins/default/templates/answer_edit_tips.html:15 -#: skins/default/templates/question_edit_tips.html:12 -msgid "be clear and concise" -msgstr "ole selkeä ja täsmällinen" - -#: skins/default/templates/answer_edit_tips.html:19 -#: skins/default/templates/question_edit_tips.html:16 -msgid "see frequently asked questions" -msgstr "katso usein kysytyt kysymykset" - -#: skins/default/templates/answer_edit_tips.html:25 -#: skins/default/templates/question_edit_tips.html:22 -msgid "Markdown tips" -msgstr "Markdown-vinkkejä" - -#: skins/default/templates/answer_edit_tips.html:29 -#: skins/default/templates/question_edit_tips.html:26 -msgid "*italic*" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:32 -#: skins/default/templates/question_edit_tips.html:29 -msgid "**bold**" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:36 -#: skins/default/templates/question_edit_tips.html:33 -#, fuzzy -msgid "*italic* or _italic_" -msgstr "*kursivointi* tai __kursivointi__" - -#: skins/default/templates/answer_edit_tips.html:39 -#: skins/default/templates/question_edit_tips.html:36 -msgid "**bold** or __bold__" -msgstr "**lihavointi** tai __lihavointi__" - -#: skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/question_edit_tips.html:40 -msgid "link" -msgstr "linkki" - -#: skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:40 -#: skins/default/templates/question_edit_tips.html:45 -msgid "text" -msgstr "teksti" - -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:45 -msgid "image" -msgstr "kuva" - -#: skins/default/templates/answer_edit_tips.html:51 -#: skins/default/templates/question_edit_tips.html:49 -msgid "numbered list:" -msgstr "numeroitu lista:" - -#: skins/default/templates/answer_edit_tips.html:56 -#: skins/default/templates/question_edit_tips.html:54 -msgid "basic HTML tags are also supported" -msgstr "perus HTML-tagit ovat myös tuetut" - -#: skins/default/templates/answer_edit_tips.html:60 -#: skins/default/templates/question_edit_tips.html:58 -msgid "learn more about Markdown" -msgstr "opi lisää Markdownista" - -#: skins/default/templates/ask.html:3 -msgid "Ask a question" -msgstr "Kysy" - -#: skins/default/templates/ask_form.html:7 -msgid "login to post question info" -msgstr "" -"You are welcome to start submitting your question " -"anonymously. 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/ask_form.html:11 -#, python-format -msgid "" -"must have valid %(email)s to post, \n" -" see %(email_validation_faq_url)s\n" -" " -msgstr "" -"Looks like your email address, %(email)s has not " -"yet been validated. To post messages you must verify your email, " -"please see more details here." -"
    You can submit your question now and validate email after that. Your " -"question will saved as pending meanwhile. " - -#: skins/default/templates/ask_form.html:27 -msgid "Login/signup to post your question" -msgstr "Kirjaudu sisään kysyäksesi kysymyksesi" - -#: skins/default/templates/ask_form.html:29 -msgid "Ask your question" -msgstr "Kysy kysymyksesi" +#: skins/default/templates/badge.html:4 +msgid "Badge" +msgstr "Kunniamerkki" -#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:11 -#: skins/default/templates/badges.html:28 -#: skins/default/templates/user_recent.html:13 -#: skins/default/templates/user_stats.html:88 +#: skins/default/templates/badge.html:6 #, fuzzy, python-format -msgid "%(name)s" +msgid "Badge \"%(name)s\"" msgstr "%(date)s" -#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:7 -msgid "Badge" -msgstr "Kunniamerkki" - -#: skins/default/templates/badge.html:11 -#: skins/default/templates/badges.html:27 -#: skins/default/templates/badges.html:31 -#: skins/default/templates/user_recent.html:13 -#: skins/default/templates/user_stats.html:88 +#: skins/default/templates/badge.html:8 +#: skins/default/templates/user_profile/user_recent.html:16 +#: skins/default/templates/user_profile/user_stats.html:108 #, python-format msgid "%(description)s" msgstr "" -#: skins/default/templates/badge.html:16 +#: skins/default/templates/badge.html:13 msgid "user received this badge:" msgid_plural "users received this badge:" -msgstr[0] "käyttäjää sai tämän kunniamerkin:" -msgstr[1] "käyttäjä sai tämän kunniamerkin:" +msgstr[0] "käyttäjä sai tämän kunniamerkin:" +msgstr[1] "käyttäjää sai tämän kunniamerkin:" #: skins/default/templates/badges.html:3 msgid "Badges summary" msgstr "Kunniamerkkien yhteenveto" -#: skins/default/templates/badges.html:6 +#: skins/default/templates/badges.html:5 msgid "Badges" msgstr "Kunniamerkit" -#: skins/default/templates/badges.html:10 +#: skins/default/templates/badges.html:7 msgid "Community gives you awards for your questions, answers and votes." msgstr "" "If your questions and answers are highly voted, your contribution to this " "Q&A community will be recognized with the variety of badges." -#: skins/default/templates/badges.html:11 -#, python-format +#: skins/default/templates/badges.html:8 +#, 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. Give us feedback at " +"%(feedback_faq_url)s.\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 feedback" -#: skins/default/templates/badges.html:27 -#, fuzzy, python-format -msgid "%(type)s" -msgstr "%(date)s" - -#: skins/default/templates/badges.html:40 +#: skins/default/templates/badges.html:35 msgid "Community badges" msgstr "Kunniamerkit" -#: skins/default/templates/badges.html:43 +#: skins/default/templates/badges.html:37 msgid "gold badge: the highest honor and is very rare" msgstr "" -#: skins/default/templates/badges.html:46 +#: 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 " "profound knowledge and ability in addition to your active participation." -#: skins/default/templates/badges.html:51 +#: skins/default/templates/badges.html:45 msgid "" "silver badge: occasionally awarded for the very high quality contributions" msgstr "" -#: skins/default/templates/badges.html:55 +#: 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:58 +#: skins/default/templates/badges.html:52 msgid "bronze badge: often given as a special honor" msgstr "" -#: skins/default/templates/badges.html:62 +#: skins/default/templates/badges.html:56 msgid "bronze badge description" msgstr "Jos olet aktiivinen osallistuja sivustolla, saat tämän kunniamerkin." -#: skins/default/templates/close.html:3 skins/default/templates/close.html:6 +#: skins/default/templates/close.html:3 skins/default/templates/close.html:5 msgid "Close question" msgstr "Sulje kysymys" -#: skins/default/templates/close.html:9 +#: skins/default/templates/close.html:6 msgid "Close the question" msgstr "Sulje kysymys" -#: skins/default/templates/close.html:14 +#: skins/default/templates/close.html:11 msgid "Reasons" msgstr "Syyt" -#: skins/default/templates/close.html:18 +#: skins/default/templates/close.html:15 msgid "OK to close" msgstr "Hyväksytty sulkemista varten" -#: skins/default/templates/editor_data.html:8 -#, 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] "jokaisen tagin tulee olla vähintään %(max_chars)d merkin pituinen" -msgstr[1] "jokaisen tagin tulee olla vähintään yhden merkin pituinen" - -#: skins/default/templates/editor_data.html:10 -#, fuzzy, python-format -msgid "please use %(tag_count)s tag" -msgid_plural "please use %(tag_count)s tags or less" -msgstr[0] "käytä vähintään %(tag_count)d tagia" -msgstr[1] "käytä vähintään yhtä tagia" - -#: skins/default/templates/editor_data.html:11 -#, fuzzy, python-format -msgid "" -"please use up to %(tag_count)s tags, less than %(max_chars)s characters each" -msgstr "jokaisen tagin tulee olla vähintään %(max_chars)d merkin pituinen" - -#: skins/default/templates/faq.html:3 skins/default/templates/faq.html.py:6 +#: skins/default/templates/faq.html:3 +#: skins/default/templates/faq_static.html:3 +#: skins/default/templates/faq_static.html:5 msgid "FAQ" msgstr "" -#: skins/default/templates/faq.html:6 +#: skins/default/templates/faq_static.html:5 msgid "Frequently Asked Questions " msgstr "Usein Kysytyt Kysymykset" -#: skins/default/templates/faq.html:11 +#: skins/default/templates/faq_static.html:6 msgid "What kinds of questions can I ask here?" msgstr "Minkälaisia kysymyksiä voin kysyä täällä?" -#: skins/default/templates/faq.html:12 +#: skins/default/templates/faq_static.html:7 msgid "" "Most importanly - questions should be relevant to this " "community." msgstr "Kaikista tärkeintä on, että kysymykset ovat tätä sivustoa vastaavia" -#: skins/default/templates/faq.html:13 +#: 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." @@ -3040,11 +3789,11 @@ msgstr "" "Ennen kuin kysyt, käytä hakua avuksesi, sillä joku on voinut jo vastata " "kysymykseesi." -#: skins/default/templates/faq.html:15 +#: skins/default/templates/faq_static.html:10 msgid "What questions should I avoid asking?" msgstr "Minkälaisia kysymyksiä minun pitäisi välttää?" -#: skins/default/templates/faq.html:16 +#: skins/default/templates/faq_static.html:11 msgid "" "Please avoid asking questions that are not relevant to this community, too " "subjective and argumentative." @@ -3052,11 +3801,11 @@ msgstr "" "Yritä välttää kysymyksiä, jotka eivät liity tähän sivustoon, ovat liian " "subjektiivisia ja väittelyä hakevia." -#: skins/default/templates/faq.html:20 +#: skins/default/templates/faq_static.html:13 msgid "What should I avoid in my answers?" msgstr "Mitä minun pitäisi välttää vastauksissani?" -#: skins/default/templates/faq.html:21 +#: 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 " @@ -3067,30 +3816,30 @@ msgstr "" "nostaa pintaan väittelyä. Käytä kommentteja pieniin lisäkysymyksiin tai " "vastauksiin." -#: skins/default/templates/faq.html:24 +#: skins/default/templates/faq_static.html:15 msgid "Who moderates this community?" msgstr "Kuka vastaa sivusta?" -#: skins/default/templates/faq.html:25 +#: skins/default/templates/faq_static.html:16 msgid "The short answer is: you." msgstr "Lyhyt vastaus on: sinä." -#: skins/default/templates/faq.html:26 +#: skins/default/templates/faq_static.html:17 msgid "This website is moderated by the users." msgstr "Tätä sivua hallinnoivat käyttäjät itse." -#: skins/default/templates/faq.html:27 +#: skins/default/templates/faq_static.html:18 msgid "" "The reputation system allows users earn the authorization to perform a " "variety of moderation tasks." msgstr "" "Mainejärjestelmä antaa käyttäjille oikeudet tehdä tietynlaisia toimenpiteitä." -#: skins/default/templates/faq.html:32 +#: skins/default/templates/faq_static.html:20 msgid "How does reputation system work?" msgstr "Miten mainejärjestelmä toimii?" -#: skins/default/templates/faq.html:33 +#: skins/default/templates/faq_static.html:21 msgid "Rep system summary" msgstr "" "When a question or answer is upvoted, the user who posted them will gain " @@ -3098,87 +3847,70 @@ 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/faq.html:34 +#: 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 %" -"(REP_GAIN_FOR_RECEIVING_UPVOTE)s points, each vote against will " +"it will be downvoted. Each vote in favor will generate " +"%(REP_GAIN_FOR_RECEIVING_UPVOTE)s points, each vote against will " "subtract %(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s points. There " "is a limit of %(MAX_REP_GAIN_PER_USER_PER_DAY)s 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 "" -#: skins/default/templates/faq.html:44 -#: skins/default/templates/user_votes.html:10 +#: 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.html:49 +#: skins/default/templates/faq_static.html:37 msgid "use tags" msgstr "käytä tageja" -#: skins/default/templates/faq.html:54 +#: skins/default/templates/faq_static.html:42 msgid "add comments" msgstr "lisää kommentteja" -#: skins/default/templates/faq.html:58 -#: skins/default/templates/user_votes.html:12 +#: skins/default/templates/faq_static.html:46 +#: skins/default/templates/user_profile/user_votes.html:15 msgid "downvote" msgstr "poista-aani" -#: skins/default/templates/faq.html:61 +#: skins/default/templates/faq_static.html:49 +#, fuzzy +msgid " accept own answer to own questions" +msgstr "Ensimmäinen hyväksytty vastaus omaan kysymykseesi" + +#: skins/default/templates/faq_static.html:53 msgid "open and close own questions" msgstr "avaa ja sulje omia kysymyksiä" -#: skins/default/templates/faq.html:65 +#: skins/default/templates/faq_static.html:57 #, fuzzy msgid "retag other's questions" msgstr "uudelleentaggaa kysymyksiä" -#: skins/default/templates/faq.html:70 +#: skins/default/templates/faq_static.html:62 msgid "edit community wiki questions" msgstr "muokkaa yhteisöwikin kysymyksiä" -#: skins/default/templates/faq.html:75 +#: skins/default/templates/faq_static.html:67 #, fuzzy msgid "\"edit any answer" msgstr "muokkaa mitä tahansa vastausta" -#: skins/default/templates/faq.html:79 +#: skins/default/templates/faq_static.html:71 #, fuzzy msgid "\"delete any comment" msgstr "poista mikä tahansa kommentti" -#: skins/default/templates/faq.html:86 -msgid "how to validate email title" -msgstr "How to validate email and why?" - -#: skins/default/templates/faq.html:88 -#, python-format -msgid "" -"how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)s" -msgstr "" -"

    How? If you have just set or changed your " -"email address - check your email and click the included link.
    The link contains a key generated specifically for you. You can " -"also and check your email again.

    Why? Email validation is required to make sure that " -"only you can post messages on your behalf and to " -"minimize spam posts.
    With email you can " -"subscribe for updates on the most interesting questions. " -"Also, when you sign up for the first time - create a unique gravatar personal image.

    " - -#: skins/default/templates/faq.html:93 +#: skins/default/templates/faq_static.html:74 msgid "what is gravatar" msgstr "Miten vaihdan profiilissani olevan kuvan (gravatar)?" -#: skins/default/templates/faq.html:94 +#: skins/default/templates/faq_static.html:75 msgid "gravatar faq info" msgstr "" "

    Kuva joka esiintyy käyttäjien profiilissa on nimeltään gravatar" -#: skins/default/templates/faq.html:97 +#: skins/default/templates/faq_static.html:76 msgid "To register, do I need to create new password?" msgstr "Tarvitseeko minun luoda erillinen tunnus jotta voin rekisteröityä?" -#: skins/default/templates/faq.html:98 +#: skins/default/templates/faq_static.html:77 #, fuzzy msgid "" "No, you don't have to. You can login through any service that supports " @@ -3208,20 +3940,20 @@ msgstr "" "Ei. Voit kirjautua suoraan sivulle kenen tahansa OpenID-palveluntarjoajan " "välityksellä, esim. Google, Yahoo, AOL, jne." -#: skins/default/templates/faq.html:99 +#: skins/default/templates/faq_static.html:78 #, fuzzy msgid "\"Login now!\"" msgstr "Kirjaudu nyt!" -#: skins/default/templates/faq.html:103 +#: skins/default/templates/faq_static.html:80 msgid "Why other people can edit my questions/answers?" msgstr "Miksi muut voivat muokata kysymyksiäni tai vastauksiani?" -#: skins/default/templates/faq.html:104 +#: skins/default/templates/faq_static.html:81 msgid "Goal of this site is..." msgstr "Tämän sivuston tavoite on..." -#: skins/default/templates/faq.html:104 +#: skins/default/templates/faq_static.html:81 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 " @@ -3230,15 +3962,15 @@ msgstr "" "Kokeneet käyttäjät voivat muokata vastauksia ja kysymyksiä kuten wikiä. Tämä " "nostaa sivuston laatua." -#: skins/default/templates/faq.html:105 +#: skins/default/templates/faq_static.html:82 msgid "If this approach is not for you, we respect your choice." msgstr "Jos et pidä tästä, kunnioitamme valintaasi." -#: skins/default/templates/faq.html:109 +#: skins/default/templates/faq_static.html:84 msgid "Still have questions?" msgstr "Vieläkin kysymyksiä?" -#: skins/default/templates/faq.html:110 +#: skins/default/templates/faq_static.html:85 #, python-format msgid "" "Please ask your question at %(ask_question_url)s, help make our community " @@ -3247,162 +3979,82 @@ msgstr "" "Kysy kysymyksesi ja tee sivustamme " "entistäkin parempi!" -#: skins/default/templates/faq.html:112 skins/default/templates/header.html:78 -msgid "questions" -msgstr "kysymykset" - -#: skins/default/templates/faq.html:112 -msgid "." -msgstr "." - #: skins/default/templates/feedback.html:3 msgid "Feedback" msgstr "Palaute" -#: skins/default/templates/feedback.html:6 +#: skins/default/templates/feedback.html:5 msgid "Give us your feedback!" msgstr "Anna meille palautettasi!" -#: skins/default/templates/feedback.html:12 +#: skins/default/templates/feedback.html:9 #, python-format msgid "" "\n" -" Dear %(user_name)s, we look " -"forward to hearing your feedback. \n" -" Please type and send us your message below.\n" -" " +" Dear %(user_name)s, we look forward " +"to hearing your feedback. \n" +" Please type and send us your message below.\n" +" " msgstr "" -#: skins/default/templates/feedback.html:19 +#: skins/default/templates/feedback.html:16 msgid "" "\n" -" Dear visitor, we look forward to " +" Dear visitor, we look forward to " "hearing your feedback.\n" -" Please type and send us your message below.\n" -" " +" Please type and send us your message below.\n" +" " msgstr "" -#: skins/default/templates/feedback.html:28 +#: skins/default/templates/feedback.html:25 #, fuzzy msgid "(please enter a valid email)" msgstr "syötä toimiva sähköpostiosoite" -#: skins/default/templates/feedback.html:36 +#: skins/default/templates/feedback.html:33 msgid "(this field is required)" msgstr "(tämä kenttä on pakollinen)" -#: skins/default/templates/feedback.html:44 +#: skins/default/templates/feedback.html:41 msgid "Send Feedback" msgstr "Lähetä palautetta" -#: skins/default/templates/feedback_email.txt:3 +#: skins/default/templates/feedback_email.txt:2 #, python-format msgid "" "\n" -"Hello, this is a %(site_title)s forum feedback message\n" +"Hello, this is a %(site_title)s forum feedback message.\n" msgstr "" -#: skins/default/templates/feedback_email.txt:9 -msgid "Sender is" -msgstr "Lähettäjä on" - -#: skins/default/templates/feedback_email.txt:11 -#: skins/default/templates/feedback_email.txt:14 -msgid "email" -msgstr "sähköposti" - -#: skins/default/templates/feedback_email.txt:13 -msgid "anonymous" -msgstr "anonyymi" - -#: skins/default/templates/feedback_email.txt:19 -msgid "Message body:" -msgstr "Viestin sisältö:" - -#: skins/default/templates/footer.html:5 -#: skins/default/templates/header.html:56 -msgid "about" -msgstr "sivusta" - -#: skins/default/templates/footer.html:7 -msgid "privacy policy" -msgstr "yksityisyydensuoja" - -#: skins/default/templates/footer.html:16 -msgid "give feedback" -msgstr "anna palautetta" - -#: skins/default/templates/header.html:12 -#, python-format -msgid "responses for %(username)s" -msgstr "vastauksia käyttäjälle %(username)s" - -#: skins/default/templates/header.html:15 -#, python-format -msgid "you have a new response" -msgid_plural "you nave %(response_count)s new responses" -msgstr[0] "sinulla on %(response_count)s uutta vastausta" -msgstr[1] "sinulla on yksi uusi vastaus" - -#: skins/default/templates/header.html:18 -msgid "no new responses yet" -msgstr "ei vastauksia" - -#: skins/default/templates/header.html:30 -#: skins/default/templates/header.html:31 -#, python-format -msgid "%(new)s new flagged posts and %(seen)s previous" +#: skins/default/templates/import_data.html:2 +#: skins/default/templates/import_data.html:4 +msgid "Import StackExchange data" msgstr "" -#: skins/default/templates/header.html:33 -#: skins/default/templates/header.html:34 -#, python-format -msgid "%(new)s new flagged posts" +#: skins/default/templates/import_data.html:13 +msgid "" +"Warning: if your database is not empty, please back it up\n" +" before attempting this operation." msgstr "" -#: skins/default/templates/header.html:39 -#: skins/default/templates/header.html:40 -#, python-format -msgid "%(seen)s flagged posts" +#: skins/default/templates/import_data.html:16 +msgid "" +"Upload your stackexchange dump .zip file, then wait until\n" +" the data import completes. This process may take several minutes.\n" +" Please note that feedback will be printed in plain text.\n" +" " msgstr "" -#: skins/default/templates/header.html:52 -msgid "logout" -msgstr "poistu" - -#: skins/default/templates/header.html:54 -msgid "login" -msgstr "kirjaudu" - -#: skins/default/templates/header.html:59 -#, fuzzy -msgid "settings" -msgstr "nollataan tagit" - -#: skins/default/templates/header.html:68 -msgid "back to home page" -msgstr "takaisin kotisivulle" - -#: skins/default/templates/header.html:69 -#, python-format -msgid "%(site)s logo" +#: skins/default/templates/import_data.html:25 +msgid "Import data" msgstr "" -#: skins/default/templates/header.html:88 -msgid "users" -msgstr "käyttäjät" - -#: skins/default/templates/header.html:93 -msgid "badges" -msgstr "kunniamerkit" - -#: skins/default/templates/header.html:98 -msgid "ask a question" -msgstr "kysy kysymys" - -#: skins/default/templates/input_bar.html:32 -msgid "search" -msgstr "haku" +#: 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: python manage." +"py load_stackexchange path/to/your-data.zip" +msgstr "" #: skins/default/templates/instant_notification.html:1 #, python-format @@ -3472,259 +4124,294 @@ msgstr "" msgid "

    Sincerely,
    Forum Administrator

    " msgstr "Toivoo ylläpito" -#: skins/default/templates/logout.html:3 skins/default/templates/logout.html:6 -msgid "Logout" -msgstr "Kirjaudu ulos" +#: skins/default/templates/macros.html:25 +#, fuzzy, python-format +msgid "Share this question on %(site)s" +msgstr "Avaa tämä kysymys uudelleen" -#: skins/default/templates/logout.html:9 -msgid "" -"As a registered user you can login with your OpenID, log out of the site or " -"permanently remove your account." +#: skins/default/templates/macros.html:36 +#, python-format +msgid "follow %(alias)s" msgstr "" -"Clicking Logout will log you out from the forumbut will not " -"sign you off from your OpenID provider.

    If you wish to sign off " -"completely - please make sure to log out from your OpenID provider as well." -#: skins/default/templates/logout.html:10 -msgid "Logout now" -msgstr "Kirjaudu ulos" +#: skins/default/templates/macros.html:39 +#, python-format +msgid "unfollow %(alias)s" +msgstr "" + +#: skins/default/templates/macros.html:40 +#, python-format +msgid "following %(alias)s" +msgstr "" -#: skins/default/templates/macros.html:26 +#: skins/default/templates/macros.html:63 msgid "karma:" msgstr "" -#: skins/default/templates/macros.html:30 +#: skins/default/templates/macros.html:67 #, fuzzy msgid "badges:" msgstr "kunniamerkit:" -#: skins/default/templates/macros.html:52 -#: skins/default/templates/macros.html:53 +#: skins/default/templates/macros.html:143 +#: skins/default/templates/macros.html:144 msgid "previous" msgstr "edellinen" -#: skins/default/templates/macros.html:64 +#: skins/default/templates/macros.html:155 msgid "current page" msgstr "nykyinen sivu" -#: skins/default/templates/macros.html:66 -#: skins/default/templates/macros.html:73 +#: skins/default/templates/macros.html:157 +#: skins/default/templates/macros.html:164 #, python-format msgid "page number %(num)s" msgstr "sivu %(num)s" -#: skins/default/templates/macros.html:77 +#: skins/default/templates/macros.html:168 msgid "next page" msgstr "seuraava sivu" -#: skins/default/templates/macros.html:88 +#: skins/default/templates/macros.html:179 msgid "posts per page" msgstr "postia per sivu" -#: skins/default/templates/macros.html:119 templatetags/extra_tags.py:56 +#: skins/default/templates/macros.html:211 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:142 +#: skins/default/templates/macros.html:220 +#, fuzzy, python-format +msgid "%(username)s's website is %(url)s" +msgstr "maineesi on %(reputation)s" + +#: skins/default/templates/macros.html:232 +#, fuzzy +msgid "anonymous user" +msgstr "anonyymi" + +#: skins/default/templates/macros.html:260 msgid "this post is marked as community wiki" msgstr "" -#: skins/default/templates/macros.html:145 +#: skins/default/templates/macros.html:263 #, python-format msgid "" "This post is a wiki.\n" " Anyone with karma >%(wiki_min_rep)s is welcome to improve it." msgstr "" -#: skins/default/templates/macros.html:151 +#: skins/default/templates/macros.html:269 msgid "asked" msgstr "kysytty" -#: skins/default/templates/macros.html:153 +#: skins/default/templates/macros.html:271 msgid "answered" msgstr "vastattu" -#: skins/default/templates/macros.html:155 +#: skins/default/templates/macros.html:273 msgid "posted" msgstr "lisätty" -#: skins/default/templates/macros.html:185 +#: skins/default/templates/macros.html:303 msgid "updated" msgstr "päivitetty" -#: skins/default/templates/macros.html:210 -#: skins/default/templates/unused/questions_ajax.html:23 views/readers.py:237 +#: skins/default/templates/macros.html:379 +#, python-format +msgid "see questions tagged '%(tag)s'" +msgstr "katso kysymyksiä, joilla on tagi '%(tag)s'" + +#: skins/default/templates/macros.html:424 views/readers.py:239 #, fuzzy -msgid "vote" -msgid_plural "votes" -msgstr[0] "aanesta/" -msgstr[1] "aanesta/" +msgid "view" +msgid_plural "views" +msgstr[0] "katselut" +msgstr[1] "katselut" -#: skins/default/templates/macros.html:227 -#: skins/default/templates/unused/questions_ajax.html:43 views/readers.py:240 +#: skins/default/templates/macros.html:441 views/readers.py:236 #, fuzzy msgid "answer" msgid_plural "answers" msgstr[0] "vastaus" msgstr[1] "vastaus" -#: skins/default/templates/macros.html:239 -#: skins/default/templates/unused/questions_ajax.html:55 views/readers.py:243 +#: skins/default/templates/macros.html:452 views/readers.py:233 #, fuzzy -msgid "view" -msgid_plural "views" -msgstr[0] "katselut" -msgstr[1] "katselut" +msgid "vote" +msgid_plural "votes" +msgstr[0] "aanesta" +msgstr[1] "aanesta" -#: skins/default/templates/macros.html:251 -#: skins/default/templates/question.html:88 -#: skins/default/templates/tags.html:38 -#: skins/default/templates/unused/question_list.html:64 -#: skins/default/templates/unused/question_summary_list_roll.html:52 -#: skins/default/templates/unused/questions_ajax.html:68 -#, python-format -msgid "see questions tagged '%(tag)s'" -msgstr "katso kysymyksiä, joilla on tagi '%(tag)s'" +#: skins/default/templates/macros.html:491 +msgid "delete this comment" +msgstr "poista kommentti" -#: skins/default/templates/macros.html:272 -#: skins/default/templates/question.html:94 -#: skins/default/templates/question.html:247 +#: skins/default/templates/macros.html:502 +#: skins/default/templates/question.html:79 +#: skins/default/templates/question.html:235 #: skins/default/templates/revisions.html:37 msgid "edit" msgstr "muokkaa" -#: skins/default/templates/macros.html:277 -msgid "delete this comment" -msgstr "poista kommentti" - -#: skins/default/templates/macros.html:295 -#: skins/default/templates/macros.html:303 -#: skins/default/templates/question.html:423 +#: skins/default/templates/macros.html:520 +#: skins/default/templates/macros.html:528 +#: skins/default/templates/question.html:511 msgid "add comment" msgstr "lisää kommentti" -#: skins/default/templates/macros.html:296 +#: skins/default/templates/macros.html:521 #, python-format msgid "see %(counter)s more" msgid_plural "see %(counter)s more" msgstr[0] "" msgstr[1] "" -#: skins/default/templates/macros.html:298 +#: skins/default/templates/macros.html:523 #, fuzzy, python-format msgid "see %(counter)s more comment" msgid_plural "" "see %(counter)s more comments\n" -" " -msgstr[0] "katso vielä %(counter)s kommenttia" -msgstr[1] "katso vielä yksi kommentti" +" " +msgstr[0] "katso vielä %(counter)syksi kommentti" +msgstr[1] "katso vielä %(counter)s kommenttia" -#: skins/default/templates/macros.html:375 +#: skins/default/templates/macros.html:661 +#, fuzzy +msgid "one of these is required" +msgstr "vaadittu kenttä" + +#: skins/default/templates/macros.html:673 msgid "(required)" msgstr "(pakollinen)" -#: skins/default/templates/macros.html:396 +#: skins/default/templates/macros.html:696 msgid "Toggle the real time Markdown editor preview" msgstr "Reaaliaikainen Markdown-muokkain päälle/pois" +#: skins/default/templates/macros.html:708 +#, python-format +msgid "responses for %(username)s" +msgstr "vastauksia käyttäjälle %(username)s" + +#: skins/default/templates/macros.html:711 +#, fuzzy, python-format +msgid "you have a new response" +msgid_plural "you have %(response_count)s new responses" +msgstr[0] "" +"sinulla on %(response_count)syksi uusi vastaus" +msgstr[1] "sinulla on %(response_count)s uutta vastausta" + +#: skins/default/templates/macros.html:714 +msgid "no new responses yet" +msgstr "ei vastauksia" + +#: skins/default/templates/macros.html:729 +#: skins/default/templates/macros.html:730 +#, python-format +msgid "%(new)s new flagged posts and %(seen)s previous" +msgstr "" + +#: skins/default/templates/macros.html:732 +#: skins/default/templates/macros.html:733 +#, python-format +msgid "%(new)s new flagged posts" +msgstr "" + +#: skins/default/templates/macros.html:738 +#: skins/default/templates/macros.html:739 +#, python-format +msgid "%(seen)s flagged posts" +msgstr "" + +#: skins/default/templates/main_page.html:11 +msgid "Questions" +msgstr "Kysymykset" + #: skins/default/templates/privacy.html:3 -#: skins/default/templates/privacy.html:6 +#: skins/default/templates/privacy.html:5 msgid "Privacy policy" msgstr "Yksityisyydensuoja" -#: skins/default/templates/question.html:30 -#: skins/default/templates/question.html:31 -#: skins/default/templates/question.html:46 -#: skins/default/templates/question.html:48 +#: skins/default/templates/question.html:26 +#: skins/default/templates/question.html:27 +#: skins/default/templates/question.html:42 +#: skins/default/templates/question.html:44 msgid "i like this post (click again to cancel)" msgstr "pidän tästä (klikkaa uudestaan peruaksesi)" -#: skins/default/templates/question.html:33 -#: skins/default/templates/question.html:50 -#: skins/default/templates/question.html:198 +#: skins/default/templates/question.html:29 +#: skins/default/templates/question.html:46 +#: skins/default/templates/question.html:186 msgid "current number of votes" msgstr "äänien määrä nyt" -#: skins/default/templates/question.html:42 -#: skins/default/templates/question.html:43 -#: skins/default/templates/question.html:55 -#: skins/default/templates/question.html:56 +#: skins/default/templates/question.html:38 +#: skins/default/templates/question.html:39 +#: skins/default/templates/question.html:51 +#: skins/default/templates/question.html:52 msgid "i dont like this post (click again to cancel)" msgstr "en pidä tästä (klikkaa uudestaan peruaksesi)" -#: skins/default/templates/question.html:60 -#: skins/default/templates/question.html:61 -msgid "mark this question as favorite (click again to cancel)" -msgstr "merkkaa suosikiksi (klikkaa uudestaan peruaksesi)" - -#: skins/default/templates/question.html:67 -#: skins/default/templates/question.html:68 -msgid "remove favorite mark from this question (click again to restore mark)" -msgstr "poista suosikkimerkintä (klikkaa uudestaan peruaksesi)" - -#: skins/default/templates/question.html:74 -#, fuzzy -msgid "Share this question on twitter" -msgstr "Avaa tämä kysymys uudelleen" - -#: skins/default/templates/question.html:75 -msgid "Share this question on facebook" -msgstr "" - -#: skins/default/templates/question.html:97 +#: skins/default/templates/question.html:82 #, fuzzy msgid "retag" msgstr "uudelleentagitettu" -#: skins/default/templates/question.html:104 +#: skins/default/templates/question.html:89 msgid "reopen" msgstr "avaa uudelleen" -#: skins/default/templates/question.html:108 +#: skins/default/templates/question.html:93 msgid "close" msgstr "sulje" -#: skins/default/templates/question.html:113 -#: skins/default/templates/question.html:251 +#: skins/default/templates/question.html:98 +#: skins/default/templates/question.html:239 msgid "" "report as offensive (i.e containing spam, advertising, malicious text, etc.)" msgstr "" "merkkaa loukkaavaksi (sisältää esim. roskapostia, mainostusta tai loukkaavaa " "tekstiä)" -#: skins/default/templates/question.html:114 -#: skins/default/templates/question.html:252 +#: skins/default/templates/question.html:99 +#: skins/default/templates/question.html:240 msgid "flag offensive" msgstr "merkkaa loukkaavaksi" -#: skins/default/templates/question.html:121 -#: skins/default/templates/question.html:262 -#: skins/default/templates/authopenid/signin.html:175 +#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:250 +msgid "undelete" +msgstr "palauta" + +#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:250 +#: skins/default/templates/authopenid/signin.html:166 msgid "delete" msgstr "poista" -#: skins/default/templates/question.html:156 +#: skins/default/templates/question.html:143 #, python-format msgid "" "The question has been closed for the following reason \"%(close_reason)s\" by" msgstr "" -#: skins/default/templates/question.html:158 +#: skins/default/templates/question.html:145 #, python-format msgid "close date %(closed_at)s" msgstr "sulkemispäivä %(closed_at)s" -#: skins/default/templates/question.html:166 +#: skins/default/templates/question.html:151 #, 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" "Your answer to \"%(title)s %(summary)s...\" is saved and will be " "posted once you log in." -#: skins/default/templates/question.html:174 +#: skins/default/templates/question.html:159 msgid "oldest answers will be shown first" msgstr "vanhimmat vastaukset näytetään ensin" -#: skins/default/templates/question.html:174 +#: skins/default/templates/question.html:160 msgid "oldest answers" msgstr "vanhimmat vastaukset" -#: skins/default/templates/question.html:176 +#: skins/default/templates/question.html:162 msgid "newest answers will be shown first" msgstr "uusimmat vastaukset näytetään ensin" -#: skins/default/templates/question.html:176 +#: skins/default/templates/question.html:163 msgid "newest answers" msgstr "uusimmat vastaukset" -#: skins/default/templates/question.html:178 +#: skins/default/templates/question.html:165 msgid "most voted answers will be shown first" msgstr "eniten ääniä saaneet vastaukset näytetään ensin" -#: skins/default/templates/question.html:178 +#: skins/default/templates/question.html:166 msgid "popular answers" msgstr "äänestetyimmät" -#: skins/default/templates/question.html:196 -#: skins/default/templates/question.html:197 +#: skins/default/templates/question.html:184 +#: skins/default/templates/question.html:185 msgid "i like this answer (click again to cancel)" msgstr "pidän tästä vastauksesta (klikkaa uudestaan peruaksesi)" -#: skins/default/templates/question.html:207 -#: skins/default/templates/question.html:208 +#: skins/default/templates/question.html:195 +#: skins/default/templates/question.html:196 msgid "i dont like this answer (click again to cancel)" msgstr "en pidä tästä vastauksesta (klikkaa uudestaan peruaksesi)" -#: skins/default/templates/question.html:216 -#: skins/default/templates/question.html:217 +#: skins/default/templates/question.html:204 +#: skins/default/templates/question.html:205 msgid "mark this answer as favorite (click again to undo)" msgstr "merkitse suosikiksi (klikkaa uudestaan peruaksesi)" -#: skins/default/templates/question.html:226 -#: skins/default/templates/question.html:227 +#: skins/default/templates/question.html:214 +#: skins/default/templates/question.html:215 #, fuzzy, python-format msgid "%(question_author)s has selected this answer as correct" msgstr "kysymyksen esittäjä on valinnut tämän vastauksen oikeaksi" -#: skins/default/templates/question.html:242 +#: skins/default/templates/question.html:230 msgid "answer permanent link" msgstr "vastauksen linkki" -#: skins/default/templates/question.html:243 +#: skins/default/templates/question.html:231 msgid "permanent link" msgstr "pysyväislinkki" -#: skins/default/templates/question.html:262 -msgid "undelete" -msgstr "palauta" +#: skins/default/templates/question.html:256 +#, fuzzy +msgid "swap with question" +msgstr "Post Your Answer" + +#: skins/default/templates/question.html:297 +#, python-format +msgid "" +"Know someone who can answer? Share a link " +"to this question via" +msgstr "" + +#: skins/default/templates/question.html:303 +#, fuzzy +msgid " or" +msgstr "tai" -#: skins/default/templates/question.html:309 -#: skins/default/templates/question.html:311 +#: skins/default/templates/question.html:305 +msgid "email" +msgstr "sähköposti" + +#: skins/default/templates/question.html:320 +#: skins/default/templates/question.html:322 msgid "Notify me once a day when there are any new answers" msgstr "" "Notify me once a day by email when there are any new " "answers or updates" -#: skins/default/templates/question.html:313 +#: skins/default/templates/question.html:324 msgid "Notify me weekly when there are any new answers" msgstr "" "Notify me weekly when there are any new answers or updates" -#: skins/default/templates/question.html:315 +#: skins/default/templates/question.html:326 #, fuzzy msgid "Notify me immediately when there are any new answers" msgstr "" "Notify me weekly when there are any new answers or updates" -#: skins/default/templates/question.html:318 +#: skins/default/templates/question.html:329 #, python-format msgid "" "You can always adjust frequency of email updates from your %(profile_url)s" @@ -3819,21 +4523,26 @@ msgstr "" "(note: you can always change how often you receive updates)" -#: skins/default/templates/question.html:323 +#: skins/default/templates/question.html:334 msgid "once you sign in you will be able to subscribe for any updates here" msgstr "" "Here (once you log in) you will be able to sign " "up for the periodic email updates about this question." -#: skins/default/templates/question.html:333 +#: skins/default/templates/question.html:344 +#, fuzzy +msgid "Login/Signup to Answer" +msgstr "Kirjaudu antaaksesi vastauksen" + +#: skins/default/templates/question.html:352 msgid "Your answer" msgstr "Vastauksesi" -#: skins/default/templates/question.html:335 +#: skins/default/templates/question.html:354 msgid "Be the first one to answer this question!" msgstr "Ole ensimmäinen vastaaja!" -#: skins/default/templates/question.html:341 +#: skins/default/templates/question.html:360 msgid "you can answer anonymously and then login" msgstr "" "Please start posting your answer anonymously " @@ -3842,7 +4551,7 @@ msgstr "" "answer, for discussions, please use comments and " "please do remember to vote (after you log in)!" -#: skins/default/templates/question.html:345 +#: skins/default/templates/question.html:364 msgid "answer your own question only to give an answer" msgstr "" "You are welcome to answer your own question, " @@ -3852,7 +4561,7 @@ msgstr "" "forget to vote :) for the answers that you liked (or perhaps did " "not like)! " -#: skins/default/templates/question.html:347 +#: skins/default/templates/question.html:366 msgid "please only give an answer, no discussions" msgstr "" "Please try to give a substantial answer. If " @@ -3862,284 +4571,162 @@ msgstr "" "please don't forget to vote - it really helps to select the " "best questions and answers!" -#: skins/default/templates/question.html:354 +#: skins/default/templates/question.html:373 msgid "Login/Signup to Post Your Answer" msgstr "Kirjaudu antaaksesi vastauksen" -#: skins/default/templates/question.html:357 +#: skins/default/templates/question.html:376 +#: skins/default/templates/question.html:389 msgid "Answer Your Own Question" msgstr "Vastaa omaan kysymykseesi" -#: skins/default/templates/question.html:359 +#: skins/default/templates/question.html:378 msgid "Answer the question" msgstr "Post Your Answer" -#: skins/default/templates/question.html:373 -msgid "Question tags" +#: skins/default/templates/question.html:397 +#, fuzzy +msgid "Question tools" msgstr "Tagit" -#: skins/default/templates/question.html:378 -#: skins/default/templates/questions.html:222 -#: skins/default/templates/tag_selector.html:9 -#: skins/default/templates/tag_selector.html:26 +#: skins/default/templates/question.html:400 +#, fuzzy +msgid "click to unfollow this question" +msgstr "questions with most answers" + +#: skins/default/templates/question.html:401 +msgid "Following" +msgstr "" + +#: skins/default/templates/question.html:402 +msgid "Unfollow" +msgstr "" + +#: skins/default/templates/question.html:406 +#, fuzzy +msgid "click to follow this question" +msgstr "questions with most answers" + +#: skins/default/templates/question.html:407 +msgid "Follow" +msgstr "" + +#: skins/default/templates/question.html:414 #, python-format -msgid "see questions tagged '%(tag_name)s'" -msgstr "näytä kysymykset, joilla on tagi '%(tag_name)s'" +msgid "%(count)s follower" +msgid_plural "%(count)s followers" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/templates/question.html:420 +#, fuzzy +msgid "email the updates" +msgstr "sähköpostipäivitykset peruttu" + +#: skins/default/templates/question.html:423 +msgid "" +"Here (once you log in) you will be able to sign up for the " +"periodic email updates about this question." +msgstr "" + +#: skins/default/templates/question.html:428 +msgid "subscribe to this question rss feed" +msgstr "" -#: skins/default/templates/question.html:384 +#: skins/default/templates/question.html:429 +msgid "subsribe to rss feed" +msgstr "" + +#: skins/default/templates/question.html:438 +msgid "Question tags" +msgstr "Tagit" + +#: skins/default/templates/question.html:460 +msgid "Stats:" +msgstr "" + +#: skins/default/templates/question.html:462 msgid "question asked" msgstr "Kysytty" -#: skins/default/templates/question.html:387 +#: skins/default/templates/question.html:465 msgid "question was seen" msgstr "Nähty" -#: skins/default/templates/question.html:387 +#: skins/default/templates/question.html:465 msgid "times" msgstr "kertaa" -#: skins/default/templates/question.html:390 +#: skins/default/templates/question.html:468 msgid "last updated" msgstr "viimeksi päivitetty" -#: skins/default/templates/question.html:397 +#: skins/default/templates/question.html:477 msgid "Related questions" msgstr "Liittyvät kysymykset" #: skins/default/templates/question_edit.html:4 -#: skins/default/templates/question_edit.html:10 +#: skins/default/templates/question_edit.html:9 msgid "Edit question" msgstr "Muokkaa kysymystä" -#: skins/default/templates/question_edit_tips.html:3 -msgid "question tips" -msgstr "Vinkkejä kysymiseen" - -#: skins/default/templates/question_edit_tips.html:6 -msgid "please ask a relevant question" -msgstr "kysy kysymys mikä koskee aiheitamme" - -#: skins/default/templates/question_edit_tips.html:9 -msgid "please try provide enough details" -msgstr "kirjoita mahdollisimman paljon yksityiskohtia" - #: skins/default/templates/question_retag.html:3 -#: skins/default/templates/question_retag.html:6 +#: skins/default/templates/question_retag.html:5 msgid "Change tags" msgstr "Vaihda tageja" -#: skins/default/templates/question_retag.html:25 +#: skins/default/templates/question_retag.html:21 #, fuzzy msgid "Retag" msgstr "tagit" -#: skins/default/templates/question_retag.html:34 +#: skins/default/templates/question_retag.html:28 msgid "Why use and modify tags?" msgstr "Miksi käyttää ja muokata tageja?" -#: skins/default/templates/question_retag.html:36 +#: skins/default/templates/question_retag.html:30 msgid "Tags help to keep the content better organized and searchable" msgstr "" -#: skins/default/templates/question_retag.html:38 +#: skins/default/templates/question_retag.html:32 msgid "tag editors receive special awards from the community" msgstr "tagien muokkaajat saavat erikoispalkintoja yhteisöltä" -#: skins/default/templates/question_retag.html:79 +#: skins/default/templates/question_retag.html:59 msgid "up to 5 tags, less than 20 characters each" msgstr "" -#: skins/default/templates/questions.html:4 -msgid "Questions" -msgstr "Kysymykset" - -#: skins/default/templates/questions.html:9 -msgid "In:" -msgstr "Näytä:" - -#: skins/default/templates/questions.html:18 -msgid "see unanswered questions" -msgstr "näytä vastaamattomat kysymykset" - -#: skins/default/templates/questions.html:24 -msgid "see your favorite questions" -msgstr "näytä suosikit" - -#: skins/default/templates/questions.html:29 -msgid "Sort by:" -msgstr "Järjestys:" - -#: skins/default/templates/questions.html:97 -#: skins/default/templates/questions.html:100 -msgid "subscribe to the questions feed" -msgstr "" - -#: skins/default/templates/questions.html:101 -msgid "rss feed" -msgstr "" - -#: skins/default/templates/questions.html:105 -#, fuzzy, python-format -msgid "" -"\n" -" %(q_num)s question\n" -" " -msgid_plural "" -"\n" -" %(q_num)s questions\n" -" " -msgstr[0] "" -"\n" -"%(q_num)s kysymystä löytyi" -msgstr[1] "" -"\n" -"yksi kysymys löytyi" - -#: skins/default/templates/questions.html:111 views/readers.py:157 -#, python-format -msgid "%(q_num)s question" -msgid_plural "%(q_num)s questions" -msgstr[0] "%(q_num)s kysymystä" -msgstr[1] "kysymys" - -#: skins/default/templates/questions.html:114 -#, python-format -msgid "with %(author_name)s's contributions" -msgstr "" - -#: skins/default/templates/questions.html:117 -msgid "tagged" -msgstr "tagattu" - -#: skins/default/templates/questions.html:122 -msgid "Search tips:" -msgstr "Hakuvinkkejä:" - -#: skins/default/templates/questions.html:125 -msgid "reset author" -msgstr "nollaa tekijä" - -#: skins/default/templates/questions.html:127 -#: skins/default/templates/questions.html:130 -#: skins/default/templates/questions.html:168 -#: skins/default/templates/questions.html:171 -#, fuzzy -msgid " or " -msgstr "tai" - -#: skins/default/templates/questions.html:128 -msgid "reset tags" -msgstr "nollaa tagit" - -#: skins/default/templates/questions.html:131 -#: skins/default/templates/questions.html:134 -msgid "start over" -msgstr "aloita alusta" - -#: skins/default/templates/questions.html:136 -msgid " - to expand, or dig in by adding more tags and revising the query." -msgstr " laajentaaksesi tai lisää enemmän tageja hakuusi." - -#: skins/default/templates/questions.html:139 -msgid "Search tip:" -msgstr "Hakuvinkki:" - -#: skins/default/templates/questions.html:139 -msgid "add tags and a query to focus your search" -msgstr "lisää tageja ja hakusanoja täsmentääksesi hakuasi" - -#: skins/default/templates/questions.html:154 -#: skins/default/templates/unused/questions_ajax.html:79 -msgid "There are no unanswered questions here" -msgstr "Ei vastaamattomia kysymyksiä" - -#: skins/default/templates/questions.html:157 -#: skins/default/templates/unused/questions_ajax.html:82 -msgid "No favorite questions here. " -msgstr "Ei suosikkeja." - -#: skins/default/templates/questions.html:158 -#: skins/default/templates/unused/questions_ajax.html:83 -msgid "Please start (bookmark) some questions when you visit them" -msgstr "" - -#: skins/default/templates/questions.html:163 -#: skins/default/templates/unused/questions_ajax.html:88 -msgid "You can expand your search by " -msgstr "Voit laajentaa hakuasi seuraavasti" - -#: skins/default/templates/questions.html:166 -#: skins/default/templates/unused/questions_ajax.html:92 -msgid "resetting author" -msgstr "nollataan" - -#: skins/default/templates/questions.html:169 -#: skins/default/templates/unused/questions_ajax.html:96 -msgid "resetting tags" -msgstr "nollataan tagit" - -#: skins/default/templates/questions.html:172 -#: skins/default/templates/questions.html:175 -#: skins/default/templates/unused/questions_ajax.html:100 -#: skins/default/templates/unused/questions_ajax.html:104 -msgid "starting over" -msgstr "aloitetaan alusta" - -#: skins/default/templates/questions.html:180 -#: skins/default/templates/unused/questions_ajax.html:109 -msgid "Please always feel free to ask your question!" -msgstr "Olet aina tervetullut kysymään!" - -#: skins/default/templates/questions.html:184 -#: skins/default/templates/unused/questions_ajax.html:113 -msgid "Did not find what you were looking for?" -msgstr "Et löytänyt etsimääsi?" - -#: skins/default/templates/questions.html:185 -#: skins/default/templates/unused/questions_ajax.html:114 -msgid "Please, post your question!" -msgstr "Ole hyvä ja kysy kysymyksesi!" - -#: skins/default/templates/questions.html:200 -msgid "Contributors" -msgstr "Ihmiset" - -#: skins/default/templates/questions.html:217 -msgid "Related tags" -msgstr "Tagit" - -#: skins/default/templates/reopen.html:3 skins/default/templates/reopen.html:6 +#: skins/default/templates/reopen.html:3 skins/default/templates/reopen.html:5 msgid "Reopen question" msgstr "Uudelleenavaa kysymys" -#: skins/default/templates/reopen.html:9 +#: skins/default/templates/reopen.html:6 #, fuzzy msgid "Title" msgstr "otsikko" -#: skins/default/templates/reopen.html:14 +#: skins/default/templates/reopen.html:11 #, python-format msgid "" "This question has been closed by \n" -" %(closed_by_username)s\n" -" " +" %(closed_by_username)s\n" msgstr "" -#: skins/default/templates/reopen.html:19 +#: skins/default/templates/reopen.html:16 #, fuzzy msgid "Close reason:" msgstr "Sulje kysymys" -#: skins/default/templates/reopen.html:22 +#: skins/default/templates/reopen.html:19 msgid "When:" msgstr "" -#: skins/default/templates/reopen.html:25 +#: skins/default/templates/reopen.html:22 #, fuzzy msgid "Reopen this question?" msgstr "Avaa tämä kysymys uudelleen" -#: skins/default/templates/reopen.html:29 +#: skins/default/templates/reopen.html:26 msgid "Reopen this question" msgstr "Avaa tämä kysymys uudelleen" @@ -4157,451 +4744,91 @@ msgstr "klikkaa piilottaaksesi/näyttääksesi revision" msgid "revision %(number)s" msgstr "revisiot/" -#: skins/default/templates/tag_selector.html:3 -msgid "Interesting tags" -msgstr "Mielenkiintoiset tagit" - -#: skins/default/templates/tag_selector.html:13 -#, python-format -msgid "remove '%(tag_name)s' from the list of interesting tags" -msgstr "poista tagi '%(tag_name)s' mielenkiintoisista" - -#: skins/default/templates/tag_selector.html:19 -#: skins/default/templates/tag_selector.html:36 -#: skins/default/templates/user_moderate.html:35 -msgid "Add" -msgstr "Lisää" - -#: skins/default/templates/tag_selector.html:20 -msgid "Ignored tags" -msgstr "Hylätyt tagit" +#: skins/default/templates/subscribe_for_tags.html:3 +#: skins/default/templates/subscribe_for_tags.html:5 +#, fuzzy +msgid "Subscribe for tags" +msgstr "käytä tageja" -#: skins/default/templates/tag_selector.html:30 -#, python-format -msgid "remove '%(tag_name)s' from the list of ignored tags" -msgstr "poista tagi '%(tag_name)s' hylätyistä" +#: skins/default/templates/subscribe_for_tags.html:6 +msgid "Please, subscribe for the following tags:" +msgstr "" -#: skins/default/templates/tag_selector.html:39 -msgid "keep ignored questions hidden" -msgstr "pidä hylätyt piilotettuina" +#: skins/default/templates/subscribe_for_tags.html:15 +msgid "Subscribe" +msgstr "" -#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:8 +#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:11 msgid "Tag list" msgstr "Tagilista" -#: skins/default/templates/tags.html:14 +#: skins/default/templates/tags.html:9 +#, python-format +msgid "Tags, matching \"%(stag)s\"" +msgstr "" + +#: skins/default/templates/tags.html:19 msgid "sorted alphabetically" msgstr "aakkosjärjestyksessä" -#: skins/default/templates/tags.html:15 +#: skins/default/templates/tags.html:20 msgid "by name" msgstr "nimen mukaan" -#: skins/default/templates/tags.html:20 +#: skins/default/templates/tags.html:25 msgid "sorted by frequency of tag use" msgstr "taginkäytön mukaan" -#: skins/default/templates/tags.html:21 +#: skins/default/templates/tags.html:26 msgid "by popularity" msgstr "suosituksen mukaan" -#: skins/default/templates/tags.html:27 -#, python-format -msgid "" -"All tags matching '%(stag)s'" -msgstr "" - -#: skins/default/templates/tags.html:30 +#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:56 msgid "Nothing found" msgstr "Mitään ei löytynyt" -#: skins/default/templates/user.html:14 -#, python-format -msgid "%(username)s's profile" -msgstr "käyttäjän %(username)s profiili" - -#: skins/default/templates/user_edit.html:4 -msgid "Edit user profile" -msgstr "Muokkaa profiilia" - -#: skins/default/templates/user_edit.html:7 -msgid "edit profile" -msgstr "muokkaa profiilia" +#: skins/default/templates/users.html:4 skins/default/templates/users.html:7 +msgid "Users" +msgstr "Käyttäjät" -#: skins/default/templates/user_edit.html:17 -#: skins/default/templates/user_info.html:11 -msgid "change picture" -msgstr "vaihda kuva" +#: skins/default/templates/users.html:13 +msgid "see people with the highest reputation" +msgstr "" -#: skins/default/templates/user_edit.html:20 -msgid "Registered user" -msgstr "Rekisteröity käyttäjä" +#: skins/default/templates/users.html:14 +#: skins/default/templates/user_profile/user_info.html:25 +msgid "reputation" +msgstr "maine" -#: skins/default/templates/user_edit.html:27 -msgid "Screen Name" -msgstr "Tunnus" +#: skins/default/templates/users.html:19 +msgid "see people who joined most recently" +msgstr "" -#: skins/default/templates/user_edit.html:75 -#: skins/default/templates/user_email_subscriptions.html:18 -msgid "Update" -msgstr "Päivitä" +#: skins/default/templates/users.html:20 +msgid "recent" +msgstr "äskettäiset" -#: skins/default/templates/user_email_subscriptions.html:4 -msgid "Email subscription settings" +#: skins/default/templates/users.html:25 +msgid "see people who joined the site first" msgstr "" -#: skins/default/templates/user_email_subscriptions.html:5 -msgid "email subscription settings info" +#: skins/default/templates/users.html:31 +msgid "see people sorted by name" msgstr "" -"Adjust frequency of email updates. Receive " -"updates on interesting questions by email,
    help the community by answering questions of your colleagues. If you do not wish to " -"receive emails - select 'no email' on all items below.
    Updates are only " -"sent when there is any new activity on selected items." - -#: skins/default/templates/user_email_subscriptions.html:19 -msgid "Stop sending email" -msgstr "Stop Email" - -#: skins/default/templates/user_inbox.html:31 -#, fuzzy -msgid "Sections:" -msgstr "kysymykset" -#: skins/default/templates/user_inbox.html:35 -#, python-format -msgid "forum responses (%(re_count)s)" -msgstr "" +#: skins/default/templates/users.html:32 +msgid "by username" +msgstr "käyttäjänimen mukaan" -#: skins/default/templates/user_inbox.html:40 +#: skins/default/templates/users.html:37 #, python-format -msgid "flagged items (%(flag_count)s)" +msgid "users matching query %(suser)s:" msgstr "" -#: skins/default/templates/user_inbox.html:46 -#, fuzzy -msgid "select:" -msgstr "poista" - -#: skins/default/templates/user_inbox.html:48 -#, fuzzy -msgid "seen" -msgstr "nähty viimeksi" - -#: skins/default/templates/user_inbox.html:49 -#, fuzzy -msgid "new" -msgstr "uusin" - -#: skins/default/templates/user_inbox.html:50 -#, fuzzy -msgid "none" -msgstr "bronssi" - -#: skins/default/templates/user_inbox.html:51 -#, fuzzy -msgid "mark as seen" -msgstr "nähty viimeksi" - -#: skins/default/templates/user_inbox.html:52 -#, fuzzy -msgid "mark as new" -msgstr "merkitty parhaaksi vastaukseksi" - -#: skins/default/templates/user_inbox.html:53 -msgid "dismiss" -msgstr "" - -#: skins/default/templates/user_info.html:18 -#: skins/default/templates/users.html:13 skins/default/templates/users.html:14 -msgid "reputation" -msgstr "maine" - -#: skins/default/templates/user_info.html:30 -msgid "manage login methods" -msgstr "" - -#: skins/default/templates/user_info.html:34 -msgid "update profile" -msgstr "päivitä profiili" - -#: skins/default/templates/user_info.html:46 -msgid "real name" -msgstr "nimi" - -#: skins/default/templates/user_info.html:51 -msgid "member for" -msgstr "liittynyt" - -#: skins/default/templates/user_info.html:56 -msgid "last seen" -msgstr "nähty viimeksi" - -#: skins/default/templates/user_info.html:62 -msgid "user website" -msgstr "sivusto" - -#: skins/default/templates/user_info.html:68 -msgid "location" -msgstr "paikka" - -#: skins/default/templates/user_info.html:75 -msgid "age" -msgstr "ikä" - -#: skins/default/templates/user_info.html:76 -msgid "age unit" -msgstr "years old" - -#: skins/default/templates/user_info.html:83 -msgid "todays unused votes" -msgstr "tämän päivän käyttämättömät äänet" - -#: skins/default/templates/user_info.html:84 -msgid "votes left" -msgstr "ääntä jäljellä" - -#: skins/default/templates/user_moderate.html:5 -#, python-format -msgid "%(username)s's current status is \"%(status)s\"" -msgstr "" - -#: skins/default/templates/user_moderate.html:8 -msgid "User status changed" -msgstr "" - -#: skins/default/templates/user_moderate.html:15 -#, fuzzy -msgid "Save" -msgstr "Tallenna muokkaus" - -#: skins/default/templates/user_moderate.html:21 -#, fuzzy, python-format -msgid "Your current reputation is %(reputation)s points" -msgstr "maineesi on %(reputation)s" - -#: skins/default/templates/user_moderate.html:23 -#, python-format -msgid "User's current reputation is %(reputation)s points" -msgstr "" - -#: skins/default/templates/user_moderate.html:27 -#, fuzzy -msgid "User reputation changed" -msgstr "user karma" - -#: skins/default/templates/user_moderate.html:34 -msgid "Subtract" -msgstr "" - -#: skins/default/templates/user_moderate.html:39 -#, fuzzy, python-format -msgid "Send message to %(username)s" -msgstr "vastauksia käyttäjälle %(username)s" - -#: skins/default/templates/user_moderate.html:40 -msgid "" -"An email will be sent to the user with 'reply-to' field set to your email " -"address. Please make sure that your address is entered correctly." -msgstr "" - -#: skins/default/templates/user_moderate.html:42 -#, fuzzy -msgid "Message sent" -msgstr "viestit/" - -#: skins/default/templates/user_moderate.html:60 -#, fuzzy -msgid "Send message" -msgstr "viestit/" - -#: skins/default/templates/user_reputation.html:7 -msgid "Your karma change log." -msgstr "äänihistoriasi." - -#: skins/default/templates/user_reputation.html:9 -#, python-format -msgid "%(user_name)s's karma change log" -msgstr "" - -#: skins/default/templates/user_stats.html:7 -#, python-format -msgid "%(counter)s Question" -msgid_plural "%(counter)s Questions" -msgstr[0] "%(counter)s kysymystä" -msgstr[1] "%(counter)s kysymys" - -#: skins/default/templates/user_stats.html:12 -#, python-format -msgid "%(counter)s Answer" -msgid_plural "%(counter)s Answers" -msgstr[0] "%(counter)s vastausta" -msgstr[1] "%(counter)s vastaus" - -#: skins/default/templates/user_stats.html:20 -#, python-format -msgid "the answer has been voted for %(answer_score)s times" -msgstr "" - -#: skins/default/templates/user_stats.html:20 -msgid "this answer has been selected as correct" -msgstr "tämä vastaus on valittu oikeaksi" - -#: skins/default/templates/user_stats.html:30 -#, python-format -msgid "(%(comment_count)s comment)" -msgid_plural "the answer has been commented %(comment_count)s times" -msgstr[0] "vastausta kommentoitiin %(comment_count)s kertaa" -msgstr[1] "vastausta kommentoitiin kerran" - -#: skins/default/templates/user_stats.html:40 -#, python-format -msgid "%(cnt)s Vote" -msgid_plural "%(cnt)s Votes " -msgstr[0] "%(cnt)s ääntä" -msgstr[1] "yksi ääni" - -#: skins/default/templates/user_stats.html:46 -msgid "thumb up" -msgstr "" - -#: skins/default/templates/user_stats.html:47 -msgid "user has voted up this many times" -msgstr "käyttäjä on äänestänyt tätä monta kertaa" - -#: skins/default/templates/user_stats.html:50 -msgid "thumb down" -msgstr "" - -#: skins/default/templates/user_stats.html:51 -msgid "user voted down this many times" -msgstr "" - -#: skins/default/templates/user_stats.html:59 -#, python-format -msgid "%(counter)s Tag" -msgid_plural "%(counter)s Tags" -msgstr[0] "%(counter)s tagia" -msgstr[1] "yksi tagi" - -#: skins/default/templates/user_stats.html:67 -#, python-format -msgid "" -"see other questions with %(view_user)s's contributions tagged '%(tag_name)s' " -msgstr "" - -#: skins/default/templates/user_stats.html:81 -#, python-format -msgid "%(counter)s Badge" -msgid_plural "%(counter)s Badges" -msgstr[0] "%(counter)s kunniamerkkiä" -msgstr[1] "yksi arvomerkki" - -#: skins/default/templates/user_tabs.html:5 -msgid "User profile" -msgstr "Profiili" - -#: skins/default/templates/user_tabs.html:6 -msgid "overview" -msgstr "yhteenveto" - -#: skins/default/templates/user_tabs.html:9 views/users.py:753 -msgid "comments and answers to others questions" -msgstr "kommentteja ja vastauksia muihin kysymyksiin" - -#: skins/default/templates/user_tabs.html:10 -msgid "inbox" -msgstr "" - -#: skins/default/templates/user_tabs.html:13 -msgid "graph of user reputation" -msgstr "Graph of user karma" - -#: skins/default/templates/user_tabs.html:14 -msgid "reputation history" -msgstr "karma history" - -#: skins/default/templates/user_tabs.html:16 -msgid "questions that user selected as his/her favorite" -msgstr "kysymyksiä, joita tämä käyttäjä on valinnut suosikikseen" - -#: skins/default/templates/user_tabs.html:17 -msgid "favorites" -msgstr "suosikit" - -#: skins/default/templates/user_tabs.html:19 -msgid "recent activity" -msgstr "uusimmat" - -#: skins/default/templates/user_tabs.html:20 -#, fuzzy -msgid "activity" -msgstr "aktiivinen" - -#: skins/default/templates/user_tabs.html:23 views/users.py:818 -msgid "user vote record" -msgstr "äänihistoria" - -#: skins/default/templates/user_tabs.html:24 -msgid "casted votes" -msgstr "votes" - -#: skins/default/templates/user_tabs.html:28 views/users.py:928 -msgid "email subscription settings" -msgstr "" - -#: skins/default/templates/user_tabs.html:29 -#, fuzzy -msgid "subscriptions" -msgstr "kysymykset" - -#: skins/default/templates/user_tabs.html:33 views/users.py:216 -#, fuzzy -msgid "moderate this user" -msgstr "Hallitse tätä käyttäjää" - -#: skins/default/templates/user_tabs.html:34 -#, fuzzy -msgid "moderation" -msgstr "Paikka" - -#: skins/default/templates/users.html:4 skins/default/templates/users.html:7 -msgid "Users" -msgstr "Käyttäjät" - -#: skins/default/templates/users.html:19 skins/default/templates/users.html:20 -msgid "recent" -msgstr "äskettäiset" - -#: skins/default/templates/users.html:31 skins/default/templates/users.html:32 -msgid "by username" -msgstr "käyttäjänimen mukaan" - -#: skins/default/templates/users.html:38 -#, python-format -msgid "users matching query %(suser)s:" -msgstr "" - -#: skins/default/templates/users.html:41 +#: skins/default/templates/users.html:40 msgid "Nothing found." msgstr "Mitään ei löytynyt." -#: skins/default/templates/users_questions.html:9 -#: skins/default/templates/users_questions.html:17 -#, fuzzy, python-format -msgid "this questions was selected as favorite %(cnt)s time" -msgid_plural "this questions was selected as favorite %(cnt)s times" -msgstr[0] "tämä kysymys valittiin suosikiksi" -msgstr[1] "tämä kysymys valittiin suosikiksi" - -#: skins/default/templates/users_questions.html:10 -msgid "thumb-up on" -msgstr "" - -#: skins/default/templates/users_questions.html:18 -msgid "thumb-up off" -msgstr "" - #: skins/default/templates/authopenid/changeemail.html:2 #: skins/default/templates/authopenid/changeemail.html:8 #: skins/default/templates/authopenid/changeemail.html:36 @@ -4627,9 +4854,10 @@ msgstr "" "Please enter your email address in the box below. Valid email address is required on this Q&A forum. If you like, " "you can receive updates on interesting questions or entire " -"forum via email. Also, your email is used to create a unique gravatar image for your account. " -"Email addresses are never shown or otherwise shared with anybody else." +"forum via email. Also, your email is used to create a unique gravatar image for your " +"account. Email addresses are never shown or otherwise shared with anybody " +"else." #: skins/default/templates/authopenid/changeemail.html:29 msgid "Your new Email" @@ -4651,12 +4879,12 @@ msgstr "Tarkistuta sähköpostiosoite" #, python-format msgid "validate %(email)s info or go to %(change_email_url)s" msgstr "" -"An email with a validation link has been sent to %" -"(email)s. Please follow the emailed link with your " +"An email with a validation link has been sent to " +"%(email)s. Please follow the emailed link with your " "web browser. Email validation is necessary to help insure the proper use of " "email on Q&A. If you would like to use " -"another email, please change it again." +"another email, please change it again." #: skins/default/templates/authopenid/changeemail.html:52 msgid "Email not changed" @@ -4668,8 +4896,8 @@ msgid "old %(email)s kept, if you like go to %(change_email_url)s" msgstr "" "Your email address %(email)s has not been changed." " If you decide to change it later - you can always do it by editing " -"it in your user profile or by using the previous form again." +"it in your user profile or by using the previous form again." #: skins/default/templates/authopenid/changeemail.html:59 msgid "Email changed" @@ -4706,32 +4934,33 @@ msgstr "Validation email not sent" msgid "email key not sent %(email)s change email here %(change_link)s" msgstr "" "Your current email address %(email)s has been " -"validated before so the new key was not sent. You can change email used for update subscriptions if necessary." +"validated before so the new key was not sent. You can change email used for update subscriptions if " +"necessary." #: skins/default/templates/authopenid/complete.html:21 -#: skins/default/templates/authopenid/complete.html:24 +#: skins/default/templates/authopenid/complete.html:23 #, fuzzy msgid "Registration" msgstr "Rekisteröidy" -#: skins/default/templates/authopenid/complete.html:29 +#: skins/default/templates/authopenid/complete.html:27 #, python-format msgid "register new %(provider)s account info, see %(gravatar_faq_url)s" msgstr "" -"

    You are here for the first time with your %" -"(provider)s login. Please create your screen name " +"

    You are here for the first time with your " +"%(provider)s login. Please create your screen name " "and save your email address. Saved email address will let " "you subscribe for the updates on the most interesting " "questions and will be used to create and retrieve your unique avatar image - " "gravatar.

    " -#: skins/default/templates/authopenid/complete.html:32 +#: skins/default/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" +" %(provider)s. Email is required too, see " +"%(gravatar_faq_url)s\n" " " msgstr "" "

    Oops... looks like screen name %(username)s is " @@ -4743,21 +4972,21 @@ msgstr "" "updates on the interesting questions or entire forum by email. " "Email addresses are never shown or otherwise shared with anybody else.

    " -#: skins/default/templates/authopenid/complete.html:36 +#: skins/default/templates/authopenid/complete.html:34 #, python-format msgid "" "register new external %(provider)s account info, see %(gravatar_faq_url)s" msgstr "" -"

    You are here for the first time with your %" -"(provider)s login.

    You can either keep your screen " +"

    You are here for the first time with your " +"%(provider)s login.

    You can either keep your screen " "name the same as your %(provider)s login name or choose some other " "nickname.

    Also, please save a valid email address. " "With the email you can subscribe for the updates on the " "most interesting questions. Email address is also used to create and " -"retrieve your unique avatar image - gravatar.

    " +"retrieve your unique avatar image - gravatar.

    " -#: skins/default/templates/authopenid/complete.html:39 +#: skins/default/templates/authopenid/complete.html:37 #, python-format msgid "register new Facebook connect account info, see %(gravatar_faq_url)s" msgstr "" @@ -4765,23 +4994,23 @@ msgstr "" "Facebook login.
    Please create your screen name and " "save your email address. Saved email address will let you " "subscribe for the updates on the most interesting questions " -"and will be used to create and retrieve your unique avatar image - gravatar.

    " +"and will be used to create and retrieve your unique avatar image - gravatar.

    " -#: skins/default/templates/authopenid/complete.html:42 +#: skins/default/templates/authopenid/complete.html:40 msgid "This account already exists, please use another." msgstr "Tämä tunnus on jo käytössä." -#: skins/default/templates/authopenid/complete.html:61 +#: skins/default/templates/authopenid/complete.html:59 msgid "Screen name label" msgstr "Käyttäjätunnus" -#: skins/default/templates/authopenid/complete.html:68 +#: skins/default/templates/authopenid/complete.html:66 msgid "Email address label" msgstr "Sähköpostiosoite" -#: skins/default/templates/authopenid/complete.html:74 -#: skins/default/templates/authopenid/signup_with_password.html:17 +#: skins/default/templates/authopenid/complete.html:72 +#: skins/default/templates/authopenid/signup_with_password.html:36 msgid "receive updates motivational blurb" msgstr "" "Receive forum updates by email - this will help our " @@ -4790,16 +5019,16 @@ msgstr "" "week
    - only when there is anything new.
    If you like, please " "adjust this now or any time later from your user account." -#: skins/default/templates/authopenid/complete.html:78 -#: skins/default/templates/authopenid/signup_with_password.html:21 +#: skins/default/templates/authopenid/complete.html:76 +#: skins/default/templates/authopenid/signup_with_password.html:40 msgid "please select one of the options above" msgstr "valitse yksi vaihtoehto" -#: skins/default/templates/authopenid/complete.html:81 +#: skins/default/templates/authopenid/complete.html:79 msgid "Tag filter tool will be your right panel, once you log in." msgstr "" -#: skins/default/templates/authopenid/complete.html:82 +#: skins/default/templates/authopenid/complete.html:80 msgid "create account" msgstr "Luo tunnus" @@ -4849,11 +5078,40 @@ msgid "" "for any inconvenience" msgstr "" -#: skins/default/templates/authopenid/signin.html:3 +#: skins/default/templates/authopenid/logout.html:3 +msgid "Logout" +msgstr "Kirjaudu ulos" + +#: skins/default/templates/authopenid/logout.html:5 +msgid "You have successfully logged out" +msgstr "" + +#: skins/default/templates/authopenid/logout.html: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 "" + +#: skins/default/templates/authopenid/macros.html:53 +msgid "Please enter your user name, then sign in" +msgstr "" + +#: skins/default/templates/authopenid/macros.html:54 +#: skins/default/templates/authopenid/signin.html:90 +#, fuzzy +msgid "(or select another login method above)" +msgstr "valitse yksi vaihtoehto" + +#: skins/default/templates/authopenid/macros.html:56 +#, fuzzy +msgid "Sign in" +msgstr "kirjautuminen/" + +#: skins/default/templates/authopenid/signin.html:4 msgid "User login" msgstr "Kirjautuminen" -#: skins/default/templates/authopenid/signin.html:11 +#: skins/default/templates/authopenid/signin.html:14 #, fuzzy, python-format msgid "" "\n" @@ -4865,7 +5123,7 @@ msgstr "" "strong> %(summary)s...\" is saved and will be " "posted once you log in." -#: skins/default/templates/authopenid/signin.html:18 +#: skins/default/templates/authopenid/signin.html:21 #, fuzzy, python-format msgid "" "Your question \n" @@ -4876,178 +5134,179 @@ msgstr "" "strong> %(summary)s...\" is saved and will be " "posted once you log in." -#: skins/default/templates/authopenid/signin.html:25 +#: skins/default/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." msgstr "" -#: skins/default/templates/authopenid/signin.html:28 +#: skins/default/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 "" -#: skins/default/templates/authopenid/signin.html:30 +#: skins/default/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 "" -#: skins/default/templates/authopenid/signin.html:34 +#: skins/default/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 "" -#: skins/default/templates/authopenid/signin.html:36 +#: skins/default/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 "" -#: skins/default/templates/authopenid/signin.html:39 +#: skins/default/templates/authopenid/signin.html:42 msgid "" "Please check your email and visit the enclosed link to re-connect to your " "account" msgstr "" -#: skins/default/templates/authopenid/signin.html:86 -msgid "Please enter your user name, then sign in" -msgstr "" - #: skins/default/templates/authopenid/signin.html:87 -#: skins/default/templates/authopenid/signin.html:109 -#, fuzzy -msgid "(or select another login method above)" -msgstr "valitse yksi vaihtoehto" - -#: skins/default/templates/authopenid/signin.html:89 -#, fuzzy -msgid "Sign in" -msgstr "kirjautuminen/" - -#: skins/default/templates/authopenid/signin.html:107 #, fuzzy msgid "Please enter your user name and password, then sign in" msgstr "Syötä käyttäjätunnus ja salasana" -#: skins/default/templates/authopenid/signin.html:111 +#: skins/default/templates/authopenid/signin.html:93 msgid "Login failed, please try again" msgstr "" -#: skins/default/templates/authopenid/signin.html:114 -msgid "Login name" -msgstr "Käyttäjätunnus" +#: skins/default/templates/authopenid/signin.html:97 +#, fuzzy +msgid "Login or email" +msgstr "ei sähköpostia" -#: skins/default/templates/authopenid/signin.html:118 +#: skins/default/templates/authopenid/signin.html:101 msgid "Password" msgstr "Salasana" -#: skins/default/templates/authopenid/signin.html:122 +#: skins/default/templates/authopenid/signin.html:106 msgid "Login" msgstr "Kirjautuminen" -#: skins/default/templates/authopenid/signin.html:129 +#: skins/default/templates/authopenid/signin.html:113 msgid "To change your password - please enter the new one twice, then submit" msgstr "" -#: skins/default/templates/authopenid/signin.html:132 +#: skins/default/templates/authopenid/signin.html:117 #, fuzzy msgid "New password" msgstr "Uusi salasana asetettu" -#: skins/default/templates/authopenid/signin.html:137 +#: skins/default/templates/authopenid/signin.html:124 #, fuzzy msgid "Please, retype" msgstr "anna salasana uudestaan" -#: skins/default/templates/authopenid/signin.html:156 +#: skins/default/templates/authopenid/signin.html:146 msgid "Here are your current login methods" msgstr "" -#: skins/default/templates/authopenid/signin.html:160 +#: skins/default/templates/authopenid/signin.html:150 msgid "provider" msgstr "" -#: skins/default/templates/authopenid/signin.html:161 +#: skins/default/templates/authopenid/signin.html:151 #, fuzzy msgid "last used" msgstr "nähty viimeksi" -#: skins/default/templates/authopenid/signin.html:162 +#: skins/default/templates/authopenid/signin.html:152 msgid "delete, if you like" msgstr "" -#: skins/default/templates/authopenid/signin.html:187 +#: skins/default/templates/authopenid/signin.html:168 +#, fuzzy +msgid "cannot be deleted" +msgstr "Tunnus poistettu." + +#: skins/default/templates/authopenid/signin.html:181 #, fuzzy msgid "Still have trouble signing in?" msgstr "Vieläkin kysymyksiä?" -#: skins/default/templates/authopenid/signin.html:192 +#: skins/default/templates/authopenid/signin.html:186 msgid "Please, enter your email address below and obtain a new key" msgstr "" -#: skins/default/templates/authopenid/signin.html:194 +#: skins/default/templates/authopenid/signin.html:188 msgid "Please, enter your email address below to recover your account" msgstr "" -#: skins/default/templates/authopenid/signin.html:197 +#: skins/default/templates/authopenid/signin.html:191 #, fuzzy msgid "recover your account via email" msgstr "Anna tunnuksellesi uusi salasana." -#: skins/default/templates/authopenid/signin.html:208 +#: skins/default/templates/authopenid/signin.html:202 msgid "Send a new recovery key" msgstr "" -#: skins/default/templates/authopenid/signin.html:210 +#: skins/default/templates/authopenid/signin.html:204 #, fuzzy msgid "Recover your account via email" msgstr "Anna tunnuksellesi uusi salasana." -#: skins/default/templates/authopenid/signin.html:221 +#: skins/default/templates/authopenid/signin.html:216 msgid "Why use OpenID?" msgstr "Miksi käyttää OpenID:tä?" -#: skins/default/templates/authopenid/signin.html:224 +#: skins/default/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/default/templates/authopenid/signin.html:227 +#: skins/default/templates/authopenid/signin.html:222 msgid "reuse openid" msgstr "You can safely re-use the same login for all OpenID-enabled websites." -#: skins/default/templates/authopenid/signin.html:230 +#: skins/default/templates/authopenid/signin.html:225 msgid "openid is widely adopted" msgstr "" "Maailmanlaajuisesti OpenID:tä käyttää yli 160 miljoonaa ihmistä. " "Kymmenettuhannet sivustot käyttävät OpenID-palvelua kirjautumisessa " "hyväkseen." -#: skins/default/templates/authopenid/signin.html:233 +#: skins/default/templates/authopenid/signin.html:228 msgid "openid is supported open standard" msgstr "OpenID on avoin standardi, jota käyttää moni yritys ja organisaatio." -#: skins/default/templates/authopenid/signin.html:237 +#: skins/default/templates/authopenid/signin.html:232 msgid "Find out more" msgstr "Ota selvää" -#: skins/default/templates/authopenid/signin.html:238 +#: skins/default/templates/authopenid/signin.html:233 msgid "Get OpenID" msgstr "Hanki OpenID" -#: skins/default/templates/authopenid/signup_with_password.html:3 +#: skins/default/templates/authopenid/signup_with_password.html:4 msgid "Signup" msgstr "Kirjaudu" -#: skins/default/templates/authopenid/signup_with_password.html:6 +#: skins/default/templates/authopenid/signup_with_password.html:10 +#, fuzzy +msgid "Please register by clicking on any of the icons below" +msgstr "valitse yksi vaihtoehto" + +#: skins/default/templates/authopenid/signup_with_password.html:23 +#, fuzzy +msgid "or create a new user name and password here" +msgstr "Luo tunnus ja salasana" + +#: skins/default/templates/authopenid/signup_with_password.html:25 msgid "Create login name and password" msgstr "Luo tunnus ja salasana" -#: skins/default/templates/authopenid/signup_with_password.html:8 +#: skins/default/templates/authopenid/signup_with_password.html:26 msgid "Traditional signup info" msgstr "" "If you prefer, create your forum login name and " @@ -5056,184 +5315,901 @@ msgstr "" "simply reuse your external login (e.g. Gmail or AOL) without ever sharing " "your login details with anyone and having to remember yet another password." -#: skins/default/templates/authopenid/signup_with_password.html:24 +#: skins/default/templates/authopenid/signup_with_password.html:44 msgid "" "Please read and type in the two words below to help us prevent automated " "account creation." msgstr "" -#: skins/default/templates/authopenid/signup_with_password.html:26 +#: skins/default/templates/authopenid/signup_with_password.html:47 msgid "Create Account" msgstr "Luo tunnus" -#: skins/default/templates/authopenid/signup_with_password.html:27 +#: skins/default/templates/authopenid/signup_with_password.html:49 msgid "or" msgstr "tai" -#: skins/default/templates/authopenid/signup_with_password.html:28 +#: skins/default/templates/authopenid/signup_with_password.html:50 msgid "return to OpenID login" msgstr "palaa OpenID-palvelun kirjautumiseen" -#: skins/default/templates/unused/email_base.html:8 -msgid "home" -msgstr "koti" +#: skins/default/templates/avatar/add.html:3 +#, fuzzy +msgid "add avatar" +msgstr "Miten vaihdan profiilissani olevan kuvan (gravatar)?" + +#: skins/default/templates/avatar/add.html:5 +#, fuzzy +msgid "Change avatar" +msgstr "Vaihda tageja" + +#: skins/default/templates/avatar/add.html:6 +#: skins/default/templates/avatar/change.html:7 +#, fuzzy +msgid "Your current avatar: " +msgstr "Tunnuksen tiedot:" + +#: skins/default/templates/avatar/add.html:9 +#: skins/default/templates/avatar/change.html:11 +msgid "You haven't uploaded an avatar yet. Please upload one now." +msgstr "" + +#: skins/default/templates/avatar/add.html:13 +msgid "Upload New Image" +msgstr "" + +#: skins/default/templates/avatar/change.html:4 +#, fuzzy +msgid "change avatar" +msgstr "muutokset talletettu" -#: skins/default/templates/unused/notarobot.html:3 -msgid "Please prove that you are a Human Being" -msgstr "Ole hyvä ja todista, että olet ihminen" +#: skins/default/templates/avatar/change.html:17 +msgid "Choose new Default" +msgstr "" + +#: skins/default/templates/avatar/change.html:22 +#, fuzzy +msgid "Upload" +msgstr "laheta/" -#: skins/default/templates/unused/notarobot.html:10 -msgid "I am a Human Being" -msgstr "Olen ihminen" +#: skins/default/templates/avatar/confirm_delete.html:3 +#, fuzzy +msgid "delete avatar" +msgstr "poisti vastauksen" -#: skins/default/templates/unused/question_counter_widget.html:78 -msgid "Please decide if you like this question or not by voting" -msgstr "Äänestä, että pidätkö tästä kysymyksestä vai et" +#: skins/default/templates/avatar/confirm_delete.html:5 +msgid "Please select the avatars that you would like to delete." +msgstr "" -#: skins/default/templates/unused/question_counter_widget.html:84 +#: skins/default/templates/avatar/confirm_delete.html:7 +#, python-format msgid "" -"\n" -" vote\n" -" " -msgid_plural "" -"\n" -" votes\n" -" " +"You have no avatars to delete. Please upload one now." +msgstr "" + +#: skins/default/templates/avatar/confirm_delete.html:13 +#, fuzzy +msgid "Delete These" +msgstr "poisti vastauksen" + +#: skins/default/templates/blocks/answer_edit_tips.html:3 +msgid "answer tips" +msgstr "Vastausvinkkejä" + +#: skins/default/templates/blocks/answer_edit_tips.html:6 +msgid "please make your answer relevant to this community" +msgstr "vastaus käsittelee tämän sivuston aihealuita" + +#: skins/default/templates/blocks/answer_edit_tips.html:9 +msgid "try to give an answer, rather than engage into a discussion" +msgstr "yritä vastata kysymykseen mielummin, kuin että osallistut keskusteluun" + +#: skins/default/templates/blocks/answer_edit_tips.html:12 +msgid "please try to provide details" +msgstr "anna yksityiskohtia, sillä emme omista kristallipalloa" + +#: skins/default/templates/blocks/answer_edit_tips.html:15 +#: skins/default/templates/blocks/question_edit_tips.html:11 +msgid "be clear and concise" +msgstr "ole selkeä ja täsmällinen" + +#: skins/default/templates/blocks/answer_edit_tips.html:19 +#: skins/default/templates/blocks/question_edit_tips.html:15 +msgid "see frequently asked questions" +msgstr "katso usein kysytyt kysymykset" + +#: skins/default/templates/blocks/answer_edit_tips.html:25 +#: skins/default/templates/blocks/question_edit_tips.html:20 +msgid "Markdown tips" +msgstr "Markdown-vinkkejä" + +#: skins/default/templates/blocks/answer_edit_tips.html:29 +#: skins/default/templates/blocks/question_edit_tips.html:24 +msgid "*italic*" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:32 +#: skins/default/templates/blocks/question_edit_tips.html:27 +msgid "**bold**" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:36 +#: skins/default/templates/blocks/question_edit_tips.html:31 +#, fuzzy +msgid "*italic* or _italic_" +msgstr "*kursivointi* tai __kursivointi__" + +#: skins/default/templates/blocks/answer_edit_tips.html:39 +#: skins/default/templates/blocks/question_edit_tips.html:34 +msgid "**bold** or __bold__" +msgstr "**lihavointi** tai __lihavointi__" + +#: skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/question_edit_tips.html:38 +msgid "link" +msgstr "linkki" + +#: skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:38 +#: skins/default/templates/blocks/question_edit_tips.html:43 +msgid "text" +msgstr "teksti" + +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:43 +msgid "image" +msgstr "kuva" + +#: skins/default/templates/blocks/answer_edit_tips.html:51 +#: skins/default/templates/blocks/question_edit_tips.html:47 +msgid "numbered list:" +msgstr "numeroitu lista:" + +#: skins/default/templates/blocks/answer_edit_tips.html:56 +#: skins/default/templates/blocks/question_edit_tips.html:52 +msgid "basic HTML tags are also supported" +msgstr "perus HTML-tagit ovat myös tuetut" + +#: skins/default/templates/blocks/answer_edit_tips.html:60 +#: skins/default/templates/blocks/question_edit_tips.html:56 +msgid "learn more about Markdown" +msgstr "opi lisää Markdownista" + +#: skins/default/templates/blocks/ask_form.html:6 +msgid "login to post question info" +msgstr "" +"You are welcome to start submitting your question " +"anonymously. 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/blocks/ask_form.html:10 +#, python-format +msgid "" +"must have valid %(email)s to post, \n" +" see %(email_validation_faq_url)s\n" +" " +msgstr "" +"Looks like your email address, %(email)s has not " +"yet been validated. To post messages you must verify your email, " +"please see more details here." +"
    You can submit your question now and validate email after that. Your " +"question will saved as pending meanwhile. " + +#: skins/default/templates/blocks/ask_form.html:34 +msgid "Login/signup to post your question" +msgstr "Kirjaudu sisään kysyäksesi kysymyksesi" + +#: skins/default/templates/blocks/ask_form.html:36 +msgid "Ask your question" +msgstr "Kysy kysymyksesi" + +#: skins/default/templates/blocks/bottom_scripts.html:7 +#, python-format +msgid "" +"Please note: %(app_name)s requires javascript to work properly, please " +"enable javascript in your browser, here is how" +msgstr "" + +#: skins/default/templates/blocks/editor_data.html:5 +#, 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] "" -"\n" -"ääntä" -msgstr[1] "" -"\n" -"ääni" +"jokaisen tagin tulee olla vähintään %(max_chars)syhden merkin pituinen" +msgstr[1] "jokaisen tagin tulee olla vähintään %(max_chars)d merkin pituinen" + +#: skins/default/templates/blocks/editor_data.html:7 +#, fuzzy, python-format +msgid "please use %(tag_count)s tag" +msgid_plural "please use %(tag_count)s tags or less" +msgstr[0] "" +"käytä vähintään %(tag_count)dyhtä tagia" +msgstr[1] "käytä vähintään %(tag_count)d tagia" + +#: skins/default/templates/blocks/editor_data.html:8 +#, fuzzy, python-format +msgid "" +"please use up to %(tag_count)s tags, less than %(max_chars)s characters each" +msgstr "jokaisen tagin tulee olla vähintään %(max_chars)d merkin pituinen" + +#: skins/default/templates/blocks/footer.html:4 +#: skins/default/templates/blocks/header_meta_links.html:12 +msgid "about" +msgstr "sivusta" + +#: skins/default/templates/blocks/footer.html:6 +msgid "privacy policy" +msgstr "yksityisyydensuoja" + +#: skins/default/templates/blocks/footer.html:15 +msgid "give feedback" +msgstr "anna palautetta" + +#: skins/default/templates/blocks/footer.html:41 +#, python-format +msgid "Content on this site is licensed under a %(license)s" +msgstr "" + +#: skins/default/templates/blocks/header.html:8 +msgid "back to home page" +msgstr "takaisin kotisivulle" + +#: skins/default/templates/blocks/header.html:9 +#, python-format +msgid "%(site)s logo" +msgstr "" + +#: skins/default/templates/blocks/header.html:20 +msgid "questions" +msgstr "kysymykset" + +#: skins/default/templates/blocks/header.html:30 +msgid "users" +msgstr "käyttäjät" + +#: skins/default/templates/blocks/header.html:35 +msgid "badges" +msgstr "kunniamerkit" + +#: skins/default/templates/blocks/header.html:40 +msgid "ask a question" +msgstr "kysy kysymys" + +#: skins/default/templates/blocks/header_meta_links.html:8 +msgid "logout" +msgstr "poistu" + +#: skins/default/templates/blocks/header_meta_links.html:10 +msgid "login" +msgstr "kirjaudu" + +#: skins/default/templates/blocks/header_meta_links.html:15 +#, fuzzy +msgid "settings" +msgstr "nollataan tagit" + +#: skins/default/templates/blocks/input_bar.html:34 +msgid "search" +msgstr "haku" + +#: skins/default/templates/blocks/question_edit_tips.html:3 +msgid "question tips" +msgstr "Vinkkejä kysymiseen" + +#: skins/default/templates/blocks/question_edit_tips.html:5 +msgid "please ask a relevant question" +msgstr "kysy kysymys mikä koskee aiheitamme" + +#: skins/default/templates/blocks/question_edit_tips.html:8 +msgid "please try provide enough details" +msgstr "kirjoita mahdollisimman paljon yksityiskohtia" + +#: skins/default/templates/blocks/tag_selector.html:4 +msgid "Interesting tags" +msgstr "Mielenkiintoiset tagit" + +#: skins/default/templates/blocks/tag_selector.html:18 +#: skins/default/templates/blocks/tag_selector.html:34 +#: skins/default/templates/user_profile/user_moderate.html:40 +msgid "Add" +msgstr "Lisää" + +#: skins/default/templates/blocks/tag_selector.html:20 +msgid "Ignored tags" +msgstr "Hylätyt tagit" + +#: skins/default/templates/blocks/tag_selector.html:36 +msgid "Display tag filter" +msgstr "" + +#: skins/default/templates/main_page/content.html:13 +msgid "Did not find what you were looking for?" +msgstr "Et löytänyt etsimääsi?" + +#: skins/default/templates/main_page/content.html:14 +msgid "Please, post your question!" +msgstr "Ole hyvä ja kysy kysymyksesi!" + +#: skins/default/templates/main_page/headline.html:7 +msgid "subscribe to the questions feed" +msgstr "" + +#: skins/default/templates/main_page/headline.html:8 +msgid "rss feed" +msgstr "" + +#: skins/default/templates/main_page/headline.html:12 views/readers.py:131 +#, fuzzy, python-format +msgid "%(q_num)s question, tagged" +msgid_plural "%(q_num)s questions, tagged" +msgstr[0] "%(q_num)s kysymys" +msgstr[1] "%(q_num)s kysymystä" + +#: skins/default/templates/main_page/headline.html:14 views/readers.py:139 +#, python-format +msgid "%(q_num)s question" +msgid_plural "%(q_num)s questions" +msgstr[0] "%(q_num)s kysymys" +msgstr[1] "%(q_num)s kysymystä" + +#: skins/default/templates/main_page/headline.html:17 +#, python-format +msgid "with %(author_name)s's contributions" +msgstr "" + +#: skins/default/templates/main_page/headline.html:28 +msgid "Search tips:" +msgstr "Hakuvinkkejä:" + +#: skins/default/templates/main_page/headline.html:31 +msgid "reset author" +msgstr "nollaa tekijä" + +#: skins/default/templates/main_page/headline.html:33 +#: skins/default/templates/main_page/headline.html:36 +#: skins/default/templates/main_page/nothing_found.html:18 +#: skins/default/templates/main_page/nothing_found.html:21 +#, fuzzy +msgid " or " +msgstr "tai" + +#: skins/default/templates/main_page/headline.html:34 +msgid "reset tags" +msgstr "nollaa tagit" + +#: skins/default/templates/main_page/headline.html:37 +#: skins/default/templates/main_page/headline.html:40 +msgid "start over" +msgstr "aloita alusta" + +#: skins/default/templates/main_page/headline.html:42 +msgid " - to expand, or dig in by adding more tags and revising the query." +msgstr " laajentaaksesi tai lisää enemmän tageja hakuusi." + +#: skins/default/templates/main_page/headline.html:45 +msgid "Search tip:" +msgstr "Hakuvinkki:" + +#: skins/default/templates/main_page/headline.html:45 +msgid "add tags and a query to focus your search" +msgstr "lisää tageja ja hakusanoja täsmentääksesi hakuasi" + +#: skins/default/templates/main_page/nothing_found.html:4 +msgid "There are no unanswered questions here" +msgstr "Ei vastaamattomia kysymyksiä" + +#: skins/default/templates/main_page/nothing_found.html:7 +#, fuzzy +msgid "No questions here. " +msgstr "Ei suosikkeja." + +#: skins/default/templates/main_page/nothing_found.html:8 +msgid "Please star (bookmark) some questions or follow some users." +msgstr "" + +#: skins/default/templates/main_page/nothing_found.html:13 +msgid "You can expand your search by " +msgstr "Voit laajentaa hakuasi seuraavasti" + +#: skins/default/templates/main_page/nothing_found.html:16 +msgid "resetting author" +msgstr "nollataan" + +#: skins/default/templates/main_page/nothing_found.html:19 +msgid "resetting tags" +msgstr "nollataan tagit" + +#: skins/default/templates/main_page/nothing_found.html:22 +#: skins/default/templates/main_page/nothing_found.html:25 +msgid "starting over" +msgstr "aloitetaan alusta" + +#: skins/default/templates/main_page/nothing_found.html:30 +msgid "Please always feel free to ask your question!" +msgstr "Olet aina tervetullut kysymään!" + +#: skins/default/templates/main_page/sidebar.html:8 +msgid "Contributors" +msgstr "Ihmiset" + +#: skins/default/templates/main_page/sidebar.html:25 +msgid "Related tags" +msgstr "Tagit" + +#: skins/default/templates/main_page/tab_bar.html:5 +msgid "In:" +msgstr "Näytä:" + +#: skins/default/templates/main_page/tab_bar.html:14 +msgid "see unanswered questions" +msgstr "näytä vastaamattomat kysymykset" + +#: skins/default/templates/main_page/tab_bar.html:20 +#, fuzzy +msgid "see your followed questions" +msgstr "näytä suosikit" + +#: skins/default/templates/main_page/tab_bar.html:21 +msgid "followed" +msgstr "" + +#: skins/default/templates/main_page/tab_bar.html:25 +msgid "Sort by:" +msgstr "Järjestys:" + +#: skins/default/templates/user_profile/user.html:13 +#, python-format +msgid "%(username)s's profile" +msgstr "käyttäjän %(username)s profiili" + +#: skins/default/templates/user_profile/user_edit.html:4 +msgid "Edit user profile" +msgstr "Muokkaa profiilia" + +#: skins/default/templates/user_profile/user_edit.html:7 +msgid "edit profile" +msgstr "muokkaa profiilia" + +#: skins/default/templates/user_profile/user_edit.html:17 +#: skins/default/templates/user_profile/user_info.html:15 +msgid "change picture" +msgstr "vaihda kuva" + +#: skins/default/templates/user_profile/user_edit.html:20 +msgid "Registered user" +msgstr "Rekisteröity käyttäjä" + +#: skins/default/templates/user_profile/user_edit.html:27 +msgid "Screen Name" +msgstr "Tunnus" + +#: skins/default/templates/user_profile/user_edit.html:83 +#: skins/default/templates/user_profile/user_email_subscriptions.html:21 +msgid "Update" +msgstr "Päivitä" + +#: skins/default/templates/user_profile/user_email_subscriptions.html:4 +#: skins/default/templates/user_profile/user_tabs.html:42 +#, fuzzy +msgid "subscriptions" +msgstr "kysymykset" + +#: skins/default/templates/user_profile/user_email_subscriptions.html:7 +msgid "Email subscription settings" +msgstr "" + +#: skins/default/templates/user_profile/user_email_subscriptions.html:8 +msgid "email subscription settings info" +msgstr "" +"Adjust frequency of email updates. Receive " +"updates on interesting questions by email,
    help the community by answering questions of your colleagues. If you do not wish to " +"receive emails - select 'no email' on all items below.
    Updates are only " +"sent when there is any new activity on selected items." + +#: skins/default/templates/user_profile/user_email_subscriptions.html:22 +msgid "Stop sending email" +msgstr "Stop Email" + +#: skins/default/templates/user_profile/user_favorites.html:4 +#: skins/default/templates/user_profile/user_tabs.html:27 +#, fuzzy +msgid "followed questions" +msgstr "Kaikki kysymykset" + +#: skins/default/templates/user_profile/user_inbox.html:18 +#: skins/default/templates/user_profile/user_tabs.html:12 +msgid "inbox" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:34 +#, fuzzy +msgid "Sections:" +msgstr "kysymykset" + +#: skins/default/templates/user_profile/user_inbox.html:38 +#, python-format +msgid "forum responses (%(re_count)s)" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:43 +#, python-format +msgid "flagged items (%(flag_count)s)" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:49 +#, fuzzy +msgid "select:" +msgstr "poista" + +#: skins/default/templates/user_profile/user_inbox.html:51 +#, fuzzy +msgid "seen" +msgstr "nähty viimeksi" + +#: skins/default/templates/user_profile/user_inbox.html:52 +#, fuzzy +msgid "new" +msgstr "uusin" + +#: skins/default/templates/user_profile/user_inbox.html:53 +#, fuzzy +msgid "none" +msgstr "bronssi" + +#: skins/default/templates/user_profile/user_inbox.html:54 +#, fuzzy +msgid "mark as seen" +msgstr "nähty viimeksi" + +#: skins/default/templates/user_profile/user_inbox.html:55 +#, fuzzy +msgid "mark as new" +msgstr "merkitty parhaaksi vastaukseksi" + +#: skins/default/templates/user_profile/user_inbox.html:56 +msgid "dismiss" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:19 +msgid "remove" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:36 +msgid "update profile" +msgstr "päivitä profiili" + +#: skins/default/templates/user_profile/user_info.html:40 +msgid "manage login methods" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:53 +msgid "real name" +msgstr "nimi" + +#: skins/default/templates/user_profile/user_info.html:58 +msgid "member for" +msgstr "liittynyt" + +#: skins/default/templates/user_profile/user_info.html:63 +msgid "last seen" +msgstr "nähty viimeksi" + +#: skins/default/templates/user_profile/user_info.html:69 +msgid "user website" +msgstr "sivusto" + +#: skins/default/templates/user_profile/user_info.html:75 +msgid "location" +msgstr "paikka" + +#: skins/default/templates/user_profile/user_info.html:82 +msgid "age" +msgstr "ikä" + +#: skins/default/templates/user_profile/user_info.html:83 +msgid "age unit" +msgstr "years old" + +#: skins/default/templates/user_profile/user_info.html:90 +msgid "todays unused votes" +msgstr "tämän päivän käyttämättömät äänet" + +#: skins/default/templates/user_profile/user_info.html:91 +msgid "votes left" +msgstr "ääntä jäljellä" + +#: skins/default/templates/user_profile/user_moderate.html:4 +#: skins/default/templates/user_profile/user_tabs.html:48 +#, fuzzy +msgid "moderation" +msgstr "Paikka" + +#: skins/default/templates/user_profile/user_moderate.html:8 +#, python-format +msgid "%(username)s's current status is \"%(status)s\"" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:11 +msgid "User status changed" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:20 +#, fuzzy +msgid "Save" +msgstr "Tallenna muokkaus" + +#: skins/default/templates/user_profile/user_moderate.html:26 +#, fuzzy, python-format +msgid "Your current reputation is %(reputation)s points" +msgstr "maineesi on %(reputation)s" + +#: skins/default/templates/user_profile/user_moderate.html:28 +#, python-format +msgid "User's current reputation is %(reputation)s points" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:32 +#, fuzzy +msgid "User reputation changed" +msgstr "user karma" + +#: skins/default/templates/user_profile/user_moderate.html:39 +msgid "Subtract" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:44 +#, fuzzy, python-format +msgid "Send message to %(username)s" +msgstr "vastauksia käyttäjälle %(username)s" + +#: skins/default/templates/user_profile/user_moderate.html:45 +msgid "" +"An email will be sent to the user with 'reply-to' field set to your email " +"address. Please make sure that your address is entered correctly." +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:47 +#, fuzzy +msgid "Message sent" +msgstr "viestit/" + +#: skins/default/templates/user_profile/user_moderate.html:65 +#, fuzzy +msgid "Send message" +msgstr "viestit/" + +#: skins/default/templates/user_profile/user_moderate.html:75 +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 "" + +#: skins/default/templates/user_profile/user_moderate.html:78 +msgid "" +"Moderators have the same privileges as administrators, but cannot add or " +"remove user status of 'moderator' or 'administrator'." +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:81 +msgid "'Approved' status means the same as regular user." +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:84 +#, fuzzy +msgid "Suspended users can only edit or delete their own 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." + +#: skins/default/templates/user_profile/user_moderate.html:87 +msgid "" +"Blocked users can only login and send feedback to the site administrators." +msgstr "" + +#: skins/default/templates/user_profile/user_network.html:5 +#: skins/default/templates/user_profile/user_tabs.html:18 +msgid "network" +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[1] "" + +#: 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[1] "" + +#: skins/default/templates/user_profile/user_network.html:19 +msgid "" +"Your network is empty. Would you like to follow someone? - Just visit their " +"profiles and click \"follow\"" +msgstr "" + +#: skins/default/templates/user_profile/user_network.html:21 +#, fuzzy, python-format +msgid "%(username)s's network is empty" +msgstr "käyttäjän %(username)s profiili" + +#: skins/default/templates/user_profile/user_recent.html:4 +#: skins/default/templates/user_profile/user_tabs.html:31 +#, fuzzy +msgid "activity" +msgstr "aktiivinen" + +#: skins/default/templates/user_profile/user_recent.html:21 +#: 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 "äänihistoriasi." + +#: skins/default/templates/user_profile/user_reputation.html:13 +#, python-format +msgid "%(user_name)s's karma change log" +msgstr "" + +#: skins/default/templates/user_profile/user_stats.html:5 +#: skins/default/templates/user_profile/user_tabs.html:7 +msgid "overview" +msgstr "yhteenveto" + +#: skins/default/templates/user_profile/user_stats.html:11 +#, python-format +msgid "%(counter)s Question" +msgid_plural "%(counter)s Questions" +msgstr[0] "%(counter)s kysymys" +msgstr[1] "%(counter)s kysymystä" + +#: skins/default/templates/user_profile/user_stats.html:16 +#, python-format +msgid "%(counter)s Answer" +msgid_plural "%(counter)s Answers" +msgstr[0] "%(counter)s vastaus" +msgstr[1] "%(counter)s vastausta" + +#: 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 "tämä vastaus on valittu oikeaksi" + +#: skins/default/templates/user_profile/user_stats.html:34 +#, python-format +msgid "(%(comment_count)s comment)" +msgid_plural "the answer has been commented %(comment_count)s times" +msgstr[0] "vastausta kommentoitiin %(comment_count)s kerran" +msgstr[1] "vastausta kommentoitiin %(comment_count)s kertaa" + +#: skins/default/templates/user_profile/user_stats.html:44 +#, python-format +msgid "%(cnt)s Vote" +msgid_plural "%(cnt)s Votes " +msgstr[0] "%(cnt)s ääntä" +msgstr[1] "%(cnt)s ääni" + +#: skins/default/templates/user_profile/user_stats.html:50 +msgid "thumb up" +msgstr "" + +#: skins/default/templates/user_profile/user_stats.html:51 +msgid "user has voted up this many times" +msgstr "käyttäjä on äänestänyt tätä monta kertaa" + +#: skins/default/templates/user_profile/user_stats.html:54 +msgid "thumb down" +msgstr "" + +#: skins/default/templates/user_profile/user_stats.html:55 +msgid "user voted down this many times" +msgstr "" + +#: skins/default/templates/user_profile/user_stats.html:63 +#, python-format +msgid "%(counter)s Tag" +msgid_plural "%(counter)s Tags" +msgstr[0] "%(counter)s tagia" +msgstr[1] "%(counter)s tagi" + +#: skins/default/templates/user_profile/user_stats.html:99 +#, python-format +msgid "%(counter)s Badge" +msgid_plural "%(counter)s Badges" +msgstr[0] "%(counter)s kunniamerkkiä" +msgstr[1] "%(counter)s arvomerkki" + +#: skins/default/templates/user_profile/user_stats.html:122 +#, fuzzy +msgid "Answer to:" +msgstr "Vastausvinkkejä" + +#: skins/default/templates/user_profile/user_tabs.html:5 +msgid "User profile" +msgstr "Profiili" + +#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:772 +msgid "comments and answers to others questions" +msgstr "kommentteja ja vastauksia muihin kysymyksiin" -#: skins/default/templates/unused/question_counter_widget.html:93 -#: skins/default/templates/unused/question_list.html:23 -#: skins/default/templates/unused/questions_ajax.html:27 -msgid "this answer has been accepted to be correct" -msgstr "tämä vastaus on valittu oikeaksi" +#: skins/default/templates/user_profile/user_tabs.html:16 +msgid "followers and followed users" +msgstr "" -#: skins/default/templates/unused/question_counter_widget.html:99 -msgid "" -"\n" -" answer \n" -" " -msgid_plural "" -"\n" -" answers \n" -" " -msgstr[0] "" -"\n" -"vastausta" -msgstr[1] "" -"\n" -"vastaus" +#: skins/default/templates/user_profile/user_tabs.html:21 +msgid "graph of user reputation" +msgstr "Graph of user karma" -#: skins/default/templates/unused/question_counter_widget.html:111 -msgid "" -"\n" -" view\n" -" " -msgid_plural "" -"\n" -" views\n" -" " -msgstr[0] "" -"\n" -"katsojaa" -msgstr[1] "" -"\n" -"katsoja" +#: skins/default/templates/user_profile/user_tabs.html:23 +msgid "reputation history" +msgstr "karma history" -#: skins/default/templates/unused/question_list.html:15 +#: skins/default/templates/user_profile/user_tabs.html:25 #, fuzzy -msgid "" -"\n" -" vote\n" -" " -msgid_plural "" -"\n" -" votes\n" -" " -msgstr[0] "" -"\n" -"ääntä" -msgstr[1] "" -"\n" -"ääni" +msgid "questions that user is following" +msgstr "kysymyksiä, joita tämä käyttäjä on valinnut suosikikseen" -#: skins/default/templates/unused/question_list.html:35 -#, fuzzy -msgid "" -"\n" -" answer \n" -" " -msgid_plural "" -"\n" -" answers \n" -" " -msgstr[0] "" -"\n" -"vastausta" -msgstr[1] "" -"\n" -"vastaus" +#: skins/default/templates/user_profile/user_tabs.html:29 +msgid "recent activity" +msgstr "uusimmat" -#: skins/default/templates/unused/question_list.html:47 -#, fuzzy -msgid "" -"\n" -" view\n" -" " -msgid_plural "" -"\n" -" views\n" -" " -msgstr[0] "" -"\n" -"katsojaa" -msgstr[1] "" -"\n" -"katsoja" +#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:847 +msgid "user vote record" +msgstr "äänihistoria" -#: skins/default/templates/unused/question_summary_list_roll.html:13 -msgid "answers" -msgstr "vastaukset" +#: skins/default/templates/user_profile/user_tabs.html:36 +msgid "casted votes" +msgstr "votes" + +#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:960 +msgid "email subscription settings" +msgstr "" + +#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:224 +#, fuzzy +msgid "moderate this user" +msgstr "Hallitse tätä käyttäjää" -#: skins/default/templates/unused/question_summary_list_roll.html:14 +#: skins/default/templates/user_profile/user_votes.html:4 msgid "votes" msgstr "äänet" -#: skins/default/templates/unused/question_summary_list_roll.html:15 -msgid "views" -msgstr "katselut" - -#: templatetags/extra_filters.py:168 templatetags/extra_filters_jinja.py:234 +#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:240 msgid "no items in counter" msgstr "no" -#: templatetags/extra_tags.py:155 views/readers.py:187 -#, 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 kunniamerkkiä" -msgstr[1] "%(badge_count)d %(badge_level)s kunniamerkki" - -#: templatetags/extra_tags.py:178 templatetags/extra_tags.py:225 -#: templatetags/extra_tags.py:229 -msgid "reputation points" -msgstr "maine" - -#: templatetags/extra_tags.py:221 -#, python-format -msgid "your karma is %(reputation)s" -msgstr "maineesi on %(reputation)s" +#: utils/decorators.py:90 views/commands.py:112 views/commands.py:132 +msgid "Oops, apologies - there was some error" +msgstr "" -#: templatetags/extra_tags.py:237 -msgid "badges: " -msgstr "kunniamerkit:" +#: utils/decorators.py:109 +msgid "Please login to post" +msgstr "" -#: utils/decorators.py:82 views/commands.py:132 views/commands.py:149 -msgid "Oops, apologies - there was some error" +#: utils/decorators.py:205 +msgid "Spam was detected on your post, sorry for if this is a mistake" msgstr "" #: utils/forms.py:32 @@ -5306,103 +6282,129 @@ msgstr "anna salasana uudestaan" msgid "sorry, entered passwords did not match, please try again" msgstr "" -#: utils/functions.py:63 -#, python-format -msgid "on %(date)s" -msgstr "%(date)s" - -#: utils/functions.py:67 +#: utils/functions.py:74 msgid "2 days ago" msgstr "kaksi päivää sitten" -#: utils/functions.py:69 +#: utils/functions.py:76 msgid "yesterday" msgstr "eilen" -#: utils/functions.py:71 +#: utils/functions.py:79 #, python-format msgid "%(hr)d hour ago" msgid_plural "%(hr)d hours ago" -msgstr[0] "%(hr)d tuntia sitten" -msgstr[1] "tunti sitten" +msgstr[0] "%(hr)d tunti sitten" +msgstr[1] "%(hr)d tuntia sitten" -#: utils/functions.py:73 +#: utils/functions.py:85 #, python-format msgid "%(min)d min ago" msgid_plural "%(min)d mins ago" -msgstr[0] "%(min)d minuuttia sitten" -msgstr[1] "minuutti sitten" +msgstr[0] "%(min)d minuutti sitten" +msgstr[1] "%(min)d minuuttia sitten" + +#: views/avatar_views.py:99 +msgid "Successfully uploaded a new avatar." +msgstr "" + +#: views/avatar_views.py:140 +msgid "Successfully updated your avatar." +msgstr "" -#: views/commands.py:42 +#: views/avatar_views.py:180 +msgid "Successfully deleted the requested avatars." +msgstr "" + +#: views/commands.py:39 msgid "anonymous users cannot vote" msgstr "kirjaudu sisään, jotta voit käyttää tätä ominaisuutta" -#: views/commands.py:62 +#: views/commands.py:59 msgid "Sorry you ran out of votes for today" msgstr "" -#: views/commands.py:68 +#: views/commands.py:65 #, python-format msgid "You have %(votes_left)s votes left for today" msgstr "" -#: views/commands.py:139 +#: views/commands.py:122 #, fuzzy msgid "Sorry, but anonymous users cannot access the inbox" msgstr "kirjaudu sisään, jotta voit käyttää tätä ominaisuutta" -#: views/commands.py:209 +#: views/commands.py:192 msgid "Sorry, something is not right here..." msgstr "" -#: views/commands.py:224 +#: views/commands.py:207 #, fuzzy msgid "Sorry, but anonymous users cannot accept answers" msgstr "kirjaudu sisään, jotta voit käyttää tätä ominaisuutta" -#: views/commands.py:305 +#: views/commands.py:288 #, python-format msgid "subscription saved, %(email)s needs validation, see %(details_url)s" msgstr "" "Your subscription is saved, but email address %(email)s needs to be " "validated, please see
    more details here" -#: views/commands.py:313 +#: views/commands.py:295 msgid "email update frequency has been set to daily" msgstr "sähköpostien päivitysväli on vaihdettu päivittäiseksi" -#: views/commands.py:371 +#: views/commands.py:400 +#, python-format +msgid "Tag subscription was canceled (undo)." +msgstr "" + +#: views/commands.py:409 +#, python-format +msgid "Please sign in to subscribe for: %(tags)s" +msgstr "" + +#: views/commands.py:542 #, fuzzy -msgid "Bad request" -msgstr "Tuntematon pyyntö" +msgid "Please sign in to vote" +msgstr "Kirjaudu täällä:" -#: views/meta.py:58 +#: views/meta.py:83 msgid "Q&A forum feedback" msgstr "kysymys ja vastaus -keskustelupalstan palaute" -#: views/meta.py:59 +#: views/meta.py:84 msgid "Thanks for the feedback!" msgstr "Kiitos palautteestasi!" -#: views/meta.py:69 +#: views/meta.py:92 msgid "We look forward to hearing your feedback! Please, give it next time :)" msgstr "" -#: views/readers.py:432 +#: views/readers.py:177 +#, 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 kunniamerkki" +msgstr[1] "%(badge_count)d %(badge_level)s kunniamerkkiä" + +#: views/readers.py:441 #, fuzzy -msgid "Sorry, this question has been deleted and is no longer accessible" +msgid "" +"Sorry, the comment you are looking for has been deleted and is no longer " +"accessible" msgstr "tämä kysymys valittiin suosikiksi" -#: views/users.py:217 +#: views/users.py:225 #, fuzzy msgid "moderate user" msgstr "hallitse-kayttajaa/" -#: views/users.py:401 +#: views/users.py:380 msgid "user profile" msgstr "käyttäjäprofiili" -#: views/users.py:402 +#: views/users.py:381 msgid "user profile overview" msgstr "käyttäjäprofiilin yhteenveto" @@ -5414,87 +6416,532 @@ msgstr "viimeisimmät" msgid "profile - recent activity" msgstr "profiili - viimeisimmät" -#: views/users.py:754 +#: views/users.py:773 msgid "profile - responses" msgstr "profiili - vastaukset" -#: views/users.py:819 +#: views/users.py:848 msgid "profile - votes" msgstr "profiili - äänet" -#: views/users.py:857 +#: views/users.py:883 msgid "user reputation in the community" msgstr "user karma" -#: views/users.py:858 +#: views/users.py:884 msgid "profile - user reputation" msgstr "Profiili - äänet" -#: views/users.py:886 +#: views/users.py:911 msgid "users favorite questions" msgstr "käyttäjien suosikit" -#: views/users.py:887 +#: views/users.py:912 msgid "profile - favorite questions" msgstr "profiili - suosikkikysymykset" -#: views/users.py:907 views/users.py:911 +#: views/users.py:932 views/users.py:936 msgid "changes saved" msgstr "muutokset talletettu" -#: views/users.py:917 +#: views/users.py:942 msgid "email updates canceled" msgstr "sähköpostipäivitykset peruttu" -#: views/users.py:929 +#: views/users.py:961 msgid "profile - email subscriptions" msgstr "profiili - sähköpostitilaukset" -#: views/writers.py:56 +#: views/writers.py:58 #, fuzzy msgid "Sorry, anonymous users cannot upload files" msgstr "kirjaudu sisään, jotta voit käyttää tätä ominaisuutta" -#: views/writers.py:65 +#: views/writers.py:68 #, python-format msgid "allowed file types are '%(file_types)s'" msgstr "hyväksytyt tiedostotyypit ovat '%(file_types)s'" -#: views/writers.py:88 +#: views/writers.py:91 #, fuzzy, python-format msgid "maximum upload file size is %(file_size)sK" msgstr "maksimi tiedostonkoko on %s kilotavua" -#: views/writers.py:96 +#: views/writers.py:99 #, fuzzy msgid "Error uploading file. Please contact the site administrator. Thank you." msgstr "" "Tiedoston lähetyksessä tapahtui virhe. Ota yhteyttä sivuston ylläpitäjiin. " "Kiitos. %s" -#: views/writers.py:452 +#: views/writers.py:191 +#, fuzzy +msgid "Please log in to ask questions" +msgstr "Olet aina tervetullut kysymään!" + +#: views/writers.py:492 +#, fuzzy +msgid "Please log in to answer questions" +msgstr "näytä vastaamattomat kysymykset" + +#: views/writers.py:598 #, python-format msgid "" "Sorry, you appear to be logged out and cannot post comments. Please sign in." msgstr "" -#: views/writers.py:497 +#: views/writers.py:646 #, fuzzy msgid "Sorry, anonymous users cannot edit comments" msgstr "kirjaudu sisään, jotta voit käyttää tätä ominaisuutta" -#: views/writers.py:505 +#: views/writers.py:654 #, python-format msgid "" "Sorry, you appear to be logged out and cannot delete comments. Please sign in." msgstr "" -#: views/writers.py:526 +#: views/writers.py:675 msgid "sorry, we seem to have some technical difficulties" msgstr "" +#~ msgid "community wiki" +#~ msgstr "yhteisön muokattavissa" + +#~ msgid "Location" +#~ msgstr "Paikka" + +#~ msgid "command/" +#~ msgstr "komento/" + +#~ msgid "mark-tag/" +#~ msgstr "merkitse-tagi/" + +#~ msgid "interesting/" +#~ msgstr "mielenkiintoista/" + +#~ msgid "ignored/" +#~ msgstr "hylatyt/" + +#~ msgid "unmark-tag/" +#~ msgstr "poista-tagi/" + +#~ msgid "search/" +#~ msgstr "haku" + +#~ msgid "Askbot" +#~ msgstr "Askbot" + +#~ msgid "First time here? Check out the FAQ!" +#~ msgstr "" +#~ "Ensimmäistä kertaa täällä? Katso Usein Kysytyt Kysymykset!" + +#~ msgid "newquestion/" +#~ msgstr "uusi-kysymys/" + +#~ msgid "newanswer/" +#~ msgstr "uusi-vastaus/" + +#, fuzzy +#~ msgid "MyOpenid user name" +#~ msgstr "käyttäjänimen mukaan" + +#~ msgid "Email verification subject line" +#~ msgstr "Verification Email from Q&A forum" + +#~ msgid "Unknown error." +#~ msgstr "Tuntematon virhe." + +#~ msgid "ReCAPTCHA is wrongly configured." +#~ msgstr "ReCAPTCHA ei ole konfiguroitu oikein." + +#~ msgid "Provided reCAPTCHA API keys are not valid for this domain." +#~ msgstr "reCAPTCHA-palvelun avaimet ovat väärät." + +#~ msgid "ReCAPTCHA could not be reached." +#~ msgstr "reCAPTCHA-palveluun ei saatu yhteyttä." + +#~ msgid "Invalid request" +#~ msgstr "Tuntematon pyyntö" + +#~ msgid "disciplined" +#~ msgstr "kurinalainen" + +#~ msgid "Deleted own post with score of 3 or higher" +#~ msgstr "Poisti oman postauksen jolla oli kolme tai yli kolme ääntä" + +#~ msgid "peer-pressure" +#~ msgstr "ryhma-painostus" + +#~ msgid "nice-answer" +#~ msgstr "hyva-vastaus" + +#~ msgid "nice-question" +#~ msgstr "hyva-kysymys" + +#~ msgid "popular-question" +#~ msgstr "suosittu-kysymys" + +#~ msgid "cleanup" +#~ msgstr "siivoaja" + +#~ msgid "critic" +#~ msgstr "kriitikko" + +#~ msgid "editor" +#~ msgstr "muokkaaja" + +#~ msgid "organizer" +#~ msgstr "jarjestelija" + +#~ msgid "scholar" +#~ msgstr "oppilas" + +#~ msgid "student" +#~ msgstr "oppilas" + +#~ msgid "supporter" +#~ msgstr "tukija" + +#~ msgid "teacher" +#~ msgstr "opettaja" + +#~ msgid "Answered first question with at least one up vote" +#~ msgstr "Vastasi ensimmäiseen kysymykseen bvähintään yhdellä äänellä" + +#~ msgid "autobiographer" +#~ msgstr "elamankerta" + +#~ msgid "self-learner" +#~ msgstr "itseoppija" + +#~ msgid "great-answer" +#~ msgstr "loistava-vastaus" + +#~ msgid "Answer voted up 100 times" +#~ msgstr "Vastausta äänestetty sata kertaa" + +#~ msgid "great-question" +#~ msgstr "loistava-kysymys" + +#~ msgid "Question voted up 100 times" +#~ msgstr "Kysymystä äänestetty sata kertaa" + +#~ msgid "stellar-question" +#~ msgstr "tahtikysymys" + +#~ msgid "Question favorited by 100 users" +#~ msgstr "Kysymys lisättiin sadan käyttäjän suosikkilistalle" + +#~ msgid "famous-question" +#~ msgstr "tunnettu-kysymys" + +#~ msgid "Asked a question with 10,000 views" +#~ msgstr "Kysyi kysymyksen, joka sai kymmenentuhatta katselukertaa" + +#~ msgid "Alpha" +#~ msgstr "Alfa" + +#~ msgid "alpha" +#~ msgstr "alfa" + +#~ msgid "Actively participated in the private alpha" +#~ msgstr "Osallistui aktiivisesti alfaversion kehittämiseen" + +#~ msgid "good-answer" +#~ msgstr "pateva-vastaus" + +#~ msgid "Answer voted up 25 times" +#~ msgstr "Vastausta äänestetty 25 kertaa" + +#~ msgid "good-question" +#~ msgstr "pateva-kysymys" + +#~ msgid "Question voted up 25 times" +#~ msgstr "Kysymystä äänestettiin vähintään 25 kertaa" + +#~ msgid "favorite-question" +#~ msgstr "suosikki-kysymys" + +#~ msgid "civic-duty" +#~ msgstr "kansalaisvelvollisuus" + +#~ msgid "Generalist" +#~ msgstr "Yleistäjä" + +#~ msgid "generalist" +#~ msgstr "yleistaja" + +#~ msgid "Active in many different tags" +#~ msgstr "Aktiivinen monen tagin alla" + +#~ msgid "expert" +#~ msgstr "ekspertti" + +#~ msgid "Yearling" +#~ msgstr "Yksivuotias" + +#~ msgid "yearling" +#~ msgstr "yksivuotias" + +#~ msgid "Active member for a year" +#~ msgstr "Aktiivinen jäsen vuoden ajan" + +#~ msgid "notable-question" +#~ msgstr "huomattava-kysymys" + +#~ msgid "enlightened" +#~ msgstr "valistunut" + +#~ msgid "Beta" +#~ msgstr "Beeta" + +#~ msgid "beta" +#~ msgstr "beeta" + +#~ msgid "guru" +#~ msgstr "guru" + +#~ msgid "necromancer" +#~ msgstr "kuolleistaherattaja" + +#~ msgid "taxonomist" +#~ msgstr "taksonomi" + +#~ msgid "About" +#~ msgstr "Tietoa sivustosta" + +#~ msgid "" +#~ "must have valid %(email)s to post, \n" +#~ " see %(email_validation_faq_url)s\n" +#~ " " +#~ msgstr "" +#~ "Looks like your email address, %(email)s has not " +#~ "yet been validated. To post messages you must verify your email, " +#~ "please see more details here." +#~ "
    You can submit your question now and validate email after that. Your " +#~ "question will saved as pending meanwhile. " + +#, fuzzy +#~ msgid "%(type)s" +#~ msgstr "%(date)s" + +#~ msgid "how to validate email title" +#~ msgstr "How to validate email and why?" + +#~ msgid "" +#~ "how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)" +#~ "s" +#~ msgstr "" +#~ "

    How? If you have just set or " +#~ "changed your email address - check your email and click the " +#~ "included link.
    The link contains a key generated specifically " +#~ "for you. You can also and check your " +#~ "email again.

    Why? Email " +#~ "validation is required to make sure that only you can post " +#~ "messages on your behalf and to minimize spam " +#~ "posts.
    With email you can subscribe for updates on " +#~ "the most interesting questions. Also, when you sign up for the first time " +#~ "- create a unique gravatar personal image.

    " + +#~ msgid "." +#~ msgstr "." + +#~ msgid "Sender is" +#~ msgstr "Lähettäjä on" + +#~ msgid "Message body:" +#~ msgstr "Viestin sisältö:" + +#~ msgid "" +#~ "As a registered user you can login with your OpenID, log out of the site " +#~ "or permanently remove your account." +#~ msgstr "" +#~ "Clicking Logout will log you out from the forumbut will " +#~ "not sign you off from your OpenID provider.

    If you wish to sign off " +#~ "completely - please make sure to log out from your OpenID provider as " +#~ "well." + +#~ msgid "Logout now" +#~ msgstr "Kirjaudu ulos" + +#~ msgid "mark this question as favorite (click again to cancel)" +#~ msgstr "merkkaa suosikiksi (klikkaa uudestaan peruaksesi)" + +#~ msgid "" +#~ "remove favorite mark from this question (click again to restore mark)" +#~ msgstr "poista suosikkimerkintä (klikkaa uudestaan peruaksesi)" + +#~ msgid "see questions tagged '%(tag_name)s'" +#~ msgstr "näytä kysymykset, joilla on tagi '%(tag_name)s'" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " %(q_num)s question\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " %(q_num)s questions\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "%(q_num)syksi kysymys löytyi" +#~ msgstr[1] "" +#~ "\n" +#~ "%(q_num)s kysymystä löytyi" + +#~ msgid "tagged" +#~ msgstr "tagattu" + +#~ msgid "remove '%(tag_name)s' from the list of interesting tags" +#~ msgstr "poista tagi '%(tag_name)s' mielenkiintoisista" + +#~ msgid "remove '%(tag_name)s' from the list of ignored tags" +#~ msgstr "poista tagi '%(tag_name)s' hylätyistä" + +#~ msgid "keep ignored questions hidden" +#~ msgstr "pidä hylätyt piilotettuina" + +#~ msgid "favorites" +#~ msgstr "suosikit" + +#, fuzzy +#~ msgid "this questions was selected as favorite %(cnt)s time" +#~ msgid_plural "this questions was selected as favorite %(cnt)s times" +#~ msgstr[0] "tämä kysymys valittiin suosikiksi" +#~ msgstr[1] "tämä kysymys valittiin suosikiksi" + +#~ msgid "Login name" +#~ msgstr "Käyttäjätunnus" + +#~ msgid "home" +#~ msgstr "koti" + +#~ msgid "Please prove that you are a Human Being" +#~ msgstr "Ole hyvä ja todista, että olet ihminen" + +#~ msgid "I am a Human Being" +#~ msgstr "Olen ihminen" + +#~ msgid "Please decide if you like this question or not by voting" +#~ msgstr "Äänestä, että pidätkö tästä kysymyksestä vai et" + +#~ msgid "" +#~ "\n" +#~ " vote\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " votes\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "ääntä" +#~ msgstr[1] "" +#~ "\n" +#~ "ääni" + +#~ msgid "" +#~ "\n" +#~ " answer \n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " answers \n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "vastaus" +#~ msgstr[1] "" +#~ "\n" +#~ "vastausta" + +#~ msgid "" +#~ "\n" +#~ " view\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " views\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "katsoja" +#~ msgstr[1] "" +#~ "\n" +#~ "katsojaa" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " vote\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " votes\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "ääni" +#~ msgstr[1] "" +#~ "\n" +#~ "ääntä" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " answer \n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " answers \n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "vastaus" +#~ msgstr[1] "" +#~ "\n" +#~ "vastausta" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " view\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " views\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "katsoja" +#~ msgstr[1] "" +#~ "\n" +#~ "katsojaa" + +#~ msgid "views" +#~ msgstr "katselut" + +#~ msgid "reputation points" +#~ msgstr "maine" + +#~ msgid "your karma is %(reputation)s" +#~ msgstr "maineesi on %(reputation)s" + +#~ msgid "badges: " +#~ msgstr "kunniamerkit:" + +#, fuzzy +#~ msgid "Bad request" +#~ msgstr "Tuntematon pyyntö" + #~ msgid "comments/" #~ msgstr "kommentit/" @@ -5581,9 +7028,6 @@ msgstr "" #~ msgid "OpenID %s is now associated with your account." #~ msgstr "OpenID-palvelu %s on nyt kiinnitetty tunnukseesi." -#~ msgid "Account deleted." -#~ msgstr "Tunnus poistettu." - #~ msgid "Request for new password" #~ msgstr "Pyydä uutta salasanaa" @@ -5609,26 +7053,12 @@ msgstr "" #~ msgid "Change openid associated to your account" #~ msgstr "Vaihda OpenID, joka on kiinnitetty tunnukseesi" -#~ msgid "Delete account" -#~ msgstr "Poista tunnus" - #~ msgid "Erase your username and all your data from website" #~ msgstr "Poista tunnuksesi ja kaikki siihen liitetty tieto sivustolta" #~ msgid "toggle preview" #~ msgstr "esikatselu päälle/pois" -#~ msgid "" -#~ "must have valid %(email)s to post, \n" -#~ " see %(email_validation_faq_url)s\n" -#~ " " -#~ msgstr "" -#~ "Looks like your email address, %(email)s has not " -#~ "yet been validated. To post messages you must verify your email, " -#~ "please see more details here." -#~ "
    You can submit your question now and validate email after that. Your " -#~ "question will saved as pending meanwhile. " - #~ msgid "reading channel" #~ msgstr "luetaan kanavaa" @@ -5692,24 +7122,6 @@ msgstr "" #~ msgid "Unanswered questions" #~ msgstr "Vastaamattomat" -#~ msgid "All questions" -#~ msgstr "Kaikki kysymykset" - -#~ msgid "click to see the newest questions" -#~ msgstr "klikkaa nähdäksesi uusimmat kysymykset" - -#~ msgid "click to see the oldest questions" -#~ msgstr "klikkaa nähdäksesi vanhimmat kysymykset" - -#~ msgid "click to see the most recently updated questions" -#~ msgstr "klikkaa nähdäksesi viimeksi päivitetyt kysymykset" - -#~ msgid "click to see the least recently updated questions" -#~ msgstr "klikkaa nähdäksesi vanhimmat päivitetyt kysymykset" - -#~ msgid "click to see hottest questions" -#~ msgstr "questions with most answers" - #~ msgid "less answers" #~ msgstr "vähemmän vastauksia" @@ -5719,15 +7131,9 @@ msgstr "" #~ msgid "more answers" #~ msgstr "eniten vastauksia" -#~ msgid "click to see most voted questions" -#~ msgstr "klikkaa nähdäksesi äänestetyimmät kysymykset" - #~ msgid "unpopular" #~ msgstr "epäsuosittu" -#~ msgid "click to see least voted questions" -#~ msgstr "least voted questions" - #~ msgid "popular" #~ msgstr "suosittu" diff --git a/askbot/locale/fi/LC_MESSAGES/djangojs.mo b/askbot/locale/fi/LC_MESSAGES/djangojs.mo new file mode 100644 index 00000000..0be0e2e5 Binary files /dev/null and b/askbot/locale/fi/LC_MESSAGES/djangojs.mo differ diff --git a/askbot/locale/fi/LC_MESSAGES/djangojs.po b/askbot/locale/fi/LC_MESSAGES/djangojs.po new file mode 100644 index 00000000..78b1f23e --- /dev/null +++ b/askbot/locale/fi/LC_MESSAGES/djangojs.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: 0.7\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-10-08 02:26-0500\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"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" + +#: skins/default/media/js/post.js:532 +msgid "Follow" +msgstr "" + +#: skins/default/media/js/post.js:541 skins/default/media/js/post.js.py:550 +#, perl-format +msgid "%s follower" +msgid_plural "%s followers" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/media/js/post.js:546 +msgid "

    Following
    Unfollow
    " +msgstr "" + +#: skins/default/media/js/post.js:1613 +msgid "Please enter question title (>10 characters)" +msgstr "" + +#: skins/default/media/js/tag_selector.js:15 +msgid "Tag \"\" matches:" +msgstr "" + +#: skins/default/media/js/tag_selector.js:84 +#, perl-format +msgid "and %s more, not shown..." +msgstr "" + +#: skins/default/media/js/user.js:129 +msgid "Please signin to follow %(username)s" +msgstr "" + +#: skins/default/media/js/user.js:161 +#, perl-format +msgid "unfollow %s" +msgstr "" + +#: skins/default/media/js/user.js:164 +#, perl-format +msgid "following %s" +msgstr "" + +#: skins/default/media/js/user.js:170 +#, perl-format +msgid "follow %s" +msgstr "" diff --git a/askbot/locale/fr/LC_MESSAGES/django.mo b/askbot/locale/fr/LC_MESSAGES/django.mo index 748fd91b..1fe00ef0 100644 Binary files a/askbot/locale/fr/LC_MESSAGES/django.mo and b/askbot/locale/fr/LC_MESSAGES/django.mo differ diff --git a/askbot/locale/fr/LC_MESSAGES/django.po b/askbot/locale/fr/LC_MESSAGES/django.po index 7214a1bc..bf6df0d1 100644 --- a/askbot/locale/fr/LC_MESSAGES/django.po +++ b/askbot/locale/fr/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Askbot\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-22 04:32-0500\n" +"POT-Creation-Date: 2011-10-08 02:26-0500\n" "PO-Revision-Date: 2010-08-25 19:15+0100\n" "Last-Translator: - <->\n" "Language-Team: FrenchTranslationTeam \n" @@ -22,56 +22,63 @@ msgstr "" "Désolé, mais les utilisateurs anonymes ne peuvent pas accéder à cette " "fonction" -#: feed.py:22 +#: feed.py:26 feed.py:100 msgid " - " msgstr " - " -#: feed.py:22 +#: feed.py:26 +#, fuzzy +msgid "Individual question feed" +msgstr "questions sélectionnées individuellement" + +#: feed.py:100 msgid "latest questions" msgstr "dernières questions" -#: forms.py:73 +#: forms.py:74 #, fuzzy msgid "select country" msgstr "Supprimer le compte" -#: forms.py:82 +#: forms.py:83 msgid "Country" msgstr "" -#: forms.py:90 +#: forms.py:91 #, fuzzy msgid "Country field is required" msgstr "ce champ est obligatoire" -#: forms.py:103 skins/default/templates/blocks/answer_edit_tips.html:43 +#: forms.py:104 skins/default/templates/blocks/answer_edit_tips.html:43 #: skins/default/templates/blocks/answer_edit_tips.html:47 #: skins/default/templates/blocks/question_edit_tips.html:38 #: skins/default/templates/blocks/question_edit_tips.html:43 msgid "title" msgstr "titre" -#: forms.py:104 +#: forms.py:105 msgid "please enter a descriptive title for your question" msgstr "Veuillez saisir un titre descriptif pour votre question." -#: forms.py:109 +#: forms.py:110 msgid "title must be > 10 characters" msgstr "le titre doit comporter plus de 10 caractères." -#: forms.py:118 +#: forms.py:119 msgid "content" msgstr "contenu" -#: forms.py:124 +#: forms.py:125 msgid "question content must be > 10 characters" msgstr "La question doit comporter plus de 10 caractères." -#: forms.py:133 skins/default/templates/blocks/header.html:22 +#: forms.py:134 skins/default/templates/macros.html:660 +#: skins/default/templates/macros.html:672 +#: skins/default/templates/blocks/header.html:25 msgid "tags" msgstr "Mots-clés (tags)" -#: forms.py:135 +#: forms.py:136 msgid "" "Tags are short keywords, with no spaces within. Up to five tags can be used." msgstr "" @@ -79,33 +86,40 @@ msgstr "" "doivent être courts, et ne pas comporter d'espaces. Vous pouvez utiliser " "jusqu'à 5 mots-clés." -#: forms.py:142 skins/default/templates/question_retag.html:60 +#: forms.py:164 skins/default/templates/question_retag.html:58 msgid "tags are required" msgstr "Les mots-clés sont obligatoires." -#: forms.py:151 +#: forms.py:173 #, 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:160 +#: forms.py:181 +#, python-format +msgid "At least one of the following tags is required : %(tags)s" +msgstr "" + +#: forms.py:190 #, 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:168 +#: forms.py:198 msgid "use-these-chars-in-tags" msgstr "utiliser-ces-caracteres-dans-les-mots-cles" -#: forms.py:203 +#: forms.py:233 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" +msgstr "" +"wiki communautaire (le karma n'est pas mis à jour & peu de personnes peuvent " +"éditer la question" -#: forms.py:204 +#: forms.py:234 msgid "" "if you choose community wiki option, the question and answer do not generate " "points and name of author will not be shown" @@ -113,11 +127,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:220 +#: forms.py:250 msgid "update summary:" msgstr "Résumé des modifications:" -#: forms.py:221 +#: forms.py:251 msgid "" "enter a brief summary of your revision (e.g. fixed spelling, grammar, " "improved style, this field is optional)" @@ -125,52 +139,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:284 +#: forms.py:327 msgid "Enter number of points to add or subtract" msgstr "Saisissez le nombre de points à ajouter ou retirer" -#: forms.py:298 const/__init__.py:225 +#: forms.py:341 const/__init__.py:245 msgid "approved" msgstr "approuvée" -#: forms.py:299 const/__init__.py:226 +#: forms.py:342 const/__init__.py:246 msgid "watched" msgstr "consultée" -#: forms.py:300 const/__init__.py:227 +#: forms.py:343 const/__init__.py:247 msgid "suspended" msgstr "suspendu" -#: forms.py:301 const/__init__.py:228 +#: forms.py:344 const/__init__.py:248 msgid "blocked" msgstr "bloquée" +#: forms.py:346 +#, fuzzy +msgid "administrator" +msgstr "Administrateur du site" + # FIXME -#: forms.py:303 const/__init__.py:224 +#: forms.py:347 const/__init__.py:244 msgid "moderator" msgstr "moderateur" -#: forms.py:323 +#: forms.py:367 msgid "Change status to" msgstr "Modifier le statut en " -#: forms.py:350 +#: forms.py:394 msgid "which one?" msgstr "laquelle ?" -#: forms.py:371 +#: forms.py:415 msgid "Cannot change own status" msgstr "Impossible de changer son propre statut" -#: forms.py:377 +#: forms.py:421 msgid "Cannot turn other user to moderator" msgstr "Impossible de convertir un autre utilisateur en modérateur" -#: forms.py:384 +#: forms.py:428 msgid "Cannot change status of another moderator" msgstr "Impossible de changer le statut d'un autre modérateur" -#: forms.py:390 +#: forms.py:434 +#, fuzzy +msgid "Cannot change status to admin" +msgstr "Impossible de changer son propre statut" + +#: forms.py:440 #, python-format msgid "" "If you wish to change %(username)s's status, please make a meaningful " @@ -179,234 +203,239 @@ msgstr "" "Si vous souhaitez changer le statut de %(username)s, effectuez une " "selection pertinente." -#: forms.py:399 +#: forms.py:449 msgid "Subject line" msgstr "Sujet" -#: forms.py:406 +#: forms.py:456 msgid "Message text" msgstr "Corps du message" -#: forms.py:489 +#: forms.py:542 msgid "Your name:" msgstr "Votre nom:" -#: forms.py:490 +#: forms.py:543 msgid "Email (not shared with anyone):" msgstr "Votre email (ne sera pas communiqué):" -#: forms.py:491 +#: forms.py:544 msgid "Your message:" msgstr "Votre message:" -#: forms.py:528 +#: forms.py:581 msgid "ask anonymously" msgstr "être anonyme" -#: forms.py:530 +#: forms.py:583 msgid "Check if you do not want to reveal your name when asking this question" msgstr "" -#: forms.py:672 +#: forms.py:743 msgid "" "You have asked this question anonymously, if you decide to reveal your " "identity, please check this box." msgstr "" -#: forms.py:676 +#: forms.py:747 msgid "reveal identity" msgstr "" -#: forms.py:734 +#: forms.py:805 msgid "" "Sorry, only owner of the anonymous question can reveal his or her identity, " "please uncheck the box" msgstr "" -#: forms.py:747 +#: forms.py:818 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:785 +#: forms.py:856 #, fuzzy msgid "this email will be linked to gravatar" msgstr "Cet email ne doit pas être lié à Gravatar" -#: forms.py:792 +#: forms.py:863 msgid "Real name" msgstr "Nom réel" -#: forms.py:799 +#: forms.py:870 msgid "Website" msgstr "Site web" -#: forms.py:806 +#: forms.py:877 msgid "City" msgstr "" -#: forms.py:815 +#: forms.py:886 msgid "Show country" msgstr "" -#: forms.py:820 +#: forms.py:891 msgid "Date of birth" msgstr "Date de naissance" -#: forms.py:821 +#: forms.py:892 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:827 +#: forms.py:898 msgid "Profile" msgstr "Profil" -#: forms.py:836 +#: forms.py:907 msgid "Screen name" msgstr "Pseudo" -#: forms.py:867 forms.py:868 +#: forms.py:938 forms.py:939 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:875 +#: forms.py:946 msgid "Choose email tag filter" msgstr "Choisissez un tag pour filtrer les emails" -#: forms.py:915 +#: forms.py:993 msgid "Asked by me" msgstr "Mes questions" -#: forms.py:918 +#: forms.py:996 msgid "Answered by me" msgstr "Questions auxquelles j'ai répondu" -#: forms.py:921 +#: forms.py:999 msgid "Individually selected" msgstr "Sélectionnées individuellement" -#: forms.py:924 +#: forms.py:1002 msgid "Entire forum (tag filtered)" msgstr "Forum entier (filtré par tag)" -#: forms.py:928 +#: forms.py:1006 msgid "Comments and posts mentioning me" msgstr "Commentaires et messages me mentionnant" -#: forms.py:998 +#: forms.py:1085 msgid "okay, let's try!" msgstr "D'accord, j'essaye !" -#: forms.py:999 +#: forms.py:1086 msgid "no community email please, thanks" msgstr "pas d'emails s'il vous plait, merci" -#: forms.py:1003 +#: forms.py:1090 msgid "please choose one of the options above" msgstr "Veuillez choisir une des options ci-dessus" -#: urls.py:44 +#: urls.py:53 msgid "about/" msgstr "apropos/" -#: urls.py:45 conf/site_settings.py:79 +#: urls.py:54 msgid "faq/" msgstr "faq/" -#: urls.py:46 +#: urls.py:55 msgid "privacy/" msgstr "vieprivee/" -#: urls.py:47 -msgid "logout/" -msgstr "deconnecter/" - -#: urls.py:49 urls.py:54 +#: urls.py:57 urls.py:62 msgid "answers/" msgstr "reponses/" -#: urls.py:49 urls.py:75 urls.py:186 +#: urls.py:57 urls.py:83 urls.py:198 msgid "edit/" msgstr "modifier/" -#: urls.py:54 urls.py:105 +#: urls.py:62 urls.py:113 msgid "revisions/" msgstr "revisions/" -#: urls.py:60 urls.py:70 urls.py:75 urls.py:80 urls.py:85 urls.py:90 -#: urls.py:95 urls.py:100 urls.py:105 -#: skins/default/templates/question.html:438 +#: urls.py:68 urls.py:78 urls.py:83 urls.py:88 urls.py:93 urls.py:98 +#: urls.py:103 urls.py:108 urls.py:113 urls.py:285 +#: skins/default/templates/question.html:508 msgid "questions/" msgstr "questions/" -#: urls.py:70 +#: urls.py:78 msgid "ask/" msgstr "question/" -#: urls.py:80 +#: urls.py:88 msgid "retag/" msgstr "requalification/" -#: urls.py:85 +#: urls.py:93 msgid "close/" msgstr "fermer/" -#: urls.py:90 +#: urls.py:98 msgid "reopen/" msgstr "reouvrir/" -#: urls.py:95 +#: urls.py:103 msgid "answer/" msgstr "repondre/" -#: urls.py:100 skins/default/templates/question.html:438 +#: urls.py:108 skins/default/templates/question.html:508 msgid "vote/" msgstr "voter/" -#: urls.py:132 skins/default/templates/question.html:436 -#: skins/default/templates/main_page/javascript.html:18 -msgid "question/" -msgstr "question/" - -#: urls.py:137 +#: urls.py:144 msgid "tags/" msgstr "mots-cles/" -#: urls.py:175 +#: urls.py:187 msgid "subscribe-for-tags/" msgstr "" -#: urls.py:180 urls.py:186 urls.py:191 -#: skins/default/templates/main_page/javascript.html:19 +#: urls.py:192 urls.py:198 urls.py:204 urls.py:212 +#: skins/default/templates/main_page/javascript.html:23 msgid "users/" msgstr "utilisateurs/" -#: urls.py:196 urls.py:201 +#: urls.py:205 +#, fuzzy +msgid "subscriptions/" +msgstr "Abonnements aux emails" + +#: urls.py:217 +msgid "users/update_has_custom_avatar/" +msgstr "" + +#: urls.py:222 urls.py:227 msgid "badges/" msgstr "Badges/" -#: urls.py:206 +#: urls.py:232 msgid "messages/" msgstr "messages/" # FIXME -#: urls.py:206 +#: urls.py:232 msgid "markread/" msgstr "marques-pour-lecture/" -#: urls.py:222 +#: urls.py:248 msgid "upload/" msgstr "envoyer-sur-le-serveur/" -#: urls.py:223 +#: urls.py:249 msgid "feedback/" msgstr "retour/" -#: urls.py:224 setup_templates/settings.py:201 +#: urls.py:291 skins/default/templates/question.html:506 +#: skins/default/templates/main_page/javascript.html:22 +msgid "question/" +msgstr "question/" + +#: urls.py:298 setup_templates/settings.py:202 #: skins/default/templates/authopenid/providers_javascript.html:7 msgid "account/" msgstr "compte/" @@ -552,34 +581,63 @@ msgstr "" "personne) et messages mentionnant les réponses à l'utilisateur et les " "réponses aux commentaires" -#: conf/email.py:63 +#: conf/email.py:62 +#, fuzzy +msgid "Send periodic reminders about unanswered questions" +msgstr "Il n'y a aucune question sans réponse" + +#: conf/email.py:64 +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) and an IMAP server with a dedicated inbox " +"must be configured " +msgstr "" + +#: conf/email.py:78 +#, fuzzy +msgid "Days before starting to send reminders about unanswered questions" +msgstr "Il n'y a aucune question sans réponse" + +#: conf/email.py:89 +msgid "" +"How often to send unanswered question reminders (in days between the " +"reminders sent)." +msgstr "" + +#: conf/email.py:101 +#, 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:113 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:64 +#: conf/email.py:114 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:73 +#: conf/email.py:123 msgid "Allow only one account per email address" msgstr "N'autoriser qu'un compte par adresse email" -#: conf/email.py:82 +#: conf/email.py:132 msgid "Fake email for anonymous user" msgstr "Faux email pour utilisateur anonyme" -#: conf/email.py:83 +#: conf/email.py:133 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:92 +#: conf/email.py:142 #, fuzzy msgid "Allow posting questions by email" msgstr "" @@ -591,23 +649,23 @@ msgstr "" "des fonctionnalités de notre module de questions/réponses, qui repose sur un " "principe communautaire." -#: conf/email.py:94 +#: conf/email.py:144 msgid "" "Before enabling this setting - please fill out IMAP settings in the settings." "py file" msgstr "" -#: conf/email.py:105 +#: conf/email.py:155 msgid "Replace space in emailed tags with dash" msgstr "" -#: conf/email.py:107 +#: conf/email.py:157 msgid "" "This setting applies to tags written in the subject line of questions asked " "by email" msgstr "" -#: conf/external_keys.py:11 +#: conf/external_keys.py:10 msgid "Keys to connect the site with external services like Facebook, etc." msgstr "" "Clés pour connecter le site avec des services externes comme Facebook, etc." @@ -617,46 +675,47 @@ msgid "Google site verification key" msgstr "Clé de vérification de site Google" #: conf/external_keys.py:20 -#, python-format +#, fuzzy, python-format msgid "" -"This key helps google index your site please obtain is at google webmasters tools site" +"This key helps google index your site please obtain is at google webmasters tools site" msgstr "" "Cette clé aide Google à indexer votre site; vous pouvez en obtenir une pour " "votre site à \"Google - Outils " "pour les webmasters\"" -#: conf/external_keys.py:34 +#: conf/external_keys.py:35 msgid "Google Analytics key" msgstr "Clé Google Analytics" -#: conf/external_keys.py:36 -#, python-format +#: conf/external_keys.py:37 +#, fuzzy, python-format msgid "" -"Obtain is at Google Analytics site, if you wish " -"to use Google Analytics to monitor your site" +"Obtain is at Google Analytics site, if you wish to " +"use Google Analytics to monitor your site" msgstr "" "Vous pouvez en obtenir une sur le site Google " "Analytics, si vous souhaitez utiliser Google Analytics pour mesurer " "l'audience de votre site." -#: conf/external_keys.py:49 +#: conf/external_keys.py:50 msgid "Enable recaptcha (keys below are required)" msgstr "" -#: conf/external_keys.py:58 +#: conf/external_keys.py:59 msgid "Recaptcha public key" msgstr "Clé publique Recaptcha" -#: conf/external_keys.py:66 +#: conf/external_keys.py:67 msgid "Recaptcha private key" msgstr "Clé privée Recaptcha" -#: conf/external_keys.py:68 +#: conf/external_keys.py:69 +#, fuzzy, 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 recaptcha.net" +"robots. Please get this and a public key at the %(url)s" msgstr "" "Recaptcha est un outil permettant de vérifier qu'une personne qui se " "connecte à votre site est bien un humain (et non pas un robot spammeur). " @@ -664,60 +723,83 @@ msgstr "" "connecter à votre site pour y publier automatiquement et massivement des " "messages publicitaires." -#: conf/external_keys.py:80 +#: conf/external_keys.py:81 msgid "Facebook public API key" msgstr "Clé d'API publique FACEBOOK" -#: conf/external_keys.py:82 +#: conf/external_keys.py:83 +#, fuzzy, python-format msgid "" "Facebook API key and Facebook secret allow to use Facebook Connect login " -"method at your site. Please obtain these keys at facebook create app site" +"method at your site. Please obtain these keys at facebook create app site" msgstr "" "La clé d'API FACEBOOK et le secret FACEBOOK vous permettent de proposer aux " "utilisateurs de votre de se connecter en utilisant leur compte facebook. " "Vous pouvez obtenir ces clés sur le site facebook create app" -#: conf/external_keys.py:95 +#: conf/external_keys.py:96 msgid "Facebook secret key" msgstr "Clé secrète FACEBOOK" -#: conf/external_keys.py:103 +#: conf/external_keys.py:104 msgid "Twitter consumer key" msgstr "" -#: conf/external_keys.py:105 conf/external_keys.py:126 +#: conf/external_keys.py:106 +#, python-format msgid "" -"Please register your forum at twitter applications site" +"Please register your forum at twitter applications site" msgstr "" -#: conf/external_keys.py:116 +#: conf/external_keys.py:117 msgid "Twitter consumer secret" msgstr "" -#: conf/external_keys.py:124 +#: conf/external_keys.py:125 msgid "LinkedIn consumer key" msgstr "" -#: conf/external_keys.py:137 +#: conf/external_keys.py:127 +#, python-format +msgid "" +"Please register your forum at LinkedIn developer site" +msgstr "" + +#: conf/external_keys.py:138 msgid "LinkedIn consumer secret" msgstr "" -#: conf/external_keys.py:145 +#: conf/external_keys.py:146 +msgid "ident.ca consumer key" +msgstr "" + +#: conf/external_keys.py:148 +#, python-format +msgid "" +"Please register your forum at Identi.ca applications " +"site" +msgstr "" + +#: conf/external_keys.py:159 +msgid "ident.ca consumer secret" +msgstr "" + +#: conf/external_keys.py:167 msgid "Use LDAP authentication for the password login" msgstr "" -#: conf/external_keys.py:154 +#: conf/external_keys.py:176 msgid "LDAP service provider name" msgstr "" -#: conf/external_keys.py:162 +#: conf/external_keys.py:184 msgid "URL for the LDAP service" msgstr "" -#: conf/external_keys.py:170 +#: conf/external_keys.py:192 #, fuzzy msgid "Explain how to change LDAP password" msgstr "Explique comment changer le mot de passe LDAP" @@ -741,11 +823,27 @@ msgstr "" "saisi." #: conf/flatpages.py:30 +#, fuzzy +msgid "Text of the Q&A forum FAQ page (html format)" +msgstr "" +"Insérez ici le texte de la page \"à propos\" du forum de Questions/Réponses" + +#: conf/flatpages.py:33 +#, fuzzy +msgid "" +"Save, then use HTML validator on " +"the \"faq\" page to check your input." +msgstr "" +"Enregistrez, puis utilisez un " +"validateur HTML sur la page \"à propos\" pour vérifier ce que vous avez " +"saisi." + +#: conf/flatpages.py:44 msgid "Text of the Q&A forum Privacy Policy (html format)" msgstr "" "Insérez ici le texte de la page \"vie privée\" du forum de Questions/Réponses" -#: conf/flatpages.py:33 +#: conf/flatpages.py:47 msgid "" "Save, then use HTML validator on " "the \"privacy\" page to check your input." @@ -755,144 +853,273 @@ msgstr "" "avez saisi." #: conf/forum_data_rules.py:11 -msgid "Settings for askbot data entry and display" +#, fuzzy +msgid "Data entry and display" msgstr "Paramétrage de l'affichage et de la saisie de données" -#: conf/forum_data_rules.py:19 +#: conf/forum_data_rules.py:20 +#, python-format +msgid "" +"Enable embedding videos. Note: please read read this first." +msgstr "" + +#: conf/forum_data_rules.py:31 msgid "Check to enable community wiki feature" msgstr "" "Cochez cette case pour activer la fonctionnalité \"wiki communautaire\"" -#: conf/forum_data_rules.py:28 +#: conf/forum_data_rules.py:40 msgid "Allow asking questions anonymously" msgstr "" -#: conf/forum_data_rules.py:30 +#: conf/forum_data_rules.py:42 msgid "" "Users do not accrue reputation for anonymous questions and their identity is " "not revealed until they change their mind" msgstr "" -#: conf/forum_data_rules.py:42 +#: conf/forum_data_rules.py:54 +#, fuzzy +msgid "Allow posting before logging in" +msgstr "" +"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...). 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/forum_data_rules.py:56 +msgid "" +"Check if you want to allow users start posting questions or answers before " +"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 "" + +#: conf/forum_data_rules.py:71 +#, fuzzy +msgid "Allow swapping answer with question" +msgstr "Répondre à cette question" + +#: conf/forum_data_rules.py:73 +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 "" + +#: conf/forum_data_rules.py:85 msgid "Maximum length of tag (number of characters)" msgstr "Taille maximale d'un mot-clé (tag), en nombre de caractères" -#: conf/forum_data_rules.py:51 +# FXME ou "offensive" ? +#: conf/forum_data_rules.py:93 +#, fuzzy +msgid "Mandatory tags" +msgstr "Mots-clés" + +#: conf/forum_data_rules.py:96 +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:108 msgid "Force lowercase the tags" msgstr "" -#: conf/forum_data_rules.py:53 +#: conf/forum_data_rules.py:110 msgid "" "Attention: after checking this, please back up the database, and run a " "management command: python manage.py fix_question_tags to " "globally rename the tags" msgstr "" -#: conf/forum_data_rules.py:66 +#: conf/forum_data_rules.py:124 +msgid "Format of tag list" +msgstr "" + +#: conf/forum_data_rules.py:126 +msgid "" +"Select the format to show tags in, either as a simple list, or as a tag cloud" +msgstr "" + +#: conf/forum_data_rules.py:138 #, fuzzy msgid "Use wildcard tags" msgstr "Tags associés" -#: conf/forum_data_rules.py:68 +#: conf/forum_data_rules.py:140 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:81 +#: conf/forum_data_rules.py:153 msgid "Default max number of comments to display under posts" msgstr "" -#: conf/forum_data_rules.py:92 +#: conf/forum_data_rules.py:164 #, python-format msgid "Maximum comment length, must be < %(max_len)s" msgstr "" -#: conf/forum_data_rules.py:102 +#: conf/forum_data_rules.py:174 msgid "Limit time to edit comments" msgstr "" -#: conf/forum_data_rules.py:104 +#: conf/forum_data_rules.py:176 msgid "If unchecked, there will be no time limit to edit the comments" msgstr "" -#: conf/forum_data_rules.py:115 +#: conf/forum_data_rules.py:187 msgid "Minutes allowed to edit a comment" msgstr "" -#: conf/forum_data_rules.py:116 +#: conf/forum_data_rules.py:188 msgid "To enable this setting, check the previous one" msgstr "" -#: conf/forum_data_rules.py:125 +#: conf/forum_data_rules.py:197 msgid "Save comment by pressing key" msgstr "" -#: conf/forum_data_rules.py:134 +#: conf/forum_data_rules.py:206 msgid "Minimum length of search term for Ajax search" msgstr "" -#: conf/forum_data_rules.py:135 +#: conf/forum_data_rules.py:207 msgid "Must match the corresponding database backend setting" msgstr "" -#: conf/forum_data_rules.py:144 +#: conf/forum_data_rules.py:216 msgid "Do not make text query sticky in search" msgstr "" -#: conf/forum_data_rules.py:146 +#: conf/forum_data_rules.py:218 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:159 +#: conf/forum_data_rules.py:231 msgid "Maximum number of tags per question" msgstr "Nombre maximal de mots-clés (tags) par question" -#: conf/forum_data_rules.py:171 +#: conf/forum_data_rules.py:243 msgid "Number of questions to list by default" msgstr "Nombre de questions par défaut à afficher dans la liste " -#: conf/forum_data_rules.py:181 +#: conf/forum_data_rules.py:253 msgid "What should \"unanswered question\" mean?" msgstr "Que signifie \"questions sans réponses\" ?" -#: conf/login_providers.py:11 +#: conf/license.py:12 +#, fuzzy +msgid "License settings" +msgstr "Paramétrage de la base de données" + +#: conf/license.py:19 +msgid "Show license clause in the site footer" +msgstr "" + +#: conf/license.py:28 +msgid "Short name for the license" +msgstr "" + +#: conf/license.py:37 +msgid "Full name of the license" +msgstr "" + +#: conf/license.py:38 +msgid "Creative Commons Attribution Share Alike 3.0" +msgstr "" + +#: conf/license.py:46 +msgid "Add link to the license page" +msgstr "" + +#: conf/license.py:55 +#, fuzzy +msgid "License homepage" +msgstr "Retour à l'accueil" + +#: conf/license.py:57 +msgid "URL of the official page with all the license legal clauses" +msgstr "" + +#: conf/license.py:67 +#, fuzzy +msgid "Use license logo" +msgstr "Logo du site de Questions/Réponses" + +#: conf/license.py:76 +msgid "License logo image" +msgstr "" + +#: conf/login_providers.py:12 msgid "Login provider setings" msgstr "" -#: conf/login_providers.py:19 +#: conf/login_providers.py:20 msgid "" "Show alternative login provider buttons on the password \"Sign Up\" page" msgstr "" -#: conf/login_providers.py:28 +#: conf/login_providers.py:29 msgid "Always display local login form and hide \"Askbot\" button." msgstr "" -#: conf/login_providers.py:55 +#: conf/login_providers.py:38 +msgid "Activate to allow login with self-hosted wordpress site" +msgstr "" + +#: conf/login_providers.py:39 +msgid "" +"to activate this feature you must fill out the wordpress xml-rpc setting " +"bellow" +msgstr "" + +#: conf/login_providers.py:48 +msgid "" +"Fill it with the wordpress url to the xml-rpc, normally http://mysite.com/" +"xmlrpc.php" +msgstr "" + +#: conf/login_providers.py:49 +msgid "" +"To enable, go to Settings->Writing->Remote Publishing and check the box for " +"XML-RPC" +msgstr "" + +#: conf/login_providers.py:60 +msgid "Upload your icon" +msgstr "" + +#: conf/login_providers.py:90 #, python-format msgid "Activate %(provider)s login" msgstr "" -#: conf/login_providers.py:60 +#: conf/login_providers.py:95 #, python-format msgid "" "Note: to really enable %(provider)s login some additional parameters will " "need to be set in the \"External keys\" section" msgstr "" -#: conf/markup.py:15 +#: conf/markup.py:14 msgid "Markup formatting" msgstr "" -#: conf/markup.py:22 +#: conf/markup.py:39 msgid "Enable code-friendly Markdown" msgstr "" -#: conf/markup.py:24 +#: conf/markup.py:41 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 " @@ -900,28 +1127,65 @@ msgid "" "are heavily used in LaTeX input." msgstr "" -#: conf/markup.py:39 +#: conf/markup.py:56 msgid "Mathjax support (rendering of LaTeX)" msgstr "" -#: conf/markup.py:41 +#: conf/markup.py:58 #, python-format msgid "" "If you enable this feature, mathjax must be " "installed on your server in its own directory." msgstr "" -#: conf/markup.py:55 +#: conf/markup.py:72 msgid "Base url of MathJax deployment" msgstr "" -#: conf/markup.py:57 +#: conf/markup.py:74 msgid "" "Note - MathJax is not included with askbot - 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 "" +#: conf/markup.py:89 +msgid "Enable autolinking with specific patterns" +msgstr "" + +#: conf/markup.py:91 +msgid "" +"If you enable this feature, the application will be able to detect patterns " +"and auto link to URLs" +msgstr "" + +#: conf/markup.py:104 +msgid "Regexes to detect the link patterns" +msgstr "" + +#: conf/markup.py:106 +msgid "" +"Enter valid regular expressions for the patters, one per line. For example " +"to detect a bug pattern like #bug123, use the following regex: #bug(\\d+). " +"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 "" + +#: conf/markup.py:125 +msgid "URLs for autolinking" +msgstr "" + +#: conf/markup.py:127 +msgid "" +"Here, please enter url templates for the patterns entered in the previous " +"setting, also one entry per line. Make sure that number of lines in " +"this setting and the previous one are the same 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 "" + #: conf/minimum_reputation.py:11 msgid "Minimum reputation required to perform actions" msgstr "Réputation minimale requise pour réaliser les actions" @@ -935,65 +1199,75 @@ msgid "Downvote" msgstr "vote négatif" #: conf/minimum_reputation.py:38 +#, fuzzy +msgid "Answer own question immediately" +msgstr "Répondre à votre propre question" + +#: conf/minimum_reputation.py:47 +#, fuzzy +msgid "Accept own answer" +msgstr "\"modifier n'importe quelle réponse" + +#: conf/minimum_reputation.py:56 msgid "Flag offensive" msgstr "Marquer comme 'contenu abusif'" -#: conf/minimum_reputation.py:47 +#: conf/minimum_reputation.py:65 msgid "Leave comments" msgstr "Ajouter un commentaire" -#: conf/minimum_reputation.py:56 +#: conf/minimum_reputation.py:74 msgid "Delete comments posted by others" msgstr "Supprimer des commentaires publiés par d'autres utilisateurs" -#: conf/minimum_reputation.py:65 +#: conf/minimum_reputation.py:83 msgid "Delete questions and answers posted by others" msgstr "Supprimer les questions et réponses publiées par d'autres" # FIXME -#: conf/minimum_reputation.py:74 +#: conf/minimum_reputation.py:92 msgid "Upload files" msgstr "Transférer des fichiers sur notre serveur" -#: conf/minimum_reputation.py:83 +#: conf/minimum_reputation.py:101 msgid "Close own questions" msgstr "Cloturer ses propres questions" -#: conf/minimum_reputation.py:92 +#: conf/minimum_reputation.py:110 msgid "Retag questions posted by other people" msgstr "" "Requalifier les questions publiées par d'autres utilisateurs (c'est à dire " "changer les mots-clés servant de marqueurs sémantiques)" -#: conf/minimum_reputation.py:101 +#: conf/minimum_reputation.py:119 msgid "Reopen own questions" msgstr "Réouvrir ses propres questions" -#: conf/minimum_reputation.py:110 +#: conf/minimum_reputation.py:128 msgid "Edit community wiki posts" msgstr "Modifier les messages sur le \"wiki communautaire\"" -#: conf/minimum_reputation.py:119 +#: conf/minimum_reputation.py:137 msgid "Edit posts authored by other people" msgstr "Modifier les messages publiés par d'autres utilisateurs" -#: conf/minimum_reputation.py:128 +#: conf/minimum_reputation.py:146 msgid "View offensive flags" msgstr "Voir les drapeaux signalant des messages à contenu abusif" -#: conf/minimum_reputation.py:137 +#: conf/minimum_reputation.py:155 msgid "Close questions asked by others" msgstr "Cloturer les questions posées par d'autres" -#: conf/minimum_reputation.py:146 +#: conf/minimum_reputation.py:164 msgid "Lock posts" msgstr "Verrouiller des messages" -#: conf/minimum_reputation.py:155 +#: conf/minimum_reputation.py:173 msgid "Remove rel=nofollow from own homepage" msgstr "" -#: conf/minimum_reputation.py:157 +#: conf/minimum_reputation.py:175 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." @@ -1070,56 +1344,174 @@ msgid "Loss for post owner when upvote is canceled" msgstr "" "Perte pour l'auteur d'un message quand un vote (global) positif est annulé" -#: conf/site_settings.py:13 +#: conf/sidebar_main.py:11 +msgid "Sidebar widget settings - main page" +msgstr "" + +#: conf/sidebar_main.py:18 conf/sidebar_profile.py:18 +#: conf/sidebar_question.py:18 +msgid "Custom sidebar header" +msgstr "" + +#: conf/sidebar_main.py:21 conf/sidebar_profile.py:21 +#: conf/sidebar_question.py:21 +msgid "" +"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." +msgstr "" + +#: conf/sidebar_main.py:34 +msgid "Show avatar block in sidebar" +msgstr "" + +#: conf/sidebar_main.py:36 +msgid "Uncheck this if you want to hide the avatar block from the sidebar " +msgstr "" + +#: conf/sidebar_main.py:47 +msgid "Limit how many avatars will be displayed on the sidebar" +msgstr "" + +#: conf/sidebar_main.py:57 +msgid "Show tag selector in sidebar" +msgstr "" + +#: conf/sidebar_main.py:59 +msgid "" +"Uncheck this if you want to hide the options for choosing interesting and " +"ignored tags " +msgstr "" + +#: conf/sidebar_main.py:70 +msgid "Show tag list/cloud in sidebar" +msgstr "" + +#: conf/sidebar_main.py:72 +msgid "" +"Uncheck this if you want to hide the tag cloud or tag list from the sidebar " +msgstr "" + +#: conf/sidebar_main.py:83 conf/sidebar_profile.py:34 +#: conf/sidebar_question.py:74 +msgid "Custom sidebar footer" +msgstr "" + +#: conf/sidebar_main.py:86 conf/sidebar_profile.py:37 +#: conf/sidebar_question.py:77 +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 "" + +#: conf/sidebar_profile.py:11 +msgid "Sidebar widget settings - profile page" +msgstr "" + +#: conf/sidebar_question.py:11 +msgid "Sidebar widget settings - question page" +msgstr "" + +#: conf/sidebar_question.py:34 +msgid "Show tag list in sidebar" +msgstr "" + +#: conf/sidebar_question.py:36 +msgid "Uncheck this if you want to hide the tag list from the sidebar " +msgstr "" + +#: conf/sidebar_question.py:47 +msgid "Show meta information in sidebar" +msgstr "" + +#: conf/sidebar_question.py:49 +msgid "" +"Uncheck this if you want to hide the meta information about the question " +"(post date, views, last updated). " +msgstr "" + +#: conf/sidebar_question.py:61 +#, fuzzy +msgid "Show related questions in sidebar" +msgstr "Questions liées" + +#: conf/sidebar_question.py:63 +#, fuzzy +msgid "Uncheck this if you want to hide the list of related questions. " +msgstr "Cliquez ici pour voir les questions mises à jour le moins récemment" + +#: conf/site_modes.py:63 +#, fuzzy +msgid "Site modes" +msgstr "Sites" + +#: conf/site_modes.py:72 +msgid "Activate a \"Bootstrap\" mode" +msgstr "" + +#: conf/site_modes.py:74 +msgid "" +"Bootstrap mode lowers reputation and certain badge thresholds, to values, " +"more suitable for the smaller communities, WARNING: your " +"current value for Minimum reputation, Bagde Settings and Vote Rules will be " +"changed after you modify this setting." +msgstr "" + +#: conf/site_settings.py:11 msgid "Q&A forum website parameters and urls" msgstr "Paramètres et URLs du forum de Questions/Réponses" -#: conf/site_settings.py:21 +#: conf/site_settings.py:19 msgid "Site title for the Q&A forum" msgstr "Titre du forum de Questions/Réponses" -#: conf/site_settings.py:30 +#: conf/site_settings.py:28 msgid "Comma separated list of Q&A site keywords" msgstr "" "Mots-clés pour qualifier votre site de Questions/Réponses (séparez les mots " "par des virgules)" -#: conf/site_settings.py:40 +#: conf/site_settings.py:37 msgid "Copyright message to show in the footer" msgstr "(c) 2010 - Tous droits réservés" -#: conf/site_settings.py:50 +#: conf/site_settings.py:47 msgid "Site description for the search engines" msgstr "Insérez ici la description du site, destinée aux moteurs de recherche" -#: conf/site_settings.py:59 +#: conf/site_settings.py:56 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:69 +#: conf/site_settings.py:66 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:82 -msgid "Link shown in the greeting message shown to the anonymous user" +#: conf/site_settings.py:77 +#, fuzzy +msgid "Check to enable greeting for anonymous user" +msgstr "Faux email pour utilisateur anonyme" + +#: conf/site_settings.py:88 +#, 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:85 -msgid "" -"If you change this url from the default - then you will also probably want " -"to adjust translation of the following string: " +#: conf/site_settings.py:92 +msgid "Use HTML to format the message " msgstr "" -"si vous changez cette URL par défaut, alors vous voudrez probablement " -"ajuster la traduction des lignes suivantes :" -#: conf/site_settings.py:98 +#: conf/site_settings.py:101 msgid "Feedback site URL" msgstr "URL permettant de faire des remarques" -#: conf/site_settings.py:100 +#: conf/site_settings.py:103 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" @@ -1269,23 +1661,23 @@ msgid "" "href=\"%(favicon_info_url)s\">this page." msgstr "" -#: conf/skin_general_settings.py:70 +#: conf/skin_general_settings.py:71 msgid "Password login button" msgstr "" -#: conf/skin_general_settings.py:72 +#: conf/skin_general_settings.py:73 msgid "" "An 88x38 pixel image that is used on the login screen for the password login " "button." msgstr "" -#: conf/skin_general_settings.py:87 +#: conf/skin_general_settings.py:88 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:89 +#: conf/skin_general_settings.py:90 msgid "" "If checked, all forum functions will be shown to users, regardless of their " "reputation. However to use those functions, moderation rules, reputation and " @@ -1296,32 +1688,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:104 +#: conf/skin_general_settings.py:105 msgid "Select skin" msgstr "Sélectionnez un thème (skin)" -#: conf/skin_general_settings.py:113 -msgid "Skin media revision number" -msgstr "Numéro de révision du thème" - -#: conf/skin_general_settings.py:115 -msgid "" -"Increment this number when you change image in skin media or stylesheet. " -"This helps avoid showing your users outdated images from their browser cache." -msgstr "" -"Incrémenter ce nombre quand vous changez une image du thème ou une feuille " -"de style. Ceci permet d'éviter d'afficher aux utilisateurs l'ancienne charte " -"graphique (dont des éléments seraient présents dans leur cache)" - -#: conf/skin_general_settings.py:128 +#: conf/skin_general_settings.py:116 msgid "Customize HTML " msgstr "" -#: conf/skin_general_settings.py:137 +#: conf/skin_general_settings.py:125 msgid "Custom portion of the HTML " msgstr "" -#: conf/skin_general_settings.py:139 +#: conf/skin_general_settings.py:127 msgid "" "To use this option, check \"Customize HTML <HEAD>\" " "above. Contents of this box will be inserted into the <HEAD> portion " @@ -1333,44 +1712,57 @@ msgid "" "please test the site with the W3C HTML validator service." msgstr "" -#: conf/skin_general_settings.py:159 +#: conf/skin_general_settings.py:149 +msgid "Custom header additions" +msgstr "" + +#: conf/skin_general_settings.py:151 +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 " +"headerin the HTML format. When customizing the site header (as well as " +"footer and the HTML <HEAD>), use the HTML validation service to make " +"sure that your input is valid and works well in all browsers." +msgstr "" + +#: conf/skin_general_settings.py:166 msgid "Site footer mode" msgstr "" -#: conf/skin_general_settings.py:161 +#: conf/skin_general_settings.py:168 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:178 +#: conf/skin_general_settings.py:185 msgid "Custom footer (HTML format)" msgstr "" -#: conf/skin_general_settings.py:180 +#: conf/skin_general_settings.py:187 msgid "" "To enable this function, please select option 'customize' " "in the \"Site footer mode\" above. Use this area to enter contents of the " "footer in the HTML format. When customizing the site footer (as well as the " -"HTML <HEAD>), use the HTML validation service to make sure that your " -"input is valid and works well in all browsers." +"header and HTML <HEAD>), use the HTML validation service to make sure " +"that your input is valid and works well in all browsers." msgstr "" -#: conf/skin_general_settings.py:195 +#: conf/skin_general_settings.py:202 msgid "Apply custom style sheet (CSS)" msgstr "" -#: conf/skin_general_settings.py:197 +#: conf/skin_general_settings.py:204 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:209 +#: conf/skin_general_settings.py:216 msgid "Custom style sheet (CSS)" msgstr "" -#: conf/skin_general_settings.py:211 +#: conf/skin_general_settings.py:218 msgid "" "To use this function, check \"Apply custom style sheet\" " "option above. The CSS rules added in this window will be applied after the " @@ -1379,19 +1771,19 @@ msgid "" "depends (default is empty string) on the url configuration in your urls.py." msgstr "" -#: conf/skin_general_settings.py:227 +#: conf/skin_general_settings.py:234 msgid "Add custom javascript" msgstr "" -#: conf/skin_general_settings.py:230 +#: conf/skin_general_settings.py:237 msgid "Check to enable javascript that you can enter in the next field" msgstr "" -#: conf/skin_general_settings.py:240 +#: conf/skin_general_settings.py:247 msgid "Custom javascript" msgstr "" -#: conf/skin_general_settings.py:242 +#: conf/skin_general_settings.py:249 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 " @@ -1402,28 +1794,107 @@ msgid "" "above)." msgstr "" +#: conf/skin_general_settings.py:267 +msgid "Skin media revision number" +msgstr "Numéro de révision du thème" + +#: conf/skin_general_settings.py:269 +msgid "Will be set automatically but you can modify it if necessary." +msgstr "" + +#: conf/skin_general_settings.py:280 +msgid "Hash to update the media revision number automatically." +msgstr "" + +#: conf/skin_general_settings.py:284 +msgid "Will be set automatically, it is not necesary to modify manually." +msgstr "" + #: conf/social_sharing.py:10 msgid "Sharing content on social networks" msgstr "" #: conf/social_sharing.py:18 -msgid "Check to enable sharing of questions on Twitter and Facebook" +#, fuzzy +msgid "Check to enable sharing of questions on Twitter" +msgstr "Partager cette question sur twitter" + +#: conf/social_sharing.py:27 +#, fuzzy +msgid "Check to enable sharing of questions on Facebook" +msgstr "Partager cette question sur facebook" + +#: conf/social_sharing.py:36 +msgid "Check to enable sharing of questions on LinkedIn" +msgstr "" + +#: conf/social_sharing.py:45 +msgid "Check to enable sharing of questions on Identi.ca" +msgstr "" + +#: conf/social_sharing.py:54 +msgid "Check to enable sharing of questions on Google+" +msgstr "" + +#: conf/spam_and_moderation.py:9 +msgid "Spam control and content moderation" msgstr "" -#: conf/user_settings.py:10 -msgid "User policy settings" +#: conf/spam_and_moderation.py:16 +msgid "Enable Akismet spam detection(keys below are required)" +msgstr "" + +#: conf/spam_and_moderation.py:19 +#, python-format +msgid "To get an Akismet key please visit Akismet site" +msgstr "" + +#: conf/spam_and_moderation.py:29 +msgid "Akismet key for spam detection" +msgstr "" + +#: conf/user_settings.py:11 +#, fuzzy +msgid "User settings" msgstr "FIXME - User policy settings" -#: conf/user_settings.py:18 +#: conf/user_settings.py:19 msgid "Allow editing user screen name" msgstr "" "Autoriser la modification du pseudo (nom d'utilisateur affiché à l'écran)" #: conf/user_settings.py:28 +#, fuzzy +msgid "Allow account recovery by email" +msgstr "" +"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...). 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/user_settings.py:37 +msgid "Allow adding and removing login methods" +msgstr "" + +#: conf/user_settings.py:47 msgid "Minimum allowed length for screen name" msgstr "Taille minimale du pseudo (nom d'utilisateur affiché à l'écran)" -#: conf/user_settings.py:37 +#: conf/user_settings.py:57 +msgid "Default Gravatar icon type" +msgstr "" + +#: conf/user_settings.py:59 +msgid "" +"This option allows you to set the default avatar type for email addresses " +"without associated gravatar images. For more information, please visit this page." +msgstr "" + +#: conf/user_settings.py:69 #, fuzzy msgid "Name for the Anonymous user" msgstr "Faux email pour utilisateur anonyme" @@ -1450,609 +1921,658 @@ msgid "Number of days to allow canceling votes" msgstr "Nombre de jours pour autoriser l'annulation de votes" #: conf/vote_rules.py:58 +#, fuzzy +msgid "Number of days required before answering own question" +msgstr "Nombre de jours pour autoriser l'annulation de votes" + +#: conf/vote_rules.py:67 msgid "Number of flags required to automatically hide posts" msgstr "" "Nombre de marqueurs/drapeaux requis pour masquer automatiquement des messages" -#: conf/vote_rules.py:67 +#: conf/vote_rules.py:76 msgid "Number of flags required to automatically delete posts" msgstr "" "Nombre de marqueurs/drapeaux requis pour supprimer automatiquement des " "messages" -#: const/__init__.py:9 +#: const/__init__.py:10 msgid "duplicate question" msgstr "Question en doublon" -#: const/__init__.py:10 +#: const/__init__.py:11 msgid "question is off-topic or not relevant" msgstr "La question est hors-sujet, ou non pertinente" # FIXME -#: const/__init__.py:11 +#: const/__init__.py:12 msgid "too subjective and argumentative" msgstr "trop subjective" -#: const/__init__.py:12 +#: const/__init__.py:13 msgid "not a real question" msgstr "pas vraiment une question" -#: const/__init__.py:13 +#: const/__init__.py:14 msgid "the question is answered, right answer was accepted" msgstr "la question est résolue, une bonne réponse a été acceptée" # FIXME résolue -> close ? -#: const/__init__.py:14 +#: const/__init__.py:15 msgid "question is not relevant or outdated" msgstr "La question n'est pas pertinente ou périmée" # FIXME périmée -> obsolète -#: const/__init__.py:15 +#: const/__init__.py:16 msgid "question contains offensive or malicious remarks" msgstr "La question contient des termes injurieux ou malveillants" # FIXME malicious ? -#: const/__init__.py:16 +#: const/__init__.py:17 msgid "spam or advertising" msgstr "Spam ou publicité" # FIXME -#: const/__init__.py:17 +#: const/__init__.py:18 msgid "too localized" msgstr "trop spécifique à un lieu" -#: const/__init__.py:40 +#: const/__init__.py:41 msgid "newest" msgstr "date (↓)" -#: const/__init__.py:41 skins/default/templates/users.html:25 -#: skins/default/templates/users.html:26 +#: const/__init__.py:42 skins/default/templates/users.html:26 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:42 +#: const/__init__.py:43 msgid "active" msgstr "actualité (↓)" -#: const/__init__.py:43 +#: const/__init__.py:44 msgid "inactive" msgstr "actualité (↑)" # FIXME -#: const/__init__.py:44 +#: const/__init__.py:45 msgid "hottest" msgstr "nb de réponses (↓)" # FIXME ou "bcp de réponses" # FIXME -#: const/__init__.py:45 +#: const/__init__.py:46 msgid "coldest" msgstr "nb de réponses (↑)" # FIXME ou "peu de réponses" # FIXME -#: const/__init__.py:46 +#: const/__init__.py:47 msgid "most voted" msgstr "popularité (↓)" # FIXME ou "bcp de votes" -#: const/__init__.py:47 +#: const/__init__.py:48 msgid "least voted" msgstr "popularité (↑)" # FIXME ou "peu de votes" -#: const/__init__.py:48 skins/default/templates/main_page/tab_bar.html:29 +#: const/__init__.py:49 msgid "relevance" msgstr "pertinence" # FIXME -#: const/__init__.py:55 skins/default/templates/main_page/tab_bar.html:10 +#: const/__init__.py:57 skins/default/templates/main_page/tab_bar.html:10 #: skins/default/templates/user_profile/user_inbox.html:50 msgid "all" msgstr "toutes" -#: const/__init__.py:56 skins/default/templates/main_page/tab_bar.html:15 +#: const/__init__.py:58 skins/default/templates/main_page/tab_bar.html:15 msgid "unanswered" msgstr "ouvertes" -#: const/__init__.py:57 skins/default/templates/main_page/tab_bar.html:21 +#: const/__init__.py:59 msgid "favorite" msgstr "favorite" -#: const/__init__.py:71 +#: const/__init__.py:64 +#, fuzzy +msgid "list" +msgstr "Liste des tags" + +#: const/__init__.py:65 +msgid "cloud" +msgstr "" + +#: const/__init__.py:78 msgid "Question has no answers" msgstr "Cette question n'a pas de réponse" -#: const/__init__.py:72 +#: const/__init__.py:79 msgid "Question has no accepted answers" msgstr "Cette question n'a pas de réponse acceptée" -#: const/__init__.py:113 +#: const/__init__.py:121 msgid "asked a question" msgstr "a posé une question" -#: const/__init__.py:114 +#: const/__init__.py:122 msgid "answered a question" msgstr "a répondu à une question" -#: const/__init__.py:115 +#: const/__init__.py:123 msgid "commented question" msgstr "question commentée" -#: const/__init__.py:116 +#: const/__init__.py:124 msgid "commented answer" msgstr "réponse commentée" -#: const/__init__.py:117 +#: const/__init__.py:125 msgid "edited question" msgstr "question modifiée" -#: const/__init__.py:118 +#: const/__init__.py:126 msgid "edited answer" msgstr "réponse modifiée" -#: const/__init__.py:119 +#: const/__init__.py:127 msgid "received award" msgstr "récompense obtenue" # FIXME ou "ayant reçu une récompense" -#: const/__init__.py:120 +#: const/__init__.py:128 msgid "marked best answer" msgstr "marquée comme meilleure réponse" # FIXME ou "élue meilleure réponse" -#: const/__init__.py:121 +#: const/__init__.py:129 msgid "upvoted" msgstr "notée positivement" # FIXME ou "ayant reçu un vote positif" -#: const/__init__.py:122 +#: const/__init__.py:130 msgid "downvoted" msgstr "notée négativement" # FIXME ou "ayant reçu un vote négatif" -#: const/__init__.py:123 +#: const/__init__.py:131 msgid "canceled vote" msgstr "vote annulé" -#: const/__init__.py:124 +#: const/__init__.py:132 msgid "deleted question" msgstr "question supprimée" -#: const/__init__.py:125 +#: const/__init__.py:133 msgid "deleted answer" msgstr "réponse supprimée" -#: const/__init__.py:126 +#: const/__init__.py:134 msgid "marked offensive" msgstr "signalée comme ayant un \"contenu abusif\"" # FXME ou "offensive" ? -#: const/__init__.py:127 +#: const/__init__.py:135 msgid "updated tags" msgstr "Mots-clés" # FIXME ou "marqueurs sémantiques mis à jour ?" -#: const/__init__.py:128 +#: const/__init__.py:136 msgid "selected favorite" msgstr "sélectionnée comme \"favorite\"" -#: const/__init__.py:129 +#: const/__init__.py:137 msgid "completed user profile" msgstr "profil utilisateur entièrement renseigné" # FIXME -#: const/__init__.py:130 +#: const/__init__.py:138 msgid "email update sent to user" msgstr "Mise à jour d'email envoyée à l'utilisateur" -#: const/__init__.py:131 +#: const/__init__.py:141 +#, fuzzy +msgid "reminder about unanswered questions sent" +msgstr "Voir les questions sans réponses" + +#: const/__init__.py:143 msgid "mentioned in the post" msgstr "mentionné dans le message" -#: const/__init__.py:182 +#: const/__init__.py:194 msgid "question_answered" msgstr "question_repondue" -#: const/__init__.py:183 +#: const/__init__.py:195 msgid "question_commented" msgstr "question_commentee" -#: const/__init__.py:184 +#: const/__init__.py:196 msgid "answer_commented" msgstr "reponse_commentee" -#: const/__init__.py:185 +#: const/__init__.py:197 msgid "answer_accepted" msgstr "reponse_acceptee" -#: const/__init__.py:189 +#: const/__init__.py:201 msgid "[closed]" msgstr "[close]" -#: const/__init__.py:190 +#: const/__init__.py:202 msgid "[deleted]" msgstr "[supprimée]" -#: const/__init__.py:191 views/readers.py:561 +#: const/__init__.py:203 views/readers.py:614 msgid "initial version" msgstr "version initiale" # FIXME -#: const/__init__.py:192 +#: const/__init__.py:204 msgid "retagged" msgstr "dont les mots-clés ont été révisés" -#: const/__init__.py:200 +#: const/__init__.py:212 msgid "off" msgstr "désactivé" -#: const/__init__.py:201 +#: const/__init__.py:213 msgid "exclude ignored" msgstr "exclure ceux ignorés" -#: const/__init__.py:202 +#: const/__init__.py:214 msgid "only selected" msgstr "seulement ceux sélectionnés" -#: const/__init__.py:206 +#: const/__init__.py:218 msgid "instantly" msgstr "instantanément" -#: const/__init__.py:207 +#: const/__init__.py:219 msgid "daily" msgstr "quotidien" -#: const/__init__.py:208 +#: const/__init__.py:220 msgid "weekly" msgstr "hebdomadaire" -#: const/__init__.py:209 +#: const/__init__.py:221 msgid "no email" msgstr "Aucun email" -#: const/__init__.py:246 skins/default/templates/badges.html:37 +#: const/__init__.py:228 +msgid "identicon" +msgstr "" + +#: const/__init__.py:229 +#, fuzzy +msgid "mystery-man" +msgstr "hier" + +#: const/__init__.py:230 +msgid "monsterid" +msgstr "" + +#: const/__init__.py:231 +#, fuzzy +msgid "wavatar" +msgstr "Qu'est ce que 'Gravatar' ?" + +#: const/__init__.py:232 +msgid "retro" +msgstr "" + +#: const/__init__.py:279 skins/default/templates/badges.html:37 msgid "gold" msgstr "or" -#: const/__init__.py:247 skins/default/templates/badges.html:46 +#: const/__init__.py:280 skins/default/templates/badges.html:46 msgid "silver" msgstr "argent" -#: const/__init__.py:248 skins/default/templates/badges.html:53 +#: const/__init__.py:281 skins/default/templates/badges.html:53 msgid "bronze" msgstr "bronze" -#: const/message_keys.py:19 -#, python-format -msgid "First time here? Check out the FAQ!" -msgstr "Vous êtes nouveau ? Commencez par lire notre FAQ !" +#: const/__init__.py:293 +msgid "None" +msgstr "" + +#: const/__init__.py:294 +#, fuzzy +msgid "Gravatar" +msgstr "Qu'est ce que 'Gravatar' ?" -#: const/message_keys.py:22 skins/default/templates/main_page/tab_bar.html:27 +#: const/__init__.py:295 +#, fuzzy +msgid "Uploaded Avatar" +msgstr "Qu'est ce que 'Gravatar' ?" + +#: const/message_keys.py:15 #, fuzzy msgid "most relevant questions" msgstr "Merci de poser une question pertinente." -#: const/message_keys.py:23 skins/default/templates/main_page/tab_bar.html:28 +#: const/message_keys.py:16 #, 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:24 +#: const/message_keys.py:17 msgid "by relevance" msgstr "par pertinence" -#: const/message_keys.py:25 +#: const/message_keys.py:18 msgid "click to see the oldest questions" msgstr "Cliquez ici pour voir les questions les moins récentes" -#: const/message_keys.py:26 +#: const/message_keys.py:19 msgid "by date" msgstr "par date" -#: const/message_keys.py:27 +#: const/message_keys.py:20 msgid "click to see the newest questions" msgstr "Cliquez ici pour voir les questions les plus récentes" -#: const/message_keys.py:28 +#: const/message_keys.py:21 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:29 +#: const/message_keys.py:22 msgid "by activity" msgstr "par activité" -#: const/message_keys.py:30 +#: const/message_keys.py:23 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:31 +#: const/message_keys.py:24 #, fuzzy msgid "click to see the least answered questions" msgstr "Cliquez ici pour voir les questions les moins récentes" -#: const/message_keys.py:32 +#: const/message_keys.py:25 msgid "by answers" msgstr "par réponses" -#: const/message_keys.py:33 +#: const/message_keys.py:26 #, 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:34 +#: const/message_keys.py:27 msgid "click to see least voted questions" msgstr "Cliquez ici pour voir les questions ayant obtenu le moins de votes" -#: const/message_keys.py:35 +#: const/message_keys.py:28 msgid "by votes" msgstr "par votes" -#: const/message_keys.py:36 +#: const/message_keys.py:29 msgid "click to see most voted questions" msgstr "Cliquez ici pour voir les questions ayant obtenu le plus de votes" -#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:134 +#: deps/django_authopenid/backends.py:88 +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 msgid "i-names are not supported" msgstr "Les i-names ne sont pas supportés." -#: deps/django_authopenid/forms.py:231 +#: deps/django_authopenid/forms.py:233 #, fuzzy, python-format msgid "Please enter your %(username_token)s" msgstr "Veuillez saisir votre nom d'utilisateur" -#: deps/django_authopenid/forms.py:257 +#: deps/django_authopenid/forms.py:259 #, fuzzy msgid "Please, enter your user name" msgstr "Veuillez saisir votre nom d'utilisateur" # TODO "votre" ou "un" ? -#: deps/django_authopenid/forms.py:261 +#: deps/django_authopenid/forms.py:263 #, fuzzy msgid "Please, enter your password" msgstr "Veuillez saisir votre mot de passe" # TODO "votre" ou "un" ? -#: deps/django_authopenid/forms.py:268 deps/django_authopenid/forms.py:272 +#: deps/django_authopenid/forms.py:270 deps/django_authopenid/forms.py:274 #, fuzzy msgid "Please, enter your new password" msgstr "Veuillez saisir votre mot de passe" -#: deps/django_authopenid/forms.py:283 +#: deps/django_authopenid/forms.py:285 msgid "Passwords did not match" msgstr "" -#: deps/django_authopenid/forms.py:295 +#: deps/django_authopenid/forms.py:297 #, python-format msgid "Please choose password > %(len)s characters" msgstr "" -#: deps/django_authopenid/forms.py:330 +#: deps/django_authopenid/forms.py:335 msgid "Current password" msgstr "Mot de passe actuel" -#: deps/django_authopenid/forms.py:341 +#: deps/django_authopenid/forms.py:346 msgid "" "Old password is incorrect. Please enter the correct " "password." msgstr "" "L'ancien mot de passe est erroné. Veuillez le corriger." -#: deps/django_authopenid/forms.py:394 +#: deps/django_authopenid/forms.py:399 msgid "Sorry, we don't have this email address in the database" msgstr "" -#: deps/django_authopenid/forms.py:430 +#: deps/django_authopenid/forms.py:435 msgid "Your user name (required)" msgstr "Votre nom d'utilisateur (obligatoire)" -#: deps/django_authopenid/forms.py:445 +#: deps/django_authopenid/forms.py:450 msgid "Incorrect username." msgstr "Nom d'utilisateur incorrect." -#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:10 -#: deps/django_authopenid/urls.py:11 deps/django_authopenid/urls.py:14 -#: deps/django_authopenid/urls.py:17 setup_templates/settings.py:201 +#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12 +#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:202 msgid "signin/" msgstr "connexion/" #: deps/django_authopenid/urls.py:10 -msgid "newquestion/" -msgstr "nouvelle_question/" - -#: deps/django_authopenid/urls.py:11 -msgid "newanswer/" -msgstr "nouvelle_reponse/" - -#: deps/django_authopenid/urls.py:12 msgid "signout/" msgstr "deconnexion/" -#: deps/django_authopenid/urls.py:14 +#: deps/django_authopenid/urls.py:12 msgid "complete/" msgstr "termine/" -#: deps/django_authopenid/urls.py:17 +#: deps/django_authopenid/urls.py:15 #, fuzzy msgid "complete-oauth/" msgstr "termine/" -#: deps/django_authopenid/urls.py:21 +#: deps/django_authopenid/urls.py:19 msgid "register/" msgstr "enregistrement/" -#: deps/django_authopenid/urls.py:23 +#: deps/django_authopenid/urls.py:21 msgid "signup/" msgstr "inscription/" -#: deps/django_authopenid/urls.py:31 +#: deps/django_authopenid/urls.py:25 +msgid "logout/" +msgstr "deconnecter/" + +#: deps/django_authopenid/urls.py:30 #, fuzzy msgid "recover/" msgstr "reouvrir/" -#: deps/django_authopenid/util.py:214 +#: deps/django_authopenid/util.py:378 #, fuzzy, python-format msgid "%(site)s user name and password" msgstr "Veuillez saisir votre nom d'utilisateur et un mot de passe" -#: deps/django_authopenid/util.py:220 -#: skins/default/templates/authopenid/signin.html:99 +#: deps/django_authopenid/util.py:384 +#: skins/default/templates/authopenid/signin.html:108 msgid "Create a password-protected account" msgstr "" -#: deps/django_authopenid/util.py:221 +#: deps/django_authopenid/util.py:385 #, fuzzy msgid "Change your password" msgstr "Changer de mot de passe" -#: deps/django_authopenid/util.py:283 +#: deps/django_authopenid/util.py:473 msgid "Sign in with Yahoo" msgstr "" -#: deps/django_authopenid/util.py:290 +#: deps/django_authopenid/util.py:480 #, fuzzy msgid "AOL screen name" msgstr "Pseudo" -#: deps/django_authopenid/util.py:298 +#: deps/django_authopenid/util.py:488 #, fuzzy msgid "OpenID url" msgstr "URL OpenID:" -#: deps/django_authopenid/util.py:315 -#, fuzzy -msgid "MyOpenid user name" -msgstr "par nom d'utilisateur" - -#: deps/django_authopenid/util.py:323 +#: deps/django_authopenid/util.py:517 #, fuzzy msgid "Flickr user name" msgstr "Nom d'utilisateur" -#: deps/django_authopenid/util.py:331 +#: deps/django_authopenid/util.py:525 #, fuzzy msgid "Technorati user name" msgstr "choisissez un nom d'utilisateur" -#: deps/django_authopenid/util.py:339 +#: deps/django_authopenid/util.py:533 msgid "WordPress blog name" msgstr "" -#: deps/django_authopenid/util.py:347 +#: deps/django_authopenid/util.py:541 msgid "Blogger blog name" msgstr "" -#: deps/django_authopenid/util.py:355 +#: deps/django_authopenid/util.py:549 msgid "LiveJournal blog name" msgstr "" -#: deps/django_authopenid/util.py:363 +#: deps/django_authopenid/util.py:557 #, fuzzy msgid "ClaimID user name" msgstr "Nom d'utilisateur" -#: deps/django_authopenid/util.py:371 +#: deps/django_authopenid/util.py:565 #, fuzzy msgid "Vidoop user name" msgstr "Nom d'utilisateur" -#: deps/django_authopenid/util.py:379 +#: deps/django_authopenid/util.py:573 #, fuzzy msgid "Verisign user name" msgstr "Nom d'utilisateur" -#: deps/django_authopenid/util.py:403 +#: deps/django_authopenid/util.py:608 #, fuzzy, python-format msgid "Change your %(provider)s password" msgstr "Changer de mot de passe" -#: deps/django_authopenid/util.py:407 +#: deps/django_authopenid/util.py:612 #, python-format msgid "Click to see if your %(provider)s signin still works for %(site_name)s" msgstr "" -#: deps/django_authopenid/util.py:416 +#: deps/django_authopenid/util.py:621 #, python-format msgid "Create password for %(provider)s" msgstr "" # FIXME -#: deps/django_authopenid/util.py:420 +#: deps/django_authopenid/util.py:625 #, fuzzy, python-format msgid "Connect your %(provider)s account to %(site_name)s" msgstr "Associez votre OpenID avec votre compte sur ce site" -#: deps/django_authopenid/util.py:429 +#: deps/django_authopenid/util.py:634 #, fuzzy, python-format msgid "Signin with %(provider)s user name and password" msgstr "Veuillez saisir votre nom d'utilisateur et un mot de passe" -#: deps/django_authopenid/util.py:436 +#: deps/django_authopenid/util.py:641 #, python-format msgid "Sign in with your %(provider)s account" msgstr "" -#: deps/django_authopenid/views.py:141 +#: deps/django_authopenid/views.py:158 #, python-format msgid "OpenID %(openid_url)s is invalid" msgstr "L'OpenID %(openid_url)s est invalide" -#: deps/django_authopenid/views.py:253 deps/django_authopenid/views.py:397 -#: deps/django_authopenid/views.py:425 +#: deps/django_authopenid/views.py:270 deps/django_authopenid/views.py:415 +#: deps/django_authopenid/views.py:443 #, 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:347 +#: deps/django_authopenid/views.py:365 #, fuzzy msgid "Your new password saved" msgstr "Votre mot de passe a été mis à jour." -#: deps/django_authopenid/views.py:509 +#: deps/django_authopenid/views.py:469 +msgid "The login password combination was not correct" +msgstr "" + +#: deps/django_authopenid/views.py:573 msgid "Please click any of the icons below to sign in" msgstr "" -#: deps/django_authopenid/views.py:511 +#: deps/django_authopenid/views.py:575 msgid "Account recovery email sent" msgstr "" -#: deps/django_authopenid/views.py:514 +#: deps/django_authopenid/views.py:578 msgid "Please add one or more login methods." msgstr "" -#: deps/django_authopenid/views.py:516 +#: deps/django_authopenid/views.py:580 msgid "If you wish, please add, remove or re-validate your login methods" msgstr "" -#: deps/django_authopenid/views.py:518 +#: deps/django_authopenid/views.py:582 msgid "Please wait a second! Your account is recovered, but ..." msgstr "" -#: deps/django_authopenid/views.py:520 +#: deps/django_authopenid/views.py:584 msgid "Sorry, this account recovery key has expired or is invalid" msgstr "" -#: deps/django_authopenid/views.py:574 +#: deps/django_authopenid/views.py:657 #, python-format msgid "Login method %(provider_name)s does not exist" msgstr "" -#: deps/django_authopenid/views.py:580 +#: deps/django_authopenid/views.py:663 #, 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:671 +#: deps/django_authopenid/views.py:754 #, python-format msgid "Your %(provider)s login works fine" msgstr "" -#: deps/django_authopenid/views.py:978 deps/django_authopenid/views.py:984 +#: deps/django_authopenid/views.py:1065 deps/django_authopenid/views.py:1071 #, python-format msgid "your email needs to be validated see %(details_url)s" msgstr "" @@ -2060,12 +2580,12 @@ msgstr "" "id='validate_email_alert' href='%(details_url)s'>Cliquez ici pour en " "savoir plus." -#: deps/django_authopenid/views.py:1005 +#: deps/django_authopenid/views.py:1092 #, fuzzy, python-format msgid "Recover your %(site)s account" msgstr "Changer le mot de passe de votre compte" -#: deps/django_authopenid/views.py:1072 +#: deps/django_authopenid/views.py:1162 msgid "Please check your email and visit the enclosed link." msgstr "" @@ -2090,7 +2610,7 @@ msgstr "Valeur par défaut: " msgid "Default value: %s" msgstr "Valeur par défaut: %s" -#: deps/livesettings/values.py:588 +#: deps/livesettings/values.py:601 #, python-format msgid "Allowed image file types are %(types)s" msgstr "Les types de fichiers image autorisés sont %(types)s" @@ -2106,7 +2626,7 @@ msgstr "Documentation" #: deps/livesettings/templates/livesettings/group_settings.html:11 #: deps/livesettings/templates/livesettings/site_settings.html:23 -#: skins/default/templates/authopenid/signin.html:117 +#: skins/default/templates/authopenid/signin.html:132 msgid "Change password" msgstr "Changer de mot de passe" @@ -2168,44 +2688,20 @@ msgstr "paramètres du groupe : %(name)s" msgid "Uncollapse all" msgstr "Tout déplier" -#: deps/recaptcha_django/__init__.py:19 deps/recaptcha_django/__init__.py:80 -msgid "Unknown error." -msgstr "Erreur inconnue." - -#: deps/recaptcha_django/__init__.py:20 deps/recaptcha_django/__init__.py:21 -msgid "ReCAPTCHA is wrongly configured." -msgstr "ReCaptcah est mal configuré." - -#: deps/recaptcha_django/__init__.py:22 -msgid "Bad reCAPTCHA challenge parameter." -msgstr "mauvais paramètre de challenge ReCaptcha" - -#: deps/recaptcha_django/__init__.py:23 -msgid "The CAPTCHA solution was incorrect." -msgstr "La solution Captcha était incorrecte" - -#: deps/recaptcha_django/__init__.py:24 -msgid "Bad reCAPTCHA verification parameters." -msgstr "Mauvais paramètres de vérification ReCaptcha." - -#: deps/recaptcha_django/__init__.py:25 -msgid "Provided reCAPTCHA API keys are not valid for this domain." -msgstr "" -"Les clés d'API ReCaptcha fournies ne sont pas valables poru ce domaine." - -#: deps/recaptcha_django/__init__.py:26 -msgid "ReCAPTCHA could not be reached." -msgstr "Impossible de se connecter au service externe reCaptcha." - -#: deps/recaptcha_django/__init__.py:73 -msgid "Invalid request" -msgstr "Requête invalide" - -#: importers/stackexchange/management/commands/load_stackexchange.py:128 +#: importers/stackexchange/management/commands/load_stackexchange.py:141 msgid "Congratulations, you are now an Administrator" msgstr "Félicitations, vous êtes maintenant administrateur" -#: management/commands/post_emailed_questions.py:34 +#: 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 "" "

    To ask by email, please:

    \n" "
      \n" @@ -2216,44 +2712,34 @@ msgid "" "may be separated by a semicolon or a comma

      \n" msgstr "" -#: management/commands/post_emailed_questions.py:54 +#: management/commands/post_emailed_questions.py:55 #, python-format msgid "" "

      Sorry, there was an error posting your question please contact the " "%(site)s administrator

      " msgstr "" -#: management/commands/post_emailed_questions.py:60 +#: management/commands/post_emailed_questions.py:61 #, python-format msgid "" "

      Sorry, in order to post questions on %(site)s by email, please register first

      " msgstr "" -#: management/commands/post_emailed_questions.py:68 +#: management/commands/post_emailed_questions.py:69 msgid "" "

      Sorry, your question could not be posted due to insufficient privileges " "of your user account

      " msgstr "" -#: management/commands/send_email_alerts.py:103 -#, python-format -msgid "\" and \"%s\"" -msgstr "" - -#: management/commands/send_email_alerts.py:106 -#, fuzzy -msgid "\" and more" -msgstr "En savoir plus." - -#: management/commands/send_email_alerts.py:111 +#: management/commands/send_email_alerts.py:411 #, 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:484 +#: management/commands/send_email_alerts.py:421 #, python-format msgid "%(name)s, this is an update message header for %(num)d question" msgid_plural "%(name)s, this is an update message header for %(num)d questions" @@ -2264,11 +2750,11 @@ msgstr[1] "" "

      Bonjour %(name)s,

      Il y a du nouveau concernant %(num)d questions:" -#: management/commands/send_email_alerts.py:501 +#: management/commands/send_email_alerts.py:438 msgid "new question" msgstr "nouvelle question" -#: management/commands/send_email_alerts.py:518 +#: 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 " @@ -2279,7 +2765,7 @@ msgstr "" "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:530 +#: 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 " @@ -2289,7 +2775,7 @@ msgstr "" "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:536 +#: 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 " @@ -2299,7 +2785,7 @@ msgstr "" "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:542 +#: 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. " @@ -2307,7 +2793,7 @@ 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:548 +#: management/commands/send_email_alerts.py:490 #, python-format msgid "" "go to %(email_settings_link)s to change frequency of email updates or " @@ -2317,7 +2803,14 @@ msgstr "" "emails de mises à jour, ou bien informez l'administrateur à l'adresse " "%(admin_email)s" -#: models/__init__.py:299 +#: management/commands/send_unanswered_question_reminders.py:80 +#, python-format +msgid "%(question_count)d unanswered question about %(topics)s" +msgid_plural "%(question_count)d unanswered questions about %(topics)s" +msgstr[0] "" +msgstr[1] "" + +#: models/__init__.py:316 msgid "" "Sorry, you cannot accept or unaccept best answers because your account is " "blocked" @@ -2325,7 +2818,7 @@ msgstr "" "Désolé, vous ne pouvez pas accepter ou refuser les meilleures réponses car " "votre compte est bloqué" -#: models/__init__.py:304 +#: models/__init__.py:320 msgid "" "Sorry, you cannot accept or unaccept best answers because your account is " "suspended" @@ -2333,54 +2826,56 @@ msgstr "" "Désolé, vous ne pouvez pas accepter ou refuser les meilleures réponses car " "votre compte est suspendu" -#: models/__init__.py:310 +#: models/__init__.py:333 +#, fuzzy, python-format msgid "" -"Sorry, you cannot accept or unaccept your own answer to your own question" +">%(points)s points required to accept or unaccept your own answer to your " +"own question" msgstr "" "Désolé, vous ne pouvez pas accepter ou rejeter votre propre réponse à votre " "propre question !" -#: models/__init__.py:317 -#, python-format +#: models/__init__.py:347 +#, fuzzy, python-format msgid "" -"Sorry, only original author of the question - %(username)s - can accept the " -"best answer" +"Sorry, only original author of the question - %(username)s - can accept or " +"unaccept the best answer" msgstr "" "Désolé, seul l'auteur d'origine de la question - %(username)s - peut " "accepter/désigner la meilleure réponse" -#: models/__init__.py:340 +#: models/__init__.py:375 msgid "cannot vote for own posts" msgstr "Il est interdit de voter pour ses propores publications" -#: models/__init__.py:343 +#: models/__init__.py:378 msgid "Sorry your account appears to be blocked " msgstr "Désolé, votre compte semble être bloqué" -#: models/__init__.py:348 +#: models/__init__.py:383 msgid "Sorry your account appears to be suspended " msgstr "Désolé, votre compte semble être suspendu" -#: models/__init__.py:358 +#: models/__init__.py:393 #, python-format msgid ">%(points)s points required to upvote" msgstr ">%(points)s points sont requis pour pouvoir voter positivement" -#: models/__init__.py:364 +#: models/__init__.py:399 #, python-format msgid ">%(points)s points required to downvote" msgstr ">%(points)s points sont requis pour pouvoir voter négativement" -#: models/__init__.py:379 +#: models/__init__.py:414 msgid "Sorry, blocked users cannot upload files" msgstr "Désolé, les utilisateurs bloqués ne peuvent pas transférer de fichier" -#: models/__init__.py:380 +#: models/__init__.py:415 msgid "Sorry, suspended users cannot upload files" msgstr "" "Désolé, les utilisateurs suspendus ne peuvent pas transférer de fichier" -#: models/__init__.py:382 +#: models/__init__.py:417 #, python-format msgid "" "uploading images is limited to users with >%(min_rep)s reputation points" @@ -2388,15 +2883,15 @@ 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:401 models/__init__.py:468 models/__init__.py:2344 +#: models/__init__.py:436 models/__init__.py:503 models/__init__.py:918 msgid "blocked users cannot post" msgstr "Les utilisateurs bloques ne peuvent pas publier" -#: models/__init__.py:402 models/__init__.py:2347 +#: models/__init__.py:437 models/__init__.py:921 msgid "suspended users cannot post" msgstr "Les utilisateurs suspendus ne peuvent pas publier" -#: models/__init__.py:429 +#: models/__init__.py:464 #, python-format msgid "" "Sorry, comments (except the last one) are editable only within %(minutes)s " @@ -2407,7 +2902,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: models/__init__.py:441 +#: models/__init__.py:476 #, fuzzy msgid "Sorry, but only post owners or moderators can edit comments" msgstr "" @@ -2415,14 +2910,14 @@ msgstr "" "et les modérateurs peuvent requalifier des questions supprimées (c'est à " "dire modifier leurs mots-clés)" -#: models/__init__.py:454 +#: models/__init__.py:489 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:458 +#: models/__init__.py:493 #, python-format msgid "" "Sorry, to comment any post a minimum reputation of %(min_rep)s points is " @@ -2432,7 +2927,7 @@ msgstr "" "réputation est requis. Vous pouvez toutefois commenter vos propres " "publications et répondre à vos questions" -#: models/__init__.py:486 +#: models/__init__.py:521 #, fuzzy msgid "" "This post has been deleted and can be seen only by post owners, site " @@ -2441,7 +2936,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:503 +#: models/__init__.py:538 msgid "" "Sorry, only moderators, site administrators and post owners can edit deleted " "posts" @@ -2449,18 +2944,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:518 +#: models/__init__.py:553 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:522 +#: models/__init__.py:557 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:527 +#: models/__init__.py:562 #, fuzzy, python-format msgid "" "Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required" @@ -2468,7 +2963,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:534 +#: models/__init__.py:569 #, fuzzy, python-format msgid "" "Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is " @@ -2477,7 +2972,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:597 +#: models/__init__.py:632 msgid "" "Sorry, cannot delete your question since it has an upvoted answer posted by " "someone else" @@ -2491,19 +2986,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:612 +#: models/__init__.py:647 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:616 +#: models/__init__.py:651 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:620 +#: models/__init__.py:655 #, python-format msgid "" "Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s " @@ -2512,18 +3007,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:640 +#: models/__init__.py:675 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:644 +#: models/__init__.py:679 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:648 +#: models/__init__.py:683 #, python-format msgid "" "Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is " @@ -2532,7 +3027,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:657 +#: models/__init__.py:692 #, python-format msgid "" "Sorry, to close own question a minimum reputation of %(min_rep)s is required" @@ -2540,7 +3035,7 @@ msgstr "" "Désolé, pour clore vos propres questions, un minimum de %(min_rep)s points " "de réputation est requis" -#: models/__init__.py:681 +#: models/__init__.py:716 #, python-format msgid "" "Sorry, only administrators, moderators or post owners with reputation > " @@ -2550,7 +3045,7 @@ msgstr "" "messages avec plus de %(min_rep)s points de réputation peuvent réouvrir des " "questions." -#: models/__init__.py:687 +#: models/__init__.py:722 #, python-format msgid "" "Sorry, to reopen own question a minimum reputation of %(min_rep)s is required" @@ -2558,31 +3053,31 @@ msgstr "" "Désolé, pour réouvrir vos propres questions, un minimum de %(min_rep)s " "points de réputation est requis" -#: models/__init__.py:707 +#: models/__init__.py:742 msgid "cannot flag message as offensive twice" msgstr "Un message ne peut pas être étiqueté \"abusif\" deux fois" -#: models/__init__.py:712 +#: models/__init__.py:747 msgid "blocked users cannot flag posts" msgstr "Les utilisateurs bloqués ne peuvent pas étiqueter les messages" -#: models/__init__.py:714 +#: models/__init__.py:749 msgid "suspended users cannot flag posts" msgstr "Les utilisateurs suspendus ne peuvent pas étiqueter les messages" -#: models/__init__.py:716 +#: models/__init__.py:751 #, python-format 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" -#: models/__init__.py:735 +#: models/__init__.py:770 #, python-format msgid "%(max_flags_per_day)s exceeded" msgstr "%(max_flags_per_day)s dépassé" -#: models/__init__.py:750 +#: models/__init__.py:785 msgid "" "Sorry, only question owners, site administrators and moderators can retag " "deleted questions" @@ -2591,20 +3086,20 @@ msgstr "" "et les modérateurs peuvent requalifier des questions supprimées (c'est à " "dire modifier leurs mots-clés)" -#: models/__init__.py:757 +#: models/__init__.py:792 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:761 +#: models/__init__.py:796 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:765 +#: models/__init__.py:800 #, python-format msgid "" "Sorry, to retag questions a minimum reputation of %(min_rep)s is required" @@ -2612,20 +3107,20 @@ 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:784 +#: models/__init__.py:819 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:788 +#: models/__init__.py:823 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:792 +#: models/__init__.py:827 #, python-format msgid "Sorry, to delete comments reputation of %(min_rep)s is required" msgstr "" @@ -2633,91 +3128,132 @@ msgstr "" "réputation est requis" # FIXME ou "ayant reçu un vote négatif" -#: models/__init__.py:815 +#: models/__init__.py:850 msgid "cannot revoke old vote" msgstr "impossible de révoquer un ancien vote" -#: models/__init__.py:1370 +#: models/__init__.py:1325 utils/functions.py:70 +#, python-format +msgid "on %(date)s" +msgstr "le %(date)s" + +#: models/__init__.py:1327 +msgid "in two days" +msgstr "" + +#: models/__init__.py:1329 +msgid "tomorrow" +msgstr "" + +#: models/__init__.py:1331 +#, 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:1333 +#, 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:1334 +#, python-format +msgid "%(days)d day" +msgid_plural "%(days)d days" +msgstr[0] "" +msgstr[1] "" + +#: models/__init__.py:1336 +#, 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:1501 skins/default/templates/feedback_email.txt:9 #, fuzzy msgid "Anonymous" msgstr "anonyme" -#: models/__init__.py:1456 views/users.py:362 +#: models/__init__.py:1597 views/users.py:365 msgid "Site Adminstrator" msgstr "Administrateur du site" -#: models/__init__.py:1458 views/users.py:364 +#: models/__init__.py:1599 views/users.py:367 msgid "Forum Moderator" msgstr "Modérateur de forum" -#: models/__init__.py:1460 views/users.py:366 +#: models/__init__.py:1601 views/users.py:369 msgid "Suspended User" msgstr "Utilisateur suspendu" -#: models/__init__.py:1462 views/users.py:368 +#: models/__init__.py:1603 views/users.py:371 msgid "Blocked User" msgstr "Utilisateur bloqué" -#: models/__init__.py:1464 views/users.py:370 +#: models/__init__.py:1605 views/users.py:373 msgid "Registered User" msgstr "Utilisateur enregistré" -#: models/__init__.py:1466 +#: models/__init__.py:1607 msgid "Watched User" msgstr "Utilisateurs suivis" -#: models/__init__.py:1468 +#: models/__init__.py:1609 msgid "Approved User" msgstr "Utilisateur certifié" -#: models/__init__.py:1524 +#: models/__init__.py:1718 #, fuzzy, python-format msgid "%(username)s karma is %(reputation)s" msgstr "Votre karma est %(reputation)s" -#: models/__init__.py:1534 +#: models/__init__.py:1728 #, python-format msgid "one gold badge" msgid_plural "%(count)d gold badges" msgstr[0] "" msgstr[1] "" -#: models/__init__.py:1541 +#: models/__init__.py:1735 #, 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:1548 +#: models/__init__.py:1742 #, 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:1559 +#: models/__init__.py:1753 #, python-format msgid "%(item1)s and %(item2)s" msgstr "" -#: models/__init__.py:1563 +#: models/__init__.py:1757 #, python-format msgid "%(user)s has %(badges)s" msgstr "" -#: models/__init__.py:1936 models/__init__.py:1942 models/__init__.py:1947 -#: models/__init__.py:1952 +#: models/__init__.py:2164 models/__init__.py:2170 models/__init__.py:2175 +#: models/__init__.py:2180 #, python-format msgid "Re: \"%(title)s\"" msgstr "" -#: models/__init__.py:1957 models/__init__.py:1962 +#: models/__init__.py:2185 models/__init__.py:2190 #, fuzzy, python-format msgid "Question: \"%(title)s\"" msgstr "Tags de la question" -#: models/__init__.py:2140 +#: models/__init__.py:2371 #, python-format msgid "" "Congratulations, you have received a badge '%(badge_name)s'. Check out votre profil." -#: models/__init__.py:2319 views/commands.py:409 +#: models/__init__.py:2550 views/commands.py:396 msgid "Your tag subscription was saved, thanks!" msgstr "" @@ -2898,7 +3434,8 @@ msgid "" "Answered a question more than %(days)s days later with at least %(votes)s " "votes" msgstr "" -"A répondu à une question avec %(days)s jours de retard, et avec au moins %(votes)s votes" +"A répondu à une question avec %(days)s jours de retard, et avec au moins " +"%(votes)s votes" #: models/badges.py:525 msgid "Necromancer" @@ -3014,44 +3551,54 @@ msgstr "Expert" msgid "Very active in one tag" msgstr "Très actif dans une catégorie de questions" -#: models/meta.py:111 +#: models/meta.py:112 msgid "" "Sorry, the comment you are looking for is no longer accessible, because the " "parent question has been removed" msgstr "" -#: models/meta.py:118 +#: models/meta.py:119 msgid "" "Sorry, the comment you are looking for is no longer accessible, because the " "parent answer has been removed" msgstr "" -#: models/question.py:387 +#: models/question.py:72 +#, python-format +msgid "\" and \"%s\"" +msgstr "" + +#: models/question.py:75 +#, fuzzy +msgid "\" and more" +msgstr "En savoir plus." + +#: models/question.py:452 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/question.py:815 +#: models/question.py:908 #, python-format msgid "%(author)s modified the question" msgstr "%(author)s a modifié la question" -#: models/question.py:819 +#: models/question.py:912 #, 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:824 +#: models/question.py:917 #, python-format msgid "%(people)s commented the question" msgstr "%(people)s a/ont commenté cette question" -#: models/question.py:829 +#: models/question.py:922 #, python-format msgid "%(people)s commented answers" msgstr "%(people)s a/ont commenté des réponses" -#: models/question.py:831 +#: models/question.py:924 #, python-format msgid "%(people)s commented an answer" msgstr "%(people)s a/ont commenté une réponse" @@ -3079,47 +3626,47 @@ msgstr "" "%(points)s points ont été retirés pour la contribution de %(username)s' à la " "question \"%(question_title)s\"" -#: models/tag.py:138 +#: models/tag.py:151 msgid "interesting" msgstr "intéressant" -#: models/tag.py:138 +#: models/tag.py:151 msgid "ignored" msgstr "ignoré" -#: models/user.py:261 +#: models/user.py:264 msgid "Entire forum" msgstr "Forum entier" -#: models/user.py:262 +#: models/user.py:265 msgid "Questions that I asked" msgstr "Les questions que j'ai posées" -#: models/user.py:263 +#: models/user.py:266 msgid "Questions that I answered" msgstr "Les questions auxquelles j'ai répondu" -#: models/user.py:264 +#: models/user.py:267 msgid "Individually selected questions" msgstr "questions sélectionnées individuellement" -#: models/user.py:265 +#: models/user.py:268 msgid "Mentions and comment responses" msgstr "Mentions et réponses aux commentaires" -#: models/user.py:268 +#: models/user.py:271 msgid "Instantly" msgstr "Instantanément" -#: models/user.py:269 +#: models/user.py:272 msgid "Daily" msgstr "Quotidien" -#: models/user.py:270 +#: models/user.py:273 msgid "Weekly" msgstr "hebdomadaire" -#: models/user.py:271 +#: models/user.py:274 msgid "No email" msgstr "Aucun email" @@ -3153,7 +3700,7 @@ msgstr "" "nombre de points suffisants pour la voir" #: skins/default/templates/404.jinja.html:19 -#: skins/default/templates/blocks/footer.html:6 +#: skins/default/templates/blocks/footer.html:5 #: skins/default/templates/blocks/header_meta_links.html:13 #: skins/default/templates/blocks/question_edit_tips.html:15 msgid "faq" @@ -3224,26 +3771,25 @@ msgstr "Modifier la réopnse" msgid "back" msgstr "Retour" -#: skins/default/templates/answer_edit.html:15 -#: skins/default/templates/question_edit.html:11 +#: skins/default/templates/answer_edit.html:14 msgid "revision" msgstr "Version" -#: skins/default/templates/answer_edit.html:18 +#: skins/default/templates/answer_edit.html:17 #: skins/default/templates/question_edit.html:16 msgid "select revision" msgstr "Version auswählen" -#: skins/default/templates/answer_edit.html:22 -#: skins/default/templates/question_edit.html:20 +#: skins/default/templates/answer_edit.html:21 +#: skins/default/templates/question_edit.html:27 msgid "Save edit" msgstr "Enregistrer les modifications" -#: skins/default/templates/answer_edit.html:23 +#: skins/default/templates/answer_edit.html:22 #: skins/default/templates/close.html:16 #: skins/default/templates/feedback.html:42 -#: skins/default/templates/question_edit.html:21 -#: skins/default/templates/question_retag.html:23 +#: skins/default/templates/question_edit.html:28 +#: skins/default/templates/question_retag.html:22 #: skins/default/templates/reopen.html:27 #: skins/default/templates/subscribe_for_tags.html:16 #: skins/default/templates/authopenid/changeemail.html:38 @@ -3251,21 +3797,21 @@ msgstr "Enregistrer les modifications" msgid "Cancel" msgstr "Annuler" -#: skins/default/templates/answer_edit.html:62 -#: skins/default/templates/answer_edit.html:65 -#: skins/default/templates/ask.html:43 skins/default/templates/ask.html:46 -#: skins/default/templates/macros.html:592 -#: skins/default/templates/question.html:474 -#: skins/default/templates/question.html:477 -#: skins/default/templates/question_edit.html:62 -#: skins/default/templates/question_edit.html:65 +#: skins/default/templates/answer_edit.html:60 +#: skins/default/templates/answer_edit.html:63 +#: skins/default/templates/ask.html:46 skins/default/templates/ask.html:49 +#: skins/default/templates/macros.html:698 +#: skins/default/templates/question.html:562 +#: skins/default/templates/question.html:565 +#: skins/default/templates/question_edit.html:72 +#: skins/default/templates/question_edit.html:75 msgid "hide preview" msgstr "Masquer l'aperçu" -#: skins/default/templates/answer_edit.html:65 -#: skins/default/templates/ask.html:46 -#: skins/default/templates/question.html:477 -#: skins/default/templates/question_edit.html:65 +#: skins/default/templates/answer_edit.html:63 +#: skins/default/templates/ask.html:49 +#: skins/default/templates/question.html:565 +#: skins/default/templates/question_edit.html:75 msgid "show preview" msgstr "Afficher l'aperçu" @@ -3275,7 +3821,7 @@ msgstr "Poser une question" #: skins/default/templates/badge.html:4 skins/default/templates/badge.html:8 #: skins/default/templates/user_profile/user_recent.html:16 -#: skins/default/templates/user_profile/user_stats.html:106 +#: skins/default/templates/user_profile/user_stats.html:110 #, python-format msgid "%(name)s" msgstr "%(name)s" @@ -3291,7 +3837,7 @@ msgstr "Badge \"%(name)s\"" #: skins/default/templates/badge.html:8 #: skins/default/templates/user_profile/user_recent.html:16 -#: skins/default/templates/user_profile/user_stats.html:106 +#: skins/default/templates/user_profile/user_stats.html:108 #, python-format msgid "%(description)s" msgstr "%(description)s" @@ -3323,8 +3869,8 @@ msgid "" "of times each type of badge has been awarded. Give us feedback at " "%(feedback_faq_url)s.\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 " +"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 @@ -3372,19 +3918,21 @@ msgstr "Raisons" msgid "OK to close" msgstr "OK pour clore" -#: skins/default/templates/faq.html:3 skins/default/templates/faq.html.py:5 +#: skins/default/templates/faq.html:3 +#: skins/default/templates/faq_static.html:3 +#: skins/default/templates/faq_static.html:5 msgid "FAQ" msgstr "" -#: skins/default/templates/faq.html:5 +#: skins/default/templates/faq_static.html:5 msgid "Frequently Asked Questions " msgstr "Questions fréquemment posées" -#: skins/default/templates/faq.html:6 +#: skins/default/templates/faq_static.html:6 msgid "What kinds of questions can I ask here?" msgstr "Quel genre de questions puis-je poser ici ?" -#: skins/default/templates/faq.html:7 +#: skins/default/templates/faq_static.html:7 msgid "" "Most importanly - questions should be relevant to this " "community." @@ -3392,7 +3940,7 @@ msgstr "" "Surtout, les questions doivent être pertinentes et " "significatives pour cette communauté." -#: skins/default/templates/faq.html:8 +#: 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." @@ -3400,11 +3948,11 @@ 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.html:10 +#: skins/default/templates/faq_static.html:10 msgid "What questions should I avoid asking?" msgstr "Quelles questions dois-je éviter de poser ?" -#: skins/default/templates/faq.html:11 +#: skins/default/templates/faq_static.html:11 msgid "" "Please avoid asking questions that are not relevant to this community, too " "subjective and argumentative." @@ -3412,11 +3960,11 @@ msgstr "" "Evitez de poser des questions qui ne sont pas pertinentes pour cette " "communauté, ou quisont trop subjectives ou polémiques. " -#: skins/default/templates/faq.html:13 +#: skins/default/templates/faq_static.html:13 msgid "What should I avoid in my answers?" msgstr "Que dois-je éviter dans mes réponses ?" -#: skins/default/templates/faq.html:14 +#: 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 " @@ -3427,19 +3975,19 @@ msgstr "" "avez toutefois la possibilité de faire de brèves discussions dans le champ " "COMMENTAIRES." -#: skins/default/templates/faq.html:15 +#: skins/default/templates/faq_static.html:15 msgid "Who moderates this community?" msgstr "Qui modère cette communauté ?" -#: skins/default/templates/faq.html:16 +#: skins/default/templates/faq_static.html:16 msgid "The short answer is: you." msgstr "Pour faire court : vous !" -#: skins/default/templates/faq.html:17 +#: skins/default/templates/faq_static.html:17 msgid "This website is moderated by the users." msgstr "Ce site est modéré par ses utilisateurs." -#: skins/default/templates/faq.html:18 +#: skins/default/templates/faq_static.html:18 msgid "" "The reputation system allows users earn the authorization to perform a " "variety of moderation tasks." @@ -3447,11 +3995,11 @@ 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.html:20 +#: skins/default/templates/faq_static.html:20 msgid "How does reputation system work?" msgstr "Comment fonctionne le système de réputation ?" -#: skins/default/templates/faq.html:21 +#: skins/default/templates/faq_static.html:21 msgid "Rep system summary" msgstr "" "Quand une question ou une réponse est jugée positivement par le reste de la " @@ -3459,7 +4007,7 @@ msgstr "" "\"monter en grade\" et obtenir un pouvoir grandissant en terme de " "possibilités de modérations. " -#: skins/default/templates/faq.html:22 +#: skins/default/templates/faq_static.html:22 #, python-format msgid "" "For example, if you ask an interesting question or give a helpful answer, " @@ -3482,50 +4030,55 @@ msgstr "" "jour pour chaque question et chaque réponse. Le tableau ci-dessous indique " "combien de points sont requis pour chaque tâche de modération. " -#: skins/default/templates/faq.html:32 +#: skins/default/templates/faq_static.html:32 #: skins/default/templates/user_profile/user_votes.html:13 msgid "upvote" msgstr "vote positif" -#: skins/default/templates/faq.html:37 +#: skins/default/templates/faq_static.html:37 msgid "use tags" msgstr "utiliser les mots-clés (tags)" -#: skins/default/templates/faq.html:42 +#: skins/default/templates/faq_static.html:42 msgid "add comments" msgstr "ajouter des commentaires" -#: skins/default/templates/faq.html:46 +#: skins/default/templates/faq_static.html:46 #: skins/default/templates/user_profile/user_votes.html:15 msgid "downvote" msgstr "vote négatif" -#: skins/default/templates/faq.html:49 +#: skins/default/templates/faq_static.html:49 +#, fuzzy +msgid " accept own answer to own questions" +msgstr "Erste Antwort auf eine eigene Frage akzeptiert" + +#: skins/default/templates/faq_static.html:53 msgid "open and close own questions" msgstr "ouvrir ou fermer ses propres questions" -#: skins/default/templates/faq.html:53 +#: skins/default/templates/faq_static.html:57 msgid "retag other's questions" msgstr "" "requalifier les questions d'autres utilisateurs (modifier leurs mots-clés)" -#: skins/default/templates/faq.html:58 +#: skins/default/templates/faq_static.html:62 msgid "edit community wiki questions" msgstr "Modifier les questions du \"Wiki communautaire\"." -#: skins/default/templates/faq.html:63 +#: skins/default/templates/faq_static.html:67 msgid "\"edit any answer" msgstr "\"modifier n'importe quelle réponse" -#: skins/default/templates/faq.html:67 +#: skins/default/templates/faq_static.html:71 msgid "\"delete any comment" msgstr "\"supprimer n'importe quel commentaire" -#: skins/default/templates/faq.html:70 +#: skins/default/templates/faq_static.html:74 msgid "what is gravatar" msgstr "Qu'est ce que 'Gravatar' ?" -#: skins/default/templates/faq.html:71 +#: skins/default/templates/faq_static.html:75 msgid "gravatar faq info" msgstr "" "Gravatar signifie (globally recognized avatar, en français avatar universel)." @@ -3544,11 +4097,11 @@ msgstr "" "quelques minutes quand même. 6. Vous pouvez créer autant de gravatars que " "vous avez d’adresses e-mail." -#: skins/default/templates/faq.html:72 +#: skins/default/templates/faq_static.html:76 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.html:73 +#: skins/default/templates/faq_static.html:77 msgid "" "No, you don't have to. You can login through any service that supports " "OpenID, e.g. Google, Yahoo, AOL, etc.\"" @@ -3556,21 +4109,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.html:74 +#: skins/default/templates/faq_static.html:78 msgid "\"Login now!\"" msgstr "\"Je me connecte immédiatement !\"" -#: skins/default/templates/faq.html:76 +#: skins/default/templates/faq_static.html:80 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.html:77 +#: skins/default/templates/faq_static.html:81 msgid "Goal of this site is..." msgstr "L'objectif de ce site est simple :" -#: skins/default/templates/faq.html:77 +#: skins/default/templates/faq_static.html:81 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 " @@ -3581,15 +4134,15 @@ msgstr "" "globale de la base de connaissances qui est peu à peu constituée par notre " "communauté." -#: skins/default/templates/faq.html:78 +#: skins/default/templates/faq_static.html:82 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.html:80 +#: skins/default/templates/faq_static.html:84 msgid "Still have questions?" msgstr "D'autres questions ?" -#: skins/default/templates/faq.html:81 +#: skins/default/templates/faq_static.html:85 #, python-format msgid "" "Please ask your question at %(ask_question_url)s, help make our community " @@ -3647,6 +4200,16 @@ msgstr "(champ obligatoire)" msgid "Send Feedback" msgstr "Envoyer" +#: skins/default/templates/feedback_email.txt:2 +#, fuzzy, python-format +msgid "" +"\n" +"Hello, this is a %(site_title)s forum feedback message.\n" +msgstr "" +"\n" +"Bonjour, un utilisateur du forum a souhaité faire une remarque sur : " +"%(site_title)s \n" + #: skins/default/templates/import_data.html:2 #: skins/default/templates/import_data.html:4 msgid "Import StackExchange data" @@ -3690,8 +4253,8 @@ msgid "" "p>\n" msgstr "" "\n" -"

      %(update_author_name)s a laissé un nouveau commentaire:\n" +"

      %(update_author_name)s a laissé un nouveau " +"commentaire:

      \n" #: skins/default/templates/instant_notification.html:8 #, python-format @@ -3701,8 +4264,8 @@ msgid "" "p>\n" msgstr "" "\n" -"

      %(update_author_name)s a laissé un nouveau commentaire\n" +"

      %(update_author_name)s a laissé un nouveau " +"commentaire

      \n" #: skins/default/templates/instant_notification.html:13 #, python-format @@ -3770,140 +4333,146 @@ msgid "

      Sincerely,
      Forum Administrator

      " msgstr "" "

      Salutations,
      L'administarteur du forum de Questions/Réponses

      " -#: skins/default/templates/logout.html:3 -msgid "Logout" -msgstr "Déconnexion" +#: skins/default/templates/macros.html:25 +#, fuzzy, python-format +msgid "Share this question on %(site)s" +msgstr "Partager cette question sur twitter" -#: skins/default/templates/logout.html:5 -msgid "You have successfully logged out" +#: skins/default/templates/macros.html:36 +#, python-format +msgid "follow %(alias)s" msgstr "" -#: skins/default/templates/logout.html:6 -msgid "" -"However, you still may be logged in to your OpenID provider. Please logout " -"of your provider if you wish to do so." +#: skins/default/templates/macros.html:39 +#, python-format +msgid "unfollow %(alias)s" +msgstr "" + +#: skins/default/templates/macros.html:40 +#, python-format +msgid "following %(alias)s" msgstr "" -#: skins/default/templates/macros.html:26 +#: skins/default/templates/macros.html:63 msgid "karma:" msgstr "" -#: skins/default/templates/macros.html:30 +#: skins/default/templates/macros.html:67 msgid "badges:" msgstr "badges :" -#: skins/default/templates/macros.html:82 -#: skins/default/templates/macros.html:83 +#: skins/default/templates/macros.html:143 +#: skins/default/templates/macros.html:144 msgid "previous" msgstr "page précédente" -#: skins/default/templates/macros.html:94 +#: skins/default/templates/macros.html:155 msgid "current page" msgstr "page actuelle" -#: skins/default/templates/macros.html:96 -#: skins/default/templates/macros.html:103 +#: skins/default/templates/macros.html:157 +#: skins/default/templates/macros.html:164 #, python-format msgid "page number %(num)s" msgstr "Page %(num)s" -#: skins/default/templates/macros.html:107 +#: skins/default/templates/macros.html:168 msgid "next page" msgstr "page suivante" -#: skins/default/templates/macros.html:118 +#: skins/default/templates/macros.html:179 msgid "posts per page" msgstr "messages par page" -#: skins/default/templates/macros.html:150 templatetags/extra_tags.py:43 +#: skins/default/templates/macros.html:211 templatetags/extra_tags.py:43 #, python-format msgid "%(username)s gravatar image" msgstr "Image Gravatar de %(username)s" -#: skins/default/templates/macros.html:159 +#: skins/default/templates/macros.html:220 #, 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:171 +#: skins/default/templates/macros.html:232 msgid "anonymous user" msgstr "anonyme" -#: skins/default/templates/macros.html:199 +#: skins/default/templates/macros.html:260 msgid "this post is marked as community wiki" msgstr "" -#: skins/default/templates/macros.html:202 +#: skins/default/templates/macros.html:263 #, python-format msgid "" "This post is a wiki.\n" " Anyone with karma >%(wiki_min_rep)s is welcome to improve it." msgstr "" -#: skins/default/templates/macros.html:208 +#: skins/default/templates/macros.html:269 msgid "asked" msgstr "posée" -#: skins/default/templates/macros.html:210 +#: skins/default/templates/macros.html:271 msgid "answered" msgstr "répondue" -#: skins/default/templates/macros.html:212 +#: skins/default/templates/macros.html:273 msgid "posted" msgstr "postée" -#: skins/default/templates/macros.html:242 +#: skins/default/templates/macros.html:303 msgid "updated" msgstr "actualisée" -#: skins/default/templates/macros.html:309 +#: skins/default/templates/macros.html:379 #, python-format msgid "see questions tagged '%(tag)s'" msgstr "Voir les questions marquées par '%(tag)s'." -#: skins/default/templates/macros.html:352 views/readers.py:219 -msgid "vote" -msgid_plural "votes" -msgstr[0] "vote" -msgstr[1] "votes" +#: skins/default/templates/macros.html:424 views/readers.py:239 +msgid "view" +msgid_plural "views" +msgstr[0] "vue" +msgstr[1] "vues" -#: skins/default/templates/macros.html:369 views/readers.py:222 +#: skins/default/templates/macros.html:441 views/readers.py:236 msgid "answer" msgid_plural "answers" msgstr[0] "réponse" msgstr[1] "réponses" -#: skins/default/templates/macros.html:380 views/readers.py:225 -msgid "view" -msgid_plural "views" -msgstr[0] "vue" -msgstr[1] "vues" +#: skins/default/templates/macros.html:452 views/readers.py:233 +msgid "vote" +msgid_plural "votes" +msgstr[0] "vote" +msgstr[1] "votes" -#: skins/default/templates/macros.html:409 -#: skins/default/templates/question.html:93 -#: skins/default/templates/question.html:249 +#: skins/default/templates/macros.html:491 +msgid "delete this comment" +msgstr "Supprimer ce commentaire" + +#: skins/default/templates/macros.html:502 +#: skins/default/templates/question.html:79 +#: skins/default/templates/question.html:235 #: skins/default/templates/revisions.html:37 msgid "edit" msgstr "modifier" -#: skins/default/templates/macros.html:413 -msgid "delete this comment" -msgstr "Supprimer ce commentaire" - -#: skins/default/templates/macros.html:431 -#: skins/default/templates/macros.html:439 -#: skins/default/templates/question.html:439 +#: skins/default/templates/macros.html:520 +#: skins/default/templates/macros.html:528 +#: skins/default/templates/question.html:511 msgid "add comment" msgstr "Ajouter un commentaire" -#: skins/default/templates/macros.html:432 +#: skins/default/templates/macros.html:521 #, python-format msgid "see %(counter)s more" msgid_plural "see %(counter)s more" msgstr[0] "Voir 1 de plus" msgstr[1] "Voir %(counter)s de plus" -#: skins/default/templates/macros.html:434 +#: skins/default/templates/macros.html:523 #, python-format msgid "see %(counter)s more comment" msgid_plural "" @@ -3912,47 +4481,52 @@ msgid_plural "" msgstr[0] "Voir 1 commentaire de plus" msgstr[1] "Voir %(counter)s commentaires de plus" -#: skins/default/templates/macros.html:569 +#: skins/default/templates/macros.html:661 +#, fuzzy +msgid "one of these is required" +msgstr "ce champ est obligatoire" + +#: skins/default/templates/macros.html:673 msgid "(required)" msgstr "(obligatoire)" # FIXME -#: skins/default/templates/macros.html:590 +#: skins/default/templates/macros.html:696 msgid "Toggle the real time Markdown editor preview" msgstr "Basculer vers l'aperçu avec éditeur temps-réel" -#: skins/default/templates/macros.html:602 +#: skins/default/templates/macros.html:708 #, python-format msgid "responses for %(username)s" msgstr "réponses pour %(username)s" -#: skins/default/templates/macros.html:605 +#: skins/default/templates/macros.html:711 #, python-format msgid "you have a 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:608 +#: skins/default/templates/macros.html:714 msgid "no new responses yet" msgstr "pas de nouvelles réponses pour l'instant" -#: skins/default/templates/macros.html:623 -#: skins/default/templates/macros.html:624 +#: skins/default/templates/macros.html:729 +#: skins/default/templates/macros.html:730 #, python-format msgid "%(new)s new flagged posts and %(seen)s previous" msgstr "" # FIXME -#: skins/default/templates/macros.html:626 -#: skins/default/templates/macros.html:627 +#: skins/default/templates/macros.html:732 +#: skins/default/templates/macros.html:733 #, python-format msgid "%(new)s new flagged posts" msgstr "%(new)s nouveaux messages étiquetés" # FIXME -#: skins/default/templates/macros.html:632 -#: skins/default/templates/macros.html:633 +#: skins/default/templates/macros.html:738 +#: skins/default/templates/macros.html:739 #, python-format msgid "%(seen)s flagged posts" msgstr "%(seen)s messages taggés" @@ -3966,84 +4540,64 @@ msgstr "Questions" msgid "Privacy policy" msgstr "Politique en matière de respect de la vie privée" +#: skins/default/templates/question.html:26 #: skins/default/templates/question.html:27 -#: skins/default/templates/question.html:28 -#: skins/default/templates/question.html:43 -#: skins/default/templates/question.html:45 +#: skins/default/templates/question.html:42 +#: skins/default/templates/question.html:44 msgid "i like this post (click again to cancel)" msgstr "J'aime ce message (cliquez à nouveau pour annuler)" -#: skins/default/templates/question.html:30 -#: skins/default/templates/question.html:47 -#: skins/default/templates/question.html:200 +#: skins/default/templates/question.html:29 +#: skins/default/templates/question.html:46 +#: skins/default/templates/question.html:186 msgid "current number of votes" msgstr "Nombre de votes actuel" +#: skins/default/templates/question.html:38 #: skins/default/templates/question.html:39 -#: skins/default/templates/question.html:40 +#: skins/default/templates/question.html:51 #: skins/default/templates/question.html:52 -#: skins/default/templates/question.html:53 msgid "i dont like this post (click again to cancel)" msgstr "Je n'aime pas ce message (cliquez à nouveau pour annuler)" -#: skins/default/templates/question.html:57 -#: skins/default/templates/question.html:58 -msgid "mark this question as favorite (click again to cancel)" -msgstr "" -"Ajouter cette question à mes 'favoris' (cliquez à nouveau pour annuler)" - -#: skins/default/templates/question.html:64 -#: skins/default/templates/question.html:65 -msgid "remove favorite mark from this question (click again to restore mark)" -msgstr "" -"Retirer cette question de mes 'favoris' (cliquez à nouveau pour annuler)" - -#: skins/default/templates/question.html:71 -msgid "Share this question on twitter" -msgstr "Partager cette question sur twitter" - -#: skins/default/templates/question.html:72 -msgid "Share this question on facebook" -msgstr "Partager cette question sur facebook" - # FIXME -#: skins/default/templates/question.html:96 +#: skins/default/templates/question.html:82 msgid "retag" msgstr "requalifier" -#: skins/default/templates/question.html:103 +#: skins/default/templates/question.html:89 msgid "reopen" msgstr "réouvrir" -#: skins/default/templates/question.html:107 +#: skins/default/templates/question.html:93 msgid "close" msgstr "fermer" -#: skins/default/templates/question.html:112 -#: skins/default/templates/question.html:253 +#: skins/default/templates/question.html:98 +#: skins/default/templates/question.html:239 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/default/templates/question.html:113 -#: skins/default/templates/question.html:254 +#: skins/default/templates/question.html:99 +#: skins/default/templates/question.html:240 msgid "flag offensive" msgstr "Marquer comme 'contenu abusif'" -#: skins/default/templates/question.html:120 -#: skins/default/templates/question.html:264 +#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:250 msgid "undelete" msgstr "restaurer" -#: skins/default/templates/question.html:120 -#: skins/default/templates/question.html:264 -#: skins/default/templates/authopenid/signin.html:149 +#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:250 +#: skins/default/templates/authopenid/signin.html:166 msgid "delete" msgstr "Supprimer" -#: skins/default/templates/question.html:157 +#: skins/default/templates/question.html:143 #, python-format msgid "" "The question has been closed for the following reason \"%(close_reason)s\" by" @@ -4051,21 +4605,21 @@ msgstr "" "Cette question a été close pour la raison suivante : : \"%(close_reason)s\" " "par" -#: skins/default/templates/question.html:159 +#: skins/default/templates/question.html:145 #, python-format msgid "close date %(closed_at)s" msgstr "Date de cloture : %(closed_at)s" -#: skins/default/templates/question.html:165 -#, python-format +#: skins/default/templates/question.html:151 +#, 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 réponse :" @@ -4073,78 +4627,99 @@ msgstr[1] "" "\n" " %(counter)s réponses :" -#: skins/default/templates/question.html:173 +#: skins/default/templates/question.html:159 msgid "oldest answers will be shown first" msgstr "Les réponses les plus anciennes seront affichées en premier" -#: skins/default/templates/question.html:174 +#: skins/default/templates/question.html:160 msgid "oldest answers" msgstr "réponses les plus anciennes" -#: skins/default/templates/question.html:176 +#: skins/default/templates/question.html:162 msgid "newest answers will be shown first" msgstr "Les réponses les plus récentes seront affichées en premier" -#: skins/default/templates/question.html:177 +#: skins/default/templates/question.html:163 msgid "newest answers" msgstr "Réponses les plus récentes" -#: skins/default/templates/question.html:179 +#: skins/default/templates/question.html:165 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.html:180 +#: skins/default/templates/question.html:166 msgid "popular answers" msgstr "réponses populaires" -#: skins/default/templates/question.html:198 -#: skins/default/templates/question.html:199 +#: skins/default/templates/question.html:184 +#: skins/default/templates/question.html:185 msgid "i like this answer (click again to cancel)" msgstr "J'aime cette réponse (cliquez à nouveau pour annuler)" -#: skins/default/templates/question.html:209 -#: skins/default/templates/question.html:210 +#: skins/default/templates/question.html:195 +#: skins/default/templates/question.html:196 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/question.html:218 -#: skins/default/templates/question.html:219 +#: skins/default/templates/question.html:204 +#: skins/default/templates/question.html:205 msgid "mark this answer as favorite (click again to undo)" msgstr "marquer cette réponse comme favorite (cliquez à nouveau pour annuler)" -#: skins/default/templates/question.html:228 -#: skins/default/templates/question.html:229 +#: skins/default/templates/question.html:214 +#: skins/default/templates/question.html:215 #, python-format msgid "%(question_author)s has selected this answer as correct" msgstr "%(question_author)s a choisi cette réponse comme correcte" -#: skins/default/templates/question.html:244 +#: skins/default/templates/question.html:230 msgid "answer permanent link" msgstr "lien permanent vers une réponse" -#: skins/default/templates/question.html:245 +#: skins/default/templates/question.html:231 msgid "permanent link" msgstr "lien permanent" -#: skins/default/templates/question.html:314 -#: skins/default/templates/question.html:316 +#: skins/default/templates/question.html:256 +#, fuzzy +msgid "swap with question" +msgstr "Répondre à cette question" + +#: skins/default/templates/question.html:297 +#, python-format +msgid "" +"Know someone who can answer? Share a link " +"to this question via" +msgstr "" + +#: skins/default/templates/question.html:303 +#, fuzzy +msgid " or" +msgstr "ou" + +#: skins/default/templates/question.html:305 +msgid "email" +msgstr "email" + +#: skins/default/templates/question.html:320 +#: skins/default/templates/question.html:322 msgid "Notify me once a day when there are any new answers" msgstr "" "Me notifier les nouvelles réponses par email une fois par " "jour" -#: skins/default/templates/question.html:318 +#: skins/default/templates/question.html:324 msgid "Notify me weekly when there are any new answers" msgstr "" "Me notifier les nouvelles réponses par email une fois par " "semaine" -#: skins/default/templates/question.html:320 +#: skins/default/templates/question.html:326 #, 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.html:323 +#: skins/default/templates/question.html:329 #, python-format msgid "" "You can always adjust frequency of email updates from your %(profile_url)s" @@ -4153,70 +4728,137 @@ msgstr "" "votre profil ...)" -#: skins/default/templates/question.html:328 +#: skins/default/templates/question.html:334 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.html:338 +#: skins/default/templates/question.html:344 +#, fuzzy +msgid "Login/Signup to Answer" +msgstr "Connectez vous (ou Inscrivez vous) pour poster votre réponse" + +#: skins/default/templates/question.html:352 msgid "Your answer" msgstr "Votre réponse" -#: skins/default/templates/question.html:340 +#: skins/default/templates/question.html:354 msgid "Be the first one to answer this question!" msgstr "Soyez le premier à répondre à cette quesion !" -#: skins/default/templates/question.html:346 +#: skins/default/templates/question.html:360 msgid "you can answer anonymously and then login" msgstr "" "Vous pouvez commencer par répondre anonymement à " "cette question, puis vous connecter ensuite " -#: skins/default/templates/question.html:350 +#: skins/default/templates/question.html:364 msgid "answer your own question only to give an answer" msgstr "" "vous pouvez répondre à vos propres questions uniquement pour donner une " "réponse" -#: skins/default/templates/question.html:352 +#: skins/default/templates/question.html:366 msgid "please only give an answer, no discussions" msgstr "" "Merci de vous contenter de donner une réponse; n'instaurez pas une discussion" -#: skins/default/templates/question.html:359 +#: skins/default/templates/question.html:373 msgid "Login/Signup to Post Your Answer" msgstr "Connectez vous (ou Inscrivez vous) pour poster votre réponse" -#: skins/default/templates/question.html:362 +#: skins/default/templates/question.html:376 +#: skins/default/templates/question.html:389 msgid "Answer Your Own Question" msgstr "Répondre à votre propre question" -#: skins/default/templates/question.html:364 +#: skins/default/templates/question.html:378 msgid "Answer the question" msgstr "Répondre à cette question" -#: skins/default/templates/question.html:380 +#: skins/default/templates/question.html:397 +#, fuzzy +msgid "Question tools" +msgstr "Tags de la question" + +# FIXME +#: skins/default/templates/question.html:400 +#, 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.html:401 +msgid "Following" +msgstr "" + +#: skins/default/templates/question.html:402 +msgid "Unfollow" +msgstr "" + +# FIXME +#: skins/default/templates/question.html:406 +#, 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.html:407 +msgid "Follow" +msgstr "" + +#: skins/default/templates/question.html:414 +#, python-format +msgid "%(count)s follower" +msgid_plural "%(count)s followers" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/templates/question.html:420 +#, fuzzy +msgid "email the updates" +msgstr "Modification(s) d'email(s) annulée(s)" + +#: skins/default/templates/question.html:423 +msgid "" +"Here (once you log in) you will be able to sign up for the " +"periodic email updates about this question." +msgstr "" + +#: skins/default/templates/question.html:428 +#, fuzzy +msgid "subscribe to this question rss feed" +msgstr "S'abonner au flux RSS des questions" + +#: skins/default/templates/question.html:429 +#, fuzzy +msgid "subsribe to rss feed" +msgstr "S'abonner au flux RSS des questions" + +#: skins/default/templates/question.html:438 msgid "Question tags" msgstr "Tags de la question" -#: skins/default/templates/question.html:397 +#: skins/default/templates/question.html:460 +msgid "Stats:" +msgstr "" + +#: skins/default/templates/question.html:462 msgid "question asked" msgstr "question posée" -#: skins/default/templates/question.html:400 +#: skins/default/templates/question.html:465 msgid "question was seen" msgstr "la question a été vue:" -#: skins/default/templates/question.html:400 +#: skins/default/templates/question.html:465 msgid "times" msgstr "fois" -#: skins/default/templates/question.html:403 +#: skins/default/templates/question.html:468 msgid "last updated" msgstr "dernière mise à jour" -#: skins/default/templates/question.html:410 +#: skins/default/templates/question.html:477 msgid "Related questions" msgstr "Questions liées" @@ -4230,24 +4872,24 @@ msgstr "Modifier une question" msgid "Change tags" msgstr "Modifier les tags" -#: skins/default/templates/question_retag.html:22 +#: skins/default/templates/question_retag.html:21 msgid "Retag" msgstr "Requalifier" -#: skins/default/templates/question_retag.html:30 +#: skins/default/templates/question_retag.html:28 msgid "Why use and modify tags?" msgstr "Pourquoi utiliser et modifier les tags ?" -#: skins/default/templates/question_retag.html:32 +#: skins/default/templates/question_retag.html:30 msgid "Tags help to keep the content better organized and searchable" msgstr "" -#: skins/default/templates/question_retag.html:34 +#: skins/default/templates/question_retag.html:32 msgid "tag editors receive special awards from the community" msgstr "" "Les éditeurs de tags reçoivent des récompenses de la base de la communauté" -#: skins/default/templates/question_retag.html:61 +#: skins/default/templates/question_retag.html:59 msgid "up to 5 tags, less than 20 characters each" msgstr "jusqu'à 5 tags, faisant chacun moins de 20 caractères" @@ -4313,35 +4955,32 @@ msgstr "Cette question a été close pour la raison suivante " msgid "Subscribe" msgstr "" -#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:8 +#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:11 msgid "Tag list" msgstr "Liste des tags" -#: skins/default/templates/tags.html:14 +#: skins/default/templates/tags.html:9 +#, python-format +msgid "Tags, matching \"%(stag)s\"" +msgstr "" + +#: skins/default/templates/tags.html:19 msgid "sorted alphabetically" msgstr "triée alphabétiquement" -#: skins/default/templates/tags.html:15 +#: skins/default/templates/tags.html:20 msgid "by name" msgstr "par nom" -#: skins/default/templates/tags.html:20 +#: skins/default/templates/tags.html:25 msgid "sorted by frequency of tag use" msgstr "triée par fréquence d'utilisation des tags" -#: skins/default/templates/tags.html:21 +#: skins/default/templates/tags.html:26 msgid "by popularity" msgstr "par popularité" -#: skins/default/templates/tags.html:26 -#, python-format -msgid "" -"All tags matching '%(stag)s'" -msgstr "" -"Tous les tags vérifiant '%(stag)s' " - -#: skins/default/templates/tags.html:29 +#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:56 msgid "Nothing found" msgstr "Aucun résultat" @@ -4349,16 +4988,32 @@ msgstr "Aucun résultat" msgid "Users" msgstr "Utilisateurs" -#: skins/default/templates/users.html:13 skins/default/templates/users.html:14 +#: skins/default/templates/users.html:13 +msgid "see people with the highest reputation" +msgstr "" + +#: skins/default/templates/users.html:14 #: skins/default/templates/user_profile/user_info.html:25 msgid "reputation" msgstr "réputation" -#: skins/default/templates/users.html:19 skins/default/templates/users.html:20 +#: skins/default/templates/users.html:19 +msgid "see people who joined most recently" +msgstr "" + +#: skins/default/templates/users.html:20 msgid "recent" msgstr "récent" -#: skins/default/templates/users.html:31 skins/default/templates/users.html:32 +#: skins/default/templates/users.html:25 +msgid "see people who joined the site first" +msgstr "" + +#: skins/default/templates/users.html:31 +msgid "see people sorted by name" +msgstr "" + +#: skins/default/templates/users.html:32 msgid "by username" msgstr "par nom d'utilisateur" @@ -4546,17 +5201,84 @@ msgstr "" msgid "create account" msgstr "Créer un compte" -#: skins/default/templates/authopenid/macros.html:50 +#: skins/default/templates/authopenid/confirm_email.txt:1 +msgid "Thank you for registering at our Q&A forum!" +msgstr "Merci de vous être inscrit sur notre forum de Questions/Réponses !" + +#: skins/default/templates/authopenid/confirm_email.txt:3 +#, fuzzy +msgid "Your account details are:" +msgstr "Informations détaillées sur votre compte:" + +#: skins/default/templates/authopenid/confirm_email.txt:5 +msgid "Username:" +msgstr "Nom d'utilisateur :" + +#: skins/default/templates/authopenid/confirm_email.txt:6 +msgid "Password:" +msgstr "Mot de passe :" + +#: skins/default/templates/authopenid/confirm_email.txt:8 +msgid "Please sign in here:" +msgstr "Merci de vous authentifiez :" + +#: skins/default/templates/authopenid/confirm_email.txt:11 +#: skins/default/templates/authopenid/email_validation.txt:13 +msgid "" +"Sincerely,\n" +"Forum Administrator" +msgstr "L'administrateur du forum" + +#: skins/default/templates/authopenid/email_validation.txt:1 +msgid "Greetings from the Q&A forum" +msgstr "Bienvenue dans notre forum de Questions/Réponses" + +#: skins/default/templates/authopenid/email_validation.txt:3 +msgid "To make use of the Forum, please follow the link below:" +msgstr "Pour utiliser ce forum, utilisez le lien ci-dessous :" + +#: skins/default/templates/authopenid/email_validation.txt:7 +msgid "Following the link above will help us verify your email address." +msgstr "" +"En cliquant sur le lien ci-dessus, vous allez nous permettre de vérifier la " +"validité de votre adresse email." + +#: skins/default/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" +"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é" + +#: skins/default/templates/authopenid/logout.html:3 +msgid "Logout" +msgstr "Déconnexion" + +#: skins/default/templates/authopenid/logout.html:5 +msgid "You have successfully logged out" +msgstr "" + +#: skins/default/templates/authopenid/logout.html: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 "" + +#: skins/default/templates/authopenid/macros.html:53 msgid "Please enter your user name, then sign in" msgstr "" -#: skins/default/templates/authopenid/macros.html:51 -#: skins/default/templates/authopenid/signin.html:84 +#: skins/default/templates/authopenid/macros.html:54 +#: skins/default/templates/authopenid/signin.html:90 #, fuzzy msgid "(or select another login method above)" msgstr "Merci de sélectionner une des options ci-dessus" -#: skins/default/templates/authopenid/macros.html:53 +#: skins/default/templates/authopenid/macros.html:56 #, fuzzy msgid "Sign in" msgstr "connexion/" @@ -4565,7 +5287,7 @@ msgstr "connexion/" msgid "User login" msgstr "Veuillez vous authentifier avec votre \"OpenID\"" -#: skins/default/templates/authopenid/signin.html:12 +#: skins/default/templates/authopenid/signin.html:14 #, fuzzy, python-format msgid "" "\n" @@ -4577,7 +5299,7 @@ msgstr "" "%(title)s %(summary)s...\" sera " "publiée dès que vous vous serez authentifié." -#: skins/default/templates/authopenid/signin.html:19 +#: skins/default/templates/authopenid/signin.html:21 #, fuzzy, python-format msgid "" "Your question \n" @@ -4589,133 +5311,139 @@ msgstr "" "authentifié\n" " " -#: skins/default/templates/authopenid/signin.html:26 +#: skins/default/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." msgstr "" -#: skins/default/templates/authopenid/signin.html:29 +#: skins/default/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 "" -#: skins/default/templates/authopenid/signin.html:31 +#: skins/default/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 "" -#: skins/default/templates/authopenid/signin.html:35 +#: skins/default/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 "" -#: skins/default/templates/authopenid/signin.html:37 +#: skins/default/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 "" -#: skins/default/templates/authopenid/signin.html:40 +#: skins/default/templates/authopenid/signin.html:42 msgid "" "Please check your email and visit the enclosed link to re-connect to your " "account" msgstr "" -#: skins/default/templates/authopenid/signin.html:82 +#: skins/default/templates/authopenid/signin.html:87 #, fuzzy msgid "Please enter your user name and password, then sign in" msgstr "Veuillez saisir votre nom d'utilisateur et un mot de passe" -#: skins/default/templates/authopenid/signin.html:86 +#: skins/default/templates/authopenid/signin.html:93 msgid "Login failed, please try again" msgstr "" -#: skins/default/templates/authopenid/signin.html:89 -msgid "Login name" -msgstr "Nom d'utilisateur" +#: skins/default/templates/authopenid/signin.html:97 +#, fuzzy +msgid "Login or email" +msgstr "Aucun email" -#: skins/default/templates/authopenid/signin.html:93 +#: skins/default/templates/authopenid/signin.html:101 msgid "Password" msgstr "Mot de passe" -#: skins/default/templates/authopenid/signin.html:97 +#: skins/default/templates/authopenid/signin.html:106 msgid "Login" msgstr "Connexion" -#: skins/default/templates/authopenid/signin.html:104 +#: skins/default/templates/authopenid/signin.html:113 msgid "To change your password - please enter the new one twice, then submit" msgstr "" -#: skins/default/templates/authopenid/signin.html:107 +#: skins/default/templates/authopenid/signin.html:117 #, fuzzy msgid "New password" msgstr "Nouveau mot de passe pris en compte." -#: skins/default/templates/authopenid/signin.html:112 +#: skins/default/templates/authopenid/signin.html:124 #, fuzzy msgid "Please, retype" msgstr "Merci de resaisir votre mot de passe" -#: skins/default/templates/authopenid/signin.html:130 +#: skins/default/templates/authopenid/signin.html:146 msgid "Here are your current login methods" msgstr "" -#: skins/default/templates/authopenid/signin.html:134 +#: skins/default/templates/authopenid/signin.html:150 #, fuzzy msgid "provider" msgstr "Utilisateur certifié" -#: skins/default/templates/authopenid/signin.html:135 +#: skins/default/templates/authopenid/signin.html:151 #, fuzzy msgid "last used" msgstr "dernière connexion" -#: skins/default/templates/authopenid/signin.html:136 +#: skins/default/templates/authopenid/signin.html:152 msgid "delete, if you like" msgstr "" -#: skins/default/templates/authopenid/signin.html:162 +#: skins/default/templates/authopenid/signin.html:168 +#, fuzzy +msgid "cannot be deleted" +msgstr "Compte supprimé." + +#: skins/default/templates/authopenid/signin.html:181 #, fuzzy msgid "Still have trouble signing in?" msgstr "D'autres questions ?" -#: skins/default/templates/authopenid/signin.html:167 +#: skins/default/templates/authopenid/signin.html:186 msgid "Please, enter your email address below and obtain a new key" msgstr "" -#: skins/default/templates/authopenid/signin.html:169 +#: skins/default/templates/authopenid/signin.html:188 msgid "Please, enter your email address below to recover your account" msgstr "" -#: skins/default/templates/authopenid/signin.html:172 +#: skins/default/templates/authopenid/signin.html:191 #, fuzzy msgid "recover your account via email" msgstr "Changer le mot de passe de votre compte" -#: skins/default/templates/authopenid/signin.html:183 +#: skins/default/templates/authopenid/signin.html:202 msgid "Send a new recovery key" msgstr "" -#: skins/default/templates/authopenid/signin.html:185 +#: skins/default/templates/authopenid/signin.html:204 #, fuzzy msgid "Recover your account via email" msgstr "Changer le mot de passe de votre compte" -#: skins/default/templates/authopenid/signin.html:196 +#: skins/default/templates/authopenid/signin.html:216 msgid "Why use OpenID?" msgstr "Pourquoi utiliser OpenID ?" -#: skins/default/templates/authopenid/signin.html:199 +#: skins/default/templates/authopenid/signin.html:219 msgid "with openid it is easier" msgstr "OpenID est le nouveau standard d’identification sur Internet." -#: skins/default/templates/authopenid/signin.html:202 +#: skins/default/templates/authopenid/signin.html:222 msgid "reuse openid" msgstr "" "Le principe d'OpenID est simple : au lieu de créer un nouveau compte sur " @@ -4725,22 +5453,22 @@ msgstr "" "d'autres sites \"compatibles OpenID\", sans avoir besoin de remplir le " "formulaire d'inscription de ces sites..." -#: skins/default/templates/authopenid/signin.html:205 +#: skins/default/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/default/templates/authopenid/signin.html:208 +#: skins/default/templates/authopenid/signin.html:228 msgid "openid is supported open standard" msgstr "OpenId est basé sur un standard international et libre." -#: skins/default/templates/authopenid/signin.html:212 +#: skins/default/templates/authopenid/signin.html:232 msgid "Find out more" msgstr "En savoir plus." -#: skins/default/templates/authopenid/signin.html:213 +#: skins/default/templates/authopenid/signin.html:233 msgid "Get OpenID" msgstr "Obtenir un compte OpenID" @@ -4933,7 +5661,7 @@ 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/blocks/ask_form.html:7 +#: skins/default/templates/blocks/ask_form.html:6 msgid "login to post question info" msgstr "" "Formulez votre question à l'aide du formulaire ci-" @@ -4944,12 +5672,12 @@ msgstr "" "des fonctionnalités de notre module de questions/réponses, qui repose sur un " "principe communautaire." -#: skins/default/templates/blocks/ask_form.html:11 +#: skins/default/templates/blocks/ask_form.html:10 #, python-format msgid "" "must have valid %(email)s to post, \n" -" see %(email_validation_faq_url)s\n" -" " +" see %(email_validation_faq_url)s\n" +" " msgstr "" "Ihre E-Mail-Adresse %(email)s wurde noch nicht " "bestätigt. Um Beiträge veröffentlichen zu können, müssen Sie Ihre E-" @@ -4957,14 +5685,22 @@ msgstr "" "hier.
      Sie können Ihren Beitrag speichern und die Bestätigung danach " "durchführen - Ihr Beitrag wird bis dahin gespeichert." -#: skins/default/templates/blocks/ask_form.html:28 +#: skins/default/templates/blocks/ask_form.html:34 msgid "Login/signup to post your question" msgstr "Vous devez vous authentifier pour publier votre question " -#: skins/default/templates/blocks/ask_form.html:30 +#: skins/default/templates/blocks/ask_form.html:36 msgid "Ask your question" msgstr "Poser votre question" +#: skins/default/templates/blocks/bottom_scripts.html:7 +#, python-format +msgid "" +"Please note: %(app_name)s requires javascript to work properly, please " +"enable javascript in your browser, here is how" +msgstr "" + #: skins/default/templates/blocks/editor_data.html:5 #, fuzzy, python-format msgid "each tag must be shorter that %(max_chars)s character" @@ -4985,19 +5721,24 @@ msgid "" "please use up to %(tag_count)s tags, less than %(max_chars)s characters each" msgstr "jusqu'à 5 tags, faisant chacun moins de 20 caractères" -#: skins/default/templates/blocks/footer.html:5 +#: skins/default/templates/blocks/footer.html:4 #: skins/default/templates/blocks/header_meta_links.html:12 msgid "about" msgstr "Qui sommes nous ?" -#: skins/default/templates/blocks/footer.html:7 +#: skins/default/templates/blocks/footer.html:6 msgid "privacy policy" msgstr "Respect de la vie privée" -#: skins/default/templates/blocks/footer.html:16 +#: skins/default/templates/blocks/footer.html:15 msgid "give feedback" msgstr "Faire une remarque" +#: skins/default/templates/blocks/footer.html:41 +#, python-format +msgid "Content on this site is licensed under a %(license)s" +msgstr "" + #: skins/default/templates/blocks/header.html:8 msgid "back to home page" msgstr "Retour à l'accueil" @@ -5007,19 +5748,19 @@ msgstr "Retour à l'accueil" msgid "%(site)s logo" msgstr "Logo du site de Questions/Réponses" -#: skins/default/templates/blocks/header.html:17 +#: skins/default/templates/blocks/header.html:20 msgid "questions" msgstr "questions" -#: skins/default/templates/blocks/header.html:27 +#: skins/default/templates/blocks/header.html:30 msgid "users" msgstr "Communauté" -#: skins/default/templates/blocks/header.html:32 +#: skins/default/templates/blocks/header.html:35 msgid "badges" msgstr "Réputation" -#: skins/default/templates/blocks/header.html:37 +#: skins/default/templates/blocks/header.html:40 msgid "ask a question" msgstr "Poser une question" @@ -5057,7 +5798,7 @@ msgstr "Tags intéressants" #: skins/default/templates/blocks/tag_selector.html:18 #: skins/default/templates/blocks/tag_selector.html:34 -#: skins/default/templates/user_profile/user_moderate.html:38 +#: skins/default/templates/user_profile/user_moderate.html:40 msgid "Add" msgstr "Ajouter" @@ -5085,14 +5826,14 @@ msgstr "S'abonner au flux RSS des questions" msgid "rss feed" msgstr "flux RSS" -#: skins/default/templates/main_page/headline.html:12 views/readers.py:119 +#: skins/default/templates/main_page/headline.html:12 views/readers.py:131 #, 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" -#: skins/default/templates/main_page/headline.html:14 views/readers.py:127 +#: skins/default/templates/main_page/headline.html:14 views/readers.py:139 #, python-format msgid "%(q_num)s question" msgid_plural "%(q_num)s questions" @@ -5144,34 +5885,18 @@ msgstr "Conseil pour la recherche:" msgid "add tags and a query to focus your search" msgstr "ajouter des tags et une requête pour affiner votre recherche" -#: skins/default/templates/main_page/javascript.html:13 -#: skins/default/templates/main_page/javascript.html:14 -msgid "mark-tag/" -msgstr "marquer-avec-un-tag/" - -#: skins/default/templates/main_page/javascript.html:13 -msgid "interesting/" -msgstr "interessant/" - -#: skins/default/templates/main_page/javascript.html:14 -msgid "ignored/" -msgstr "ignoree/" - -# FIXME -#: skins/default/templates/main_page/javascript.html:15 -msgid "unmark-tag/" -msgstr "retirer-un-tag/" - #: skins/default/templates/main_page/nothing_found.html:4 msgid "There are no unanswered questions here" msgstr "Il n'y a aucune question sans réponse" #: skins/default/templates/main_page/nothing_found.html:7 -msgid "No favorite questions here. " +#, fuzzy +msgid "No questions here. " msgstr "Aucune question favorite." #: skins/default/templates/main_page/nothing_found.html:8 -msgid "Please start (bookmark) some questions when you visit them" +#, fuzzy +msgid "Please star (bookmark) some questions or follow some users." msgstr "Merci de commencer (marquer) quelques questions quand vous les visitez" #: skins/default/templates/main_page/nothing_found.html:13 @@ -5195,11 +5920,11 @@ 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/sidebar.html:5 +#: skins/default/templates/main_page/sidebar.html:8 msgid "Contributors" msgstr "Contributeurs" -#: skins/default/templates/main_page/sidebar.html:22 +#: skins/default/templates/main_page/sidebar.html:25 msgid "Related tags" msgstr "Tags associés" @@ -5215,9 +5940,14 @@ msgid "see unanswered questions" msgstr "Voir les questions sans réponses" #: skins/default/templates/main_page/tab_bar.html:20 -msgid "see your favorite questions" +#, fuzzy +msgid "see your followed questions" msgstr "Voir vos questions favorites" +#: skins/default/templates/main_page/tab_bar.html:21 +msgid "followed" +msgstr "" + #: skins/default/templates/main_page/tab_bar.html:25 msgid "Sort by:" msgstr "Trier par:" @@ -5255,7 +5985,7 @@ msgid "Update" msgstr "Mettre à jour" #: skins/default/templates/user_profile/user_email_subscriptions.html:4 -#: skins/default/templates/user_profile/user_tabs.html:36 +#: skins/default/templates/user_profile/user_tabs.html:42 msgid "subscriptions" msgstr "Abonnements aux emails" @@ -5275,9 +6005,10 @@ msgid "Stop sending email" msgstr "Arrêter d'envoyer des emails" #: skins/default/templates/user_profile/user_favorites.html:4 -#: skins/default/templates/user_profile/user_tabs.html:21 -msgid "favorites" -msgstr "favorites" +#: skins/default/templates/user_profile/user_tabs.html:27 +#, fuzzy +msgid "followed questions" +msgstr "Toutes les questions" #: skins/default/templates/user_profile/user_inbox.html:18 #: skins/default/templates/user_profile/user_tabs.html:12 @@ -5338,52 +6069,52 @@ msgstr "" msgid "remove" msgstr "" -#: skins/default/templates/user_profile/user_info.html:33 +#: skins/default/templates/user_profile/user_info.html:36 msgid "update profile" msgstr "Mettre à jour le profil" -#: skins/default/templates/user_profile/user_info.html:37 +#: skins/default/templates/user_profile/user_info.html:40 msgid "manage login methods" msgstr "" -#: skins/default/templates/user_profile/user_info.html:50 +#: skins/default/templates/user_profile/user_info.html:53 msgid "real name" msgstr "nom réél" -#: skins/default/templates/user_profile/user_info.html:55 +#: skins/default/templates/user_profile/user_info.html:58 msgid "member for" msgstr "membre depuis" -#: skins/default/templates/user_profile/user_info.html:60 +#: skins/default/templates/user_profile/user_info.html:63 msgid "last seen" msgstr "dernière connexion" -#: skins/default/templates/user_profile/user_info.html:66 +#: skins/default/templates/user_profile/user_info.html:69 msgid "user website" msgstr "Site internet" -#: skins/default/templates/user_profile/user_info.html:72 +#: skins/default/templates/user_profile/user_info.html:75 msgid "location" msgstr "Lieu" -#: skins/default/templates/user_profile/user_info.html:79 +#: skins/default/templates/user_profile/user_info.html:82 msgid "age" msgstr "Age" -#: skins/default/templates/user_profile/user_info.html:80 +#: skins/default/templates/user_profile/user_info.html:83 msgid "age unit" msgstr "ans " -#: skins/default/templates/user_profile/user_info.html:87 +#: skins/default/templates/user_profile/user_info.html:90 msgid "todays unused votes" msgstr "Votes non utilisés aujourd'hui" -#: skins/default/templates/user_profile/user_info.html:88 +#: skins/default/templates/user_profile/user_info.html:91 msgid "votes left" msgstr "votes restants" #: skins/default/templates/user_profile/user_moderate.html:4 -#: skins/default/templates/user_profile/user_tabs.html:42 +#: skins/default/templates/user_profile/user_tabs.html:48 msgid "moderation" msgstr "Modération" @@ -5396,34 +6127,34 @@ msgstr "Le statut actuel de %(username)s est \"%(status)s\"" msgid "User status changed" msgstr "Statut de l'utilisateur modifié" -#: skins/default/templates/user_profile/user_moderate.html:18 +#: skins/default/templates/user_profile/user_moderate.html:20 msgid "Save" msgstr "Enregistrer" -#: skins/default/templates/user_profile/user_moderate.html:24 +#: skins/default/templates/user_profile/user_moderate.html:26 #, python-format msgid "Your current reputation is %(reputation)s points" msgstr "Vous avez actuellement %(reputation)s points de réputation" -#: skins/default/templates/user_profile/user_moderate.html:26 +#: skins/default/templates/user_profile/user_moderate.html:28 #, python-format msgid "User's current reputation is %(reputation)s points" msgstr "Cet utilisateur a actuellement %(reputation)s points de réputation" -#: skins/default/templates/user_profile/user_moderate.html:30 +#: skins/default/templates/user_profile/user_moderate.html:32 msgid "User reputation changed" msgstr "Réputation de l'utilisateur modifiée" -#: skins/default/templates/user_profile/user_moderate.html:37 +#: skins/default/templates/user_profile/user_moderate.html:39 msgid "Subtract" msgstr "Soustraire" -#: skins/default/templates/user_profile/user_moderate.html:42 +#: skins/default/templates/user_profile/user_moderate.html:44 #, python-format msgid "Send message to %(username)s" msgstr "Envoyer un message à %(username)s" -#: skins/default/templates/user_profile/user_moderate.html:43 +#: skins/default/templates/user_profile/user_moderate.html:45 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." @@ -5432,20 +6163,83 @@ msgstr "" "renseigné avec votre adresse email, afin qu'il puisse vous répondre " "directement. Merci de vérifier que votre adresse email est correcte." -#: skins/default/templates/user_profile/user_moderate.html:45 +#: skins/default/templates/user_profile/user_moderate.html:47 msgid "Message sent" msgstr "Message envoyé" -#: skins/default/templates/user_profile/user_moderate.html:63 +#: skins/default/templates/user_profile/user_moderate.html:65 msgid "Send message" msgstr "Envoyer le message" +#: skins/default/templates/user_profile/user_moderate.html:75 +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 "" + +#: skins/default/templates/user_profile/user_moderate.html:78 +msgid "" +"Moderators have the same privileges as administrators, but cannot add or " +"remove user status of 'moderator' or 'administrator'." +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:81 +msgid "'Approved' status means the same as regular user." +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:84 +#, fuzzy +msgid "Suspended users can only edit or delete their own posts." +msgstr "Les utilisateurs suspendus ne peuvent pas étiqueter les messages" + +#: skins/default/templates/user_profile/user_moderate.html:87 +msgid "" +"Blocked users can only login and send feedback to the site administrators." +msgstr "" + +#: skins/default/templates/user_profile/user_network.html:5 +#: skins/default/templates/user_profile/user_tabs.html:18 +msgid "network" +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[1] "" + +#: 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[1] "" + +#: skins/default/templates/user_profile/user_network.html:19 +msgid "" +"Your network is empty. Would you like to follow someone? - Just visit their " +"profiles and click \"follow\"" +msgstr "" + +# FIXME ou bien "Annulation des emails de notification de mises à jour" ??? +#: skins/default/templates/user_profile/user_network.html:21 +#, fuzzy, python-format +msgid "%(username)s's network is empty" +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:25 +#: 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:28 +msgid "source" +msgstr "" + #: skins/default/templates/user_profile/user_reputation.html:4 msgid "karma" msgstr "" @@ -5531,44 +6325,55 @@ msgid_plural "%(counter)s Badges" msgstr[0] "%(counter)s Badge" msgstr[1] "%(counter)s Badges" +# FIXME +#: skins/default/templates/user_profile/user_stats.html:122 +#, fuzzy +msgid "Answer to:" +msgstr "Conseils pour répondre" + #: skins/default/templates/user_profile/user_tabs.html:5 msgid "User profile" msgstr "Profil utilisateur" -#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:728 +#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:772 msgid "comments and answers to others questions" msgstr "Commentaires et réponses à d'autres questions" -#: skins/default/templates/user_profile/user_tabs.html:15 +#: skins/default/templates/user_profile/user_tabs.html:16 +msgid "followers and followed users" +msgstr "" + +#: skins/default/templates/user_profile/user_tabs.html:21 msgid "graph of user reputation" msgstr "Statistiques sur la réputation de cet utilisateur" -#: skins/default/templates/user_profile/user_tabs.html:17 +#: 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:19 -msgid "questions that user selected as his/her favorite" +#: 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:23 +#: skins/default/templates/user_profile/user_tabs.html:29 msgid "recent activity" msgstr "activité récente" -#: skins/default/templates/user_profile/user_tabs.html:28 views/users.py:792 +#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:847 msgid "user vote record" msgstr "Trace des votes de cet utilisateur" # FIXME -#: skins/default/templates/user_profile/user_tabs.html:30 +#: skins/default/templates/user_profile/user_tabs.html:36 msgid "casted votes" msgstr "abgegebene Stimmen" -#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:897 +#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:960 msgid "email subscription settings" msgstr "Paramètres d'abonnement aux emails" -#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:212 +#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:224 msgid "moderate this user" msgstr "Modérer cet utilisateur" @@ -5576,31 +6381,23 @@ msgstr "Modérer cet utilisateur" msgid "votes" msgstr "votes" -# FIXME coquille dans phrase anglaise ??? -#: skins/default/templates/user_profile/users_questions.html:9 -#: skins/default/templates/user_profile/users_questions.html:17 -#, fuzzy, python-format -msgid "this questions was selected as favorite %(cnt)s time" -msgid_plural "this questions was selected as favorite %(cnt)s times" -msgstr[0] "Cette question a été sélectionnée favorite" -msgstr[1] "Cette question a été sélectionnée favorite" - -#: skins/default/templates/user_profile/users_questions.html:10 -msgid "thumb-up on" -msgstr "J'aime (+1) activé" - -#: skins/default/templates/user_profile/users_questions.html:18 -msgid "thumb-up off" -msgstr "J'aime (+1) désactivé" - -#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:227 +#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:240 msgid "no items in counter" msgstr "0" -#: utils/decorators.py:82 views/commands.py:128 views/commands.py:145 +#: utils/decorators.py:90 views/commands.py:112 views/commands.py:132 msgid "Oops, apologies - there was some error" msgstr "" +#: utils/decorators.py:109 +#, fuzzy +msgid "Please login to post" +msgstr "Bitte einloggen" + +#: utils/decorators.py:205 +msgid "Spam was detected on your post, sorry for if this is a mistake" +msgstr "" + #: utils/forms.py:32 msgid "this field is required" msgstr "ce champ est obligatoire" @@ -5676,74 +6473,69 @@ 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:63 -#, python-format -msgid "on %(date)s" -msgstr "le %(date)s" - -#: utils/functions.py:67 +#: utils/functions.py:74 msgid "2 days ago" msgstr "il y a 2 jours" -#: utils/functions.py:69 +#: utils/functions.py:76 msgid "yesterday" msgstr "hier" -#: utils/functions.py:71 +#: utils/functions.py:79 #, 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:73 +#: utils/functions.py:85 #, 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" -#: views/avatar_views.py:94 +#: views/avatar_views.py:99 msgid "Successfully uploaded a new avatar." msgstr "" -#: views/avatar_views.py:134 +#: views/avatar_views.py:140 msgid "Successfully updated your avatar." msgstr "" -#: views/avatar_views.py:173 +#: views/avatar_views.py:180 msgid "Successfully deleted the requested avatars." msgstr "" -#: views/commands.py:38 +#: views/commands.py:39 msgid "anonymous users cannot vote" msgstr "les utilisateurs anonymes ne peuvent pas voter" -#: views/commands.py:58 +#: views/commands.py:59 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:64 +#: views/commands.py:65 #, 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:135 +#: views/commands.py:122 #, 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:205 +#: views/commands.py:192 msgid "Sorry, something is not right here..." msgstr "Désolé, il semble y avoir un problème..." -#: views/commands.py:220 +#: views/commands.py:207 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:301 +#: views/commands.py:288 #, python-format msgid "subscription saved, %(email)s needs validation, see %(details_url)s" msgstr "" @@ -5751,47 +6543,52 @@ msgstr "" "email %(email)s ; Cliquez ici pour en savoir plus." -#: views/commands.py:309 +#: views/commands.py:295 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:413 +#: views/commands.py:400 #, python-format msgid "Tag subscription was canceled (undo)." msgstr "" -#: views/commands.py:422 +#: views/commands.py:409 #, python-format msgid "Please sign in to subscribe for: %(tags)s" msgstr "" +#: views/commands.py:542 +#, fuzzy +msgid "Please sign in to vote" +msgstr "Merci de vous authentifiez :" + # FIXME à vérifier -#: views/meta.py:63 +#: views/meta.py:83 msgid "Q&A forum feedback" msgstr "" "Vos remarques, critiques et suggestions sur notre forum de questions/réponses" -#: views/meta.py:64 +#: views/meta.py:84 msgid "Thanks for the feedback!" msgstr "Merci pour vos remarques !" -#: views/meta.py:72 +#: views/meta.py:92 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:165 +#: views/readers.py:177 #, 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:388 +#: views/readers.py:441 #, fuzzy msgid "" "Sorry, the comment you are looking for has been deleted and is no longer " @@ -5799,86 +6596,96 @@ msgid "" msgstr "Désolé, cette question a été supprimée, et n'est plus accessible." # FIXME -#: views/users.py:213 +#: views/users.py:225 msgid "moderate user" msgstr "utilisateur modéré" # FIXME ou bien "Annulation des emails de notification de mises à jour" ??? -#: views/users.py:377 +#: views/users.py:380 msgid "user profile" msgstr "profil de l'utilisateur" -#: views/users.py:378 +#: views/users.py:381 msgid "user profile overview" msgstr "infOs générales sur le profil de l'utilisateur" -#: views/users.py:661 +#: views/users.py:685 msgid "recent user activity" msgstr "activité récente de l'utilisateur" -#: views/users.py:662 +#: views/users.py:686 msgid "profile - recent activity" msgstr "profil - activité récente" -#: views/users.py:729 +#: views/users.py:773 msgid "profile - responses" msgstr "profil - réactions" -#: views/users.py:793 +#: views/users.py:848 msgid "profile - votes" msgstr "profil - votes" -#: views/users.py:828 +#: views/users.py:883 msgid "user reputation in the community" msgstr "réputation de l'utilisateur au sein de la communauté" -#: views/users.py:829 +#: views/users.py:884 msgid "profile - user reputation" msgstr "profil - réputation de l'utilisateur" -#: views/users.py:856 +#: views/users.py:911 msgid "users favorite questions" msgstr "questions favorites des utilisateurs" -#: views/users.py:857 +#: views/users.py:912 msgid "profile - favorite questions" msgstr "profil - questions favorites" -#: views/users.py:876 views/users.py:880 +#: views/users.py:932 views/users.py:936 msgid "changes saved" msgstr "Modifications enregistrées." -#: views/users.py:886 +#: views/users.py:942 msgid "email updates canceled" msgstr "Modification(s) d'email(s) annulée(s)" -#: views/users.py:898 +#: views/users.py:961 msgid "profile - email subscriptions" msgstr "profil - abonnements emails" -#: views/writers.py:56 +#: views/writers.py:58 msgid "Sorry, anonymous users cannot upload files" msgstr "" "Désolé, les utilisateurs anonymes ne peuvent pas transférer de fichiers" -#: views/writers.py:66 +#: views/writers.py:68 #, python-format msgid "allowed file types are '%(file_types)s'" msgstr "Les types de fichiers autoprisés sont '%(file_types)s'" -#: views/writers.py:89 +#: views/writers.py:91 #, 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:97 +#: views/writers.py:99 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:555 +#: views/writers.py:191 +#, fuzzy +msgid "Please log in to ask questions" +msgstr "N'hésitez pas à poser des questions !" + +#: views/writers.py:492 +#, fuzzy +msgid "Please log in to answer questions" +msgstr "Voir les questions sans réponses" + +#: views/writers.py:598 #, python-format msgid "" "Sorry, you appear to be logged out and cannot post comments. Please reconnecter." -#: views/writers.py:600 +#: views/writers.py:646 #, fuzzy msgid "Sorry, anonymous users cannot edit comments" msgstr "" "Désolé, les utilisateurs anonymes ne peuvent pas transférer de fichiers" -#: views/writers.py:608 +#: views/writers.py:654 #, python-format msgid "" "Sorry, you appear to be logged out and cannot delete comments. Please reconnecter." -#: views/writers.py:629 +#: views/writers.py:675 msgid "sorry, we seem to have some technical difficulties" msgstr "" "Désolé, nous rencontrons apparemment des difficultés d'ordre techniques..." +#~ msgid "" +#~ "If you change this url from the default - then you will also probably " +#~ "want to adjust translation of the following string: " +#~ msgstr "" +#~ "si vous changez cette URL par défaut, alors vous voudrez probablement " +#~ "ajuster la traduction des lignes suivantes :" + +#~ msgid "" +#~ "Increment this number when you change image in skin media or stylesheet. " +#~ "This helps avoid showing your users outdated images from their browser " +#~ "cache." +#~ msgstr "" +#~ "Incrémenter ce nombre quand vous changez une image du thème ou une " +#~ "feuille de style. Ceci permet d'éviter d'afficher aux utilisateurs " +#~ "l'ancienne charte graphique (dont des éléments seraient présents dans " +#~ "leur cache)" + +#~ msgid "First time here? Check out the FAQ!" +#~ msgstr "" +#~ "Vous êtes nouveau ? Commencez par lire notre FAQ !" + +#~ msgid "newquestion/" +#~ msgstr "nouvelle_question/" + +#~ msgid "newanswer/" +#~ msgstr "nouvelle_reponse/" + +#, fuzzy +#~ msgid "MyOpenid user name" +#~ msgstr "par nom d'utilisateur" + +#~ msgid "Unknown error." +#~ msgstr "Erreur inconnue." + +#~ msgid "ReCAPTCHA is wrongly configured." +#~ msgstr "ReCaptcah est mal configuré." + +#~ msgid "Bad reCAPTCHA challenge parameter." +#~ msgstr "mauvais paramètre de challenge ReCaptcha" + +#~ msgid "The CAPTCHA solution was incorrect." +#~ msgstr "La solution Captcha était incorrecte" + +#~ msgid "Bad reCAPTCHA verification parameters." +#~ msgstr "Mauvais paramètres de vérification ReCaptcha." + +#~ msgid "Provided reCAPTCHA API keys are not valid for this domain." +#~ msgstr "" +#~ "Les clés d'API ReCaptcha fournies ne sont pas valables poru ce domaine." + +#~ msgid "ReCAPTCHA could not be reached." +#~ msgstr "Impossible de se connecter au service externe reCaptcha." + +#~ msgid "Invalid request" +#~ msgstr "Requête invalide" + +#~ msgid "mark this question as favorite (click again to cancel)" +#~ msgstr "" +#~ "Ajouter cette question à mes 'favoris' (cliquez à nouveau pour annuler)" + +#~ msgid "" +#~ "remove favorite mark from this question (click again to restore mark)" +#~ msgstr "" +#~ "Retirer cette question de mes 'favoris' (cliquez à nouveau pour annuler)" + +#~ msgid "" +#~ "All tags matching '%(stag)s'" +#~ msgstr "" +#~ "Tous les tags vérifiant '%(stag)s' " + +#~ msgid "Login name" +#~ msgstr "Nom d'utilisateur" + +#~ msgid "" +#~ "must have valid %(email)s to post, \n" +#~ " see %(email_validation_faq_url)s\n" +#~ " " +#~ msgstr "" +#~ "Ihre E-Mail-Adresse %(email)s wurde noch nicht " +#~ "bestätigt. Um Beiträge veröffentlichen zu können, müssen Sie Ihre " +#~ "E-Mail-Adresse bestätigen. Mehr " +#~ "infos hier.
      Sie können Ihren Beitrag speichern und die Bestätigung " +#~ "danach durchführen - Ihr Beitrag wird bis dahin gespeichert." + +#~ msgid "mark-tag/" +#~ msgstr "marquer-avec-un-tag/" + +#~ msgid "interesting/" +#~ msgstr "interessant/" + +#~ msgid "ignored/" +#~ msgstr "ignoree/" + +# FIXME +#~ msgid "unmark-tag/" +#~ msgstr "retirer-un-tag/" + +#~ msgid "favorites" +#~ msgstr "favorites" + +# FIXME coquille dans phrase anglaise ??? +#, fuzzy +#~ msgid "this questions was selected as favorite %(cnt)s time" +#~ msgid_plural "this questions was selected as favorite %(cnt)s times" +#~ msgstr[0] "Cette question a été sélectionnée favorite" +#~ msgstr[1] "Cette question a été sélectionnée favorite" + +#~ msgid "thumb-up on" +#~ msgstr "J'aime (+1) activé" + +#~ msgid "thumb-up off" +#~ msgstr "J'aime (+1) désactivé" + #~ msgid "community wiki" #~ msgstr "Wiki communautaire" @@ -6159,9 +7081,6 @@ msgstr "" #~ msgid "scholar" #~ msgstr "lernender" -#~ msgid "First accepted answer on your own question" -#~ msgstr "Erste Antwort auf eine eigene Frage akzeptiert" - #~ msgid "student" #~ msgstr "schueler" @@ -6294,61 +7213,12 @@ msgstr "" #~ msgid "%(type)s" #~ msgstr "le %(date)s" -#~ msgid "" -#~ "\n" -#~ "Hello, this is a %(site_title)s forum feedback message\n" -#~ msgstr "" -#~ "\n" -#~ "Bonjour, un utilisateur du forum a souhaité faire une remarque sur : " -#~ "%(site_title)s \n" - #~ msgid "Sender is" #~ msgstr "L'émetteur est" -#~ msgid "email" -#~ msgstr "email" - #~ msgid "Message body:" #~ msgstr "Corps du message:" -#~ msgid "Thank you for registering at our Q&A forum!" -#~ msgstr "Merci de vous être inscrit sur notre forum de Questions/Réponses !" - -#~ msgid "Username:" -#~ msgstr "Nom d'utilisateur :" - -#~ msgid "Password:" -#~ msgstr "Mot de passe :" - -#~ msgid "Please sign in here:" -#~ msgstr "Merci de vous authentifiez :" - -#~ msgid "" -#~ "Sincerely,\n" -#~ "Forum Administrator" -#~ msgstr "L'administrateur du forum" - -#~ msgid "Greetings from the Q&A forum" -#~ msgstr "Bienvenue dans notre forum de Questions/Réponses" - -#~ msgid "To make use of the Forum, please follow the link below:" -#~ msgstr "Pour utiliser ce forum, utilisez le lien ci-dessous :" - -#~ msgid "Following the link above will help us verify your email address." -#~ msgstr "" -#~ "En cliquant sur le lien ci-dessus, vous allez nous permettre de vérifier " -#~ "la validité de votre adresse email." - -#~ 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 "reputation points" #~ msgstr "points de réputation" @@ -6446,9 +7316,6 @@ msgstr "" #~ msgid "OpenID %s is now associated with your account." #~ msgstr "L'OpenID %s est maintenant associé à votre compte." -#~ msgid "Account deleted." -#~ msgstr "Compte supprimé." - #~ msgid "Request for new password" #~ msgstr "Demande de nouveau mot de passe" @@ -6506,17 +7373,6 @@ msgstr "" #~ msgid "toggle preview" #~ msgstr "basculer vers l'aperçu" -#~ msgid "" -#~ "must have valid %(email)s to post, \n" -#~ " see %(email_validation_faq_url)s\n" -#~ " " -#~ msgstr "" -#~ "Ihre E-Mail-Adresse %(email)s wurde noch nicht " -#~ "bestätigt. Um Beiträge veröffentlichen zu können, müssen Sie Ihre " -#~ "E-Mail-Adresse bestätigen. Mehr " -#~ "infos hier.
      Sie können Ihren Beitrag speichern und die Bestätigung " -#~ "danach durchführen - Ihr Beitrag wird bis dahin gespeichert." - #~ msgid "reading channel" #~ msgstr "Canal de lecture" @@ -6590,11 +7446,6 @@ msgstr "" #~ msgid "tags help us keep Questions organized" #~ msgstr "Les tags nous permettent de classer et organiser les questions." -# FIXME -#~ msgid "click to see hottest questions" -#~ msgstr "" -#~ "Cliquez ici pour voir les questions ayant obtenu le plus de réponses" - #~ msgid "less answers" #~ msgstr "nb réponses (↑)" @@ -6850,9 +7701,6 @@ msgstr "" #~ msgid "Unanswered questions" #~ msgstr "Questions sans réponses" -#~ msgid "All questions" -#~ msgstr "Toutes les questions" - #, fuzzy #~ msgid " %(q_num)s question found" #~ msgid_plural "%(q_num)s questions found" @@ -6892,9 +7740,6 @@ msgstr "" #~ msgid "books/" #~ msgstr "livres/" -#~ msgid "please login" -#~ msgstr "Bitte einloggen" - #~ msgid " One question found" #~ msgid_plural "%(q_num)s questions found" #~ msgstr[0] "Eine Frage gefunden" diff --git a/askbot/locale/fr/LC_MESSAGES/djangojs.mo b/askbot/locale/fr/LC_MESSAGES/djangojs.mo new file mode 100644 index 00000000..386cff64 Binary files /dev/null and b/askbot/locale/fr/LC_MESSAGES/djangojs.mo differ diff --git a/askbot/locale/fr/LC_MESSAGES/djangojs.po b/askbot/locale/fr/LC_MESSAGES/djangojs.po new file mode 100644 index 00000000..96c21a1c --- /dev/null +++ b/askbot/locale/fr/LC_MESSAGES/djangojs.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: 0.7\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-10-08 02:27-0500\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"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" + +#: skins/default/media/js/post.js:532 +msgid "Follow" +msgstr "" + +#: skins/default/media/js/post.js:541 skins/default/media/js/post.js.py:550 +#, perl-format +msgid "%s follower" +msgid_plural "%s followers" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/media/js/post.js:546 +msgid "
      Following
      Unfollow
      " +msgstr "" + +#: skins/default/media/js/post.js:1613 +msgid "Please enter question title (>10 characters)" +msgstr "" + +#: skins/default/media/js/tag_selector.js:15 +msgid "Tag \"\" matches:" +msgstr "" + +#: skins/default/media/js/tag_selector.js:84 +#, perl-format +msgid "and %s more, not shown..." +msgstr "" + +#: skins/default/media/js/user.js:129 +msgid "Please signin to follow %(username)s" +msgstr "" + +#: skins/default/media/js/user.js:161 +#, perl-format +msgid "unfollow %s" +msgstr "" + +#: skins/default/media/js/user.js:164 +#, perl-format +msgid "following %s" +msgstr "" + +#: skins/default/media/js/user.js:170 +#, perl-format +msgid "follow %s" +msgstr "" diff --git a/askbot/locale/it/LC_MESSAGES/django.mo b/askbot/locale/it/LC_MESSAGES/django.mo index d0a469e4..6cbc8fac 100644 Binary files a/askbot/locale/it/LC_MESSAGES/django.mo and b/askbot/locale/it/LC_MESSAGES/django.mo differ diff --git a/askbot/locale/it/LC_MESSAGES/django.po b/askbot/locale/it/LC_MESSAGES/django.po index d9ad6641..9fe87aa4 100644 --- a/askbot/locale/it/LC_MESSAGES/django.po +++ b/askbot/locale/it/LC_MESSAGES/django.po @@ -3,96 +3,121 @@ # This file is distributed under the same license as the CNPROG package. # Evgeny Fadeev , 2009. # -#, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: 0.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-11-29 16:39-0600\n" +"POT-Creation-Date: 2011-10-08 02:27-0500\n" "PO-Revision-Date: 2010-08-25 06:29\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Translated-Using: django-rosetta 0.5.6\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" -#: exceptions.py:9 +#: exceptions.py:13 #, fuzzy msgid "Sorry, but anonymous visitors cannot access this function" msgstr "mi spiace, devi essere registrato per accettare una risposta" -#: feed.py:22 +#: feed.py:26 feed.py:100 msgid " - " msgstr "-" -#: feed.py:22 +#: feed.py:26 +#, fuzzy +msgid "Individual question feed" +msgstr "Domande selezionate individualmente" + +#: feed.py:100 msgid "latest questions" msgstr "domande recenti" -#: forms.py:54 skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:40 -#: skins/default/templates/question_edit_tips.html:45 +#: forms.py:74 +#, fuzzy +msgid "select country" +msgstr "Cancella il tuo utente" + +#: forms.py:83 +msgid "Country" +msgstr "" + +#: forms.py:91 +#, fuzzy +msgid "Country field is required" +msgstr "campo obbligatorio" + +#: forms.py:104 skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:38 +#: skins/default/templates/blocks/question_edit_tips.html:43 msgid "title" msgstr "titolo" -#: forms.py:55 +#: forms.py:105 msgid "please enter a descriptive title for your question" msgstr "per favore inserisci un titolo descrittivo per la tua domanda" -#: forms.py:60 +#: forms.py:110 msgid "title must be > 10 characters" msgstr "il titolo deve essere più lungo di 10 caratteri" -#: forms.py:69 +#: forms.py:119 msgid "content" msgstr "contenuto" -#: forms.py:75 +#: forms.py:125 msgid "question content must be > 10 characters" msgstr "la domanda deve contenere più di 10 caratteri" -#: forms.py:84 skins/default/templates/header.html:83 +#: forms.py:134 skins/default/templates/macros.html:660 +#: skins/default/templates/macros.html:672 +#: skins/default/templates/blocks/header.html:25 msgid "tags" msgstr "tag" -#: forms.py:86 +#: forms.py:136 msgid "" "Tags are short keywords, with no spaces within. Up to five tags can be used." msgstr "" "I tag sono brevi parole chiave, senza spaziature tra una e l'altra. Possono " "essere inseriti fino a 5 tags." -#: forms.py:93 skins/default/templates/question_retag.html:78 +#: forms.py:164 skins/default/templates/question_retag.html:58 msgid "tags are required" msgstr "i tag sono obbligatori" -#: forms.py:102 +#: forms.py:173 #, 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:111 +#: forms.py:181 +#, python-format +msgid "At least one of the following tags is required : %(tags)s" +msgstr "" + +#: forms.py:190 #, 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:119 +#: forms.py:198 msgid "use-these-chars-in-tags" msgstr "usa-questi-caratteri-nei-tag" -#: forms.py:130 -#: skins/default/templates/unused/question_summary_list_roll.html:26 -#: skins/default/templates/unused/question_summary_list_roll.html:38 -msgid "community wiki" -msgstr "domanda comunitaria" +#: forms.py:233 +msgid "community wiki (karma is not awarded & many others can edit wiki post)" +msgstr "" -#: forms.py:131 +#: forms.py:234 msgid "" "if you choose community wiki option, the question and answer do not generate " "points and name of author will not be shown" @@ -100,11 +125,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:147 +#: forms.py:250 msgid "update summary:" msgstr "aggiorna il sommario:" -#: forms.py:148 +#: forms.py:251 msgid "" "enter a brief summary of your revision (e.g. fixed spelling, grammar, " "improved style, this field is optional)" @@ -112,279 +137,433 @@ msgstr "" "inserisci una breve descrizione della tua modifica (ad esempio, corretta " "l'ortografia, migliorato lo stile. Questo campo è opzionale)" -#: forms.py:161 +#: forms.py:327 msgid "Enter number of points to add or subtract" msgstr "inserisci un numero di punti da aggiungere o rimuovere" -#: forms.py:175 const/__init__.py:219 +#: forms.py:341 const/__init__.py:245 msgid "approved" msgstr "approvato" -#: forms.py:176 const/__init__.py:220 +#: forms.py:342 const/__init__.py:246 msgid "watched" msgstr "osservato" -#: forms.py:177 const/__init__.py:221 +#: forms.py:343 const/__init__.py:247 msgid "suspended" msgstr "sospeso" -#: forms.py:178 const/__init__.py:222 +#: forms.py:344 const/__init__.py:248 msgid "blocked" msgstr "bloccato" -#: forms.py:180 const/__init__.py:218 +#: forms.py:346 +#, fuzzy +msgid "administrator" +msgstr "Amministratore del sito" + +#: forms.py:347 const/__init__.py:244 msgid "moderator" msgstr "moderatore" -#: forms.py:200 +#: forms.py:367 msgid "Change status to" msgstr "Cambia lo stato a" -#: forms.py:227 +#: forms.py:394 msgid "which one?" msgstr "quale?" -#: forms.py:248 +#: forms.py:415 msgid "Cannot change own status" msgstr "Non è possibile cambiare il proprio stato" -#: forms.py:254 +#: forms.py:421 msgid "Cannot turn other user to moderator" msgstr "Non è possibile rendere moderatore un altro utente" -#: forms.py:261 +#: forms.py:428 msgid "Cannot change status of another moderator" msgstr "Non è possibile cambiare lo stato di un altro moderatore" -#: forms.py:267 -#, python-format -msgid "If you wish to change %(username)s's status, " +#: forms.py:434 +#, fuzzy +msgid "Cannot change status to admin" +msgstr "Non è possibile cambiare il proprio stato" + +#: forms.py:440 +#, fuzzy, python-format +msgid "" +"If you wish to change %(username)s's status, please make a meaningful " +"selection." msgstr "Se desideri cambiare lo stato di %(username)s, " -#: forms.py:276 +#: forms.py:449 msgid "Subject line" msgstr "Oggetto" -#: forms.py:283 +#: forms.py:456 msgid "Message text" msgstr "Messaggio" -#: forms.py:360 +#: forms.py:542 msgid "Your name:" msgstr "Il tuo nome:" -#: forms.py:361 +#: forms.py:543 msgid "Email (not shared with anyone):" msgstr "Email (non condivisa con altri):" -#: forms.py:362 +#: forms.py:544 msgid "Your message:" msgstr "Il tuo messaggio:" -#: forms.py:449 -msgid "this email does not have to be linked to gravatar" +#: forms.py:581 +#, fuzzy +msgid "ask anonymously" +msgstr "utente non registrato" + +#: forms.py:583 +msgid "Check if you do not want to reveal your name when asking this question" +msgstr "" + +#: forms.py:743 +msgid "" +"You have asked this question anonymously, if you decide to reveal your " +"identity, please check this box." +msgstr "" + +#: forms.py:747 +msgid "reveal identity" +msgstr "" + +#: forms.py:805 +msgid "" +"Sorry, only owner of the anonymous question can reveal his or her identity, " +"please uncheck the box" +msgstr "" + +#: forms.py:818 +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:856 +#, fuzzy +msgid "this email will be linked to gravatar" msgstr "questa email non deve essere linkata al gravatar" -#: forms.py:456 +#: forms.py:863 msgid "Real name" msgstr "Nome reale" -#: forms.py:463 +#: forms.py:870 msgid "Website" msgstr "Sito web" -#: forms.py:470 -msgid "Location" -msgstr "Luogo" +#: forms.py:877 +msgid "City" +msgstr "" + +#: forms.py:886 +msgid "Show country" +msgstr "" -#: forms.py:477 +#: forms.py:891 msgid "Date of birth" msgstr "Data di nascita" -#: forms.py:478 +#: forms.py:892 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:484 +#: forms.py:898 msgid "Profile" msgstr "Profilo" -#: forms.py:493 +#: forms.py:907 msgid "Screen name" msgstr "Nome utente" -#: forms.py:518 forms.py:519 +#: forms.py:938 forms.py:939 msgid "this email has already been registered, please use another one" msgstr "questa email è già stata registrata, per favore utilizzane un'altra" -#: forms.py:525 +#: forms.py:946 msgid "Choose email tag filter" msgstr "Scegli il tag filtro per l'email" -#: forms.py:564 +#: forms.py:993 msgid "Asked by me" msgstr "Chiesto da me" -#: forms.py:567 +#: forms.py:996 msgid "Answered by me" msgstr "Risposta fornita da me" -#: forms.py:570 +#: forms.py:999 msgid "Individually selected" msgstr "Selezionato individualmente" -#: forms.py:573 +#: forms.py:1002 msgid "Entire forum (tag filtered)" msgstr "Tutto il forum (tag filtrati)" -#: forms.py:577 +#: forms.py:1006 msgid "Comments and posts mentioning me" msgstr "Commenti e post che mi citano" -#: forms.py:635 +#: forms.py:1085 msgid "okay, let's try!" msgstr "okay, proviamo!" -#: forms.py:636 +#: forms.py:1086 msgid "no community email please, thanks" msgstr "no askbot email please, thanks" -#: forms.py:640 +#: forms.py:1090 msgid "please choose one of the options above" msgstr "per favore scegli una delle opzioni soprariportate" -#: urls.py:42 +#: urls.py:53 msgid "about/" msgstr "about/" -#: urls.py:43 conf/site_settings.py:79 +#: urls.py:54 msgid "faq/" msgstr "faq/" -#: urls.py:44 +#: urls.py:55 msgid "privacy/" msgstr "privacy/" -#: urls.py:45 -msgid "logout/" -msgstr "logout/" - -#: urls.py:47 urls.py:52 +#: urls.py:57 urls.py:62 msgid "answers/" msgstr "risposte/" -#: urls.py:47 urls.py:68 urls.py:164 +#: urls.py:57 urls.py:83 urls.py:198 msgid "edit/" msgstr "modifica/" -#: urls.py:52 urls.py:98 +#: urls.py:62 urls.py:113 msgid "revisions/" msgstr "revisioni/" -#: urls.py:58 urls.py:63 urls.py:68 urls.py:73 urls.py:78 urls.py:83 -#: urls.py:88 urls.py:93 urls.py:98 +#: urls.py:68 urls.py:78 urls.py:83 urls.py:88 urls.py:93 urls.py:98 +#: urls.py:103 urls.py:108 urls.py:113 urls.py:285 +#: skins/default/templates/question.html:508 msgid "questions/" msgstr "domande/" -#: urls.py:63 +#: urls.py:78 msgid "ask/" msgstr "chiedi/" -#: urls.py:73 +#: urls.py:88 msgid "retag/" msgstr "retag/" -#: urls.py:78 +#: urls.py:93 msgid "close/" msgstr "chiudi/" -#: urls.py:83 +#: urls.py:98 msgid "reopen/" msgstr "riapri/" -#: urls.py:88 +#: urls.py:103 msgid "answer/" msgstr "rispondi/" -#: urls.py:93 +#: urls.py:108 skins/default/templates/question.html:508 msgid "vote/" msgstr "vota/" -#: urls.py:114 -msgid "command/" -msgstr "comando/" - -#: urls.py:130 -msgid "question/" -msgstr "domanda/" - -#: urls.py:135 +#: urls.py:144 msgid "tags/" msgstr "tag/" -#: urls.py:140 urls.py:146 -msgid "mark-tag/" -msgstr "assegna-tag/" - -#: urls.py:140 -msgid "interesting/" -msgstr "interessante/" - -#: urls.py:146 -msgid "ignored/" -msgstr "ignorato/" - -#: urls.py:152 -msgid "unmark-tag/" -msgstr "rimuovi-tag/" +#: urls.py:187 +msgid "subscribe-for-tags/" +msgstr "" -#: urls.py:158 urls.py:164 urls.py:169 +#: urls.py:192 urls.py:198 urls.py:204 urls.py:212 +#: skins/default/templates/main_page/javascript.html:23 msgid "users/" msgstr "utenti/" -#: urls.py:174 urls.py:179 +#: urls.py:205 +#, fuzzy +msgid "subscriptions/" +msgstr "notifiche" + +#: urls.py:217 +msgid "users/update_has_custom_avatar/" +msgstr "" + +#: urls.py:222 urls.py:227 msgid "badges/" msgstr "badges/" -#: urls.py:184 +#: urls.py:232 msgid "messages/" msgstr "messaggi/" -#: urls.py:184 +#: urls.py:232 msgid "markread/" msgstr "segnacomeletto/" -#: urls.py:199 +#: urls.py:248 msgid "upload/" msgstr "upload/" -#: urls.py:200 -msgid "search/" -msgstr "ricerca/" - -#: urls.py:201 +#: urls.py:249 msgid "feedback/" msgstr "contatti/" -#: urls.py:202 setup_templates/settings.py:182 -#: skins/default/templates/authopenid/signin.html:249 +#: urls.py:291 skins/default/templates/question.html:506 +#: skins/default/templates/main_page/javascript.html:22 +msgid "question/" +msgstr "domanda/" + +#: urls.py:298 setup_templates/settings.py:202 +#: skins/default/templates/authopenid/providers_javascript.html:7 msgid "account/" msgstr "account/" -#: conf/email.py:12 +#: conf/badges.py:12 +#, fuzzy +msgid "Badge settings" +msgstr "Impostazioni base" + +#: conf/badges.py:21 +msgid "Disciplined: minimum upvotes for deleted post" +msgstr "" + +#: conf/badges.py:30 +msgid "Peer Pressure: minimum downvotes for deleted post" +msgstr "" + +#: conf/badges.py:39 +msgid "Teacher: minimum upvotes for the answer" +msgstr "" + +#: conf/badges.py:48 +msgid "Nice Answer: minimum upvotes for the answer" +msgstr "" + +#: conf/badges.py:57 +msgid "Good Answer: minimum upvotes for the answer" +msgstr "" + +#: conf/badges.py:66 +msgid "Great Answer: minimum upvotes for the answer" +msgstr "" + +#: conf/badges.py:75 +msgid "Nice Question: minimum upvotes for the question" +msgstr "" + +#: conf/badges.py:84 +msgid "Good Question: minimum upvotes for the question" +msgstr "" + +#: conf/badges.py:93 +msgid "Great Question: minimum upvotes for the question" +msgstr "" + +#: conf/badges.py:102 +#, fuzzy +msgid "Popular Question: minimum views" +msgstr "Domanda gettonata" + +#: conf/badges.py:111 +#, fuzzy +msgid "Notable Question: minimum views" +msgstr "Domanda notevole" + +#: conf/badges.py:120 +#, fuzzy +msgid "Famous Question: minimum views" +msgstr "Domanda famosa" + +#: conf/badges.py:129 +msgid "Self-Learner: minimum answer upvotes" +msgstr "" + +#: conf/badges.py:138 +msgid "Civic Duty: minimum votes" +msgstr "" + +#: conf/badges.py:147 +msgid "Enlightened Duty: minimum upvotes" +msgstr "" + +#: conf/badges.py:156 +msgid "Guru: minimum upvotes" +msgstr "" + +#: conf/badges.py:165 +msgid "Necromancer: minimum upvotes" +msgstr "" + +#: conf/badges.py:174 +msgid "Necromancer: minimum delay in days" +msgstr "" + +#: conf/badges.py:183 +msgid "Associate Editor: minimum number of edits" +msgstr "" + +#: conf/badges.py:192 +#, fuzzy +msgid "Favorite Question: minimum stars" +msgstr "Domanda apprezzata" + +#: conf/badges.py:201 +#, fuzzy +msgid "Stellar Question: minimum stars" +msgstr "Domanda stellare" + +#: conf/badges.py:210 +msgid "Commentator: minimum comments" +msgstr "" + +#: conf/badges.py:219 +msgid "Taxonomist: minimum tag use count" +msgstr "" + +#: conf/badges.py:228 +msgid "Enthusiast: minimum days" +msgstr "" + +#: conf/email.py:14 msgid "Email and email alert settings" msgstr "Configurazione email ed avvisi tramite mail" -#: conf/email.py:20 +#: conf/email.py:22 +#, fuzzy +msgid "Prefix for the email subject line" +msgstr "Benvenuto!" + +#: conf/email.py:24 +msgid "" +"This setting takes default from the django settingEMAIL_SUBJECT_PREFIX. A " +"value entered here will overridethe default." +msgstr "" + +#: conf/email.py:36 msgid "Maximum number of news entries in an email alert" msgstr "Massimo numero di news in un avviso tramite mail" -#: conf/email.py:30 +#: conf/email.py:46 msgid "Default news notification frequency" msgstr "Frequenza di notifica news predefinita" -#: conf/email.py:32 +#: conf/email.py:48 msgid "" "This option currently defines default frequency of emailed updates in the " "following five categories: questions asked by user, answered by user, " @@ -397,36 +576,85 @@ msgstr "" "(con filtri ai tag applicati individualmente), post che menzionano l'utente " "e risposte ai commenti " -#: conf/email.py:47 +#: conf/email.py:62 +#, fuzzy +msgid "Send periodic reminders about unanswered questions" +msgstr "Non ci sono domande senza risposte" + +#: conf/email.py:64 +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) and an IMAP server with a dedicated inbox " +"must be configured " +msgstr "" + +#: conf/email.py:78 +#, fuzzy +msgid "Days before starting to send reminders about unanswered questions" +msgstr "Non ci sono domande senza risposte" + +#: conf/email.py:89 +msgid "" +"How often to send unanswered question reminders (in days between the " +"reminders sent)." +msgstr "" + +#: conf/email.py:101 +msgid "Max. number of reminders to send about unanswered questions" +msgstr "" + +#: conf/email.py:113 msgid "Require email verification before allowing to post" msgstr "" "Richiede la verifica dell'indirizzo email prima di consentire la " "pubblicazione di post" -#: conf/email.py:48 +#: conf/email.py:114 msgid "" "Active email verification is done by sending a verification key in email" msgstr "La verifica dell'email è effettuata inviando una chiave all'indirizzo " -#: conf/email.py:57 +#: conf/email.py:123 msgid "Allow only one account per email address" msgstr "Consenti solo un account per indirizzo email" -#: conf/email.py:66 +#: conf/email.py:132 msgid "Fake email for anonymous user" msgstr "Email fasulla per gli utenti non registrati" -#: conf/email.py:67 +#: conf/email.py:133 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:76 +#: conf/email.py:142 #, fuzzy -msgid "Prefix for the email subject line" -msgstr "Benvenuto!" +msgid "Allow posting questions by email" +msgstr "" +"Puoi cominciare ora a scrivere la tua domanda " +"come utente non registrato. Quando avrai finito, sarai reindirizzato " +"alla pagina di accesso/registrazione. La tua domanda sarà salvata e " +"pubblicata non appena ti sarai registrato. Accedere al proprio account " +"richiede circa 30 secondi, registrarne uno nuovo meno di un minuto." + +#: conf/email.py:144 +msgid "" +"Before enabling this setting - please fill out IMAP settings in the settings." +"py file" +msgstr "" + +#: conf/email.py:155 +msgid "Replace space in emailed tags with dash" +msgstr "" -#: conf/external_keys.py:11 +#: conf/email.py:157 +msgid "" +"This setting applies to tags written in the subject line of questions asked " +"by email" +msgstr "" + +#: conf/external_keys.py:10 msgid "Keys to connect the site with external services like Facebook, etc." msgstr "Chiavi per connettere il sito con servizi esterni come Facebook, ecc." @@ -435,104 +663,128 @@ msgid "Google site verification key" msgstr "Site verification key di Google" #: conf/external_keys.py:20 -#, python-format +#, fuzzy, python-format msgid "" -"This key helps google index your site please obtain is at google webmasters tools site" +"This key helps google index your site please obtain is at google webmasters tools site" msgstr "" "Questa chiave aiuta google ad indicizzare il tuo sito. Per favore ottienila " "presso gli strumenti per i " "webmaster di Google" -#: conf/external_keys.py:34 +#: conf/external_keys.py:35 msgid "Google Analytics key" msgstr "Chiave Google Analytics" -#: conf/external_keys.py:36 -#, python-format +#: conf/external_keys.py:37 +#, fuzzy, python-format msgid "" -"Obtain is at Google Analytics site, if you wish " -"to use Google Analytics to monitor your site" +"Obtain is at Google Analytics site, if you wish to " +"use Google Analytics to monitor your site" msgstr "" "Ottieni un account Google Analytics, se vuoi " "utilizzare Google Analytics per monitorare il tuo sito web" -#: conf/external_keys.py:49 +#: conf/external_keys.py:50 msgid "Enable recaptcha (keys below are required)" msgstr "" -#: conf/external_keys.py:58 +#: conf/external_keys.py:59 msgid "Recaptcha public key" msgstr "Chiave pubblica Recaptcha" -#: conf/external_keys.py:66 +#: conf/external_keys.py:67 msgid "Recaptcha private key" msgstr "Chiave privata Recaptcha" -#: conf/external_keys.py:68 +#: conf/external_keys.py:69 +#, fuzzy, 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 recaptcha.net" +"robots. Please get this and a public key at the %(url)s" msgstr "" "Recaptcha è un tool che aiuta a distinguere persone reali da fastidisosi " "spam robots. Per favore ottieni questa ed una chiave pubblica all'indirizzo " "recaptcha.net" -#: conf/external_keys.py:80 +#: conf/external_keys.py:81 msgid "Facebook public API key" msgstr "Facebook API key" -#: conf/external_keys.py:82 +#: conf/external_keys.py:83 +#, fuzzy, python-format msgid "" "Facebook API key and Facebook secret allow to use Facebook Connect login " -"method at your site. Please obtain these keys at facebook create app site" +"method at your site. Please obtain these keys at facebook create app site" msgstr "" "La Facebook API key ed il Facebook secret ti permettono di usare Facebook " "Connect per i login al tuo sito. Per favore ottieni queste chiavi presso la " "pagina facebook " "create app" -#: conf/external_keys.py:95 +#: conf/external_keys.py:96 msgid "Facebook secret key" msgstr "Facebook secret key" -#: conf/external_keys.py:103 +#: conf/external_keys.py:104 msgid "Twitter consumer key" msgstr "" -#: conf/external_keys.py:105 conf/external_keys.py:126 +#: conf/external_keys.py:106 +#, python-format msgid "" -"Please register your forum at twitter applications site" +"Please register your forum at twitter applications site" msgstr "" -#: conf/external_keys.py:116 +#: conf/external_keys.py:117 msgid "Twitter consumer secret" msgstr "" -#: conf/external_keys.py:124 +#: conf/external_keys.py:125 msgid "LinkedIn consumer key" msgstr "" -#: conf/external_keys.py:137 +#: conf/external_keys.py:127 +#, python-format +msgid "" +"Please register your forum at LinkedIn developer site" +msgstr "" + +#: conf/external_keys.py:138 msgid "LinkedIn consumer secret" msgstr "" -#: conf/external_keys.py:145 -msgid "User LDAP authentication for the password login" +#: conf/external_keys.py:146 +msgid "ident.ca consumer key" +msgstr "" + +#: conf/external_keys.py:148 +#, python-format +msgid "" +"Please register your forum at Identi.ca applications " +"site" +msgstr "" + +#: conf/external_keys.py:159 +msgid "ident.ca consumer secret" msgstr "" -#: conf/external_keys.py:154 +#: conf/external_keys.py:167 +msgid "Use LDAP authentication for the password login" +msgstr "" + +#: conf/external_keys.py:176 msgid "LDAP service provider name" msgstr "" -#: conf/external_keys.py:162 +#: conf/external_keys.py:184 msgid "URL for the LDAP service" msgstr "" -#: conf/external_keys.py:170 +#: conf/external_keys.py:192 #, fuzzy msgid "Explain how to change LDAP password" msgstr "Cambia password" @@ -554,10 +806,24 @@ msgstr "" "HTML sulla pagina \"about\" per controllare il tuo input." #: conf/flatpages.py:30 +#, fuzzy +msgid "Text of the Q&A forum FAQ page (html format)" +msgstr "Testo della pagina About del Q&A forum (formato html)" + +#: conf/flatpages.py:33 +#, fuzzy +msgid "" +"Save, then use HTML validator on " +"the \"faq\" page to check your input." +msgstr "" +"Salva, poi utilizza il validatore " +"HTML sulla pagina \"about\" per controllare il tuo input." + +#: conf/flatpages.py:44 msgid "Text of the Q&A forum Privacy Policy (html format)" msgstr "Testo della pagina Privacy Policy del Q&A forum (formato html)" -#: conf/flatpages.py:33 +#: conf/flatpages.py:47 msgid "" "Save, then use HTML validator on " "the \"privacy\" page to check your input." @@ -565,91 +831,336 @@ msgstr "" "Salva, poi utilizza il validatore " "HTML sulla pagina \"about\" per controllare il tuo input." -#: conf/forum_data_rules.py:12 -msgid "Settings for askbot data entry and display" +#: conf/forum_data_rules.py:11 +#, fuzzy +msgid "Data entry and display" msgstr "Impostazioni per la visualizzazione dei dati di Askbot" #: conf/forum_data_rules.py:20 +#, python-format +msgid "" +"Enable embedding videos. Note: please read read this first." +msgstr "" + +#: conf/forum_data_rules.py:31 msgid "Check to enable community wiki feature" msgstr "Spunta per impostare come 'domanda comunitaria'" -#: conf/forum_data_rules.py:29 -msgid "Maximum length of tag (number of characters)" -msgstr "Massima lunghezza di un tag (numero di caratteri)" - -#: conf/forum_data_rules.py:39 -msgid "Default max number of comments to display under posts" +#: conf/forum_data_rules.py:40 +msgid "Allow asking questions anonymously" msgstr "" -#: conf/forum_data_rules.py:50 -#, python-format -msgid "Maximum comment length, must be < %(max_len)s" +#: conf/forum_data_rules.py:42 +msgid "" +"Users do not accrue reputation for anonymous questions and their identity is " +"not revealed until they change their mind" msgstr "" -#: conf/forum_data_rules.py:60 -msgid "Minimum length of search term for Ajax search" +#: conf/forum_data_rules.py:54 +msgid "Allow posting before logging in" msgstr "" -#: conf/forum_data_rules.py:61 -msgid "Must match the corresponding database backend setting" +#: conf/forum_data_rules.py:56 +msgid "" +"Check if you want to allow users start posting questions or answers before " +"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 "" -#: conf/forum_data_rules.py:70 -msgid "Maximum number of tags per question" -msgstr "Massimo numero di tag per domanda" +#: conf/forum_data_rules.py:71 +#, fuzzy +msgid "Allow swapping answer with question" +msgstr "Rispondi alla domanda" -#: conf/forum_data_rules.py:82 -msgid "Number of questions to list by default" -msgstr "Numero di domande da mostrare di default" +#: conf/forum_data_rules.py:73 +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 "" -#: conf/forum_data_rules.py:92 -msgid "What should \"unanswered question\" mean?" -msgstr "Cosa dovrebbe significare \"domande senza risposta\"?" +#: conf/forum_data_rules.py:85 +msgid "Maximum length of tag (number of characters)" +msgstr "Massima lunghezza di un tag (numero di caratteri)" -#: conf/markup.py:15 -msgid "Markup formatting" +#: conf/forum_data_rules.py:93 +#, fuzzy +msgid "Mandatory tags" +msgstr "ha aggiornato i tag" + +#: conf/forum_data_rules.py:96 +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/markup.py:29 -msgid "Enable code-friendly Markdown" +#: conf/forum_data_rules.py:108 +msgid "Force lowercase the tags" msgstr "" -#: conf/markup.py:31 +#: conf/forum_data_rules.py:110 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 " -"\"MathJax support\" implicitly turns this feature on, because underscores " -"are heavily used in LaTeX input." +"Attention: after checking this, please back up the database, and run a " +"management command: python manage.py fix_question_tags to " +"globally rename the tags" msgstr "" -#: conf/markup.py:46 -msgid "Mathjax support (rendering of LaTeX)" +#: conf/forum_data_rules.py:124 +msgid "Format of tag list" msgstr "" -#: conf/markup.py:48 -#, python-format +#: conf/forum_data_rules.py:126 msgid "" -"If you enable this feature, mathjax must be " -"installed in directory %(dir)s" +"Select the format to show tags in, either as a simple list, or as a tag cloud" msgstr "" -#: conf/markup.py:63 -msgid "Base url of MathJax deployment" -msgstr "" +#: conf/forum_data_rules.py:138 +#, fuzzy +msgid "Use wildcard tags" +msgstr "Tag" -#: conf/markup.py:65 +#: conf/forum_data_rules.py:140 msgid "" -"Note - MathJax is not included with askbot - you should " -"deploy it yourself, preferably at a separate domain and enter url pointing " -"to the \"mathjax\" directory (for example: http://mysite.com/mathjax)" +"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/minimum_reputation.py:11 -msgid "Minimum reputation required to perform actions" -msgstr "Reputazione minima per eseguire operazioni" +#: conf/forum_data_rules.py:153 +msgid "Default max number of comments to display under posts" +msgstr "" -#: conf/minimum_reputation.py:20 -msgid "Upvote" +#: conf/forum_data_rules.py:164 +#, python-format +msgid "Maximum comment length, must be < %(max_len)s" +msgstr "" + +#: conf/forum_data_rules.py:174 +msgid "Limit time to edit comments" +msgstr "" + +#: conf/forum_data_rules.py:176 +msgid "If unchecked, there will be no time limit to edit the comments" +msgstr "" + +#: conf/forum_data_rules.py:187 +msgid "Minutes allowed to edit a comment" +msgstr "" + +#: conf/forum_data_rules.py:188 +msgid "To enable this setting, check the previous one" +msgstr "" + +#: conf/forum_data_rules.py:197 +msgid "Save comment by pressing key" +msgstr "" + +#: conf/forum_data_rules.py:206 +msgid "Minimum length of search term for Ajax search" +msgstr "" + +#: conf/forum_data_rules.py:207 +msgid "Must match the corresponding database backend setting" +msgstr "" + +#: conf/forum_data_rules.py:216 +msgid "Do not make text query sticky in search" +msgstr "" + +#: conf/forum_data_rules.py:218 +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:231 +msgid "Maximum number of tags per question" +msgstr "Massimo numero di tag per domanda" + +#: conf/forum_data_rules.py:243 +msgid "Number of questions to list by default" +msgstr "Numero di domande da mostrare di default" + +#: conf/forum_data_rules.py:253 +msgid "What should \"unanswered question\" mean?" +msgstr "Cosa dovrebbe significare \"domande senza risposta\"?" + +#: conf/license.py:12 +#, fuzzy +msgid "License settings" +msgstr "Impostazioni base" + +#: conf/license.py:19 +msgid "Show license clause in the site footer" +msgstr "" + +#: conf/license.py:28 +msgid "Short name for the license" +msgstr "" + +#: conf/license.py:37 +msgid "Full name of the license" +msgstr "" + +#: conf/license.py:38 +msgid "Creative Commons Attribution Share Alike 3.0" +msgstr "" + +#: conf/license.py:46 +msgid "Add link to the license page" +msgstr "" + +#: conf/license.py:55 +#, fuzzy +msgid "License homepage" +msgstr "torna alla home page" + +#: conf/license.py:57 +msgid "URL of the official page with all the license legal clauses" +msgstr "" + +#: conf/license.py:67 +#, fuzzy +msgid "Use license logo" +msgstr "Logo del forum Q&A" + +#: conf/license.py:76 +msgid "License logo image" +msgstr "" + +#: conf/login_providers.py:12 +msgid "Login provider setings" +msgstr "" + +#: conf/login_providers.py:20 +msgid "" +"Show alternative login provider buttons on the password \"Sign Up\" page" +msgstr "" + +#: conf/login_providers.py:29 +msgid "Always display local login form and hide \"Askbot\" button." +msgstr "" + +#: conf/login_providers.py:38 +msgid "Activate to allow login with self-hosted wordpress site" +msgstr "" + +#: conf/login_providers.py:39 +msgid "" +"to activate this feature you must fill out the wordpress xml-rpc setting " +"bellow" +msgstr "" + +#: conf/login_providers.py:48 +msgid "" +"Fill it with the wordpress url to the xml-rpc, normally http://mysite.com/" +"xmlrpc.php" +msgstr "" + +#: conf/login_providers.py:49 +msgid "" +"To enable, go to Settings->Writing->Remote Publishing and check the box for " +"XML-RPC" +msgstr "" + +#: conf/login_providers.py:60 +msgid "Upload your icon" +msgstr "" + +#: conf/login_providers.py:90 +#, python-format +msgid "Activate %(provider)s login" +msgstr "" + +#: conf/login_providers.py:95 +#, python-format +msgid "" +"Note: to really enable %(provider)s login some additional parameters will " +"need to be set in the \"External keys\" section" +msgstr "" + +#: conf/markup.py:14 +msgid "Markup formatting" +msgstr "" + +#: conf/markup.py:39 +msgid "Enable code-friendly Markdown" +msgstr "" + +#: conf/markup.py:41 +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 " +"\"MathJax support\" implicitly turns this feature on, because underscores " +"are heavily used in LaTeX input." +msgstr "" + +#: conf/markup.py:56 +msgid "Mathjax support (rendering of LaTeX)" +msgstr "" + +#: conf/markup.py:58 +#, python-format +msgid "" +"If you enable this feature, mathjax must be " +"installed on your server in its own directory." +msgstr "" + +#: conf/markup.py:72 +msgid "Base url of MathJax deployment" +msgstr "" + +#: conf/markup.py:74 +msgid "" +"Note - MathJax is not included with askbot - 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 "" + +#: conf/markup.py:89 +msgid "Enable autolinking with specific patterns" +msgstr "" + +#: conf/markup.py:91 +msgid "" +"If you enable this feature, the application will be able to detect patterns " +"and auto link to URLs" +msgstr "" + +#: conf/markup.py:104 +msgid "Regexes to detect the link patterns" +msgstr "" + +#: conf/markup.py:106 +msgid "" +"Enter valid regular expressions for the patters, one per line. For example " +"to detect a bug pattern like #bug123, use the following regex: #bug(\\d+). " +"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 "" + +#: conf/markup.py:125 +msgid "URLs for autolinking" +msgstr "" + +#: conf/markup.py:127 +msgid "" +"Here, please enter url templates for the patterns entered in the previous " +"setting, also one entry per line. Make sure that number of lines in " +"this setting and the previous one are the same 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 "" + +#: conf/minimum_reputation.py:11 +msgid "Minimum reputation required to perform actions" +msgstr "Reputazione minima per eseguire operazioni" + +#: conf/minimum_reputation.py:20 +msgid "Upvote" msgstr "Dare un voto positivo" #: conf/minimum_reputation.py:29 @@ -657,57 +1168,77 @@ msgid "Downvote" msgstr "Dare un voto negativo" #: conf/minimum_reputation.py:38 +#, fuzzy +msgid "Answer own question immediately" +msgstr "Rispondi alla tua domanda" + +#: conf/minimum_reputation.py:47 +#, fuzzy +msgid "Accept own answer" +msgstr "modificare ogni risposta" + +#: conf/minimum_reputation.py:56 msgid "Flag offensive" msgstr "Segnalare come inappropriato" -#: conf/minimum_reputation.py:47 +#: conf/minimum_reputation.py:65 msgid "Leave comments" msgstr "Lasciare commenti" -#: conf/minimum_reputation.py:56 +#: conf/minimum_reputation.py:74 msgid "Delete comments posted by others" msgstr "Cancellare commenti inviati da altri" -#: conf/minimum_reputation.py:65 +#: conf/minimum_reputation.py:83 msgid "Delete questions and answers posted by others" msgstr "Cancellare domande e risposte inviate da altri" -#: conf/minimum_reputation.py:74 +#: conf/minimum_reputation.py:92 msgid "Upload files" msgstr "Caricare files" -#: conf/minimum_reputation.py:83 +#: conf/minimum_reputation.py:101 msgid "Close own questions" msgstr "Chiudere le proprie domande" -#: conf/minimum_reputation.py:92 +#: conf/minimum_reputation.py:110 msgid "Retag questions posted by other people" msgstr "Ritaggare domande inviate da altri utenti" -#: conf/minimum_reputation.py:101 +#: conf/minimum_reputation.py:119 msgid "Reopen own questions" msgstr "Riaprire le proprie domande" -#: conf/minimum_reputation.py:110 +#: conf/minimum_reputation.py:128 msgid "Edit community wiki posts" msgstr "Modificare le domande comunitarie" -#: conf/minimum_reputation.py:119 +#: conf/minimum_reputation.py:137 msgid "Edit posts authored by other people" msgstr "Modificare i post scritti da altri utenti" -#: conf/minimum_reputation.py:128 +#: conf/minimum_reputation.py:146 msgid "View offensive flags" msgstr "Visualizzare i flag inappropriati" -#: conf/minimum_reputation.py:137 +#: conf/minimum_reputation.py:155 msgid "Close questions asked by others" msgstr "Chiudere domande poste da altri" -#: conf/minimum_reputation.py:146 +#: conf/minimum_reputation.py:164 msgid "Lock posts" msgstr "Bloccare posts" +#: conf/minimum_reputation.py:173 +msgid "Remove rel=nofollow from own homepage" +msgstr "" + +#: conf/minimum_reputation.py:175 +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 "" + #: conf/reputation_changes.py:12 #, fuzzy msgid "Reputation loss and gain rules" @@ -779,55 +1310,169 @@ msgstr "" msgid "Loss for post owner when upvote is canceled" msgstr "Perdita per l'autore nel caso un voto positivo venga annullato" -#: conf/site_settings.py:13 +#: conf/sidebar_main.py:11 +msgid "Sidebar widget settings - main page" +msgstr "" + +#: conf/sidebar_main.py:18 conf/sidebar_profile.py:18 +#: conf/sidebar_question.py:18 +msgid "Custom sidebar header" +msgstr "" + +#: conf/sidebar_main.py:21 conf/sidebar_profile.py:21 +#: conf/sidebar_question.py:21 +msgid "" +"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." +msgstr "" + +#: conf/sidebar_main.py:34 +msgid "Show avatar block in sidebar" +msgstr "" + +#: conf/sidebar_main.py:36 +msgid "Uncheck this if you want to hide the avatar block from the sidebar " +msgstr "" + +#: conf/sidebar_main.py:47 +msgid "Limit how many avatars will be displayed on the sidebar" +msgstr "" + +#: conf/sidebar_main.py:57 +msgid "Show tag selector in sidebar" +msgstr "" + +#: conf/sidebar_main.py:59 +msgid "" +"Uncheck this if you want to hide the options for choosing interesting and " +"ignored tags " +msgstr "" + +#: conf/sidebar_main.py:70 +msgid "Show tag list/cloud in sidebar" +msgstr "" + +#: conf/sidebar_main.py:72 +msgid "" +"Uncheck this if you want to hide the tag cloud or tag list from the sidebar " +msgstr "" + +#: conf/sidebar_main.py:83 conf/sidebar_profile.py:34 +#: conf/sidebar_question.py:74 +msgid "Custom sidebar footer" +msgstr "" + +#: conf/sidebar_main.py:86 conf/sidebar_profile.py:37 +#: conf/sidebar_question.py:77 +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 "" + +#: conf/sidebar_profile.py:11 +msgid "Sidebar widget settings - profile page" +msgstr "" + +#: conf/sidebar_question.py:11 +msgid "Sidebar widget settings - question page" +msgstr "" + +#: conf/sidebar_question.py:34 +msgid "Show tag list in sidebar" +msgstr "" + +#: conf/sidebar_question.py:36 +msgid "Uncheck this if you want to hide the tag list from the sidebar " +msgstr "" + +#: conf/sidebar_question.py:47 +msgid "Show meta information in sidebar" +msgstr "" + +#: conf/sidebar_question.py:49 +msgid "" +"Uncheck this if you want to hide the meta information about the question " +"(post date, views, last updated). " +msgstr "" + +#: conf/sidebar_question.py:61 +#, fuzzy +msgid "Show related questions in sidebar" +msgstr "Domande simili" + +#: conf/sidebar_question.py:63 +#, fuzzy +msgid "Uncheck this if you want to hide the list of related questions. " +msgstr "clicca qui per vedere le domande modificate meno recentemente" + +#: conf/site_modes.py:63 +#, fuzzy +msgid "Site modes" +msgstr "Siti" + +#: conf/site_modes.py:72 +msgid "Activate a \"Bootstrap\" mode" +msgstr "" + +#: conf/site_modes.py:74 +msgid "" +"Bootstrap mode lowers reputation and certain badge thresholds, to values, " +"more suitable for the smaller communities, WARNING: your " +"current value for Minimum reputation, Bagde Settings and Vote Rules will be " +"changed after you modify this setting." +msgstr "" + +#: conf/site_settings.py:11 msgid "Q&A forum website parameters and urls" msgstr "Parametri ed url per il Q&A forum" -#: conf/site_settings.py:21 +#: conf/site_settings.py:19 msgid "Site title for the Q&A forum" msgstr "Titolo del sito per il Q&A forum" -#: conf/site_settings.py:30 +#: conf/site_settings.py:28 msgid "Comma separated list of Q&A site keywords" msgstr "Lista di parole chiave per il Q&A forum, separate da virgole" -#: conf/site_settings.py:40 +#: conf/site_settings.py:37 msgid "Copyright message to show in the footer" msgstr "Messaggio di Copyright da mostrare in fondo alla pagina" -#: conf/site_settings.py:50 +#: conf/site_settings.py:47 msgid "Site description for the search engines" msgstr "Descrizione del sito per i motori di ricerca" -#: conf/site_settings.py:58 -msgid "Askbot" -msgstr "Askbot" - -#: conf/site_settings.py:59 +#: conf/site_settings.py:56 msgid "Short name for your Q&A forum" msgstr "Nome breve per il tuo forum Q&A" -#: conf/site_settings.py:69 +#: conf/site_settings.py:66 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:82 -msgid "Link shown in the greeting message shown to the anonymous user" +#: conf/site_settings.py:77 +#, fuzzy +msgid "Check to enable greeting for anonymous user" +msgstr "Email fasulla per gli utenti non registrati" + +#: conf/site_settings.py:88 +#, fuzzy +msgid "Text shown in the greeting message shown to the anonymous user" msgstr "Link mostrato agli utenti non registrati nel messaggio di benvenuto" -#: conf/site_settings.py:85 -msgid "" -"If you change this url from the default - then you will also probably want " -"to adjust translation of the following string: " +#: conf/site_settings.py:92 +msgid "Use HTML to format the message " msgstr "" -"Se cambi l'impostazione di questo url, allora probabilmente vorrai anche " -"modificare la traduzione del testo seguente:" -#: conf/site_settings.py:98 +#: conf/site_settings.py:101 msgid "Feedback site URL" msgstr "URL di un sito esterno per i contatti" -#: conf/site_settings.py:100 +#: conf/site_settings.py:103 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" @@ -941,24 +1586,34 @@ msgstr "Colore di sfondo per le domande con una this page." msgstr "" -#: conf/skin_general_settings.py:56 +#: conf/skin_general_settings.py:71 msgid "Password login button" msgstr "" -#: conf/skin_general_settings.py:58 +#: conf/skin_general_settings.py:73 msgid "" "An 88x38 pixel image that is used on the login screen for the password login " "button." msgstr "" -#: conf/skin_general_settings.py:73 +#: conf/skin_general_settings.py:88 msgid "Show all UI functions to all users" msgstr "Mostra tutte le funzionalità a tutti gli utenti" -#: conf/skin_general_settings.py:75 +#: conf/skin_general_settings.py:90 msgid "" "If checked, all forum functions will be shown to users, regardless of their " "reputation. However to use those functions, moderation rules, reputation and " @@ -990,43 +1645,208 @@ 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:90 +#: conf/skin_general_settings.py:105 msgid "Select skin" msgstr "Scegli skin" -#: conf/skin_general_settings.py:99 -msgid "Skin media revision number" -msgstr "Numero di revisione dei media della skin" +#: conf/skin_general_settings.py:116 +msgid "Customize HTML " +msgstr "" + +#: conf/skin_general_settings.py:125 +msgid "Custom portion of the HTML " +msgstr "" -#: conf/skin_general_settings.py:101 +#: conf/skin_general_settings.py:127 msgid "" -"Increment this number when you change image in skin media or stylesheet. " -"This helps avoid showing your users outdated images from their browser cache." +"To use this option, check \"Customize HTML <HEAD>\" " +"above. Contents of this box will be inserted into the <HEAD> portion " +"of the HTML output, where elements such as <script>, <link>, <" +"meta> may be added. Please, keep in mind that adding external javascript " +"to the <HEAD> 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. Note: if you do use this setting, " +"please test the site with the W3C HTML validator service." msgstr "" -"Incrementa questo numero quando cambi un'immagine o un media nella skin o " -"nel foglio di stile. Questo fa in modo che gli utenti non visualizzino " -"immagini vecchie provenienti dalla cache del loro browser." -#: conf/social_sharing.py:10 -msgid "Sharing content on social networks" +#: conf/skin_general_settings.py:149 +msgid "Custom header additions" msgstr "" -#: conf/social_sharing.py:18 -msgid "Check to enable sharing of questions on Twitter and Facebook" +#: conf/skin_general_settings.py:151 +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 " +"headerin the HTML format. When customizing the site header (as well as " +"footer and the HTML <HEAD>), use the HTML validation service to make " +"sure that your input is valid and works well in all browsers." msgstr "" -#: conf/user_settings.py:10 -msgid "User policy settings" -msgstr "Impostazioni dei diritti degli utenti" +#: conf/skin_general_settings.py:166 +msgid "Site footer mode" +msgstr "" -#: conf/user_settings.py:18 -msgid "Allow editing user screen name" -msgstr "Permetti di modificare il nome utente visualizzato" +#: conf/skin_general_settings.py:168 +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/user_settings.py:28 -msgid "Minimum allowed length for screen name" +#: conf/skin_general_settings.py:185 +msgid "Custom footer (HTML format)" +msgstr "" + +#: conf/skin_general_settings.py:187 +msgid "" +"To enable this function, please select option 'customize' " +"in the \"Site footer mode\" above. Use this area to enter contents of the " +"footer in the HTML format. When customizing the site footer (as well as the " +"header and HTML <HEAD>), use the HTML validation service to make sure " +"that your input is valid and works well in all browsers." +msgstr "" + +#: conf/skin_general_settings.py:202 +msgid "Apply custom style sheet (CSS)" +msgstr "" + +#: conf/skin_general_settings.py:204 +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:216 +msgid "Custom style sheet (CSS)" +msgstr "" + +#: conf/skin_general_settings.py:218 +msgid "" +"To use this function, 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 \"<forum url>/custom.css\", where the \"<forum url> part " +"depends (default is empty string) on the url configuration in your urls.py." +msgstr "" + +#: conf/skin_general_settings.py:234 +msgid "Add custom javascript" +msgstr "" + +#: conf/skin_general_settings.py:237 +msgid "Check to enable javascript that you can enter in the next field" +msgstr "" + +#: conf/skin_general_settings.py:247 +msgid "Custom javascript" +msgstr "" + +#: conf/skin_general_settings.py:249 +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 \"<forum url>/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 (to " +"enable your custom code, check \"Add custom javascript\" option " +"above)." +msgstr "" + +#: conf/skin_general_settings.py:267 +msgid "Skin media revision number" +msgstr "Numero di revisione dei media della skin" + +#: conf/skin_general_settings.py:269 +msgid "Will be set automatically but you can modify it if necessary." +msgstr "" + +#: conf/skin_general_settings.py:280 +msgid "Hash to update the media revision number automatically." +msgstr "" + +#: conf/skin_general_settings.py:284 +msgid "Will be set automatically, it is not necesary to modify manually." +msgstr "" + +#: conf/social_sharing.py:10 +msgid "Sharing content on social networks" +msgstr "" + +#: conf/social_sharing.py:18 +#, fuzzy +msgid "Check to enable sharing of questions on Twitter" +msgstr "Riapri questa domanda" + +#: conf/social_sharing.py:27 +msgid "Check to enable sharing of questions on Facebook" +msgstr "" + +#: conf/social_sharing.py:36 +msgid "Check to enable sharing of questions on LinkedIn" +msgstr "" + +#: conf/social_sharing.py:45 +msgid "Check to enable sharing of questions on Identi.ca" +msgstr "" + +#: conf/social_sharing.py:54 +msgid "Check to enable sharing of questions on Google+" +msgstr "" + +#: conf/spam_and_moderation.py:9 +msgid "Spam control and content moderation" +msgstr "" + +#: conf/spam_and_moderation.py:16 +msgid "Enable Akismet spam detection(keys below are required)" +msgstr "" + +#: conf/spam_and_moderation.py:19 +#, python-format +msgid "To get an Akismet key please visit Akismet site" +msgstr "" + +#: conf/spam_and_moderation.py:29 +msgid "Akismet key for spam detection" +msgstr "" + +#: conf/user_settings.py:11 +#, fuzzy +msgid "User settings" +msgstr "Impostazioni dei diritti degli utenti" + +#: conf/user_settings.py:19 +msgid "Allow editing user screen name" +msgstr "Permetti di modificare il nome utente visualizzato" + +#: conf/user_settings.py:28 +#, fuzzy +msgid "Allow account recovery by email" +msgstr "Consenti solo un account per indirizzo email" + +#: conf/user_settings.py:37 +msgid "Allow adding and removing login methods" +msgstr "" + +#: conf/user_settings.py:47 +msgid "Minimum allowed length for screen name" msgstr "Lunghezza minima per il nome utente visualizzato" +#: conf/user_settings.py:57 +msgid "Default Gravatar icon type" +msgstr "" + +#: conf/user_settings.py:59 +msgid "" +"This option allows you to set the default avatar type for email addresses " +"without associated gravatar images. For more information, please visit this page." +msgstr "" + +#: conf/user_settings.py:69 +#, fuzzy +msgid "Name for the Anonymous user" +msgstr "Email fasulla per gli utenti non registrati" + #: conf/vote_rules.py:13 msgid "Limits applicable to votes and moderation flags" msgstr "Limiti riguardanti i voti e i post segnati come inappropriati" @@ -1050,287 +1870,428 @@ msgid "Number of days to allow canceling votes" msgstr "Numero di giorni per consentire di cancellare voti" #: conf/vote_rules.py:58 +#, fuzzy +msgid "Number of days required before answering own question" +msgstr "Numero di giorni per consentire di cancellare voti" + +#: conf/vote_rules.py:67 msgid "Number of flags required to automatically hide posts" msgstr "" "Numero di segnalazioni come inappropriato dopo il quale il post viene " "nascosto automaticamente" -#: conf/vote_rules.py:67 +#: conf/vote_rules.py:76 msgid "Number of flags required to automatically delete posts" msgstr "" "Numero di segnalazioni come inappropriato dopo il quale il post viene " "cancellato automaticamente" -#: const/__init__.py:9 +#: const/__init__.py:10 msgid "duplicate question" msgstr "la domanda è già stata posta" -#: const/__init__.py:10 +#: const/__init__.py:11 msgid "question is off-topic or not relevant" msgstr "la domanda è off-topic o non rilevante" -#: const/__init__.py:11 +#: const/__init__.py:12 msgid "too subjective and argumentative" msgstr "troppo soggettiva e polemica" -#: const/__init__.py:12 +#: const/__init__.py:13 msgid "not a real question" msgstr "non è una domanda" -#: const/__init__.py:13 +#: const/__init__.py:14 msgid "the question is answered, right answer was accepted" msgstr "" "la domanda è già stata posta e una risposta corretta è stata accettata." -#: const/__init__.py:14 +#: const/__init__.py:15 msgid "question is not relevant or outdated" msgstr "la domanda non è pertinente o è obsoleta" -#: const/__init__.py:15 +#: const/__init__.py:16 msgid "question contains offensive or malicious remarks" msgstr "la domanda contiene commenti offensivi o maligni" -#: const/__init__.py:16 +#: const/__init__.py:17 msgid "spam or advertising" msgstr "spam o pubblicità" -#: const/__init__.py:17 +#: const/__init__.py:18 msgid "too localized" msgstr "troppo specifica" -#: const/__init__.py:40 +#: const/__init__.py:41 msgid "newest" msgstr "più recenti" -#: const/__init__.py:41 skins/default/templates/users.html:25 -#: skins/default/templates/users.html:26 +#: const/__init__.py:42 skins/default/templates/users.html:26 msgid "oldest" msgstr "meno recenti" -#: const/__init__.py:42 +#: const/__init__.py:43 msgid "active" msgstr "attive" -#: const/__init__.py:43 +#: const/__init__.py:44 msgid "inactive" msgstr "inattive" -#: const/__init__.py:44 +#: const/__init__.py:45 msgid "hottest" msgstr "più attive" -#: const/__init__.py:45 +#: const/__init__.py:46 msgid "coldest" msgstr "meno attive" -#: const/__init__.py:46 +#: const/__init__.py:47 msgid "most voted" msgstr "più votate" -#: const/__init__.py:47 +#: const/__init__.py:48 msgid "least voted" msgstr "meno votate" -#: const/__init__.py:48 +#: const/__init__.py:49 msgid "relevance" msgstr "rilevanza" -#: const/__init__.py:55 skins/default/templates/questions.html:14 -#: skins/default/templates/user_inbox.html:47 +#: const/__init__.py:57 skins/default/templates/main_page/tab_bar.html:10 +#: skins/default/templates/user_profile/user_inbox.html:50 msgid "all" msgstr "tutte" -#: const/__init__.py:56 skins/default/templates/questions.html:19 +#: const/__init__.py:58 skins/default/templates/main_page/tab_bar.html:15 msgid "unanswered" msgstr "senza risposta" -#: const/__init__.py:57 skins/default/templates/questions.html:25 +#: const/__init__.py:59 msgid "favorite" msgstr "preferite" -#: const/__init__.py:70 +#: const/__init__.py:64 +#, fuzzy +msgid "list" +msgstr "Lista dei tag" + +#: const/__init__.py:65 +msgid "cloud" +msgstr "" + +#: const/__init__.py:78 msgid "Question has no answers" msgstr "La domanda non ha risposte" -#: const/__init__.py:71 +#: const/__init__.py:79 msgid "Question has no accepted answers" msgstr "La domanda non ha risposte accettate" -#: const/__init__.py:111 +#: const/__init__.py:121 msgid "asked a question" msgstr "ha posto una domanda" -#: const/__init__.py:112 +#: const/__init__.py:122 msgid "answered a question" msgstr "ha risposto a una domanda" -#: const/__init__.py:113 +#: const/__init__.py:123 msgid "commented question" msgstr "ha commentato una domanda" -#: const/__init__.py:114 +#: const/__init__.py:124 msgid "commented answer" msgstr "ha commentato una risposta" -#: const/__init__.py:115 +#: const/__init__.py:125 msgid "edited question" msgstr "ha modificato una domanda" -#: const/__init__.py:116 +#: const/__init__.py:126 msgid "edited answer" msgstr "ha modificato una risposta" -#: const/__init__.py:117 +#: const/__init__.py:127 msgid "received award" msgstr "ha ricevuto una medaglia" -#: const/__init__.py:118 +#: const/__init__.py:128 msgid "marked best answer" msgstr "ha accettato una risposta" -#: const/__init__.py:119 +#: const/__init__.py:129 msgid "upvoted" msgstr "ha dato un voto positivo" -#: const/__init__.py:120 +#: const/__init__.py:130 msgid "downvoted" msgstr "ha dato un voto positivo" -#: const/__init__.py:121 +#: const/__init__.py:131 msgid "canceled vote" msgstr "ha annullato un voto" -#: const/__init__.py:122 +#: const/__init__.py:132 msgid "deleted question" msgstr "ha cancellato una domanda" -#: const/__init__.py:123 +#: const/__init__.py:133 msgid "deleted answer" msgstr "ha cancellato una risposta" -#: const/__init__.py:124 +#: const/__init__.py:134 msgid "marked offensive" msgstr "ha segnalato come inappropriata" -#: const/__init__.py:125 +#: const/__init__.py:135 msgid "updated tags" msgstr "ha aggiornato i tag" -#: const/__init__.py:126 +#: const/__init__.py:136 msgid "selected favorite" msgstr "ha scelto un tag preferito" -#: const/__init__.py:127 +#: const/__init__.py:137 msgid "completed user profile" msgstr "ha completato il suo profilo utente" -#: const/__init__.py:128 +#: const/__init__.py:138 msgid "email update sent to user" msgstr "aggiornamento via mail inviato all'utente" -#: const/__init__.py:129 +#: const/__init__.py:141 +#, fuzzy +msgid "reminder about unanswered questions sent" +msgstr "vedi domande senza risposta" + +#: const/__init__.py:143 msgid "mentioned in the post" msgstr "menzionato nel post" -#: const/__init__.py:180 +#: const/__init__.py:194 msgid "question_answered" msgstr "risposta_a_una_domanda" -#: const/__init__.py:181 +#: const/__init__.py:195 msgid "question_commented" msgstr "commento_a_una_domanda" -#: const/__init__.py:182 +#: const/__init__.py:196 msgid "answer_commented" msgstr "risposta_commentata" -#: const/__init__.py:183 +#: const/__init__.py:197 msgid "answer_accepted" msgstr "risposta_accettata" -#: const/__init__.py:187 +#: const/__init__.py:201 msgid "[closed]" msgstr "[chiusa]" -#: const/__init__.py:188 +#: const/__init__.py:202 msgid "[deleted]" msgstr "[cancellata]" -#: const/__init__.py:189 views/readers.py:549 +#: const/__init__.py:203 views/readers.py:614 msgid "initial version" msgstr "versione iniziale" -#: const/__init__.py:190 +#: const/__init__.py:204 msgid "retagged" msgstr "ritaggata" -#: const/__init__.py:195 -msgid "exclude ignored tags" +#: const/__init__.py:212 +msgid "off" +msgstr "" + +#: const/__init__.py:213 +#, fuzzy +msgid "exclude ignored" msgstr "escludi tag ignorati" -#: const/__init__.py:196 -msgid "allow only selected tags" -msgstr "consenti solo i tag selezionati" +#: const/__init__.py:214 +#, fuzzy +msgid "only selected" +msgstr "Selezionato individualmente" -#: const/__init__.py:200 +#: const/__init__.py:218 msgid "instantly" msgstr "immediatamente" -#: const/__init__.py:201 +#: const/__init__.py:219 msgid "daily" msgstr "ogni giorno" -#: const/__init__.py:202 +#: const/__init__.py:220 msgid "weekly" msgstr "ogni settimana" -#: const/__init__.py:203 +#: const/__init__.py:221 msgid "no email" msgstr "mai" +#: const/__init__.py:228 +msgid "identicon" +msgstr "" + +#: const/__init__.py:229 +#, fuzzy +msgid "mystery-man" +msgstr "ieri" + +#: const/__init__.py:230 +msgid "monsterid" +msgstr "" + +#: const/__init__.py:231 +#, fuzzy +msgid "wavatar" +msgstr "" +"Come cambio la mia immagine personale (gravatar)? Che cos'è il gravatar?" + +#: const/__init__.py:232 +msgid "retro" +msgstr "" + +#: const/__init__.py:279 skins/default/templates/badges.html:37 +msgid "gold" +msgstr "oro" + +#: const/__init__.py:280 skins/default/templates/badges.html:46 +msgid "silver" +msgstr "argento" + +#: const/__init__.py:281 skins/default/templates/badges.html:53 +msgid "bronze" +msgstr "bronzo" + +#: const/__init__.py:293 +msgid "None" +msgstr "" + +#: const/__init__.py:294 +msgid "Gravatar" +msgstr "" + +#: const/__init__.py:295 +msgid "Uploaded Avatar" +msgstr "" + +#: const/message_keys.py:15 +#, fuzzy +msgid "most relevant questions" +msgstr "poni una domanda interessante per gli altri" + +#: const/message_keys.py:16 +#, fuzzy +msgid "click to see most relevant questions" +msgstr "clicca qui per vedere le domande più votate" + +#: const/message_keys.py:17 +#, fuzzy +msgid "by relevance" +msgstr "rilevanza" + +#: const/message_keys.py:18 +msgid "click to see the oldest questions" +msgstr "clicca qui per vedere le domande più vecchie" + #: const/message_keys.py:19 -#, python-format -msgid "First time here? Check out the FAQ!" -msgstr "Prima volta quì? Controlla le FAQ!" +#, fuzzy +msgid "by date" +msgstr "Conferma" + +#: const/message_keys.py:20 +msgid "click to see the newest questions" +msgstr "clicca qui per vedere le domande più nuove" -#: deps/django_authopenid/forms.py:116 deps/django_authopenid/views.py:137 +#: const/message_keys.py:21 +msgid "click to see the least recently updated questions" +msgstr "clicca qui per vedere le domande modificate meno recentemente" + +#: const/message_keys.py:22 +#, fuzzy +msgid "by activity" +msgstr "attività" + +#: const/message_keys.py:23 +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 +#, fuzzy +msgid "click to see the least answered questions" +msgstr "clicca qui per vedere le domande più vecchie" + +#: const/message_keys.py:25 +#, fuzzy +msgid "by answers" +msgstr "risposte" + +#: const/message_keys.py:26 +#, fuzzy +msgid "click to see the most answered questions" +msgstr "clicca qui per vedere le domande più votate" + +#: const/message_keys.py:27 +msgid "click to see least voted questions" +msgstr "clicca per vedere le domande meno votate" + +#: const/message_keys.py:28 +#, fuzzy +msgid "by votes" +msgstr "voti" + +#: const/message_keys.py:29 +msgid "click to see most voted questions" +msgstr "clicca qui per vedere le domande più votate" + +#: deps/django_authopenid/backends.py:88 +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 msgid "i-names are not supported" msgstr "i-names non sono supportati" -#: deps/django_authopenid/forms.py:237 +#: deps/django_authopenid/forms.py:233 #, fuzzy, python-format msgid "Please enter your %(username_token)s" msgstr "Per favore inserisci il tuo username" -#: deps/django_authopenid/forms.py:263 +#: deps/django_authopenid/forms.py:259 #, fuzzy msgid "Please, enter your user name" msgstr "Per favore inserisci il tuo username" -#: deps/django_authopenid/forms.py:267 +#: deps/django_authopenid/forms.py:263 #, fuzzy msgid "Please, enter your password" msgstr "Per favore inserisci la tua password" -#: deps/django_authopenid/forms.py:274 deps/django_authopenid/forms.py:278 +#: deps/django_authopenid/forms.py:270 deps/django_authopenid/forms.py:274 #, fuzzy msgid "Please, enter your new password" msgstr "Per favore inserisci la tua password" -#: deps/django_authopenid/forms.py:289 +#: deps/django_authopenid/forms.py:285 msgid "Passwords did not match" msgstr "" -#: deps/django_authopenid/forms.py:301 +#: deps/django_authopenid/forms.py:297 #, python-format msgid "Please choose password > %(len)s characters" msgstr "" -#: deps/django_authopenid/forms.py:336 +#: deps/django_authopenid/forms.py:335 msgid "Current password" msgstr "Password corrente" -#: deps/django_authopenid/forms.py:347 +#: deps/django_authopenid/forms.py:346 msgid "" "Old password is incorrect. Please enter the correct " "password." @@ -1338,7 +2299,7 @@ msgstr "" "La vecchia password non è corretta. Per favore inserisci la password " "corretta." -#: deps/django_authopenid/forms.py:400 +#: deps/django_authopenid/forms.py:399 msgid "Sorry, we don't have this email address in the database" msgstr "" @@ -1350,215 +2311,210 @@ msgstr "Il tuo username (required)" msgid "Incorrect username." msgstr "Mi spiace, questo username non esiste" -#: deps/django_authopenid/urls.py:10 deps/django_authopenid/urls.py:11 -#: deps/django_authopenid/urls.py:12 deps/django_authopenid/urls.py:15 -#: deps/django_authopenid/urls.py:18 setup_templates/settings.py:182 +#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12 +#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:202 msgid "signin/" msgstr "signin/" -#: deps/django_authopenid/urls.py:11 -msgid "newquestion/" -msgstr "nuovadomanda/" - -#: deps/django_authopenid/urls.py:12 -msgid "newanswer/" -msgstr "nuovarisposta/" - -#: deps/django_authopenid/urls.py:13 +#: deps/django_authopenid/urls.py:10 msgid "signout/" msgstr "signout/" -#: deps/django_authopenid/urls.py:15 +#: deps/django_authopenid/urls.py:12 msgid "complete/" msgstr "complete/" -#: deps/django_authopenid/urls.py:18 +#: deps/django_authopenid/urls.py:15 #, fuzzy msgid "complete-oauth/" msgstr "complete/" -#: deps/django_authopenid/urls.py:22 +#: deps/django_authopenid/urls.py:19 msgid "register/" msgstr "registrati/" -#: deps/django_authopenid/urls.py:24 +#: deps/django_authopenid/urls.py:21 msgid "signup/" msgstr "signup/" -#: deps/django_authopenid/urls.py:32 +#: deps/django_authopenid/urls.py:25 +msgid "logout/" +msgstr "logout/" + +#: deps/django_authopenid/urls.py:30 #, fuzzy msgid "recover/" msgstr "riapri/" -#: deps/django_authopenid/util.py:196 +#: deps/django_authopenid/util.py:378 #, fuzzy, python-format msgid "%(site)s user name and password" msgstr "Per favore inserisci username e password" -#: deps/django_authopenid/util.py:202 -#: skins/default/templates/authopenid/signin.html:124 +#: deps/django_authopenid/util.py:384 +#: skins/default/templates/authopenid/signin.html:108 msgid "Create a password-protected account" msgstr "" -#: deps/django_authopenid/util.py:203 +#: deps/django_authopenid/util.py:385 #, fuzzy msgid "Change your password" msgstr "Cambia password" -#: deps/django_authopenid/util.py:265 +#: deps/django_authopenid/util.py:473 msgid "Sign in with Yahoo" msgstr "" -#: deps/django_authopenid/util.py:272 +#: deps/django_authopenid/util.py:480 #, fuzzy msgid "AOL screen name" msgstr "Nome utente" -#: deps/django_authopenid/util.py:280 +#: deps/django_authopenid/util.py:488 #, fuzzy msgid "OpenID url" msgstr "url OpenID:" -#: deps/django_authopenid/util.py:297 -#, fuzzy -msgid "MyOpenid user name" -msgstr "per nome" - -#: deps/django_authopenid/util.py:305 deps/django_authopenid/util.py:313 +#: deps/django_authopenid/util.py:517 #, fuzzy msgid "Flickr user name" msgstr "nome utente" -#: deps/django_authopenid/util.py:321 +#: deps/django_authopenid/util.py:525 #, fuzzy msgid "Technorati user name" msgstr "Scegli un nome utente" -#: deps/django_authopenid/util.py:329 +#: deps/django_authopenid/util.py:533 msgid "WordPress blog name" msgstr "" -#: deps/django_authopenid/util.py:337 +#: deps/django_authopenid/util.py:541 msgid "Blogger blog name" msgstr "" -#: deps/django_authopenid/util.py:345 +#: deps/django_authopenid/util.py:549 msgid "LiveJournal blog name" msgstr "" -#: deps/django_authopenid/util.py:353 +#: deps/django_authopenid/util.py:557 #, fuzzy msgid "ClaimID user name" msgstr "nome utente" -#: deps/django_authopenid/util.py:361 +#: deps/django_authopenid/util.py:565 #, fuzzy msgid "Vidoop user name" msgstr "nome utente" -#: deps/django_authopenid/util.py:369 +#: deps/django_authopenid/util.py:573 #, fuzzy msgid "Verisign user name" msgstr "nome utente" -#: deps/django_authopenid/util.py:393 +#: deps/django_authopenid/util.py:608 #, fuzzy, python-format msgid "Change your %(provider)s password" msgstr "Cambia password" -#: deps/django_authopenid/util.py:397 +#: deps/django_authopenid/util.py:612 #, python-format msgid "Click to see if your %(provider)s signin still works for %(site_name)s" msgstr "" -#: deps/django_authopenid/util.py:406 +#: deps/django_authopenid/util.py:621 #, python-format msgid "Create password for %(provider)s" msgstr "" -#: deps/django_authopenid/util.py:410 +#: deps/django_authopenid/util.py:625 #, fuzzy, python-format msgid "Connect your %(provider)s account to %(site_name)s" msgstr "Utilizza OpenID per accedere a questo sito" -#: deps/django_authopenid/util.py:419 +#: deps/django_authopenid/util.py:634 #, fuzzy, python-format msgid "Signin with %(provider)s user name and password" msgstr "Per favore inserisci username e password" -#: deps/django_authopenid/util.py:426 +#: deps/django_authopenid/util.py:641 #, python-format msgid "Sign in with your %(provider)s account" msgstr "" -#: deps/django_authopenid/views.py:144 +#: deps/django_authopenid/views.py:158 #, python-format msgid "OpenID %(openid_url)s is invalid" msgstr "L'OpenID %(openid_url)s non è valido" -#: deps/django_authopenid/views.py:256 deps/django_authopenid/views.py:399 -#: deps/django_authopenid/views.py:427 +#: deps/django_authopenid/views.py:270 deps/django_authopenid/views.py:415 +#: deps/django_authopenid/views.py:443 #, 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:349 +#: deps/django_authopenid/views.py:365 #, fuzzy msgid "Your new password saved" msgstr "New password created" -#: deps/django_authopenid/views.py:511 +#: deps/django_authopenid/views.py:469 +msgid "The login password combination was not correct" +msgstr "" + +#: deps/django_authopenid/views.py:573 msgid "Please click any of the icons below to sign in" msgstr "" -#: deps/django_authopenid/views.py:513 +#: deps/django_authopenid/views.py:575 msgid "Account recovery email sent" msgstr "" -#: deps/django_authopenid/views.py:516 +#: deps/django_authopenid/views.py:578 msgid "Please add one or more login methods." msgstr "" -#: deps/django_authopenid/views.py:518 +#: deps/django_authopenid/views.py:580 msgid "If you wish, please add, remove or re-validate your login methods" msgstr "" -#: deps/django_authopenid/views.py:520 +#: deps/django_authopenid/views.py:582 msgid "Please wait a second! Your account is recovered, but ..." msgstr "" -#: deps/django_authopenid/views.py:522 +#: deps/django_authopenid/views.py:584 msgid "Sorry, this account recovery key has expired or is invalid" msgstr "" -#: deps/django_authopenid/views.py:578 +#: deps/django_authopenid/views.py:657 #, python-format msgid "Login method %(provider_name)s does not exist" msgstr "" -#: deps/django_authopenid/views.py:584 +#: deps/django_authopenid/views.py:663 #, fuzzy msgid "Oops, sorry - there was some error - please try again" msgstr "le due password non coincidono, riprova" -#: deps/django_authopenid/views.py:675 +#: deps/django_authopenid/views.py:754 #, python-format msgid "Your %(provider)s login works fine" msgstr "" -#: deps/django_authopenid/views.py:973 deps/django_authopenid/views.py:979 +#: deps/django_authopenid/views.py:1065 deps/django_authopenid/views.py:1071 #, python-format msgid "your email needs to be validated see %(details_url)s" msgstr "" "Il tuo indirizzo e-mail dev'essere verificato — vedi %(details_url)s" -#: deps/django_authopenid/views.py:1000 -msgid "Email verification subject line" -msgstr "Messaggio di verifica" +#: deps/django_authopenid/views.py:1092 +#, fuzzy, python-format +msgid "Recover your %(site)s account" +msgstr "Scegli una nuova password" -#: deps/django_authopenid/views.py:1065 +#: deps/django_authopenid/views.py:1162 msgid "Please check your email and visit the enclosed link." msgstr "" @@ -1566,24 +2522,24 @@ msgstr "" msgid "Site" msgstr "Sito" -#: deps/livesettings/values.py:107 +#: deps/livesettings/values.py:106 msgid "Base Settings" msgstr "Impostazioni base" -#: deps/livesettings/values.py:214 +#: deps/livesettings/values.py:213 msgid "Default value: \"\"" msgstr "Valore predefinito: \"\"" -#: deps/livesettings/values.py:221 +#: deps/livesettings/values.py:220 msgid "Default value: " msgstr "Valore predefinito:" -#: deps/livesettings/values.py:224 +#: deps/livesettings/values.py:223 #, python-format msgid "Default value: %s" msgstr "Valore predefinito: %s" -#: deps/livesettings/values.py:589 +#: deps/livesettings/values.py:601 #, python-format msgid "Allowed image file types are %(types)s" msgstr "I tipi di file immagine consentiti sono %(types)s" @@ -1599,7 +2555,7 @@ msgstr "Documentazione" #: deps/livesettings/templates/livesettings/group_settings.html:11 #: deps/livesettings/templates/livesettings/site_settings.html:23 -#: skins/default/templates/authopenid/signin.html:142 +#: skins/default/templates/authopenid/signin.html:132 msgid "Change password" msgstr "Cambia password" @@ -1661,61 +2617,58 @@ msgstr "Impostazioni per i gruppi: %(name)s" msgid "Uncollapse all" msgstr "Espandi tutti" -#: deps/recaptcha_django/__init__.py:19 deps/recaptcha_django/__init__.py:80 -msgid "Unknown error." -msgstr "Errore sconosciuto" - -#: deps/recaptcha_django/__init__.py:20 deps/recaptcha_django/__init__.py:21 -msgid "ReCAPTCHA is wrongly configured." -msgstr "Il reCAPTCHA è configurato in modo errato" - -#: deps/recaptcha_django/__init__.py:22 -msgid "Bad reCAPTCHA challenge parameter." -msgstr "Il reCAPTCHA challenge parameter non è valido" - -#: deps/recaptcha_django/__init__.py:23 -msgid "The CAPTCHA solution was incorrect." -msgstr "La soluzione del CAPTCHA non è esatta" - -#: deps/recaptcha_django/__init__.py:24 -msgid "Bad reCAPTCHA verification parameters." -msgstr "Il verification parameter del reCAPTCHA non è valido" +#: importers/stackexchange/management/commands/load_stackexchange.py:141 +msgid "Congratulations, you are now an Administrator" +msgstr "Congratulazioni, ora sei un Amministratore" -#: deps/recaptcha_django/__init__.py:25 -msgid "Provided reCAPTCHA API keys are not valid for this domain." +#: 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 "" -"Le API keys per il reCAPTCHA fornite non sono valide per questo dominio" - -#: deps/recaptcha_django/__init__.py:26 -msgid "ReCAPTCHA could not be reached." -msgstr "Non è stato possibile contattare il server reCAPTCHA " -#: deps/recaptcha_django/__init__.py:73 -msgid "Invalid request" -msgstr "Richiesta non valida" - -#: importers/stackexchange/management/commands/load_stackexchange.py:125 -msgid "Congratulations, you are now an Administrator" -msgstr "Congratulazioni, ora sei un Amministratore" +#: management/commands/post_emailed_questions.py:35 +msgid "" +"

      To ask by email, please:

      \n" +"
        \n" +"
      • Format the subject line as: [Tag1; Tag2] Question title
      • \n" +"
      • Type details of your question into the email body
      • \n" +"
      \n" +"

      Note that tags may consist of more than one word, and tags\n" +"may be separated by a semicolon or a comma

      \n" +msgstr "" -#: management/commands/send_email_alerts.py:105 +#: management/commands/post_emailed_questions.py:55 #, python-format -msgid "\" and \"%s\"" +msgid "" +"

      Sorry, there was an error posting your question please contact the " +"%(site)s administrator

      " msgstr "" -#: management/commands/send_email_alerts.py:108 -#, fuzzy -msgid "\" and more" -msgstr "Scopri di più" - -#: management/commands/send_email_alerts.py:113 +#: management/commands/post_emailed_questions.py:61 #, python-format -msgid "%(question_count)d updated question about %(topics)s" +msgid "" +"

      Sorry, in order to post questions on %(site)s by email, please register first

      " +msgstr "" + +#: management/commands/post_emailed_questions.py:69 +msgid "" +"

      Sorry, your question could not be posted due to insufficient privileges " +"of your user account

      " +msgstr "" + +#: management/commands/send_email_alerts.py:411 +#, 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:467 +#: management/commands/send_email_alerts.py:421 #, python-format msgid "%(name)s, this is an update message header for %(num)d question" msgid_plural "%(name)s, this is an update message header for %(num)d questions" @@ -1723,14 +2676,14 @@ msgstr[0] "" "

      Caro %(name)s,

      ci sono degli aggiornamenti riguardanti questa " "domanda sul forum Q&A:

      " msgstr[1] "" -"

      Caro %(name)s,

      ci sono degli aggiornamenti riguardanti queste %" -"(num) domande sul forum Q&A:

      " +"

      Caro %(name)s,

      ci sono degli aggiornamenti riguardanti queste " +"%(num) domande sul forum Q&A:

      " -#: management/commands/send_email_alerts.py:484 +#: management/commands/send_email_alerts.py:438 msgid "new question" msgstr "nuova domanda" -#: management/commands/send_email_alerts.py:501 +#: 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 " @@ -1739,7 +2692,7 @@ 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:513 +#: 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 " @@ -1749,7 +2702,7 @@ msgstr "" "domande. Se ricevi più di un messaggio per giorno per favore notifica questo " "problema all'amministratore di Askbot." -#: management/commands/send_email_alerts.py:519 +#: 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 " @@ -1759,7 +2712,7 @@ msgstr "" "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:525 +#: 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. " @@ -1767,11 +2720,11 @@ 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:530 +#: management/commands/send_email_alerts.py:490 #, python-format msgid "" -"go to %(email_settings_link)s to change frequency of email updates or %" -"(admin_email)s administrator" +"go to %(email_settings_link)s to change frequency of email updates or " +"%(admin_email)s administrator" msgstr "" "

      Ricorda che puoi modificare la " "frequenza degli aggiornamenti via e-mail o disabilitarli completamente.

      Cordialmente," "

      Il tuo amico server del forum Q&A

      " -#: migrations/0005_install_badges.py:11 -msgid "Disciplined" -msgstr "Ordinato" - -#: migrations/0005_install_badges.py:11 -msgid "disciplined" -msgstr "ordinato" - -#: migrations/0005_install_badges.py:11 -msgid "Deleted own post with score of 3 or higher" -msgstr "Ha cancellato un proprio post con un punteggio di 3 o più" - -#: migrations/0005_install_badges.py:12 -msgid "Peer Pressure" -msgstr "Sotto pressione" - -#: migrations/0005_install_badges.py:12 -msgid "peer-pressure" -msgstr "sotto-pressione" - -#: migrations/0005_install_badges.py:12 -msgid "Deleted own post with score of -3 or lower" -msgstr "Ha cancellato un proprio post con un punteggio di -3 o meno" - -#: migrations/0005_install_badges.py:13 -msgid "Nice answer" -msgstr "Buona risposta" - -#: migrations/0005_install_badges.py:13 -msgid "nice-answer" -msgstr "buona-risposta" - -#: migrations/0005_install_badges.py:13 -msgid "Answer voted up 10 times" -msgstr "Risposta votata 10 volte" - -#: migrations/0005_install_badges.py:14 -msgid "Nice Question" -msgstr "Buona domanda" - -#: migrations/0005_install_badges.py:14 -msgid "nice-question" -msgstr "buona-domanda" - -#: migrations/0005_install_badges.py:14 -msgid "Question voted up 10 times" -msgstr "Domanda votata 10 volte" - -#: migrations/0005_install_badges.py:15 -msgid "Pundit" -msgstr "Sapientone" - -#: migrations/0005_install_badges.py:15 -msgid "pundit" -msgstr "sapientone" - -#: migrations/0005_install_badges.py:15 -msgid "Left 10 comments with score of 10 or more" -msgstr "Ha lasciato 10 commenti con punteggio 10 o più" - -#: migrations/0005_install_badges.py:16 -msgid "Popular Question" -msgstr "Domanda gettonata" - -#: migrations/0005_install_badges.py:16 -msgid "popular-question" -msgstr "domanda-gettonata" - -#: migrations/0005_install_badges.py:16 -msgid "Asked a question with 1,000 views" -msgstr "Ha posto una domanda con più di 1000 consultazioni" - -#: migrations/0005_install_badges.py:17 -msgid "Citizen patrol" -msgstr "Sempre in guardia" - -#: migrations/0005_install_badges.py:17 -msgid "citizen-patrol" -msgstr "sempre-in-guardia" - -#: migrations/0005_install_badges.py:17 -msgid "First flagged post" -msgstr "Ha segnalato un post come inappropriato" - -#: migrations/0005_install_badges.py:18 -msgid "Cleanup" -msgstr "Riparatore" - -#: migrations/0005_install_badges.py:18 -msgid "cleanup" -msgstr "riparatore" - -#: migrations/0005_install_badges.py:18 -msgid "First rollback" -msgstr "Ha annullato una revisione per la prima volta" - -#: migrations/0005_install_badges.py:19 -msgid "Critic" -msgstr "Critico" - -#: migrations/0005_install_badges.py:19 -msgid "critic" -msgstr "critico" - -#: migrations/0005_install_badges.py:19 -msgid "First down vote" -msgstr "Primo voto negativo" - -#: migrations/0005_install_badges.py:20 -msgid "Editor" -msgstr "Revisore" - -#: migrations/0005_install_badges.py:20 -msgid "editor" -msgstr "revisore" - -#: migrations/0005_install_badges.py:20 -msgid "First edit" -msgstr "Prima revisione" - -#: migrations/0005_install_badges.py:21 -msgid "Organizer" -msgstr "Organizzatore" - -#: migrations/0005_install_badges.py:21 -msgid "organizer" -msgstr "Organizzatore" - -#: migrations/0005_install_badges.py:21 -msgid "First retag" -msgstr "Ha ritaggato una domanda per la prima volta" - -#: migrations/0005_install_badges.py:22 -msgid "Scholar" -msgstr "Studioso" - -#: migrations/0005_install_badges.py:22 -msgid "scholar" -msgstr "Studioso" - -#: migrations/0005_install_badges.py:22 -msgid "First accepted answer on your own question" -msgstr "Prima risposta accettata a una tua domanda" - -#: migrations/0005_install_badges.py:23 -msgid "Student" -msgstr "Studente" - -#: migrations/0005_install_badges.py:23 -msgid "student" -msgstr "studente" - -#: migrations/0005_install_badges.py:23 -msgid "Asked first question with at least one up vote" -msgstr "Ha posto per la prima volta una domanda con almeno un voto" - -#: migrations/0005_install_badges.py:24 -msgid "Supporter" -msgstr "Sostenitore" - -#: migrations/0005_install_badges.py:24 -msgid "supporter" -msgstr "sostenitore" - -#: migrations/0005_install_badges.py:24 -msgid "First up vote" -msgstr "Primo voto positivo" - -#: migrations/0005_install_badges.py:25 -msgid "Teacher" -msgstr "Insegnante" - -#: migrations/0005_install_badges.py:25 -msgid "teacher" -msgstr "insegnante" - -#: migrations/0005_install_badges.py:25 -msgid "Answered first question with at least one up vote" -msgstr "Ha risposto per la prima volta a una domanda con almeno un voto" - -#: migrations/0005_install_badges.py:26 -msgid "Autobiographer" -msgstr "Autobiografo" - -#: migrations/0005_install_badges.py:26 -msgid "autobiographer" -msgstr "autobiografo" - -#: migrations/0005_install_badges.py:26 -msgid "Completed all user profile fields" -msgstr "Ha completato tutti i campi del suo profilo utente" - -#: migrations/0005_install_badges.py:27 -msgid "Self-Learner" -msgstr "Autodidatta" - -#: migrations/0005_install_badges.py:27 -msgid "self-learner" -msgstr "autodidatta" - -#: migrations/0005_install_badges.py:27 -msgid "Answered your own question with at least 3 up votes" -msgstr "Ha risposto da solo a una sua domanda con almeno 3 voti" - -#: migrations/0005_install_badges.py:28 -msgid "Great Answer" -msgstr "Risposta eccezionale" - -#: migrations/0005_install_badges.py:28 -msgid "great-answer" -msgstr "risposta-eccezionale" - -#: migrations/0005_install_badges.py:28 -msgid "Answer voted up 100 times" -msgstr "Risposta con almeno 100 voti" - -#: migrations/0005_install_badges.py:29 -msgid "Great Question" -msgstr "Domanda eccezionale" - -#: migrations/0005_install_badges.py:29 -msgid "great-question" -msgstr "domanda-eccezionale" - -#: migrations/0005_install_badges.py:29 -msgid "Question voted up 100 times" -msgstr "Domanda con almeno 100 voti" - -#: migrations/0005_install_badges.py:30 -msgid "Stellar Question" -msgstr "Domanda stellare" - -#: migrations/0005_install_badges.py:30 -msgid "stellar-question" -msgstr "domanda-stellare" - -#: migrations/0005_install_badges.py:30 -msgid "Question favorited by 100 users" -msgstr "Domanda scelta tra le \"preferite\" da almeno 100 utenti" - -#: migrations/0005_install_badges.py:31 -msgid "Famous question" -msgstr "Domanda famosa" - -#: migrations/0005_install_badges.py:31 -msgid "famous-question" -msgstr "domanda-famosa" - -#: migrations/0005_install_badges.py:31 -msgid "Asked a question with 10,000 views" -msgstr "Ha posto una domanda con almeno 10.000 consultazioni" - -#: migrations/0005_install_badges.py:32 -msgid "Alpha" -msgstr "Alpha" - -#: migrations/0005_install_badges.py:32 -msgid "alpha" -msgstr "alpha" - -#: migrations/0005_install_badges.py:32 -msgid "Actively participated in the private alpha" -msgstr "Ha partecipato attivamente alla primissima fase di testing" - -#: migrations/0005_install_badges.py:33 -msgid "Good Answer" -msgstr "Ottima risposta" - -#: migrations/0005_install_badges.py:33 -msgid "good-answer" -msgstr "ottima-risposta" - -#: migrations/0005_install_badges.py:33 -msgid "Answer voted up 25 times" -msgstr "Risposta con almeno 25 voti" - -#: migrations/0005_install_badges.py:34 -msgid "Good Question" -msgstr "Ottima domanda" - -#: migrations/0005_install_badges.py:34 -msgid "good-question" -msgstr "ottima-domanda" - -#: migrations/0005_install_badges.py:34 -msgid "Question voted up 25 times" -msgstr "Domanda con almeno 25 voti" - -#: migrations/0005_install_badges.py:35 -msgid "Favorite Question" -msgstr "Domanda apprezzata" - -#: migrations/0005_install_badges.py:35 -msgid "favorite-question" -msgstr "domanda-apprezzata" - -#: migrations/0005_install_badges.py:35 -msgid "Question favorited by 25 users" -msgstr "Domanda inserita tra le \"preferite\" da almeno 25 utenti" - -#: migrations/0005_install_badges.py:36 -msgid "Civic duty" -msgstr "Senso civico" - -#: migrations/0005_install_badges.py:36 -msgid "civic-duty" -msgstr "senso-civico" - -#: migrations/0005_install_badges.py:36 -msgid "Voted 300 times" -msgstr "Ha votato almeno 300 volte" - -#: migrations/0005_install_badges.py:37 -msgid "Strunk & White" -msgstr "Devoto-Oli" - -#: migrations/0005_install_badges.py:37 -msgid "strunk-and-white" -msgstr "devoto-oli" - -#: migrations/0005_install_badges.py:37 -msgid "Edited 100 entries" -msgstr "Ha fatto almeno 100 revisioni" - -#: migrations/0005_install_badges.py:38 -msgid "Generalist" -msgstr "Generalista" - -#: migrations/0005_install_badges.py:38 -msgid "generalist" -msgstr "generalista" - -#: migrations/0005_install_badges.py:38 -msgid "Active in many different tags" -msgstr "Attivo in domande con molti tag diversi" - -#: migrations/0005_install_badges.py:39 -msgid "Expert" -msgstr "Esperto" - -#: migrations/0005_install_badges.py:39 -msgid "expert" -msgstr "esperto" - -#: migrations/0005_install_badges.py:39 -msgid "Very active in one tag" -msgstr "Molto attivo in domande con lo stesso tag" - -#: migrations/0005_install_badges.py:40 -msgid "Yearling" -msgstr "Gavetta" - -#: migrations/0005_install_badges.py:40 -msgid "yearling" -msgstr "gavetta" - -#: migrations/0005_install_badges.py:40 -msgid "Active member for a year" -msgstr "Membro attivo da almeno un anno" - -#: migrations/0005_install_badges.py:41 -msgid "Notable Question" -msgstr "Domanda notevole" - -#: migrations/0005_install_badges.py:41 -msgid "notable-question" -msgstr "domanda-notevole" - -#: migrations/0005_install_badges.py:41 -msgid "Asked a question with 2,500 views" -msgstr "Ha posto una domanda con almeno 2500 consultazioni" - -#: migrations/0005_install_badges.py:42 -msgid "Enlightened" -msgstr "Illuminato" - -#: migrations/0005_install_badges.py:42 -msgid "enlightened" -msgstr "illuminato" - -#: migrations/0005_install_badges.py:42 -msgid "First answer was accepted with at least 10 up votes" -msgstr "La sua prima risposta è stata accettata con almeno 10 voti" - -#: migrations/0005_install_badges.py:43 -msgid "Beta" -msgstr "Beta" - -#: migrations/0005_install_badges.py:43 -msgid "beta" -msgstr "beta" - -#: migrations/0005_install_badges.py:43 -msgid "Actively participated in the private beta" -msgstr "Ha partecipato attivamente alla fase di beta-testing" - -#: migrations/0005_install_badges.py:44 -msgid "Guru" -msgstr "Guru" - -#: migrations/0005_install_badges.py:44 -msgid "guru" -msgstr "guru" - -#: migrations/0005_install_badges.py:44 -msgid "Accepted answer and voted up 40 times" -msgstr "Risposta accettata e con almeno 40 voti" - -#: migrations/0005_install_badges.py:45 -msgid "Necromancer" -msgstr "Negromante" - -#: migrations/0005_install_badges.py:45 -msgid "necromancer" -msgstr "negromante" - -#: migrations/0005_install_badges.py:45 -msgid "Answered a question more than 60 days later with at least 5 votes" -msgstr "" -"Ha risposto a una domanda vecchia di almeno 60 giorni ottenendo almeno 5 voti" - -#: migrations/0005_install_badges.py:46 -msgid "Taxonomist" -msgstr "Tassonomista" - -#: migrations/0005_install_badges.py:46 -msgid "taxonomist" -msgstr "tassonomista" - -#: migrations/0005_install_badges.py:46 -msgid "Created a tag used by 50 questions" -msgstr "Ha creato un tag usato da almeno 50 domande" +#: management/commands/send_unanswered_question_reminders.py:80 +#, python-format +msgid "%(question_count)d unanswered question about %(topics)s" +msgid_plural "%(question_count)d unanswered questions about %(topics)s" +msgstr[0] "" +msgstr[1] "" -#: models/__init__.py:169 +#: models/__init__.py:316 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:174 +#: models/__init__.py:320 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:180 +#: models/__init__.py:333 +#, fuzzy, python-format msgid "" -"Sorry, you cannot accept or unaccept your own answer to your own question" +">%(points)s points required to accept or unaccept your own answer to your " +"own question" msgstr "Mi spiace, non puoi accettare una tua risposta a una tua domanda" -#: models/__init__.py:187 -#, python-format +#: models/__init__.py:347 +#, fuzzy, python-format msgid "" -"Sorry, only original author of the question - %(username)s - can accept the " -"best answer" +"Sorry, only original author of the question - %(username)s - can accept or " +"unaccept the best answer" msgstr "" "Mi spiace, solo l'autore della domanda, %(username)s, può accettare una " "risposta" -#: models/__init__.py:210 +#: models/__init__.py:375 msgid "cannot vote for own posts" msgstr "Mi spiace, non puoi votare per i tuoi post" -#: models/__init__.py:213 +#: models/__init__.py:378 msgid "Sorry your account appears to be blocked " msgstr "Mi spiace, il tuo account è stato bloccato" -#: models/__init__.py:218 +#: models/__init__.py:383 msgid "Sorry your account appears to be suspended " msgstr "Mi spiace, il tuo account è stato sospeso" -#: models/__init__.py:228 +#: models/__init__.py:393 #, 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:234 +#: models/__init__.py:399 #, 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:249 +#: models/__init__.py:414 msgid "Sorry, blocked users cannot upload files" msgstr "Mi spiace, gli utenti bloccati non possono caricare files" -#: models/__init__.py:250 +#: models/__init__.py:415 msgid "Sorry, suspended users cannot upload files" msgstr "Mi spiace, gli utenti sospesi non possono caricare files" -#: models/__init__.py:252 +#: models/__init__.py:417 #, python-format msgid "" "uploading images is limited to users with >%(min_rep)s reputation points" @@ -2280,41 +2809,46 @@ msgstr "" "Mi spiace, serve avere più di %(min_rep)s punti reputazione per caricare " "immagini" -#: models/__init__.py:271 models/__init__.py:331 models/__init__.py:1950 +#: models/__init__.py:436 models/__init__.py:503 models/__init__.py:918 msgid "blocked users cannot post" msgstr "" "Mi spiace, il tuo account è stato bloccato; non puoi fare nuovi post finché " "la questione non verrà risolta. Contatta l'amministratore del forum per " "trovare una soluzione." -#: models/__init__.py:272 models/__init__.py:1953 +#: models/__init__.py:437 models/__init__.py:921 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:297 +#: models/__init__.py:464 +#, python-format msgid "" -"Sorry, comments (except the last one) are editable only within 10 minutes " -"from posting" -msgstr "" +"Sorry, comments (except the last one) are editable only within %(minutes)s " +"minute from posting" +msgid_plural "" +"Sorry, comments (except the last one) are editable only within %(minutes)s " +"minutes from posting" +msgstr[0] "" +msgstr[1] "" -#: models/__init__.py:303 +#: models/__init__.py:476 #, fuzzy msgid "Sorry, but only post owners or moderators can edit comments" msgstr "" "Mi spiace, solo gli autori, i moderatori e gli amministratori possono " "cambiare i tag di una domanda cancellata" -#: models/__init__.py:317 +#: models/__init__.py:489 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:321 +#: models/__init__.py:493 #, python-format msgid "" "Sorry, to comment any post a minimum reputation of %(min_rep)s points is " @@ -2324,15 +2858,16 @@ msgstr "" "Per commentare gli altri post serve avere almeno %(min_rep)s punti " "reputazione. " -#: models/__init__.py:349 +#: models/__init__.py:521 +#, fuzzy msgid "" -"This post has been deleted and can be seen only by post ownwers, site " +"This post has been deleted and can be seen only by post owners, site " "administrators and moderators" msgstr "" "Questo post è stato cancellato e può essere consultato solo dall'autore, dai " "moderatori e dagli amministratori" -#: models/__init__.py:366 +#: models/__init__.py:538 msgid "" "Sorry, only moderators, site administrators and post owners can edit deleted " "posts" @@ -2340,26 +2875,26 @@ msgstr "" "Mi spiace, solo l'autore, i moderatori e gli amministratori possono " "modificare un post cancellato." -#: models/__init__.py:381 +#: models/__init__.py:553 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:385 +#: models/__init__.py:557 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:390 +#: models/__init__.py:562 #, fuzzy, python-format msgid "" "Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required" msgstr "" -"Mi spiace, per modificare i post appartenenti allo wiki servono almeno %" -"(min_rep)s punti reputazione" +"Mi spiace, per modificare i post appartenenti allo wiki servono almeno " +"%(min_rep)s punti reputazione" -#: models/__init__.py:397 +#: models/__init__.py:569 #, fuzzy, python-format msgid "" "Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is " @@ -2368,7 +2903,7 @@ msgstr "" "Mi spiace, per modificare i post altrui servono almeno %(min_rep)s punti " "reputazione" -#: models/__init__.py:460 +#: models/__init__.py:632 msgid "" "Sorry, cannot delete your question since it has an upvoted answer posted by " "someone else" @@ -2382,17 +2917,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:475 +#: models/__init__.py:647 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:479 +#: models/__init__.py:651 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:483 +#: models/__init__.py:655 #, python-format msgid "" "Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s " @@ -2401,16 +2936,16 @@ msgstr "" "Mi spiace, per cancellare i post altrui servono almeno %(min_rep)s punti " "reputazione" -#: models/__init__.py:503 +#: models/__init__.py:675 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:507 +#: models/__init__.py:679 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:511 +#: models/__init__.py:683 #, python-format msgid "" "Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is " @@ -2419,7 +2954,7 @@ msgstr "" "Mi spiace, per chiudere post altrui servono almeno %(min_rep)s punti " "reputazione." -#: models/__init__.py:520 +#: models/__init__.py:692 #, python-format msgid "" "Sorry, to close own question a minimum reputation of %(min_rep)s is required" @@ -2427,16 +2962,16 @@ msgstr "" "Mi spiace, per chiudere una tua domanda servono almeno %(min_rep)s punti " "reputazione." -#: models/__init__.py:544 +#: models/__init__.py:716 #, python-format msgid "" -"Sorry, only administrators, moderators or post owners with reputation > %" -"(min_rep)s can reopen questions." +"Sorry, only administrators, moderators or post owners with reputation > " +"%(min_rep)s can reopen questions." msgstr "" "Mi spiace, solo amministratori, moderatori e autori con più di %(min_rep)s " "punti reputazione possono riaprire domande." -#: models/__init__.py:550 +#: models/__init__.py:722 #, python-format msgid "" "Sorry, to reopen own question a minimum reputation of %(min_rep)s is required" @@ -2444,39 +2979,39 @@ msgstr "" "Mi spiace, per riaprire una tua domanda devi avere almeno %(min_rep)s punti " "reputazione." -#: models/__init__.py:570 +#: models/__init__.py:742 msgid "cannot flag message as offensive twice" msgstr "" "Hai già segnalato questo messaggio come inappropriato, non puoi farlo una " "seconda volta." -#: models/__init__.py:575 +#: models/__init__.py:747 msgid "blocked users cannot flag posts" msgstr "" "Non puoi segnalare questo messaggio come inappropriato perché il tuo account " "è stato bloccato." -#: models/__init__.py:577 +#: models/__init__.py:749 msgid "suspended users cannot flag posts" msgstr "" "Non puoi segnalare questo messaggio come inappropriato perché il tuo account " "è sospeso." -#: models/__init__.py:579 +#: models/__init__.py:751 #, python-format msgid "need > %(min_rep)s points to flag spam" msgstr "" "Mi spiace, servono più di %(min_rep)s punti reputazione per segnalare un " "post come inappropriato." -#: models/__init__.py:598 +#: models/__init__.py:770 #, python-format msgid "%(max_flags_per_day)s exceeded" msgstr "" "Mi spiace, hai già segnalato %(max_flags_per_day)s post come offensivi oggi, " "hai superato il massimo giornaliero." -#: models/__init__.py:613 +#: models/__init__.py:785 msgid "" "Sorry, only question owners, site administrators and moderators can retag " "deleted questions" @@ -2484,19 +3019,19 @@ msgstr "" "Mi spiace, solo gli autori, i moderatori e gli amministratori possono " "cambiare i tag di una domanda cancellata" -#: models/__init__.py:620 +#: models/__init__.py:792 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:624 +#: models/__init__.py:796 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:628 +#: models/__init__.py:800 #, python-format msgid "" "Sorry, to retag questions a minimum reputation of %(min_rep)s is required" @@ -2504,71 +3039,117 @@ msgstr "" "Mi spiace, servono almeno %(min_rep)s punti reputazione per cambiare i tag " "di una domanda" -#: models/__init__.py:647 +#: models/__init__.py:819 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:651 +#: models/__init__.py:823 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:655 +#: models/__init__.py:827 #, 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:678 +#: models/__init__.py:850 msgid "cannot revoke old vote" msgstr "Mi spiace, non è possibile annullare voti." -#: models/__init__.py:1166 views/users.py:388 +#: models/__init__.py:1325 utils/functions.py:70 +#, python-format +msgid "on %(date)s" +msgstr "il %(date)s" + +#: models/__init__.py:1327 +msgid "in two days" +msgstr "" + +#: models/__init__.py:1329 +msgid "tomorrow" +msgstr "" + +#: models/__init__.py:1331 +#, fuzzy, 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:1333 +#, fuzzy, 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:1334 +#, python-format +msgid "%(days)d day" +msgid_plural "%(days)d days" +msgstr[0] "" +msgstr[1] "" + +#: models/__init__.py:1336 +#, 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:1501 skins/default/templates/feedback_email.txt:9 +#, fuzzy +msgid "Anonymous" +msgstr "utente non registrato" + +#: models/__init__.py:1597 views/users.py:365 msgid "Site Adminstrator" msgstr "Amministratore del sito" -#: models/__init__.py:1168 views/users.py:390 +#: models/__init__.py:1599 views/users.py:367 msgid "Forum Moderator" msgstr "Moderatore del forum" -#: models/__init__.py:1170 views/users.py:392 +#: models/__init__.py:1601 views/users.py:369 msgid "Suspended User" msgstr "Utente sospeso" -#: models/__init__.py:1172 views/users.py:394 +#: models/__init__.py:1603 views/users.py:371 msgid "Blocked User" msgstr "Utente bloccato" -#: models/__init__.py:1174 views/users.py:396 +#: models/__init__.py:1605 views/users.py:373 msgid "Registered User" msgstr "Utente registrato" -#: models/__init__.py:1176 +#: models/__init__.py:1607 msgid "Watched User" msgstr "Utente in prova" -#: models/__init__.py:1178 +#: models/__init__.py:1609 msgid "Approved User" msgstr "Utente approvato" -#: models/__init__.py:1234 +#: models/__init__.py:1718 #, fuzzy, python-format msgid "%(username)s karma is %(reputation)s" msgstr "hai %(reputation)s punti reputazione" -#: models/__init__.py:1244 +#: models/__init__.py:1728 #, python-format msgid "one gold badge" msgid_plural "%(count)d gold badges" msgstr[0] "" msgstr[1] "" -#: models/__init__.py:1251 +#: models/__init__.py:1735 #, fuzzy, python-format msgid "one silver badge" msgid_plural "%(count)d silver badges" @@ -2579,7 +3160,7 @@ msgstr[1] "" "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à." -#: models/__init__.py:1258 +#: models/__init__.py:1742 #, fuzzy, python-format msgid "one bronze badge" msgid_plural "%(count)d bronze badges" @@ -2590,28 +3171,28 @@ msgstr[1] "" "Se partecipi regolarmente a questa comunità, verrai sicuramente premiato con " "delle medaglie di bronzo." -#: models/__init__.py:1269 +#: models/__init__.py:1753 #, python-format msgid "%(item1)s and %(item2)s" msgstr "" -#: models/__init__.py:1273 +#: models/__init__.py:1757 #, python-format msgid "%(user)s has %(badges)s" msgstr "" -#: models/__init__.py:1566 models/__init__.py:1572 models/__init__.py:1577 -#: models/__init__.py:1582 +#: models/__init__.py:2164 models/__init__.py:2170 models/__init__.py:2175 +#: models/__init__.py:2180 #, fuzzy, python-format msgid "Re: \"%(title)s\"" msgstr "nuova domanda" -#: models/__init__.py:1587 models/__init__.py:1592 +#: models/__init__.py:2185 models/__init__.py:2190 #, fuzzy, python-format msgid "Question: \"%(title)s\"" msgstr "nuova domanda" -#: models/__init__.py:1773 +#: models/__init__.py:2371 #, python-format msgid "" "Congratulations, you have received a badge '%(badge_name)s'. Check out tuo profilo." -#: models/question.py:687 -#, python-format -msgid "%(author)s modified the question" -msgstr "%(author)s ha modificato la sua domanda" +#: models/__init__.py:2550 views/commands.py:396 +msgid "Your tag subscription was saved, thanks!" +msgstr "" -#: models/question.py:691 -#, python-format +#: models/answer.py:105 +msgid "" +"Sorry, the answer you are looking for is no longer available, because the " +"parent question has been removed" +msgstr "" + +#: models/answer.py:112 +#, fuzzy +msgid "Sorry, this answer has been removed and is no longer accessible" +msgstr "Mi spiace, questa domanda è stata cancellata e non è più accessibile" + +#: models/badges.py:129 +#, fuzzy, python-format +msgid "Deleted own post with %(votes)s or more upvotes" +msgstr "Ha cancellato un proprio post con un punteggio di -3 o meno" + +#: models/badges.py:133 +msgid "Disciplined" +msgstr "Ordinato" + +#: models/badges.py:151 +#, fuzzy, python-format +msgid "Deleted own post with %(votes)s or more downvotes" +msgstr "Ha cancellato un proprio post con un punteggio di -3 o meno" + +#: models/badges.py:155 +msgid "Peer Pressure" +msgstr "Sotto pressione" + +#: models/badges.py:174 +#, python-format +msgid "Received at least %(votes)s upvote for an answer for the first time" +msgstr "" + +#: models/badges.py:178 +msgid "Teacher" +msgstr "Insegnante" + +#: models/badges.py:218 +msgid "Supporter" +msgstr "Sostenitore" + +#: models/badges.py:219 +#, fuzzy +msgid "First upvote" +msgstr "Primo voto positivo" + +#: models/badges.py:227 +msgid "Critic" +msgstr "Critico" + +#: models/badges.py:228 +#, fuzzy +msgid "First downvote" +msgstr "Primo voto negativo" + +#: models/badges.py:237 +#, fuzzy +msgid "Civic Duty" +msgstr "Senso civico" + +#: models/badges.py:238 +#, fuzzy, python-format +msgid "Voted %(num)s times" +msgstr "Ha votato almeno 300 volte" + +#: models/badges.py:252 +#, fuzzy, python-format +msgid "Answered own question with at least %(num)s up votes" +msgstr "Ha risposto da solo a una sua domanda con almeno 3 voti" + +#: models/badges.py:256 +msgid "Self-Learner" +msgstr "Autodidatta" + +#: models/badges.py:304 +#, fuzzy +msgid "Nice Answer" +msgstr "Buona risposta" + +#: models/badges.py:309 models/badges.py:321 models/badges.py:333 +#, fuzzy, python-format +msgid "Answer voted up %(num)s times" +msgstr "Risposta votata 10 volte" + +#: models/badges.py:316 +msgid "Good Answer" +msgstr "Ottima risposta" + +#: models/badges.py:328 +msgid "Great Answer" +msgstr "Risposta eccezionale" + +#: models/badges.py:340 +msgid "Nice Question" +msgstr "Buona domanda" + +#: models/badges.py:345 models/badges.py:357 models/badges.py:369 +#, fuzzy, python-format +msgid "Question voted up %(num)s times" +msgstr "Domanda votata 10 volte" + +#: models/badges.py:352 +msgid "Good Question" +msgstr "Ottima domanda" + +#: models/badges.py:364 +msgid "Great Question" +msgstr "Domanda eccezionale" + +#: models/badges.py:376 +msgid "Student" +msgstr "Studente" + +#: models/badges.py:381 +msgid "Asked first question with at least one up vote" +msgstr "Ha posto per la prima volta una domanda con almeno un voto" + +#: models/badges.py:414 +msgid "Popular Question" +msgstr "Domanda gettonata" + +#: models/badges.py:418 models/badges.py:429 models/badges.py:441 +#, fuzzy, python-format +msgid "Asked a question with %(views)s views" +msgstr "Ha posto una domanda con più di 1000 consultazioni" + +#: models/badges.py:425 +msgid "Notable Question" +msgstr "Domanda notevole" + +#: models/badges.py:436 +#, fuzzy +msgid "Famous Question" +msgstr "Domanda famosa" + +#: models/badges.py:450 +#, fuzzy +msgid "Asked a question and accepted an answer" +msgstr "La domanda non ha risposte accettate" + +#: models/badges.py:453 +msgid "Scholar" +msgstr "Studioso" + +#: models/badges.py:495 +msgid "Enlightened" +msgstr "Illuminato" + +#: models/badges.py:499 +#, fuzzy, python-format +msgid "First answer was accepted with %(num)s or more votes" +msgstr "La sua prima risposta è stata accettata con almeno 10 voti" + +#: models/badges.py:507 +msgid "Guru" +msgstr "Guru" + +#: models/badges.py:510 +#, fuzzy, python-format +msgid "Answer accepted with %(num)s or more votes" +msgstr "La sua prima risposta è stata accettata con almeno 10 voti" + +#: models/badges.py:518 +#, fuzzy, python-format +msgid "" +"Answered a question more than %(days)s days later with at least %(votes)s " +"votes" +msgstr "" +"Ha risposto a una domanda vecchia di almeno 60 giorni ottenendo almeno 5 voti" + +#: models/badges.py:525 +msgid "Necromancer" +msgstr "Negromante" + +#: models/badges.py:548 +#, fuzzy +msgid "Citizen Patrol" +msgstr "Sempre in guardia" + +#: models/badges.py:551 +msgid "First flagged post" +msgstr "Ha segnalato un post come inappropriato" + +#: models/badges.py:563 +msgid "Cleanup" +msgstr "Riparatore" + +#: models/badges.py:566 +msgid "First rollback" +msgstr "Ha annullato una revisione per la prima volta" + +#: models/badges.py:577 +msgid "Pundit" +msgstr "Sapientone" + +#: models/badges.py:580 +msgid "Left 10 comments with score of 10 or more" +msgstr "Ha lasciato 10 commenti con punteggio 10 o più" + +#: models/badges.py:612 +msgid "Editor" +msgstr "Revisore" + +#: models/badges.py:615 +msgid "First edit" +msgstr "Prima revisione" + +#: models/badges.py:623 +msgid "Associate Editor" +msgstr "" + +#: models/badges.py:627 +#, fuzzy, python-format +msgid "Edited %(num)s entries" +msgstr "Ha fatto almeno 100 revisioni" + +#: models/badges.py:634 +msgid "Organizer" +msgstr "Organizzatore" + +#: models/badges.py:637 +msgid "First retag" +msgstr "Ha ritaggato una domanda per la prima volta" + +#: models/badges.py:644 +msgid "Autobiographer" +msgstr "Autobiografo" + +#: models/badges.py:647 +msgid "Completed all user profile fields" +msgstr "Ha completato tutti i campi del suo profilo utente" + +#: models/badges.py:663 +#, fuzzy, python-format +msgid "Question favorited by %(num)s users" +msgstr "Domanda inserita tra le \"preferite\" da almeno 25 utenti" + +#: models/badges.py:689 +msgid "Stellar Question" +msgstr "Domanda stellare" + +#: models/badges.py:698 +msgid "Favorite Question" +msgstr "Domanda apprezzata" + +#: models/badges.py:710 +msgid "Enthusiast" +msgstr "" + +#: models/badges.py:714 +#, python-format +msgid "Visited site every day for %(num)s days in a row" +msgstr "" + +#: models/badges.py:732 +#, fuzzy +msgid "Commentator" +msgstr "Documentazione" + +#: models/badges.py:736 +#, fuzzy, python-format +msgid "Posted %(num_comments)s comments" +msgstr "(%(comment_count)s commento)" + +#: models/badges.py:752 +msgid "Taxonomist" +msgstr "Tassonomista" + +#: models/badges.py:756 +#, fuzzy, python-format +msgid "Created a tag used by %(num)s questions" +msgstr "Ha creato un tag usato da almeno 50 domande" + +#: models/badges.py:776 +msgid "Expert" +msgstr "Esperto" + +#: models/badges.py:779 +msgid "Very active in one tag" +msgstr "Molto attivo in domande con lo stesso tag" + +#: models/meta.py:112 +msgid "" +"Sorry, the comment you are looking for is no longer accessible, because the " +"parent question has been removed" +msgstr "" + +#: models/meta.py:119 +msgid "" +"Sorry, the comment you are looking for is no longer accessible, because the " +"parent answer has been removed" +msgstr "" + +#: models/question.py:72 +#, python-format +msgid "\" and \"%s\"" +msgstr "" + +#: models/question.py:75 +#, fuzzy +msgid "\" and more" +msgstr "Scopri di più" + +#: models/question.py:452 +msgid "Sorry, this question has been deleted and is no longer accessible" +msgstr "Mi spiace, questa domanda è stata cancellata e non è più accessibile" + +#: models/question.py:908 +#, python-format +msgid "%(author)s modified the question" +msgstr "%(author)s ha modificato la sua domanda" + +#: models/question.py:912 +#, 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:696 +#: models/question.py:917 #, python-format msgid "%(people)s commented the question" msgstr "%(people)s ha/hanno commentato la domanda" -#: models/question.py:701 +#: models/question.py:922 #, python-format msgid "%(people)s commented answers" msgstr "%(people)s ha/hanno commentato alcune risposte" -#: models/question.py:703 +#: models/question.py:924 #, python-format msgid "%(people)s commented an answer" msgstr "%(people)s ha/hanno commentato una risposta" -#: models/repute.py:16 skins/default/templates/badges.html:43 -msgid "gold" -msgstr "oro" - -#: models/repute.py:17 skins/default/templates/badges.html:52 -msgid "silver" -msgstr "argento" - -#: models/repute.py:18 skins/default/templates/badges.html:59 -msgid "bronze" -msgstr "bronzo" - -#: models/repute.py:150 +#: models/repute.py:142 #, python-format msgid "Changed by moderator. Reason: %(reason)s" msgstr "Modificato da un moderatore. Motivo: %(reason)s" -#: models/repute.py:161 +#: models/repute.py:153 #, python-format msgid "" -"%(points)s points were added for %(username)s's contribution to question %" -"(question_title)s" +"%(points)s points were added for %(username)s's contribution to question " +"%(question_title)s" msgstr "" " %(username)s ha guadagnato %(points)s punti reputazione per i suoi " "contributi alla domanda %(question_title)s" -#: models/repute.py:166 +#: models/repute.py:158 #, python-format msgid "" "%(points)s points were subtracted for %(username)s's contribution to " @@ -2680,72 +3561,72 @@ msgstr "" " %(username)s ha perso %(points)s punti reputazione per i suoi contributi " "alla domanda %(question_title)s" -#: models/tag.py:91 +#: models/tag.py:151 msgid "interesting" msgstr "interessanti" -#: models/tag.py:91 +#: models/tag.py:151 msgid "ignored" msgstr "ignorate" -#: models/user.py:233 +#: models/user.py:264 msgid "Entire forum" msgstr "Tutto il forum" -#: models/user.py:234 +#: models/user.py:265 msgid "Questions that I asked" msgstr "Domande poste da me" -#: models/user.py:235 +#: models/user.py:266 msgid "Questions that I answered" msgstr "Domande a cui ho risposto" -#: models/user.py:236 +#: models/user.py:267 msgid "Individually selected questions" msgstr "Domande selezionate individualmente" -#: models/user.py:237 +#: models/user.py:268 msgid "Mentions and comment responses" msgstr "Citazioni e risposte ai miei commenti" -#: models/user.py:240 +#: models/user.py:271 msgid "Instantly" msgstr "Immediatamente" -#: models/user.py:241 +#: models/user.py:272 msgid "Daily" msgstr "Ogni giorno" -#: models/user.py:242 +#: models/user.py:273 msgid "Weekly" msgstr "Ogni settimana" -#: models/user.py:243 +#: models/user.py:274 msgid "No email" msgstr "Mai" #: skins/default/templates/404.jinja.html:3 -#: skins/default/templates/404.jinja.html:11 +#: skins/default/templates/404.jinja.html:10 msgid "Page not found" msgstr "" -#: skins/default/templates/404.jinja.html:15 +#: skins/default/templates/404.jinja.html:13 msgid "Sorry, could not find the page you requested." msgstr "Pagina non trovata" -#: skins/default/templates/404.jinja.html:17 +#: skins/default/templates/404.jinja.html:15 msgid "This might have happened for the following reasons:" msgstr "Possibili motivi:" -#: skins/default/templates/404.jinja.html:19 +#: skins/default/templates/404.jinja.html:17 msgid "this question or answer has been deleted;" msgstr "questa domanda o risposta è stata cancellata;" -#: skins/default/templates/404.jinja.html:20 +#: skins/default/templates/404.jinja.html:18 msgid "url has error - please check it;" msgstr "l'indirizzo è errato — controllalo;" -#: skins/default/templates/404.jinja.html:21 +#: skins/default/templates/404.jinja.html:19 msgid "" "the page you tried to visit is protected or you don't have sufficient " "points, see" @@ -2753,59 +3634,60 @@ msgstr "" "la pagina che stai cercando di visitare è protetta oppure non hai " "sufficienti punti reputazione, vedi" -#: skins/default/templates/404.jinja.html:21 -#: skins/default/templates/footer.html:6 -#: skins/default/templates/header.html:57 -#: skins/default/templates/question_edit_tips.html:16 +#: skins/default/templates/404.jinja.html:19 +#: skins/default/templates/blocks/footer.html:5 +#: skins/default/templates/blocks/header_meta_links.html:13 +#: skins/default/templates/blocks/question_edit_tips.html:15 msgid "faq" msgstr "domande frequenti" -#: skins/default/templates/404.jinja.html:22 +#: skins/default/templates/404.jinja.html:20 msgid "if you believe this error 404 should not have occured, please" msgstr "se credi che questo messaggio di errore 404 sia inappropriato," -#: skins/default/templates/404.jinja.html:23 +#: skins/default/templates/404.jinja.html:21 msgid "report this problem" msgstr "per favore segnala questo problema" -#: skins/default/templates/404.jinja.html:32 -#: skins/default/templates/500.jinja.html:13 +#: skins/default/templates/404.jinja.html:30 +#: skins/default/templates/500.jinja.html:11 msgid "back to previous page" msgstr "torna alla pagina precedente" -#: skins/default/templates/404.jinja.html:33 -#: skins/default/templates/questions.html:13 +#: skins/default/templates/404.jinja.html:31 +#: skins/default/templates/main_page/tab_bar.html:9 msgid "see all questions" msgstr "vedi tutte le domande" -#: skins/default/templates/404.jinja.html:34 +#: skins/default/templates/404.jinja.html:32 msgid "see all tags" msgstr "vedi tutti i tag" #: skins/default/templates/500.jinja.html:3 -#: skins/default/templates/500.jinja.html:6 +#: skins/default/templates/500.jinja.html:5 msgid "Internal server error" msgstr "" -#: skins/default/templates/500.jinja.html:10 +#: skins/default/templates/500.jinja.html:8 msgid "system error log is recorded, error will be fixed as soon as possible" msgstr "questo errore è stato registrato, sarà risolto al più presto possibile" -#: skins/default/templates/500.jinja.html:11 +#: skins/default/templates/500.jinja.html:9 msgid "please report the error to the site administrators if you wish" msgstr "puoi segnalare tu stesso questo errore agli amministratori del sito" -#: skins/default/templates/500.jinja.html:14 +#: skins/default/templates/500.jinja.html:12 msgid "see latest questions" msgstr "vedi le domande recenti" -#: skins/default/templates/500.jinja.html:15 +#: skins/default/templates/500.jinja.html:13 msgid "see tags" msgstr "vedi i tag" -#: skins/default/templates/about.html:3 skins/default/templates/about.html:6 -msgid "About" -msgstr "About" +#: 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 @@ -2813,196 +3695,84 @@ msgid "Edit answer" msgstr "Modifica risposta" #: skins/default/templates/answer_edit.html:10 -#: skins/default/templates/question_edit.html:10 -#: skins/default/templates/question_retag.html:6 +#: skins/default/templates/question_edit.html:9 +#: skins/default/templates/question_retag.html:5 #: skins/default/templates/revisions.html:7 msgid "back" msgstr "indietro" -#: skins/default/templates/answer_edit.html:15 -#: skins/default/templates/question_edit.html:14 +#: skins/default/templates/answer_edit.html:14 msgid "revision" msgstr "revisione" -#: skins/default/templates/answer_edit.html:18 -#: skins/default/templates/question_edit.html:19 +#: skins/default/templates/answer_edit.html:17 +#: skins/default/templates/question_edit.html:16 msgid "select revision" msgstr "scegli revisione" -#: skins/default/templates/answer_edit.html:22 -#: skins/default/templates/question_edit.html:28 +#: skins/default/templates/answer_edit.html:21 +#: skins/default/templates/question_edit.html:27 msgid "Save edit" msgstr "Salva modifica" -#: skins/default/templates/answer_edit.html:23 -#: skins/default/templates/close.html:19 -#: skins/default/templates/feedback.html:45 -#: skins/default/templates/question_edit.html:29 -#: skins/default/templates/question_retag.html:26 -#: skins/default/templates/reopen.html:30 -#: skins/default/templates/user_edit.html:76 +#: skins/default/templates/answer_edit.html:22 +#: skins/default/templates/close.html:16 +#: skins/default/templates/feedback.html:42 +#: skins/default/templates/question_edit.html:28 +#: skins/default/templates/question_retag.html:22 +#: skins/default/templates/reopen.html:27 +#: skins/default/templates/subscribe_for_tags.html:16 #: skins/default/templates/authopenid/changeemail.html:38 +#: skins/default/templates/user_profile/user_edit.html:84 msgid "Cancel" msgstr "Annulla" -#: skins/default/templates/answer_edit.html:59 -#: skins/default/templates/answer_edit.html:62 -#: skins/default/templates/ask.html:36 skins/default/templates/ask.html:39 -#: skins/default/templates/macros.html:398 -#: skins/default/templates/question.html:456 -#: skins/default/templates/question.html:459 -#: skins/default/templates/question_edit.html:63 -#: skins/default/templates/question_edit.html:66 +#: skins/default/templates/answer_edit.html:60 +#: skins/default/templates/answer_edit.html:63 +#: skins/default/templates/ask.html:46 skins/default/templates/ask.html:49 +#: skins/default/templates/macros.html:698 +#: skins/default/templates/question.html:562 +#: skins/default/templates/question.html:565 +#: skins/default/templates/question_edit.html:72 +#: skins/default/templates/question_edit.html:75 msgid "hide preview" msgstr "nascondi anteprima" -#: skins/default/templates/answer_edit.html:62 -#: skins/default/templates/ask.html:39 -#: skins/default/templates/question.html:459 -#: skins/default/templates/question_edit.html:66 +#: skins/default/templates/answer_edit.html:63 +#: skins/default/templates/ask.html:49 +#: skins/default/templates/question.html:565 +#: skins/default/templates/question_edit.html:75 msgid "show preview" msgstr "mostra anteprima" -#: skins/default/templates/answer_edit_tips.html:3 -msgid "answer tips" -msgstr "consigli per le risposte" +#: skins/default/templates/ask.html:4 +msgid "Ask a question" +msgstr "Chiedi" -#: skins/default/templates/answer_edit_tips.html:6 -msgid "please make your answer relevant to this community" -msgstr "fai in modo che la tua risposta sia interessante per la comunità" +#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:8 +#: skins/default/templates/user_profile/user_recent.html:16 +#: skins/default/templates/user_profile/user_stats.html:110 +#, fuzzy, python-format +msgid "%(name)s" +msgstr "il %(date)s" -#: skins/default/templates/answer_edit_tips.html:9 -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/badge.html:4 +msgid "Badge" +msgstr "Medaglia" -#: skins/default/templates/answer_edit_tips.html:12 -msgid "please try to provide details" -msgstr "includi tutti i dettagli necessari" - -#: skins/default/templates/answer_edit_tips.html:15 -#: skins/default/templates/question_edit_tips.html:12 -msgid "be clear and concise" -msgstr "sii chiaro e conciso" - -#: skins/default/templates/answer_edit_tips.html:19 -#: skins/default/templates/question_edit_tips.html:16 -msgid "see frequently asked questions" -msgstr "vedi le domande frequenti" - -#: skins/default/templates/answer_edit_tips.html:25 -#: skins/default/templates/question_edit_tips.html:22 -msgid "Markdown tips" -msgstr "sintassi Markdown" - -#: skins/default/templates/answer_edit_tips.html:29 -#: skins/default/templates/question_edit_tips.html:26 -msgid "*italic*" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:32 -#: skins/default/templates/question_edit_tips.html:29 -msgid "**bold**" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:36 -#: skins/default/templates/question_edit_tips.html:33 -#, fuzzy -msgid "*italic* or _italic_" -msgstr "*corsivo* o _corsivo_" - -#: skins/default/templates/answer_edit_tips.html:39 -#: skins/default/templates/question_edit_tips.html:36 -msgid "**bold** or __bold__" -msgstr "**grassetto** o __grassetto__" - -#: skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/question_edit_tips.html:40 -msgid "link" -msgstr "collegamento" - -#: skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:40 -#: skins/default/templates/question_edit_tips.html:45 -msgid "text" -msgstr "testo" - -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:45 -msgid "image" -msgstr "immagine" - -#: skins/default/templates/answer_edit_tips.html:51 -#: skins/default/templates/question_edit_tips.html:49 -msgid "numbered list:" -msgstr "lista numerata:" - -#: skins/default/templates/answer_edit_tips.html:56 -#: skins/default/templates/question_edit_tips.html:54 -msgid "basic HTML tags are also supported" -msgstr "sono supportati anche alcuni semplici tag HTML" - -#: skins/default/templates/answer_edit_tips.html:60 -#: skins/default/templates/question_edit_tips.html:58 -msgid "learn more about Markdown" -msgstr "informazioni su Markdown" - -#: skins/default/templates/ask.html:3 -msgid "Ask a question" -msgstr "Chiedi" - -#: skins/default/templates/ask_form.html:7 -msgid "login to post question info" -msgstr "" -"Puoi cominciare ora a scrivere la tua domanda " -"come utente non registrato. Quando avrai finito, sarai reindirizzato " -"alla pagina di accesso/registrazione. La tua domanda sarà salvata e " -"pubblicata non appena ti sarai registrato. Accedere al proprio account " -"richiede circa 30 secondi, registrarne uno nuovo meno di un minuto." - -#: skins/default/templates/ask_form.html:11 -#, python-format -msgid "" -"must have valid %(email)s to post, \n" -" see %(email_validation_faq_url)s\n" -" " -msgstr "" -"Looks like your email address, %(email)s has not " -"yet been validated. To post messages you must verify your email, " -"please see more details here." -"
      You can submit your question now and validate email after that. Your " -"question will saved as pending meanwhile. " - -#: skins/default/templates/ask_form.html:27 -msgid "Login/signup to post your question" -msgstr "Accedi/Registrati per porre una domanda" - -#: skins/default/templates/ask_form.html:29 -msgid "Ask your question" -msgstr "Chiedi" - -#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:11 -#: skins/default/templates/badges.html:28 -#: skins/default/templates/user_recent.html:13 -#: skins/default/templates/user_stats.html:88 +#: skins/default/templates/badge.html:6 #, fuzzy, python-format -msgid "%(name)s" +msgid "Badge \"%(name)s\"" msgstr "il %(date)s" -#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:7 -msgid "Badge" -msgstr "Medaglia" - -#: skins/default/templates/badge.html:11 -#: skins/default/templates/badges.html:27 -#: skins/default/templates/badges.html:31 -#: skins/default/templates/user_recent.html:13 -#: skins/default/templates/user_stats.html:88 +#: skins/default/templates/badge.html:8 +#: skins/default/templates/user_profile/user_recent.html:16 +#: skins/default/templates/user_profile/user_stats.html:108 #, fuzzy, python-format msgid "%(description)s" msgstr "notifiche" -#: skins/default/templates/badge.html:16 +#: skins/default/templates/badge.html:13 msgid "user received this badge:" msgid_plural "users received this badge:" msgstr[0] "utente ha guadagnato questa medaglia:" @@ -3012,117 +3782,93 @@ msgstr[1] "utenti hanno guadagnato questa medaglia:" msgid "Badges summary" msgstr "Elenco medaglie" -#: skins/default/templates/badges.html:6 +#: skins/default/templates/badges.html:5 msgid "Badges" msgstr "Medaglie" -#: skins/default/templates/badges.html:10 +#: skins/default/templates/badges.html:7 msgid "Community gives you awards for your questions, answers and votes." msgstr "" "Il tuo contributo a questa comunità, attraverso domande, risposte e voti, " "viene premiato con delle medaglie." -#: skins/default/templates/badges.html:11 -#, python-format +#: skins/default/templates/badges.html:8 +#, 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. Give us feedback at " +"%(feedback_faq_url)s.\n" msgstr "" "Qui sotto trovi una lista delle medaglie disponibili, con indicato il numero " "di persone che le hanno ottenute. Hai qualche idea per delle nuove medaglie? " "Proponila" -#: skins/default/templates/badges.html:27 -#, fuzzy, python-format -msgid "%(type)s" -msgstr "il %(date)s" - -#: skins/default/templates/badges.html:40 +#: skins/default/templates/badges.html:35 msgid "Community badges" msgstr "Tipi di medaglie " -#: skins/default/templates/badges.html:43 +#: skins/default/templates/badges.html:37 msgid "gold badge: the highest honor and is very rare" msgstr "" -#: skins/default/templates/badges.html:46 +#: skins/default/templates/badges.html:40 msgid "gold badge description" msgstr "" "Le medaglie d'oro sono le più pregiate. Per ottenerle, non basta partecipare " "attivamente, ma servono anche conoscenze e abilità." -#: skins/default/templates/badges.html:51 +#: skins/default/templates/badges.html:45 msgid "" "silver badge: occasionally awarded for the very high quality contributions" msgstr "" -#: skins/default/templates/badges.html:55 +#: skins/default/templates/badges.html:49 msgid "silver badge description" msgstr "" "Per ottenere le medaglie d'argento ci vuole del tempo. Se ne hai ottenuta " "una, vuol dire che hai dato un grande contributo alla comunità." -#: skins/default/templates/badges.html:58 +#: skins/default/templates/badges.html:52 msgid "bronze badge: often given as a special honor" msgstr "Medaglie di bronzo: date anche come riconoscimento speciale" -#: skins/default/templates/badges.html:62 +#: 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:6 +#: skins/default/templates/close.html:3 skins/default/templates/close.html:5 msgid "Close question" msgstr "Chiudi domanda" -#: skins/default/templates/close.html:9 +#: skins/default/templates/close.html:6 msgid "Close the question" msgstr "Chiudi la domanda" -#: skins/default/templates/close.html:14 +#: skins/default/templates/close.html:11 msgid "Reasons" msgstr "Motivo:" -#: skins/default/templates/close.html:18 +#: skins/default/templates/close.html:15 msgid "OK to close" msgstr "Chiudi" -#: skins/default/templates/editor_data.html:8 -#, 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/editor_data.html:10 -#, 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/editor_data.html:11 -#, fuzzy, python-format -msgid "" -"please use up to %(tag_count)s tags, less than %(max_chars)s characters each" -msgstr "fino a 5 tag, ognuno lungo al massimo 20 caratteri" - -#: skins/default/templates/faq.html:3 skins/default/templates/faq.html.py:6 +#: skins/default/templates/faq.html:3 +#: skins/default/templates/faq_static.html:3 +#: skins/default/templates/faq_static.html:5 msgid "FAQ" msgstr "" -#: skins/default/templates/faq.html:6 +#: skins/default/templates/faq_static.html:5 msgid "Frequently Asked Questions " msgstr "Domande frequenti" -#: skins/default/templates/faq.html:11 +#: skins/default/templates/faq_static.html:6 msgid "What kinds of questions can I ask here?" msgstr "Che tipo di domande posso porre qui?" -#: skins/default/templates/faq.html:12 +#: skins/default/templates/faq_static.html:7 msgid "" "Most importanly - questions should be relevant to this " "community." @@ -3130,7 +3876,7 @@ msgstr "" "La cosa più importante — le domande devono essere " "interessanti per gli altri" -#: skins/default/templates/faq.html:13 +#: 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." @@ -3138,11 +3884,11 @@ msgstr "" "Prima di porre una domanda, usa la funzione di ricerca per assicurarti che " "non sia già stata posta" -#: skins/default/templates/faq.html:15 +#: skins/default/templates/faq_static.html:10 msgid "What questions should I avoid asking?" msgstr "Che domande devo evitare?" -#: skins/default/templates/faq.html:16 +#: skins/default/templates/faq_static.html:11 msgid "" "Please avoid asking questions that are not relevant to this community, too " "subjective and argumentative." @@ -3150,11 +3896,11 @@ msgstr "" "Evita domande che sono troppo vaghe, polemiche o poco interessanti per gli " "altri" -#: skins/default/templates/faq.html:20 +#: skins/default/templates/faq_static.html:13 msgid "What should I avoid in my answers?" msgstr "Cosa devo evitare nelle risposte?" -#: skins/default/templates/faq.html:21 +#: 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 " @@ -3164,19 +3910,19 @@ msgstr "" "discussioni
      . Evita di intavolare discussioni nelle tue risposte. " "Per brevi scambi di opinioni, utilizza i commenti." -#: skins/default/templates/faq.html:24 +#: skins/default/templates/faq_static.html:15 msgid "Who moderates this community?" msgstr "Chi sono i moderatori?" -#: skins/default/templates/faq.html:25 +#: skins/default/templates/faq_static.html:16 msgid "The short answer is: you." msgstr "In breve: tu." -#: skins/default/templates/faq.html:26 +#: skins/default/templates/faq_static.html:17 msgid "This website is moderated by the users." msgstr "Questo sito è moderato dai suoi utenti." -#: skins/default/templates/faq.html:27 +#: skins/default/templates/faq_static.html:18 msgid "" "The reputation system allows users earn the authorization to perform a " "variety of moderation tasks." @@ -3184,11 +3930,11 @@ msgstr "" "Il sistema dei punti reputazione consente agli utenti di guadagnare il " "diritto di effettuare le varie operazioni di moderazione." -#: skins/default/templates/faq.html:32 +#: skins/default/templates/faq_static.html:20 msgid "How does reputation system work?" msgstr "Come funzionano i punti reputazione?" -#: skins/default/templates/faq.html:33 +#: skins/default/templates/faq_static.html:21 msgid "Rep system summary" msgstr "" "Quando qualcuno vota a favore di una tua domanda o risposta, guadagni alcuni " @@ -3197,13 +3943,13 @@ msgstr "" "Ti verranno assegnati gradualmente poteri di moderazione sul sito in base " "alla tua reputazione." -#: skins/default/templates/faq.html:34 +#: 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 %" -"(REP_GAIN_FOR_RECEIVING_UPVOTE)s points, each vote against will " +"it will be downvoted. Each vote in favor will generate " +"%(REP_GAIN_FOR_RECEIVING_UPVOTE)s points, each vote against will " "subtract %(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s points. There " "is a limit of %(MAX_REP_GAIN_PER_USER_PER_DAY)s points that " "can be accumulated for a question or answer per day. The table below " @@ -3213,82 +3959,64 @@ msgstr "" "utenti ti daranno dei voti positivi. D'altro canto, se la risposta è " "sbagliata, gli utenti ti daranno dei voti negativi. Ogni voto a tuo favore " "ti procura %(REP_GAIN_FOR_RECEIVING_UPVOTE)s punti " -"reputazione; ogni voto contro di te ti fa perdere %" -"(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s punti reputazione. Puoi " +"reputazione; ogni voto contro di te ti fa perdere " +"%(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s punti reputazione. Puoi " "guadagnare un massimo di %(MAX_REP_GAIN_PER_USER_PER_DAY)s " "punti al giorno per ogni tua domanda o risposta. Nella tabella qui sotto " "trovi quanti punti reputazione sono necessari per ogni tipo di potere di " "moderazione." -#: skins/default/templates/faq.html:44 -#: skins/default/templates/user_votes.html:10 +#: skins/default/templates/faq_static.html:32 +#: skins/default/templates/user_profile/user_votes.html:13 msgid "upvote" msgstr "votare a favore" -#: skins/default/templates/faq.html:49 +#: skins/default/templates/faq_static.html:37 msgid "use tags" msgstr "usare i tag" -#: skins/default/templates/faq.html:54 +#: skins/default/templates/faq_static.html:42 msgid "add comments" msgstr "aggiungere commenti" -#: skins/default/templates/faq.html:58 -#: skins/default/templates/user_votes.html:12 +#: skins/default/templates/faq_static.html:46 +#: skins/default/templates/user_profile/user_votes.html:15 msgid "downvote" msgstr "votare contro" -#: skins/default/templates/faq.html:61 +#: skins/default/templates/faq_static.html:49 +#, fuzzy +msgid " accept own answer to own questions" +msgstr "Prima risposta accettata a una tua domanda" + +#: skins/default/templates/faq_static.html:53 msgid "open and close own questions" msgstr "aprire e chiudere le proprie domande" -#: skins/default/templates/faq.html:65 +#: skins/default/templates/faq_static.html:57 msgid "retag other's questions" msgstr "modificare i tag delle domande altrui" -#: skins/default/templates/faq.html:70 +#: skins/default/templates/faq_static.html:62 msgid "edit community wiki questions" msgstr "modificare le 'domande comunitarie'" -#: skins/default/templates/faq.html:75 +#: skins/default/templates/faq_static.html:67 #, fuzzy msgid "\"edit any answer" msgstr "modificare ogni risposta" -#: skins/default/templates/faq.html:79 +#: skins/default/templates/faq_static.html:71 #, fuzzy msgid "\"delete any comment" msgstr "cancellare commenti altrui" -#: skins/default/templates/faq.html:86 -msgid "how to validate email title" -msgstr "Come faccio a verificare il mio indirizzo e-mail?" - -#: skins/default/templates/faq.html:88 -#, python-format -msgid "" -"how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)s" -msgstr "" -"

      Come? Se hai appena inserito o cambiato il " -"tuo indirizzo e-mail, riceverai un messaggio di posta contenente un " -"collegamento. Devi semplicemente cliccare sul link contenuto nel " -"messaggio.
      Esso contiene un codice personale di verifica. Puoi " -".

      Perché? Verificare il tuo indirizzo serve a verificare la tua " -"identità e a ridurre lo spam .
      Puoi scegliere " -"di ricevere messaggi di notifica riguardo alle domande che " -"più ti interessano. Inoltre, quando ti registri per la prima volta, viene " -"creata un'gravatarimmagine personale

      basata sul tuo indirizzo." - -#: skins/default/templates/faq.html:93 +#: skins/default/templates/faq_static.html:74 msgid "what is gravatar" msgstr "" "Come cambio la mia immagine personale (gravatar)? Che cos'è il gravatar?" -#: skins/default/templates/faq.html:94 +#: skins/default/templates/faq_static.html:75 msgid "gravatar faq info" msgstr "" "

      L'immagine che appare nel tuo profilo utente è chiamatagravatar" -#: skins/default/templates/faq.html:97 +#: skins/default/templates/faq_static.html:76 msgid "To register, do I need to create new password?" msgstr "Devo scegliere una password per registrarmi?" -#: skins/default/templates/faq.html:98 +#: skins/default/templates/faq_static.html:77 #, fuzzy msgid "" "No, you don't have to. You can login through any service that supports " @@ -3320,22 +4048,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.html:99 +#: skins/default/templates/faq_static.html:78 #, fuzzy msgid "\"Login now!\"" msgstr "Accedi ora!" -#: skins/default/templates/faq.html:103 +#: skins/default/templates/faq_static.html:80 msgid "Why other people can edit my questions/answers?" msgstr "Perché le altre persone possono modificare quello che scrivo?" -#: skins/default/templates/faq.html:104 +#: skins/default/templates/faq_static.html:81 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.html:104 +#: skins/default/templates/faq_static.html:81 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 " @@ -3345,15 +4073,15 @@ msgstr "" "dagli utenti più esperti; questo contribuisce a migliorare la qualità totale " "dei contenuti in questo sito." -#: skins/default/templates/faq.html:105 +#: skins/default/templates/faq_static.html:82 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.html:109 +#: skins/default/templates/faq_static.html:84 msgid "Still have questions?" msgstr "Hai altre domande?" -#: skins/default/templates/faq.html:110 +#: skins/default/templates/faq_static.html:85 #, python-format msgid "" "Please ask your question at %(ask_question_url)s, help make our community " @@ -3362,169 +4090,91 @@ msgstr "" "Ponile tu stesso, e contribuisci a " "migliorare questo sito!" -#: skins/default/templates/faq.html:112 skins/default/templates/header.html:78 -msgid "questions" -msgstr "domande" - -#: skins/default/templates/faq.html:112 -msgid "." -msgstr "." - #: skins/default/templates/feedback.html:3 msgid "Feedback" msgstr "Contatti" -#: skins/default/templates/feedback.html:6 +#: skins/default/templates/feedback.html:5 msgid "Give us your feedback!" msgstr "Dicci cosa pensi di questo sito!" -#: skins/default/templates/feedback.html:12 -#, python-format +#: skins/default/templates/feedback.html:9 +#, fuzzy, python-format msgid "" "\n" -" Dear %(user_name)s, we look " -"forward to hearing your feedback. \n" -" Please type and send us your message below.\n" -" " +" Dear %(user_name)s, we look forward " +"to hearing your feedback. \n" +" Please type and send us your message below.\n" +" " msgstr "" "\n" "Caro %(user_name)s, ci interessa moltissimo " "sentire la tua opinione. Scrivi i tuoi commenti qui sotto." -#: skins/default/templates/feedback.html:19 +#: skins/default/templates/feedback.html:16 +#, fuzzy msgid "" "\n" -" Dear visitor, we look forward to " +" Dear visitor, we look forward to " "hearing your feedback.\n" -" Please type and send us your message below.\n" -" " +" Please type and send us your message below.\n" +" " msgstr "" "\n" "Caro visitatore, ci interessa moltissimo la " "tua opinione. Scrivi i tuoi commenti qui sotto." -#: skins/default/templates/feedback.html:28 +#: skins/default/templates/feedback.html:25 #, fuzzy msgid "(please enter a valid email)" msgstr "inserisci un indirizzo e-mail valido" -#: skins/default/templates/feedback.html:36 +#: skins/default/templates/feedback.html:33 msgid "(this field is required)" msgstr "(campo obbligatorio)" -#: skins/default/templates/feedback.html:44 +#: skins/default/templates/feedback.html:41 msgid "Send Feedback" msgstr "Invia" -#: skins/default/templates/feedback_email.txt:3 -#, python-format +#: skins/default/templates/feedback_email.txt:2 +#, fuzzy, python-format msgid "" "\n" -"Hello, this is a %(site_title)s forum feedback message\n" +"Hello, this is a %(site_title)s forum feedback message.\n" msgstr "" "\n" "Salve, questo è un messaggio di notifica del forum %(site_title)s.\n" -#: skins/default/templates/feedback_email.txt:9 -msgid "Sender is" -msgstr "Inviato da:" - -#: skins/default/templates/feedback_email.txt:11 -#: skins/default/templates/feedback_email.txt:14 -msgid "email" -msgstr "e-mail:" - -#: skins/default/templates/feedback_email.txt:13 -msgid "anonymous" -msgstr "utente non registrato" - -#: skins/default/templates/feedback_email.txt:19 -msgid "Message body:" -msgstr "Corpo del messaggio" - -#: skins/default/templates/footer.html:5 -#: skins/default/templates/header.html:56 -msgid "about" -msgstr "informazioni su Askbot" - -#: skins/default/templates/footer.html:7 -msgid "privacy policy" -msgstr "privacy" - -#: skins/default/templates/footer.html:16 -msgid "give feedback" -msgstr "contatti" - -#: skins/default/templates/header.html:12 -#, python-format -msgid "responses for %(username)s" -msgstr "risposte per %(username)s" - -#: skins/default/templates/header.html:15 -#, python-format -msgid "you have a new response" -msgid_plural "you nave %(response_count)s new responses" -msgstr[0] "hai una nuova risposta" -msgstr[1] "hai %(response_count)s nuove risposte" - -#: skins/default/templates/header.html:18 -msgid "no new responses yet" -msgstr "nessuna nuova risposta" - -#: skins/default/templates/header.html:30 -#: skins/default/templates/header.html:31 -#, python-format -msgid "%(new)s new flagged posts and %(seen)s previous" +#: skins/default/templates/import_data.html:2 +#: skins/default/templates/import_data.html:4 +msgid "Import StackExchange data" msgstr "" -#: skins/default/templates/header.html:33 -#: skins/default/templates/header.html:34 -#, fuzzy, python-format -msgid "%(new)s new flagged posts" -msgstr "Ha segnalato un post come inappropriato" - -#: skins/default/templates/header.html:39 -#: skins/default/templates/header.html:40 -#, fuzzy, python-format -msgid "%(seen)s flagged posts" -msgstr "Ha segnalato un post come inappropriato" - -#: skins/default/templates/header.html:52 -msgid "logout" -msgstr "logout" - -#: skins/default/templates/header.html:54 -msgid "login" -msgstr "login" - -#: skins/default/templates/header.html:59 -msgid "settings" -msgstr "impostazioni" - -#: skins/default/templates/header.html:68 -msgid "back to home page" -msgstr "torna alla home page" - -#: skins/default/templates/header.html:69 -#, fuzzy, python-format -msgid "%(site)s logo" -msgstr "Logo del forum Q&A" - -#: skins/default/templates/header.html:88 -msgid "users" -msgstr "utenti" +#: skins/default/templates/import_data.html:13 +msgid "" +"Warning: if your database is not empty, please back it up\n" +" before attempting this operation." +msgstr "" -#: skins/default/templates/header.html:93 -msgid "badges" -msgstr "medaglie" +#: skins/default/templates/import_data.html:16 +msgid "" +"Upload your stackexchange dump .zip file, then wait until\n" +" the data import completes. This process may take several minutes.\n" +" Please note that feedback will be printed in plain text.\n" +" " +msgstr "" -#: skins/default/templates/header.html:98 -msgid "ask a question" -msgstr "chiedi" +#: skins/default/templates/import_data.html:25 +msgid "Import data" +msgstr "" -#: skins/default/templates/input_bar.html:32 -msgid "search" -msgstr "cerca" +#: 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: python manage." +"py load_stackexchange path/to/your-data.zip" +msgstr "" #: skins/default/templates/instant_notification.html:1 #, python-format @@ -3585,8 +4235,8 @@ msgid "" "%(origin_post_title)s

      \n" msgstr "" "\n" -"

      %(update_author_name)s ha modificato una risposta alla domanda %(origin_post_title)s

      \n" +"

      %(update_author_name)s ha modificato una risposta alla domanda %(origin_post_title)s

      \n" #: skins/default/templates/instant_notification.html:31 #, python-format @@ -3618,258 +4268,289 @@ msgstr "" msgid "

      Sincerely,
      Forum Administrator

      " msgstr "

      Cordialmente,
      l'amministratore

      " -#: skins/default/templates/logout.html:3 skins/default/templates/logout.html:6 -msgid "Logout" -msgstr "Logout" +#: skins/default/templates/macros.html:25 +#, fuzzy, python-format +msgid "Share this question on %(site)s" +msgstr "Riapri questa domanda" -#: skins/default/templates/logout.html:9 -msgid "" -"As a registered user you can login with your OpenID, log out of the site or " -"permanently remove your account." +#: skins/default/templates/macros.html:36 +#, python-format +msgid "follow %(alias)s" +msgstr "" + +#: skins/default/templates/macros.html:39 +#, python-format +msgid "unfollow %(alias)s" msgstr "" -"Cliccando su Logout effettuerai il logout da questo forum " -"ma non dal tuo provider OpenID.

      Se vuoi assicurarti di essere " -"completamente anonimo, esegui il logout anche sul sito del tuo provider " -"OpenID." -#: skins/default/templates/logout.html:10 -msgid "Logout now" -msgstr "Fai il logout adesso" +#: skins/default/templates/macros.html:40 +#, python-format +msgid "following %(alias)s" +msgstr "" -#: skins/default/templates/macros.html:26 +#: skins/default/templates/macros.html:63 msgid "karma:" msgstr "" -#: skins/default/templates/macros.html:30 +#: skins/default/templates/macros.html:67 #, fuzzy msgid "badges:" msgstr "medaglie:" -#: skins/default/templates/macros.html:52 -#: skins/default/templates/macros.html:53 +#: skins/default/templates/macros.html:143 +#: skins/default/templates/macros.html:144 msgid "previous" msgstr "precedente" -#: skins/default/templates/macros.html:64 +#: skins/default/templates/macros.html:155 msgid "current page" msgstr "pagina corrente" -#: skins/default/templates/macros.html:66 -#: skins/default/templates/macros.html:73 +#: skins/default/templates/macros.html:157 +#: skins/default/templates/macros.html:164 #, python-format msgid "page number %(num)s" msgstr "pagina %(num)s" -#: skins/default/templates/macros.html:77 +#: skins/default/templates/macros.html:168 msgid "next page" msgstr "pagina successiva" -#: skins/default/templates/macros.html:88 +#: skins/default/templates/macros.html:179 msgid "posts per page" msgstr "post per pagina" -#: skins/default/templates/macros.html:119 templatetags/extra_tags.py:56 +#: skins/default/templates/macros.html:211 templatetags/extra_tags.py:43 #, python-format msgid "%(username)s gravatar image" msgstr "Immagine gravatar per %(username)s " -#: skins/default/templates/macros.html:142 +#: skins/default/templates/macros.html:220 +#, 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:232 +#, fuzzy +msgid "anonymous user" +msgstr "utente non registrato" + +#: skins/default/templates/macros.html:260 msgid "this post is marked as community wiki" msgstr "" -#: skins/default/templates/macros.html:145 +#: skins/default/templates/macros.html:263 #, python-format msgid "" "This post is a wiki.\n" " Anyone with karma >%(wiki_min_rep)s is welcome to improve it." msgstr "" -#: skins/default/templates/macros.html:151 +#: skins/default/templates/macros.html:269 msgid "asked" msgstr "chiesto il" -#: skins/default/templates/macros.html:153 +#: skins/default/templates/macros.html:271 msgid "answered" msgstr "risposto il" -#: skins/default/templates/macros.html:155 +#: skins/default/templates/macros.html:273 msgid "posted" msgstr "scritto il" -#: skins/default/templates/macros.html:185 +#: skins/default/templates/macros.html:303 msgid "updated" msgstr "modificato" -#: skins/default/templates/macros.html:210 -#: skins/default/templates/unused/questions_ajax.html:23 views/readers.py:237 -msgid "vote" -msgid_plural "votes" -msgstr[0] "voto" -msgstr[1] "voti" +#: skins/default/templates/macros.html:379 +#, python-format +msgid "see questions tagged '%(tag)s'" +msgstr "vedi domande con i tag '%(tag)s'" + +#: skins/default/templates/macros.html:424 views/readers.py:239 +msgid "view" +msgid_plural "views" +msgstr[0] "consultazione" +msgstr[1] "consultazioni" -#: skins/default/templates/macros.html:227 -#: skins/default/templates/unused/questions_ajax.html:43 views/readers.py:240 +#: skins/default/templates/macros.html:441 views/readers.py:236 #, fuzzy msgid "answer" msgid_plural "answers" msgstr[0] "risposta" msgstr[1] "risposta" -#: skins/default/templates/macros.html:239 -#: skins/default/templates/unused/questions_ajax.html:55 views/readers.py:243 -msgid "view" -msgid_plural "views" -msgstr[0] "consultazione" -msgstr[1] "consultazioni" +#: skins/default/templates/macros.html:452 views/readers.py:233 +msgid "vote" +msgid_plural "votes" +msgstr[0] "voto" +msgstr[1] "voti" -#: skins/default/templates/macros.html:251 -#: skins/default/templates/question.html:88 -#: skins/default/templates/tags.html:38 -#: skins/default/templates/unused/question_list.html:64 -#: skins/default/templates/unused/question_summary_list_roll.html:52 -#: skins/default/templates/unused/questions_ajax.html:68 -#, python-format -msgid "see questions tagged '%(tag)s'" -msgstr "vedi domande con i tag '%(tag)s'" +#: skins/default/templates/macros.html:491 +msgid "delete this comment" +msgstr "cancella questo commento" -#: skins/default/templates/macros.html:272 -#: skins/default/templates/question.html:94 -#: skins/default/templates/question.html:247 +#: skins/default/templates/macros.html:502 +#: skins/default/templates/question.html:79 +#: skins/default/templates/question.html:235 #: skins/default/templates/revisions.html:37 msgid "edit" msgstr "modifica" -#: skins/default/templates/macros.html:277 -msgid "delete this comment" -msgstr "cancella questo commento" - -#: skins/default/templates/macros.html:295 -#: skins/default/templates/macros.html:303 -#: skins/default/templates/question.html:423 +#: skins/default/templates/macros.html:520 +#: skins/default/templates/macros.html:528 +#: skins/default/templates/question.html:511 msgid "add comment" msgstr "aggiungi commento" -#: skins/default/templates/macros.html:296 +#: skins/default/templates/macros.html:521 #, python-format msgid "see %(counter)s more" msgid_plural "see %(counter)s more" msgstr[0] "visualizza %(counter)s commento aggiuntivo" msgstr[1] "visualizza %(counter)s commenti aggiuntivi" -#: skins/default/templates/macros.html:298 +#: skins/default/templates/macros.html:523 #, fuzzy, python-format msgid "see %(counter)s more comment" msgid_plural "" "see %(counter)s more comments\n" -" " +" " msgstr[0] "visualizza %(counter)s commento aggiuntivo" msgstr[1] "visualizza %(counter)s commenti aggiuntivi" -#: skins/default/templates/macros.html:375 +#: skins/default/templates/macros.html:661 +#, fuzzy +msgid "one of these is required" +msgstr "campo obbligatorio" + +#: skins/default/templates/macros.html:673 msgid "(required)" msgstr "(campo obbligatorio)" -#: skins/default/templates/macros.html:396 +#: skins/default/templates/macros.html:696 msgid "Toggle the real time Markdown editor preview" msgstr "attiva/disattiva l'anteprima del codice Markdown" -#: skins/default/templates/privacy.html:3 -#: skins/default/templates/privacy.html:6 -msgid "Privacy policy" -msgstr "Regole per la privacy" +#: skins/default/templates/macros.html:708 +#, python-format +msgid "responses for %(username)s" +msgstr "risposte per %(username)s" -#: skins/default/templates/question.html:30 -#: skins/default/templates/question.html:31 -#: skins/default/templates/question.html:46 -#: skins/default/templates/question.html:48 -msgid "i like this post (click again to cancel)" -msgstr "Mi piace questo messaggio (clicca una seconda volta per annullare)" +#: skins/default/templates/macros.html:711 +#, fuzzy, python-format +msgid "you have a 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/question.html:33 -#: skins/default/templates/question.html:50 -#: skins/default/templates/question.html:198 -msgid "current number of votes" -msgstr "numero attuale di voti" +#: skins/default/templates/macros.html:714 +msgid "no new responses yet" +msgstr "nessuna nuova risposta" -#: skins/default/templates/question.html:42 -#: skins/default/templates/question.html:43 -#: skins/default/templates/question.html:55 -#: skins/default/templates/question.html:56 -msgid "i dont like this post (click again to cancel)" -msgstr "Non mi piace questo messaggio (clicca una seconda volta per annullare)" - -#: skins/default/templates/question.html:60 -#: skins/default/templates/question.html:61 -msgid "mark this question as favorite (click again to cancel)" +#: skins/default/templates/macros.html:729 +#: skins/default/templates/macros.html:730 +#, python-format +msgid "%(new)s new flagged posts and %(seen)s previous" msgstr "" -"Aggiungi alle domande preferite (clicca una seconda volta per annullare)" -#: skins/default/templates/question.html:67 -#: skins/default/templates/question.html:68 -msgid "remove favorite mark from this question (click again to restore mark)" -msgstr "" -"Togli dalla lista delle domande preferite (clicca di nuovo per riaggiungerla)" +#: skins/default/templates/macros.html:732 +#: skins/default/templates/macros.html:733 +#, fuzzy, python-format +msgid "%(new)s new flagged posts" +msgstr "Ha segnalato un post come inappropriato" -#: skins/default/templates/question.html:74 -#, fuzzy -msgid "Share this question on twitter" -msgstr "Riapri questa domanda" +#: skins/default/templates/macros.html:738 +#: skins/default/templates/macros.html:739 +#, fuzzy, python-format +msgid "%(seen)s flagged posts" +msgstr "Ha segnalato un post come inappropriato" -#: skins/default/templates/question.html:75 -msgid "Share this question on facebook" -msgstr "" +#: skins/default/templates/main_page.html:11 +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:26 +#: skins/default/templates/question.html:27 +#: skins/default/templates/question.html:42 +#: skins/default/templates/question.html:44 +msgid "i like this post (click again to cancel)" +msgstr "Mi piace questo messaggio (clicca una seconda volta per annullare)" + +#: skins/default/templates/question.html:29 +#: skins/default/templates/question.html:46 +#: skins/default/templates/question.html:186 +msgid "current number of votes" +msgstr "numero attuale di voti" + +#: skins/default/templates/question.html:38 +#: skins/default/templates/question.html:39 +#: skins/default/templates/question.html:51 +#: skins/default/templates/question.html:52 +msgid "i dont like this post (click again to cancel)" +msgstr "Non mi piace questo messaggio (clicca una seconda volta per annullare)" -#: skins/default/templates/question.html:97 +#: skins/default/templates/question.html:82 msgid "retag" msgstr "modifica i tag" -#: skins/default/templates/question.html:104 +#: skins/default/templates/question.html:89 msgid "reopen" msgstr "riapri" -#: skins/default/templates/question.html:108 +#: skins/default/templates/question.html:93 msgid "close" msgstr "chiudi" -#: skins/default/templates/question.html:113 -#: skins/default/templates/question.html:251 +#: skins/default/templates/question.html:98 +#: skins/default/templates/question.html:239 msgid "" "report as offensive (i.e containing spam, advertising, malicious text, etc.)" msgstr "segnala questo messaggio come offensivo (spam, pubblicità, insulti...)" -#: skins/default/templates/question.html:114 -#: skins/default/templates/question.html:252 +#: skins/default/templates/question.html:99 +#: skins/default/templates/question.html:240 msgid "flag offensive" msgstr "segnala come offensivo" -#: skins/default/templates/question.html:121 -#: skins/default/templates/question.html:262 -#: skins/default/templates/authopenid/signin.html:175 +#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:250 +msgid "undelete" +msgstr "riattiva domanda" + +#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:250 +#: skins/default/templates/authopenid/signin.html:166 msgid "delete" msgstr "cancella" -#: skins/default/templates/question.html:156 +#: skins/default/templates/question.html:143 #, python-format msgid "" "The question has been closed for the following reason \"%(close_reason)s\" by" msgstr "" "Questa domanda è stata chiusa per il seguente motivo: \"%(close_reason)s\" da" -#: skins/default/templates/question.html:158 +#: skins/default/templates/question.html:145 #, python-format msgid "close date %(closed_at)s" msgstr "data di chiusura %(closed_at)s" -#: skins/default/templates/question.html:166 +#: skins/default/templates/question.html:151 #, 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 Risposta:" @@ -3877,86 +4558,103 @@ msgstr[1] "" "\n" "%(counter)s Risposte:" -#: skins/default/templates/question.html:174 +#: skins/default/templates/question.html:159 msgid "oldest answers will be shown first" msgstr "mostra prima le risposte più vecchie" -#: skins/default/templates/question.html:174 +#: skins/default/templates/question.html:160 msgid "oldest answers" msgstr "più vecchie" -#: skins/default/templates/question.html:176 +#: skins/default/templates/question.html:162 msgid "newest answers will be shown first" msgstr "mostra prima le risposte più nuove" -#: skins/default/templates/question.html:176 +#: skins/default/templates/question.html:163 msgid "newest answers" msgstr "più nuove" -#: skins/default/templates/question.html:178 +#: skins/default/templates/question.html:165 msgid "most voted answers will be shown first" msgstr "mostra prima le risposte più votate" -#: skins/default/templates/question.html:178 +#: skins/default/templates/question.html:166 msgid "popular answers" msgstr "più votate" -#: skins/default/templates/question.html:196 -#: skins/default/templates/question.html:197 +#: skins/default/templates/question.html:184 +#: skins/default/templates/question.html:185 msgid "i like this answer (click again to cancel)" msgstr "Mi piace questa risposta (clicca una seconda volta per annullare)" -#: skins/default/templates/question.html:207 -#: skins/default/templates/question.html:208 +#: skins/default/templates/question.html:195 +#: skins/default/templates/question.html:196 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/question.html:216 -#: skins/default/templates/question.html:217 +#: skins/default/templates/question.html:204 +#: skins/default/templates/question.html:205 msgid "mark this answer as favorite (click again to undo)" msgstr "" "segna questa risposta tra le preferite (clicca una seconda volta per " "annullare)" -#: skins/default/templates/question.html:226 -#: skins/default/templates/question.html:227 +#: skins/default/templates/question.html:214 +#: skins/default/templates/question.html:215 #, python-format msgid "%(question_author)s has selected this answer as correct" msgstr "%(question_author)s ha scelto questa come risposta migliore" -#: skins/default/templates/question.html:242 +#: skins/default/templates/question.html:230 msgid "answer permanent link" msgstr "link permanente alla risposta" -#: skins/default/templates/question.html:243 +#: skins/default/templates/question.html:231 msgid "permanent link" msgstr "link permanente" -#: skins/default/templates/question.html:262 -msgid "undelete" -msgstr "riattiva domanda" +#: skins/default/templates/question.html:256 +#, fuzzy +msgid "swap with question" +msgstr "Rispondi alla domanda" + +#: skins/default/templates/question.html:297 +#, python-format +msgid "" +"Know someone who can answer? Share a link " +"to this question via" +msgstr "" + +#: skins/default/templates/question.html:303 +#, fuzzy +msgid " or" +msgstr "oppure" -#: skins/default/templates/question.html:309 -#: skins/default/templates/question.html:311 +#: skins/default/templates/question.html:305 +msgid "email" +msgstr "e-mail:" + +#: skins/default/templates/question.html:320 +#: skins/default/templates/question.html:322 msgid "Notify me once a day when there are any new answers" msgstr "" "Segnalami nuove risposte o aggiornamenti via e-mail ogni " "giorno" -#: skins/default/templates/question.html:313 +#: skins/default/templates/question.html:324 msgid "Notify me weekly when there are any new answers" msgstr "" "Segnalami nuove risposte o aggiornamenti via e-mail ogni " "settimana" -#: skins/default/templates/question.html:315 +#: skins/default/templates/question.html:326 #, fuzzy msgid "Notify me immediately when there are any new answers" msgstr "" "Segnalami nuove risposte o aggiornamenti via e-mail ogni " "settimana" -#: skins/default/templates/question.html:318 +#: skins/default/templates/question.html:329 #, python-format msgid "" "You can always adjust frequency of email updates from your %(profile_url)s" @@ -3965,21 +4663,26 @@ msgstr "" "sort=email_subscriptions'>modificare la frequenza con cui " "ricevi gli aggiornamenti)" -#: skins/default/templates/question.html:323 +#: skins/default/templates/question.html:334 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.html:333 +#: skins/default/templates/question.html:344 +#, fuzzy +msgid "Login/Signup to Answer" +msgstr "Accedi/registrati per scrivere la tua risposta" + +#: skins/default/templates/question.html:352 msgid "Your answer" msgstr "La tua risposta" -#: skins/default/templates/question.html:335 +#: skins/default/templates/question.html:354 msgid "Be the first one to answer this question!" msgstr "Rispondi per primo!" -#: skins/default/templates/question.html:341 +#: skins/default/templates/question.html:360 msgid "you can answer anonymously and then login" msgstr "" "Comincia pure a rispondere - la tua " @@ -3988,7 +4691,7 @@ msgstr "" "eventuali discussioni utilizza i commenti e " "ricordati di votare (non appena hai fatto il login)!" -#: skins/default/templates/question.html:345 +#: skins/default/templates/question.html:364 msgid "answer your own question only to give an answer" msgstr "" "Rispondi pure alla tua domanda, ma cerca di " @@ -3997,7 +4700,7 @@ msgstr "" "ricordati di votare :) per le risposte migliori (e per " "quelle peggiori!)" -#: skins/default/templates/question.html:347 +#: skins/default/templates/question.html:366 msgid "please only give an answer, no discussions" msgstr "" "Cerca di dare una vera risposta. Se vuoi " @@ -4006,284 +4709,162 @@ msgstr "" "invece di scriverne una nuova. Inoltre, ricordati di votare " "— ci permette di individuare facilmente le domande e risposte migliori!" -#: skins/default/templates/question.html:354 +#: skins/default/templates/question.html:373 msgid "Login/Signup to Post Your Answer" msgstr "Accedi/registrati per scrivere la tua risposta" -#: skins/default/templates/question.html:357 +#: skins/default/templates/question.html:376 +#: skins/default/templates/question.html:389 msgid "Answer Your Own Question" msgstr "Rispondi alla tua domanda" -#: skins/default/templates/question.html:359 +#: skins/default/templates/question.html:378 msgid "Answer the question" msgstr "Rispondi alla domanda" -#: skins/default/templates/question.html:373 -msgid "Question tags" +#: skins/default/templates/question.html:397 +#, fuzzy +msgid "Question tools" msgstr "Tag" -#: skins/default/templates/question.html:378 -#: skins/default/templates/questions.html:222 -#: skins/default/templates/tag_selector.html:9 -#: skins/default/templates/tag_selector.html:26 +#: skins/default/templates/question.html:400 +#, fuzzy +msgid "click to unfollow this question" +msgstr "clicca qui per vedere le domande con più risposte" + +#: skins/default/templates/question.html:401 +msgid "Following" +msgstr "" + +#: skins/default/templates/question.html:402 +msgid "Unfollow" +msgstr "" + +#: skins/default/templates/question.html:406 +#, fuzzy +msgid "click to follow this question" +msgstr "clicca qui per vedere le domande con più risposte" + +#: skins/default/templates/question.html:407 +msgid "Follow" +msgstr "" + +#: skins/default/templates/question.html:414 #, python-format -msgid "see questions tagged '%(tag_name)s'" -msgstr "Vedi le domande con tag '%(tag_name)s'" +msgid "%(count)s follower" +msgid_plural "%(count)s followers" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/templates/question.html:420 +#, fuzzy +msgid "email the updates" +msgstr "notifiche via e-mail cancellate" + +#: skins/default/templates/question.html:423 +msgid "" +"Here (once you log in) you will be able to sign up for the " +"periodic email updates about this question." +msgstr "" + +#: skins/default/templates/question.html:428 +#, fuzzy +msgid "subscribe to this question rss feed" +msgstr "sottoscrivi al feed delle domande" + +#: skins/default/templates/question.html:429 +#, fuzzy +msgid "subsribe to rss feed" +msgstr "sottoscrivi al feed delle domande" + +#: skins/default/templates/question.html:438 +msgid "Question tags" +msgstr "Tag" + +#: skins/default/templates/question.html:460 +msgid "Stats:" +msgstr "" -#: skins/default/templates/question.html:384 +#: skins/default/templates/question.html:462 msgid "question asked" msgstr "Chiesta il" -#: skins/default/templates/question.html:387 +#: skins/default/templates/question.html:465 msgid "question was seen" msgstr "domanda consultata" -#: skins/default/templates/question.html:387 +#: skins/default/templates/question.html:465 msgid "times" msgstr "volte" -#: skins/default/templates/question.html:390 +#: skins/default/templates/question.html:468 msgid "last updated" msgstr "Aggiornata l'ultima voltail" -#: skins/default/templates/question.html:397 +#: skins/default/templates/question.html:477 msgid "Related questions" msgstr "Domande simili" #: skins/default/templates/question_edit.html:4 -#: skins/default/templates/question_edit.html:10 +#: skins/default/templates/question_edit.html:9 msgid "Edit question" msgstr "Modifica domanda" -#: skins/default/templates/question_edit_tips.html:3 -msgid "question tips" -msgstr "Suggerimenti" - -#: skins/default/templates/question_edit_tips.html:6 -msgid "please ask a relevant question" -msgstr "poni una domanda interessante per gli altri" - -#: skins/default/templates/question_edit_tips.html:9 -msgid "please try provide enough details" -msgstr "sii sufficientemente dettagliato" - #: skins/default/templates/question_retag.html:3 -#: skins/default/templates/question_retag.html:6 +#: skins/default/templates/question_retag.html:5 msgid "Change tags" msgstr "Cambia tag" -#: skins/default/templates/question_retag.html:25 +#: skins/default/templates/question_retag.html:21 msgid "Retag" msgstr "Modifica tag" -#: skins/default/templates/question_retag.html:34 +#: skins/default/templates/question_retag.html:28 msgid "Why use and modify tags?" msgstr "Perché usare e modificare i tag?" -#: skins/default/templates/question_retag.html:36 +#: skins/default/templates/question_retag.html:30 msgid "Tags help to keep the content better organized and searchable" msgstr "" -#: skins/default/templates/question_retag.html:38 +#: skins/default/templates/question_retag.html:32 msgid "tag editors receive special awards from the community" msgstr "sarai premiato con delle medaglie per il buon uso dei tag" -#: skins/default/templates/question_retag.html:79 +#: skins/default/templates/question_retag.html:59 msgid "up to 5 tags, less than 20 characters each" msgstr "fino a 5 tag, ognuno lungo al massimo 20 caratteri" -#: skins/default/templates/questions.html:4 -msgid "Questions" -msgstr "Domande" - -#: skins/default/templates/questions.html:9 -msgid "In:" -msgstr "In:" - -#: skins/default/templates/questions.html:18 -msgid "see unanswered questions" -msgstr "vedi domande senza risposta" - -#: skins/default/templates/questions.html:24 -msgid "see your favorite questions" -msgstr "vedi le tue domande preferite" - -#: skins/default/templates/questions.html:29 -msgid "Sort by:" -msgstr "Ordina per:" - -#: skins/default/templates/questions.html:97 -#: skins/default/templates/questions.html:100 -msgid "subscribe to the questions feed" -msgstr "sottoscrivi al feed delle domande" - -#: skins/default/templates/questions.html:101 -msgid "rss feed" -msgstr "feed RSS" - -#: skins/default/templates/questions.html:105 -#, fuzzy, python-format -msgid "" -"\n" -" %(q_num)s question\n" -" " -msgid_plural "" -"\n" -" %(q_num)s questions\n" -" " -msgstr[0] "" -"\n" -"%(q_num)s domanda trovata" -msgstr[1] "" -"\n" -"%(q_num)s domande trovate" - -#: skins/default/templates/questions.html:111 views/readers.py:157 -#, python-format -msgid "%(q_num)s question" -msgid_plural "%(q_num)s questions" -msgstr[0] "%(q_num)s domanda" -msgstr[1] "%(q_num)s domande" - -#: skins/default/templates/questions.html:114 -#, python-format -msgid "with %(author_name)s's contributions" -msgstr "contenenti messaggi di %(author_name)s" - -#: skins/default/templates/questions.html:117 -msgid "tagged" -msgstr "con i tag" - -#: skins/default/templates/questions.html:122 -msgid "Search tips:" -msgstr "Consigli per la ricerca:" - -#: skins/default/templates/questions.html:125 -msgid "reset author" -msgstr "azzera autore" - -#: skins/default/templates/questions.html:127 -#: skins/default/templates/questions.html:130 -#: skins/default/templates/questions.html:168 -#: skins/default/templates/questions.html:171 -#, fuzzy -msgid " or " -msgstr "oppure" - -#: skins/default/templates/questions.html:128 -msgid "reset tags" -msgstr "azzera i tag" - -#: skins/default/templates/questions.html:131 -#: skins/default/templates/questions.html:134 -msgid "start over" -msgstr "ricomincia da capo" - -#: skins/default/templates/questions.html:136 -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/questions.html:139 -msgid "Search tip:" -msgstr "Suggerimenti per la ricerca:" - -#: skins/default/templates/questions.html:139 -msgid "add tags and a query to focus your search" -msgstr "aggiungi tag e parole chiave per restringere il campo" - -#: skins/default/templates/questions.html:154 -#: skins/default/templates/unused/questions_ajax.html:79 -msgid "There are no unanswered questions here" -msgstr "Non ci sono domande senza risposte" - -#: skins/default/templates/questions.html:157 -#: skins/default/templates/unused/questions_ajax.html:82 -msgid "No favorite questions here. " -msgstr "Non ci sono domande preferite" - -#: skins/default/templates/questions.html:158 -#: skins/default/templates/unused/questions_ajax.html:83 -msgid "Please start (bookmark) some questions when you visit them" -msgstr "Aggiungi qualche domanda alla tua lista di domande preferite" - -#: skins/default/templates/questions.html:163 -#: skins/default/templates/unused/questions_ajax.html:88 -msgid "You can expand your search by " -msgstr "puoi espandere la tua ricerca" - -#: skins/default/templates/questions.html:166 -#: skins/default/templates/unused/questions_ajax.html:92 -msgid "resetting author" -msgstr "azzerando l'autore" - -#: skins/default/templates/questions.html:169 -#: skins/default/templates/unused/questions_ajax.html:96 -msgid "resetting tags" -msgstr "azzerando i tag" - -#: skins/default/templates/questions.html:172 -#: skins/default/templates/questions.html:175 -#: skins/default/templates/unused/questions_ajax.html:100 -#: skins/default/templates/unused/questions_ajax.html:104 -msgid "starting over" -msgstr "ricominciando da capo" - -#: skins/default/templates/questions.html:180 -#: skins/default/templates/unused/questions_ajax.html:109 -msgid "Please always feel free to ask your question!" -msgstr "Ricorda, puoi sempre porre tu stesso una domanda!" - -#: skins/default/templates/questions.html:184 -#: skins/default/templates/unused/questions_ajax.html:113 -msgid "Did not find what you were looking for?" -msgstr "Non hai trovato quello che cercavi?" - -#: skins/default/templates/questions.html:185 -#: skins/default/templates/unused/questions_ajax.html:114 -msgid "Please, post your question!" -msgstr "Poni tu stesso la domanda!" - -#: skins/default/templates/questions.html:200 -msgid "Contributors" -msgstr "Utenti attivi" - -#: skins/default/templates/questions.html:217 -msgid "Related tags" -msgstr "Tag" - -#: skins/default/templates/reopen.html:3 skins/default/templates/reopen.html:6 +#: skins/default/templates/reopen.html:3 skins/default/templates/reopen.html:5 msgid "Reopen question" msgstr "Riapri domanda" -#: skins/default/templates/reopen.html:9 +#: skins/default/templates/reopen.html:6 msgid "Title" msgstr "Titolo" -#: skins/default/templates/reopen.html:14 -#, python-format +#: skins/default/templates/reopen.html:11 +#, fuzzy, python-format msgid "" "This question has been closed by \n" -" %(closed_by_username)s\n" -" " +" %(closed_by_username)s\n" msgstr "" "Questa domanda è stata chiusa da\n" "%(closed_by_username)s" -#: skins/default/templates/reopen.html:19 +#: skins/default/templates/reopen.html:16 msgid "Close reason:" msgstr "Motivo della chiusura:" -#: skins/default/templates/reopen.html:22 +#: skins/default/templates/reopen.html:19 msgid "When:" msgstr "Quando:" -#: skins/default/templates/reopen.html:25 +#: skins/default/templates/reopen.html:22 msgid "Reopen this question?" msgstr "Riapri questa domanda?" -#: skins/default/templates/reopen.html:29 +#: skins/default/templates/reopen.html:26 msgid "Reopen this question" msgstr "Riapri questa domanda" @@ -4301,449 +4882,91 @@ msgstr "clicca per mostrare/nascondere le modifiche" msgid "revision %(number)s" msgstr "Numero di revisione dei media della skin" -#: skins/default/templates/tag_selector.html:3 -msgid "Interesting tags" -msgstr "Tag preferiti" - -#: skins/default/templates/tag_selector.html:13 -#, python-format -msgid "remove '%(tag_name)s' from the list of interesting tags" -msgstr "rimuovi '%(tag_name)s' dalla tua lista di tag preferiti" - -#: skins/default/templates/tag_selector.html:19 -#: skins/default/templates/tag_selector.html:36 -#: skins/default/templates/user_moderate.html:35 -msgid "Add" -msgstr "Aggiungi" - -#: skins/default/templates/tag_selector.html:20 -msgid "Ignored tags" -msgstr "Tag ignorati" +#: skins/default/templates/subscribe_for_tags.html:3 +#: skins/default/templates/subscribe_for_tags.html:5 +#, fuzzy +msgid "Subscribe for tags" +msgstr "usare i tag" -#: skins/default/templates/tag_selector.html:30 -#, python-format -msgid "remove '%(tag_name)s' from the list of ignored tags" -msgstr "rimuovi '%(tag_name)s' dalla tua lista di tag ignorati" +#: skins/default/templates/subscribe_for_tags.html:6 +msgid "Please, subscribe for the following tags:" +msgstr "" -#: skins/default/templates/tag_selector.html:39 -msgid "keep ignored questions hidden" -msgstr "nascondi le domande ignorate" +#: skins/default/templates/subscribe_for_tags.html:15 +msgid "Subscribe" +msgstr "" -#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:8 +#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:11 msgid "Tag list" msgstr "Lista dei tag" -#: skins/default/templates/tags.html:14 +#: skins/default/templates/tags.html:9 +#, python-format +msgid "Tags, matching \"%(stag)s\"" +msgstr "" + +#: skins/default/templates/tags.html:19 msgid "sorted alphabetically" msgstr "ordina i tag alfabeticamente" -#: skins/default/templates/tags.html:15 +#: skins/default/templates/tags.html:20 msgid "by name" msgstr "per nome" -#: skins/default/templates/tags.html:20 +#: skins/default/templates/tags.html:25 msgid "sorted by frequency of tag use" msgstr "ordina i tag per frequenza d'uso" -#: skins/default/templates/tags.html:21 +#: skins/default/templates/tags.html:26 msgid "by popularity" msgstr "per numero di voti" -#: skins/default/templates/tags.html:27 -#, python-format -msgid "" -"All tags matching '%(stag)s'" -msgstr "" -"Tutti i tag contenenti '%(stag)s'" - -#: skins/default/templates/tags.html:30 +#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:56 msgid "Nothing found" msgstr "Nessun risultato" -#: skins/default/templates/user.html:14 -#, python-format -msgid "%(username)s's profile" -msgstr "profilo dell'utente %(username)s" +#: skins/default/templates/users.html:4 skins/default/templates/users.html:7 +msgid "Users" +msgstr "Utenti" -#: skins/default/templates/user_edit.html:4 -msgid "Edit user profile" -msgstr "Modifica profilo" +#: skins/default/templates/users.html:13 +msgid "see people with the highest reputation" +msgstr "" -#: skins/default/templates/user_edit.html:7 -msgid "edit profile" -msgstr "modifica profilo" +#: skins/default/templates/users.html:14 +#: skins/default/templates/user_profile/user_info.html:25 +msgid "reputation" +msgstr "punti reputazione" -#: skins/default/templates/user_edit.html:17 -#: skins/default/templates/user_info.html:11 -msgid "change picture" -msgstr "cambia immagine" - -#: skins/default/templates/user_edit.html:20 -msgid "Registered user" -msgstr "Utente registrato" - -#: skins/default/templates/user_edit.html:27 -msgid "Screen Name" -msgstr "Nome visualizzato" - -#: skins/default/templates/user_edit.html:75 -#: skins/default/templates/user_email_subscriptions.html:18 -msgid "Update" -msgstr "Conferma" - -#: skins/default/templates/user_email_subscriptions.html:4 -msgid "Email subscription settings" -msgstr "E-mail di notifica" - -#: skins/default/templates/user_email_subscriptions.html:5 -msgid "email subscription settings info" -msgstr "" -"Modifica la frequenza delle e-mail di notifica Ricevi aggiornamenti via e-mail sulle domande che ti interessano, e " -"
      aiuta la comunità
      rispondendo alle domande degli " -"altri. Se non vuoi ricevere e-mail, seleziona 'mai' qui sotto.
      Le e-mail " -"di aggiornamento vengono spedite solo quando ci sono nuove attività." - -#: skins/default/templates/user_email_subscriptions.html:19 -msgid "Stop sending email" -msgstr "Non spedire più nessuna e-mail" - -#: skins/default/templates/user_inbox.html:31 -#, fuzzy -msgid "Sections:" -msgstr "domande" - -#: skins/default/templates/user_inbox.html:35 -#, python-format -msgid "forum responses (%(re_count)s)" -msgstr "" - -#: skins/default/templates/user_inbox.html:40 -#, python-format -msgid "flagged items (%(flag_count)s)" +#: skins/default/templates/users.html:19 +msgid "see people who joined most recently" msgstr "" -#: skins/default/templates/user_inbox.html:46 -#, fuzzy -msgid "select:" -msgstr "cancella" - -#: skins/default/templates/user_inbox.html:48 -#, fuzzy -msgid "seen" -msgstr "ultimo accesso" - -#: skins/default/templates/user_inbox.html:49 -#, fuzzy -msgid "new" +#: skins/default/templates/users.html:20 +msgid "recent" msgstr "più recenti" -#: skins/default/templates/user_inbox.html:50 -#, fuzzy -msgid "none" -msgstr "bronzo" - -#: skins/default/templates/user_inbox.html:51 -#, fuzzy -msgid "mark as seen" -msgstr "ultimo accesso" - -#: skins/default/templates/user_inbox.html:52 -#, fuzzy -msgid "mark as new" -msgstr "ha accettato una risposta" - -#: skins/default/templates/user_inbox.html:53 -msgid "dismiss" -msgstr "" - -#: skins/default/templates/user_info.html:18 -#: skins/default/templates/users.html:13 skins/default/templates/users.html:14 -msgid "reputation" -msgstr "punti reputazione" - -#: skins/default/templates/user_info.html:30 -msgid "manage login methods" -msgstr "" - -#: skins/default/templates/user_info.html:34 -msgid "update profile" -msgstr "aggiorna profilo" - -#: skins/default/templates/user_info.html:46 -msgid "real name" -msgstr "nome vero" - -#: skins/default/templates/user_info.html:51 -msgid "member for" -msgstr "membro dal" - -#: skins/default/templates/user_info.html:56 -msgid "last seen" -msgstr "ultimo accesso" - -#: skins/default/templates/user_info.html:62 -msgid "user website" -msgstr "sito personale" - -#: skins/default/templates/user_info.html:68 -msgid "location" -msgstr "residenza" - -#: skins/default/templates/user_info.html:75 -msgid "age" -msgstr "età" - -#: skins/default/templates/user_info.html:76 -msgid "age unit" -msgstr "anni" - -#: skins/default/templates/user_info.html:83 -msgid "todays unused votes" -msgstr "voti rimanenti per oggi" - -#: skins/default/templates/user_info.html:84 -msgid "votes left" -msgstr "voti rimanenti" - -#: skins/default/templates/user_moderate.html:5 -#, python-format -msgid "%(username)s's current status is \"%(status)s\"" -msgstr "lo stato dell'utente %(username)s è \"%(status)s\"" - -#: skins/default/templates/user_moderate.html:8 -msgid "User status changed" -msgstr "Lo stato dell'utente è stato modificato" - -#: skins/default/templates/user_moderate.html:15 -msgid "Save" -msgstr "Salva" - -#: skins/default/templates/user_moderate.html:21 -#, python-format -msgid "Your current reputation is %(reputation)s points" -msgstr "Hai %(reputation)s punti reputazione" - -#: skins/default/templates/user_moderate.html:23 -#, python-format -msgid "User's current reputation is %(reputation)s points" -msgstr "Questo utente ha %(reputation)s punti reputazione" - -#: skins/default/templates/user_moderate.html:27 -msgid "User reputation changed" -msgstr "La reputazione dell'utente è stata modificata" - -#: skins/default/templates/user_moderate.html:34 -msgid "Subtract" -msgstr "Sottrai" - -#: skins/default/templates/user_moderate.html:39 -#, python-format -msgid "Send message to %(username)s" -msgstr "Spedisci messaggio a %(username)s" - -#: skins/default/templates/user_moderate.html:40 -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 "" -"Verrà spedita all'utente un'e-mail utilizzando il tuo indirizzo come campo " -"'reply-to'. Assicurati che il tuo indirizzo sia inserito correttamente." - -#: skins/default/templates/user_moderate.html:42 -msgid "Message sent" -msgstr "Messaggio spedito" - -#: skins/default/templates/user_moderate.html:60 -msgid "Send message" -msgstr "Spedisci messaggio" - -#: skins/default/templates/user_reputation.html:7 -msgid "Your karma change log." -msgstr "Registro dei tuoi punti reputazione" - -#: skins/default/templates/user_reputation.html:9 -#, python-format -msgid "%(user_name)s's karma change log" -msgstr "Registro dei punti reputazione di %(user_name)s" - -#: skins/default/templates/user_stats.html:7 -#, python-format -msgid "%(counter)s Question" -msgid_plural "%(counter)s Questions" -msgstr[0] "%(counter)s Domanda" -msgstr[1] "%(counter)s Domande" - -#: skins/default/templates/user_stats.html:12 -#, python-format -msgid "%(counter)s Answer" -msgid_plural "%(counter)s Answers" -msgstr[0] "%(counter)s Risposta" -msgstr[1] "%(counter)s Risposte" - -#: skins/default/templates/user_stats.html:20 -#, 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_stats.html:20 -msgid "this answer has been selected as correct" -msgstr "questa risposta è stata accettata dall'autore" - -#: skins/default/templates/user_stats.html:30 -#, python-format -msgid "(%(comment_count)s comment)" -msgid_plural "the answer has been commented %(comment_count)s times" -msgstr[0] "(%(comment_count)s commento)" -msgstr[1] "(%(comment_count)s commenti)" - -#: skins/default/templates/user_stats.html:40 -#, python-format -msgid "%(cnt)s Vote" -msgid_plural "%(cnt)s Votes " -msgstr[0] "%(cnt)s Voto" -msgstr[1] "%(cnt)s Voti" - -#: skins/default/templates/user_stats.html:46 -msgid "thumb up" -msgstr "pollice su" - -#: skins/default/templates/user_stats.html:47 -msgid "user has voted up this many times" -msgstr "l'utente ha dato questo numero di voti a favore" - -#: skins/default/templates/user_stats.html:50 -msgid "thumb down" -msgstr "pollice in giù" - -#: skins/default/templates/user_stats.html:51 -msgid "user voted down this many times" -msgstr "l'utente ha dato questo numero di voti contro" - -#: skins/default/templates/user_stats.html:59 -#, python-format -msgid "%(counter)s Tag" -msgid_plural "%(counter)s Tags" -msgstr[0] "%(counter)s Tag" -msgstr[1] "%(counter)s Tag" - -#: skins/default/templates/user_stats.html:67 -#, python-format -msgid "" -"see other questions with %(view_user)s's contributions tagged '%(tag_name)s' " +#: skins/default/templates/users.html:25 +msgid "see people who joined the site first" msgstr "" -"vedi altre domande con il tag '%(tag_name)s' a cui %(view_user)s ha " -"contribuito" - -#: skins/default/templates/user_stats.html:81 -#, python-format -msgid "%(counter)s Badge" -msgid_plural "%(counter)s Badges" -msgstr[0] "%(counter)s Medaglia" -msgstr[1] "%(counter)s Medaglie" - -#: skins/default/templates/user_tabs.html:5 -msgid "User profile" -msgstr "Profilo utente" - -#: skins/default/templates/user_tabs.html:6 -msgid "overview" -msgstr "dettagli" - -#: skins/default/templates/user_tabs.html:9 views/users.py:753 -msgid "comments and answers to others questions" -msgstr "commenti e risposte a domande" -#: skins/default/templates/user_tabs.html:10 -msgid "inbox" +#: skins/default/templates/users.html:31 +msgid "see people sorted by name" msgstr "" -#: skins/default/templates/user_tabs.html:13 -msgid "graph of user reputation" -msgstr "registro dei punti reputazione" - -#: skins/default/templates/user_tabs.html:14 -msgid "reputation history" -msgstr "reputazione" - -#: skins/default/templates/user_tabs.html:16 -msgid "questions that user selected as his/her favorite" -msgstr "domande preferite da questo utente" - -#: skins/default/templates/user_tabs.html:17 -msgid "favorites" -msgstr "preferite" - -#: skins/default/templates/user_tabs.html:19 -msgid "recent activity" -msgstr "attività recente" - -#: skins/default/templates/user_tabs.html:20 -msgid "activity" -msgstr "attività" - -#: skins/default/templates/user_tabs.html:23 views/users.py:818 -msgid "user vote record" -msgstr "elenco dei voti dati" - -#: skins/default/templates/user_tabs.html:24 -msgid "casted votes" -msgstr "voti" - -#: skins/default/templates/user_tabs.html:28 views/users.py:928 -msgid "email subscription settings" -msgstr "impostazioni notifiche via e-mail" - -#: skins/default/templates/user_tabs.html:29 -msgid "subscriptions" -msgstr "notifiche" - -#: skins/default/templates/user_tabs.html:33 views/users.py:216 -msgid "moderate this user" -msgstr "modera questo utente" - -#: skins/default/templates/user_tabs.html:34 -msgid "moderation" -msgstr "modera" - -#: skins/default/templates/users.html:4 skins/default/templates/users.html:7 -msgid "Users" -msgstr "Utenti" - -#: skins/default/templates/users.html:19 skins/default/templates/users.html:20 -msgid "recent" -msgstr "più recenti" - -#: skins/default/templates/users.html:31 skins/default/templates/users.html:32 +#: skins/default/templates/users.html:32 msgid "by username" msgstr "per nome" -#: skins/default/templates/users.html:38 +#: skins/default/templates/users.html:37 #, python-format msgid "users matching query %(suser)s:" msgstr "utenti contenenti %(suser)s:" -#: skins/default/templates/users.html:41 +#: skins/default/templates/users.html:40 msgid "Nothing found." msgstr "Nessun utente trovato" -#: skins/default/templates/users_questions.html:9 -#: skins/default/templates/users_questions.html:17 -#, fuzzy, python-format -msgid "this questions was selected as favorite %(cnt)s time" -msgid_plural "this questions was selected as favorite %(cnt)s times" -msgstr[0] "questa domanda è stata aggiunta alle preferite" -msgstr[1] "questa domanda è stata aggiunta alle preferite" - -#: skins/default/templates/users_questions.html:10 -msgid "thumb-up on" -msgstr "pollice in su attivato" - -#: skins/default/templates/users_questions.html:18 -msgid "thumb-up off" -msgstr "pollice in su disattivato" - #: skins/default/templates/authopenid/changeemail.html:2 #: skins/default/templates/authopenid/changeemail.html:8 #: skins/default/templates/authopenid/changeemail.html:36 @@ -4854,16 +5077,16 @@ msgstr "E-mail di verifica non spedita" msgid "email key not sent %(email)s change email here %(change_link)s" msgstr "" "Il tuo indirizzo %(email)s è già stato verificato, quindi l'e-mail non è stata spedita. Se necessario puoi cambiare l'indirizzo usato per le notifiche." +"span>, quindi l'e-mail non è stata spedita. Se necessario puoi cambiare l'indirizzo usato per le notifiche." #: skins/default/templates/authopenid/complete.html:21 -#: skins/default/templates/authopenid/complete.html:24 +#: skins/default/templates/authopenid/complete.html:23 #, fuzzy msgid "Registration" msgstr "Registrati" -#: skins/default/templates/authopenid/complete.html:29 +#: skins/default/templates/authopenid/complete.html:27 #, python-format msgid "register new %(provider)s account info, see %(gravatar_faq_url)s" msgstr "" @@ -4875,12 +5098,12 @@ msgstr "" "tuo account, detta gravatar.

      " -#: skins/default/templates/authopenid/complete.html:32 +#: skins/default/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" +" %(provider)s. Email is required too, see " +"%(gravatar_faq_url)s\n" " " msgstr "" "

      Oops... l'utente %(username)s esiste già.indirizzo e-" "mail. Con esso puoi ricevere aggiornamenti sulle " "domande che più ti interessano; verrà inoltre usato per creare un'immagine " -"unica associata al tuo account, detta gravatar.

      " +"unica associata al tuo account, detta gravatar.

      " -#: skins/default/templates/authopenid/complete.html:36 +#: skins/default/templates/authopenid/complete.html:34 #, python-format msgid "" "register new external %(provider)s account info, see %(gravatar_faq_url)s" @@ -4902,10 +5125,10 @@ msgstr "" "sceglierne uno nuovo.

      Inoltre, è necessario inserire un " "indirizzo e-mail valido. Con esso puoi ricevere " "aggiornamenti sulle domande che più ti interessano; verrà inoltre " -"usato per creare un'immagine unica associata al tuo account, detta gravatar.

      " +"usato per creare un'immagine unica associata al tuo account, detta gravatar.

      " -#: skins/default/templates/authopenid/complete.html:39 +#: skins/default/templates/authopenid/complete.html:37 #, python-format msgid "register new Facebook connect account info, see %(gravatar_faq_url)s" msgstr "" @@ -4917,23 +5140,23 @@ msgstr "" "tuo account, detta gravatar.

      " -#: skins/default/templates/authopenid/complete.html:42 +#: skins/default/templates/authopenid/complete.html:40 msgid "This account already exists, please use another." msgstr "Questo nome utente è già in uso, scegline un altro." -#: skins/default/templates/authopenid/complete.html:61 +#: skins/default/templates/authopenid/complete.html:59 msgid "Screen name label" msgstr "" "Nome visualizzato (verrà mostrato agli altri utenti)" -#: skins/default/templates/authopenid/complete.html:68 +#: skins/default/templates/authopenid/complete.html:66 msgid "Email address label" msgstr "" "Indirizzo e-mail (non verrà mostrato " "agli altri utenti, dev'essere valido)" -#: skins/default/templates/authopenid/complete.html:74 -#: skins/default/templates/authopenid/signup_with_password.html:17 +#: skins/default/templates/authopenid/complete.html:72 +#: skins/default/templates/authopenid/signup_with_password.html:36 msgid "receive updates motivational blurb" msgstr "" "Ricevi aggiornamenti via e-mail — questo aiuterà la " @@ -4942,17 +5165,17 @@ msgstr "" "settimana con un riassunto delle novità (se ce ne sono)
      Se lo " "desideri, modifica queste impostazioni." -#: skins/default/templates/authopenid/complete.html:78 -#: skins/default/templates/authopenid/signup_with_password.html:21 +#: skins/default/templates/authopenid/complete.html:76 +#: skins/default/templates/authopenid/signup_with_password.html:40 msgid "please select one of the options above" msgstr "scegli una delle opzioni qui sopra" -#: skins/default/templates/authopenid/complete.html:81 +#: skins/default/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/default/templates/authopenid/complete.html:82 +#: skins/default/templates/authopenid/complete.html:80 msgid "create account" msgstr "registrati" @@ -5007,11 +5230,40 @@ msgstr "" "Se hai ricevuto questo messaggio per errore, basta che tu ignori questa e-" "mail. Ci scusiamo per il problema." -#: skins/default/templates/authopenid/signin.html:3 +#: skins/default/templates/authopenid/logout.html:3 +msgid "Logout" +msgstr "Logout" + +#: skins/default/templates/authopenid/logout.html:5 +msgid "You have successfully logged out" +msgstr "" + +#: skins/default/templates/authopenid/logout.html: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 "" + +#: skins/default/templates/authopenid/macros.html:53 +msgid "Please enter your user name, then sign in" +msgstr "" + +#: skins/default/templates/authopenid/macros.html:54 +#: skins/default/templates/authopenid/signin.html:90 +#, fuzzy +msgid "(or select another login method above)" +msgstr "scegli una delle opzioni qui sopra" + +#: skins/default/templates/authopenid/macros.html:56 +#, fuzzy +msgid "Sign in" +msgstr "signin/" + +#: skins/default/templates/authopenid/signin.html:4 msgid "User login" msgstr "Accesso utente" -#: skins/default/templates/authopenid/signin.html:11 +#: skins/default/templates/authopenid/signin.html:14 #, python-format msgid "" "\n" @@ -5023,7 +5275,7 @@ msgstr "" "%(title)s %(summary)s...\" è stata " "memorizzata e verrà pubblicata non appena ti registrerai." -#: skins/default/templates/authopenid/signin.html:18 +#: skins/default/templates/authopenid/signin.html:21 #, python-format msgid "" "Your question \n" @@ -5034,185 +5286,186 @@ msgstr "" "strong> %(summary)s...\" è stata memorizzata " "e verrà pubblicata non appena ti registrerai." -#: skins/default/templates/authopenid/signin.html:25 +#: skins/default/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." msgstr "" -#: skins/default/templates/authopenid/signin.html:28 +#: skins/default/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 "" -#: skins/default/templates/authopenid/signin.html:30 +#: skins/default/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 "" -#: skins/default/templates/authopenid/signin.html:34 +#: skins/default/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 "" -#: skins/default/templates/authopenid/signin.html:36 +#: skins/default/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 "" -#: skins/default/templates/authopenid/signin.html:39 +#: skins/default/templates/authopenid/signin.html:42 msgid "" "Please check your email and visit the enclosed link to re-connect to your " "account" msgstr "" -#: skins/default/templates/authopenid/signin.html:86 -msgid "Please enter your user name, then sign in" -msgstr "" - #: skins/default/templates/authopenid/signin.html:87 -#: skins/default/templates/authopenid/signin.html:109 -#, fuzzy -msgid "(or select another login method above)" -msgstr "scegli una delle opzioni qui sopra" - -#: skins/default/templates/authopenid/signin.html:89 -#, fuzzy -msgid "Sign in" -msgstr "signin/" - -#: skins/default/templates/authopenid/signin.html:107 #, fuzzy msgid "Please enter your user name and password, then sign in" msgstr "Per favore inserisci username e password" -#: skins/default/templates/authopenid/signin.html:111 +#: skins/default/templates/authopenid/signin.html:93 msgid "Login failed, please try again" msgstr "" -#: skins/default/templates/authopenid/signin.html:114 -msgid "Login name" -msgstr "Nome utente" +#: skins/default/templates/authopenid/signin.html:97 +#, fuzzy +msgid "Login or email" +msgstr "mai" -#: skins/default/templates/authopenid/signin.html:118 +#: skins/default/templates/authopenid/signin.html:101 msgid "Password" msgstr "Password" -#: skins/default/templates/authopenid/signin.html:122 +#: skins/default/templates/authopenid/signin.html:106 msgid "Login" msgstr "Accedi" -#: skins/default/templates/authopenid/signin.html:129 +#: skins/default/templates/authopenid/signin.html:113 msgid "To change your password - please enter the new one twice, then submit" msgstr "" -#: skins/default/templates/authopenid/signin.html:132 +#: skins/default/templates/authopenid/signin.html:117 #, fuzzy msgid "New password" msgstr "New password created" -#: skins/default/templates/authopenid/signin.html:137 +#: skins/default/templates/authopenid/signin.html:124 #, fuzzy msgid "Please, retype" msgstr "per favore, digita di nuovo la password" -#: skins/default/templates/authopenid/signin.html:156 +#: skins/default/templates/authopenid/signin.html:146 msgid "Here are your current login methods" msgstr "" -#: skins/default/templates/authopenid/signin.html:160 +#: skins/default/templates/authopenid/signin.html:150 #, fuzzy msgid "provider" msgstr "Utente approvato" -#: skins/default/templates/authopenid/signin.html:161 +#: skins/default/templates/authopenid/signin.html:151 #, fuzzy msgid "last used" msgstr "ultimo accesso" -#: skins/default/templates/authopenid/signin.html:162 +#: skins/default/templates/authopenid/signin.html:152 msgid "delete, if you like" msgstr "" -#: skins/default/templates/authopenid/signin.html:187 +#: skins/default/templates/authopenid/signin.html:168 +#, fuzzy +msgid "cannot be deleted" +msgstr "Account eliminato." + +#: skins/default/templates/authopenid/signin.html:181 #, fuzzy msgid "Still have trouble signing in?" msgstr "Hai altre domande?" -#: skins/default/templates/authopenid/signin.html:192 +#: skins/default/templates/authopenid/signin.html:186 #, fuzzy msgid "Please, enter your email address below and obtain a new key" msgstr "Per favore inserisci la tua password" -#: skins/default/templates/authopenid/signin.html:194 +#: skins/default/templates/authopenid/signin.html:188 #, fuzzy msgid "Please, enter your email address below to recover your account" msgstr "Per favore inserisci la tua password" -#: skins/default/templates/authopenid/signin.html:197 +#: skins/default/templates/authopenid/signin.html:191 #, fuzzy msgid "recover your account via email" msgstr "Scegli una nuova password" -#: skins/default/templates/authopenid/signin.html:208 +#: skins/default/templates/authopenid/signin.html:202 msgid "Send a new recovery key" msgstr "" -#: skins/default/templates/authopenid/signin.html:210 +#: skins/default/templates/authopenid/signin.html:204 #, fuzzy msgid "Recover your account via email" msgstr "Scegli una nuova password" -#: skins/default/templates/authopenid/signin.html:221 +#: skins/default/templates/authopenid/signin.html:216 msgid "Why use OpenID?" msgstr "Perché usare OpenID?" -#: skins/default/templates/authopenid/signin.html:224 +#: skins/default/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/default/templates/authopenid/signin.html:227 +#: skins/default/templates/authopenid/signin.html:222 msgid "reuse openid" msgstr "" "Puoi riutilizzare in completa sicurezza le stesse credenziali per tutti i " "siti abilitati." -#: skins/default/templates/authopenid/signin.html:230 +#: skins/default/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/default/templates/authopenid/signin.html:233 +#: skins/default/templates/authopenid/signin.html:228 msgid "openid is supported open standard" msgstr "" "OpenID è basato su uno standard aperto, supportato da molte organizzazioni." -#: skins/default/templates/authopenid/signin.html:237 +#: skins/default/templates/authopenid/signin.html:232 msgid "Find out more" msgstr "Scopri di più" -#: skins/default/templates/authopenid/signin.html:238 +#: skins/default/templates/authopenid/signin.html:233 msgid "Get OpenID" msgstr "Ottieni un OpenID" -#: skins/default/templates/authopenid/signup_with_password.html:3 +#: skins/default/templates/authopenid/signup_with_password.html:4 msgid "Signup" msgstr "Accedi" -#: skins/default/templates/authopenid/signup_with_password.html:6 +#: skins/default/templates/authopenid/signup_with_password.html:10 +#, fuzzy +msgid "Please register by clicking on any of the icons below" +msgstr "scegli una delle opzioni qui sopra" + +#: skins/default/templates/authopenid/signup_with_password.html:23 +#, fuzzy +msgid "or create a new user name and password here" +msgstr "Scegli nome utente e password" + +#: skins/default/templates/authopenid/signup_with_password.html:25 msgid "Create login name and password" msgstr "Scegli nome utente e password" -#: skins/default/templates/authopenid/signup_with_password.html:8 +#: skins/default/templates/authopenid/signup_with_password.html:26 msgid "Traditional signup info" msgstr "" "Se preferisci, puoi scegliere un nome utente e una " @@ -5222,7 +5475,7 @@ msgstr "" "siti (per esempio Gmail o AOL), senza dover rivelare a noi né a nessuno la " "tua password e senza doverne scegliere una nuova." -#: skins/default/templates/authopenid/signup_with_password.html:24 +#: skins/default/templates/authopenid/signup_with_password.html:44 msgid "" "Please read and type in the two words below to help us prevent automated " "account creation." @@ -5230,177 +5483,892 @@ msgstr "" "Riscrivi le due parole che leggi qui sotto. Questo serve a impedire la " "creazione automatizzata di nuovi account." -#: skins/default/templates/authopenid/signup_with_password.html:26 +#: skins/default/templates/authopenid/signup_with_password.html:47 msgid "Create Account" msgstr "Crea account" -#: skins/default/templates/authopenid/signup_with_password.html:27 +#: skins/default/templates/authopenid/signup_with_password.html:49 msgid "or" msgstr "oppure" -#: skins/default/templates/authopenid/signup_with_password.html:28 +#: skins/default/templates/authopenid/signup_with_password.html:50 msgid "return to OpenID login" msgstr "torna al login OpenID" -#: skins/default/templates/unused/email_base.html:8 -msgid "home" -msgstr "home" +#: skins/default/templates/avatar/add.html:3 +#, fuzzy +msgid "add avatar" +msgstr "" +"Come cambio la mia immagine personale (gravatar)? Che cos'è il gravatar?" -#: skins/default/templates/unused/notarobot.html:3 -msgid "Please prove that you are a Human Being" -msgstr "Dimostraci di essere un essere umano" +#: skins/default/templates/avatar/add.html:5 +#, fuzzy +msgid "Change avatar" +msgstr "Cambia tag" -#: skins/default/templates/unused/notarobot.html:10 -msgid "I am a Human Being" -msgstr "Sono un essere umano" +#: skins/default/templates/avatar/add.html:6 +#: skins/default/templates/avatar/change.html:7 +#, fuzzy +msgid "Your current avatar: " +msgstr "Il tuo account è:" -#: skins/default/templates/unused/question_counter_widget.html:78 -msgid "Please decide if you like this question or not by voting" -msgstr "Indica la tua opinione su questa domanda votando" +#: skins/default/templates/avatar/add.html:9 +#: skins/default/templates/avatar/change.html:11 +msgid "You haven't uploaded an avatar yet. Please upload one now." +msgstr "" -#: skins/default/templates/unused/question_counter_widget.html:84 -msgid "" -"\n" -" vote\n" -" " -msgid_plural "" -"\n" -" votes\n" -" " -msgstr[0] "" -"\n" -"voto" -msgstr[1] "" -"\n" -"voti" +#: skins/default/templates/avatar/add.html:13 +msgid "Upload New Image" +msgstr "" -#: skins/default/templates/unused/question_counter_widget.html:93 -#: skins/default/templates/unused/question_list.html:23 -#: skins/default/templates/unused/questions_ajax.html:27 -msgid "this answer has been accepted to be correct" -msgstr "questa risposta è stata accettata dall'autore della domanda" +#: skins/default/templates/avatar/change.html:4 +#, fuzzy +msgid "change avatar" +msgstr "i cambiamenti sono stati salvati" -#: skins/default/templates/unused/question_counter_widget.html:99 -msgid "" -"\n" -" answer \n" -" " -msgid_plural "" -"\n" -" answers \n" -" " -msgstr[0] "" -"\n" -"risposta" -msgstr[1] "" -"\n" -"risposte" +#: skins/default/templates/avatar/change.html:17 +msgid "Choose new Default" +msgstr "" -#: skins/default/templates/unused/question_counter_widget.html:111 -msgid "" -"\n" -" view\n" -" " -msgid_plural "" -"\n" -" views\n" -" " -msgstr[0] "" -"\n" -"consultazione" -msgstr[1] "" -"\n" -"consultazioni" +#: skins/default/templates/avatar/change.html:22 +#, fuzzy +msgid "Upload" +msgstr "upload/" -#: skins/default/templates/unused/question_list.html:15 +#: skins/default/templates/avatar/confirm_delete.html:3 +#, fuzzy +msgid "delete avatar" +msgstr "ha cancellato una risposta" + +#: skins/default/templates/avatar/confirm_delete.html:5 +msgid "Please select the avatars that you would like to delete." +msgstr "" + +#: skins/default/templates/avatar/confirm_delete.html:7 +#, python-format msgid "" -"\n" -" vote\n" -" " -msgid_plural "" -"\n" -" votes\n" -" " -msgstr[0] "" -"\n" -"voto" -msgstr[1] "" -"\n" -"voti" +"You have no avatars to delete. Please
      upload one now." +msgstr "" + +#: skins/default/templates/avatar/confirm_delete.html:13 +#, fuzzy +msgid "Delete These" +msgstr "ha cancellato una risposta" + +#: skins/default/templates/blocks/answer_edit_tips.html:3 +msgid "answer tips" +msgstr "consigli per le risposte" + +#: skins/default/templates/blocks/answer_edit_tips.html:6 +msgid "please make your answer relevant to this community" +msgstr "fai in modo che la tua risposta sia interessante per la comunità" + +#: skins/default/templates/blocks/answer_edit_tips.html:9 +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/blocks/answer_edit_tips.html:12 +msgid "please try to provide details" +msgstr "includi tutti i dettagli necessari" + +#: skins/default/templates/blocks/answer_edit_tips.html:15 +#: skins/default/templates/blocks/question_edit_tips.html:11 +msgid "be clear and concise" +msgstr "sii chiaro e conciso" + +#: skins/default/templates/blocks/answer_edit_tips.html:19 +#: skins/default/templates/blocks/question_edit_tips.html:15 +msgid "see frequently asked questions" +msgstr "vedi le domande frequenti" + +#: skins/default/templates/blocks/answer_edit_tips.html:25 +#: skins/default/templates/blocks/question_edit_tips.html:20 +msgid "Markdown tips" +msgstr "sintassi Markdown" + +#: skins/default/templates/blocks/answer_edit_tips.html:29 +#: skins/default/templates/blocks/question_edit_tips.html:24 +msgid "*italic*" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:32 +#: skins/default/templates/blocks/question_edit_tips.html:27 +msgid "**bold**" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:36 +#: skins/default/templates/blocks/question_edit_tips.html:31 +#, fuzzy +msgid "*italic* or _italic_" +msgstr "*corsivo* o _corsivo_" + +#: skins/default/templates/blocks/answer_edit_tips.html:39 +#: skins/default/templates/blocks/question_edit_tips.html:34 +msgid "**bold** or __bold__" +msgstr "**grassetto** o __grassetto__" + +#: skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/question_edit_tips.html:38 +msgid "link" +msgstr "collegamento" + +#: skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:38 +#: skins/default/templates/blocks/question_edit_tips.html:43 +msgid "text" +msgstr "testo" + +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:43 +msgid "image" +msgstr "immagine" + +#: skins/default/templates/blocks/answer_edit_tips.html:51 +#: skins/default/templates/blocks/question_edit_tips.html:47 +msgid "numbered list:" +msgstr "lista numerata:" + +#: skins/default/templates/blocks/answer_edit_tips.html:56 +#: skins/default/templates/blocks/question_edit_tips.html:52 +msgid "basic HTML tags are also supported" +msgstr "sono supportati anche alcuni semplici tag HTML" + +#: skins/default/templates/blocks/answer_edit_tips.html:60 +#: skins/default/templates/blocks/question_edit_tips.html:56 +msgid "learn more about Markdown" +msgstr "informazioni su Markdown" + +#: skins/default/templates/blocks/ask_form.html:6 +msgid "login to post question info" +msgstr "" +"Puoi cominciare ora a scrivere la tua domanda " +"come utente non registrato. Quando avrai finito, sarai reindirizzato " +"alla pagina di accesso/registrazione. La tua domanda sarà salvata e " +"pubblicata non appena ti sarai registrato. Accedere al proprio account " +"richiede circa 30 secondi, registrarne uno nuovo meno di un minuto." -#: skins/default/templates/unused/question_list.html:35 +#: skins/default/templates/blocks/ask_form.html:10 +#, python-format msgid "" -"\n" -" answer \n" -" " -msgid_plural "" -"\n" -" answers \n" -" " -msgstr[0] "" -"\n" -"risposta" -msgstr[1] "" -"\n" -"risposte" +"must have valid %(email)s to post, \n" +" see %(email_validation_faq_url)s\n" +" " +msgstr "" +"Il tuo indirizzo e-mail %(email)s non è stato " +"ancora verificato Prima di pubblicare messaggi devi verificare il tuo " +"indirizzo; maggiori dettagli qui." +"
      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/blocks/ask_form.html:34 +msgid "Login/signup to post your question" +msgstr "Accedi/Registrati per porre una domanda" + +#: skins/default/templates/blocks/ask_form.html:36 +msgid "Ask your question" +msgstr "Chiedi" -#: skins/default/templates/unused/question_list.html:47 +#: skins/default/templates/blocks/bottom_scripts.html:7 +#, python-format msgid "" -"\n" -" view\n" -" " -msgid_plural "" -"\n" -" views\n" -" " -msgstr[0] "" -"\n" -"consultazione" -msgstr[1] "" -"\n" -"consultazioni" +"Please note: %(app_name)s requires javascript to work properly, please " +"enable javascript in your browser, here is how" +msgstr "" -#: skins/default/templates/unused/question_summary_list_roll.html:13 -msgid "answers" -msgstr "risposte" +#: skins/default/templates/blocks/editor_data.html:5 +#, 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/unused/question_summary_list_roll.html:14 -msgid "votes" -msgstr "voti" +#: skins/default/templates/blocks/editor_data.html:7 +#, 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/unused/question_summary_list_roll.html:15 -msgid "views" -msgstr "consultazioni" +#: skins/default/templates/blocks/editor_data.html:8 +#, fuzzy, python-format +msgid "" +"please use up to %(tag_count)s tags, less than %(max_chars)s characters each" +msgstr "fino a 5 tag, ognuno lungo al massimo 20 caratteri" -#: templatetags/extra_filters.py:168 templatetags/extra_filters_jinja.py:234 -msgid "no items in counter" -msgstr "no" +#: skins/default/templates/blocks/footer.html:4 +#: skins/default/templates/blocks/header_meta_links.html:12 +msgid "about" +msgstr "informazioni su Askbot" + +#: skins/default/templates/blocks/footer.html:6 +msgid "privacy policy" +msgstr "privacy" + +#: skins/default/templates/blocks/footer.html:15 +msgid "give feedback" +msgstr "contatti" -#: templatetags/extra_tags.py:155 views/readers.py:187 +#: skins/default/templates/blocks/footer.html:41 #, 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" +msgid "Content on this site is licensed under a %(license)s" +msgstr "" -#: templatetags/extra_tags.py:178 templatetags/extra_tags.py:225 -#: templatetags/extra_tags.py:229 -msgid "reputation points" -msgstr "punti reputazione" +#: skins/default/templates/blocks/header.html:8 +msgid "back to home page" +msgstr "torna alla home page" + +#: skins/default/templates/blocks/header.html:9 +#, fuzzy, python-format +msgid "%(site)s logo" +msgstr "Logo del forum Q&A" + +#: skins/default/templates/blocks/header.html:20 +msgid "questions" +msgstr "domande" + +#: skins/default/templates/blocks/header.html:30 +msgid "users" +msgstr "utenti" + +#: skins/default/templates/blocks/header.html:35 +msgid "badges" +msgstr "medaglie" + +#: skins/default/templates/blocks/header.html:40 +msgid "ask a question" +msgstr "chiedi" + +#: skins/default/templates/blocks/header_meta_links.html:8 +msgid "logout" +msgstr "logout" + +#: skins/default/templates/blocks/header_meta_links.html:10 +msgid "login" +msgstr "login" + +#: skins/default/templates/blocks/header_meta_links.html:15 +msgid "settings" +msgstr "impostazioni" + +#: skins/default/templates/blocks/input_bar.html:34 +msgid "search" +msgstr "cerca" + +#: skins/default/templates/blocks/question_edit_tips.html:3 +msgid "question tips" +msgstr "Suggerimenti" + +#: skins/default/templates/blocks/question_edit_tips.html:5 +msgid "please ask a relevant question" +msgstr "poni una domanda interessante per gli altri" + +#: skins/default/templates/blocks/question_edit_tips.html:8 +msgid "please try provide enough details" +msgstr "sii sufficientemente dettagliato" + +#: skins/default/templates/blocks/tag_selector.html:4 +msgid "Interesting tags" +msgstr "Tag preferiti" + +#: skins/default/templates/blocks/tag_selector.html:18 +#: skins/default/templates/blocks/tag_selector.html:34 +#: skins/default/templates/user_profile/user_moderate.html:40 +msgid "Add" +msgstr "Aggiungi" + +#: skins/default/templates/blocks/tag_selector.html:20 +msgid "Ignored tags" +msgstr "Tag ignorati" + +#: skins/default/templates/blocks/tag_selector.html:36 +#, fuzzy +msgid "Display tag filter" +msgstr "Scegli il tag filtro per l'email" + +#: skins/default/templates/main_page/content.html:13 +msgid "Did not find what you were looking for?" +msgstr "Non hai trovato quello che cercavi?" + +#: skins/default/templates/main_page/content.html:14 +msgid "Please, post your question!" +msgstr "Poni tu stesso la domanda!" + +#: skins/default/templates/main_page/headline.html:7 +msgid "subscribe to the questions feed" +msgstr "sottoscrivi al feed delle domande" + +#: skins/default/templates/main_page/headline.html:8 +msgid "rss feed" +msgstr "feed RSS" + +#: skins/default/templates/main_page/headline.html:12 views/readers.py:131 +#, fuzzy, python-format +msgid "%(q_num)s question, tagged" +msgid_plural "%(q_num)s questions, tagged" +msgstr[0] "%(q_num)s domanda" +msgstr[1] "%(q_num)s domande" + +#: skins/default/templates/main_page/headline.html:14 views/readers.py:139 +#, python-format +msgid "%(q_num)s question" +msgid_plural "%(q_num)s questions" +msgstr[0] "%(q_num)s domanda" +msgstr[1] "%(q_num)s domande" + +#: skins/default/templates/main_page/headline.html:17 +#, python-format +msgid "with %(author_name)s's contributions" +msgstr "contenenti messaggi di %(author_name)s" + +#: skins/default/templates/main_page/headline.html:28 +msgid "Search tips:" +msgstr "Consigli per la ricerca:" + +#: skins/default/templates/main_page/headline.html:31 +msgid "reset author" +msgstr "azzera autore" + +#: skins/default/templates/main_page/headline.html:33 +#: skins/default/templates/main_page/headline.html:36 +#: 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:34 +msgid "reset tags" +msgstr "azzera i tag" + +#: skins/default/templates/main_page/headline.html:37 +#: skins/default/templates/main_page/headline.html:40 +msgid "start over" +msgstr "ricomincia da capo" + +#: skins/default/templates/main_page/headline.html:42 +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:45 +msgid "Search tip:" +msgstr "Suggerimenti per la ricerca:" + +#: skins/default/templates/main_page/headline.html:45 +msgid "add tags and a query to focus your search" +msgstr "aggiungi tag e parole chiave per restringere il campo" + +#: skins/default/templates/main_page/nothing_found.html:4 +msgid "There are no unanswered questions here" +msgstr "Non ci sono domande senza risposte" + +#: skins/default/templates/main_page/nothing_found.html:7 +#, fuzzy +msgid "No questions here. " +msgstr "Non ci sono domande preferite" + +#: skins/default/templates/main_page/nothing_found.html:8 +#, fuzzy +msgid "Please star (bookmark) some questions or follow some users." +msgstr "Aggiungi qualche domanda alla tua lista di domande preferite" + +#: skins/default/templates/main_page/nothing_found.html:13 +msgid "You can expand your search by " +msgstr "puoi espandere la tua ricerca" + +#: skins/default/templates/main_page/nothing_found.html:16 +msgid "resetting author" +msgstr "azzerando l'autore" + +#: skins/default/templates/main_page/nothing_found.html:19 +msgid "resetting tags" +msgstr "azzerando i tag" + +#: skins/default/templates/main_page/nothing_found.html:22 +#: skins/default/templates/main_page/nothing_found.html:25 +msgid "starting over" +msgstr "ricominciando da capo" + +#: skins/default/templates/main_page/nothing_found.html:30 +msgid "Please always feel free to ask your question!" +msgstr "Ricorda, puoi sempre porre tu stesso una domanda!" + +#: skins/default/templates/main_page/sidebar.html:8 +msgid "Contributors" +msgstr "Utenti attivi" + +#: skins/default/templates/main_page/sidebar.html:25 +msgid "Related tags" +msgstr "Tag" + +#: skins/default/templates/main_page/tab_bar.html:5 +msgid "In:" +msgstr "In:" + +#: skins/default/templates/main_page/tab_bar.html:14 +msgid "see unanswered questions" +msgstr "vedi domande senza risposta" + +#: skins/default/templates/main_page/tab_bar.html:20 +#, fuzzy +msgid "see your followed questions" +msgstr "vedi le tue domande preferite" + +#: skins/default/templates/main_page/tab_bar.html:21 +msgid "followed" +msgstr "" + +#: skins/default/templates/main_page/tab_bar.html:25 +msgid "Sort by:" +msgstr "Ordina per:" + +#: skins/default/templates/user_profile/user.html:13 +#, python-format +msgid "%(username)s's profile" +msgstr "profilo dell'utente %(username)s" + +#: skins/default/templates/user_profile/user_edit.html:4 +msgid "Edit user profile" +msgstr "Modifica profilo" + +#: skins/default/templates/user_profile/user_edit.html:7 +msgid "edit profile" +msgstr "modifica profilo" + +#: skins/default/templates/user_profile/user_edit.html:17 +#: skins/default/templates/user_profile/user_info.html:15 +msgid "change picture" +msgstr "cambia immagine" + +#: skins/default/templates/user_profile/user_edit.html:20 +msgid "Registered user" +msgstr "Utente registrato" + +#: skins/default/templates/user_profile/user_edit.html:27 +msgid "Screen Name" +msgstr "Nome visualizzato" + +#: skins/default/templates/user_profile/user_edit.html:83 +#: skins/default/templates/user_profile/user_email_subscriptions.html:21 +msgid "Update" +msgstr "Conferma" + +#: skins/default/templates/user_profile/user_email_subscriptions.html:4 +#: skins/default/templates/user_profile/user_tabs.html:42 +msgid "subscriptions" +msgstr "notifiche" + +#: skins/default/templates/user_profile/user_email_subscriptions.html:7 +msgid "Email subscription settings" +msgstr "E-mail di notifica" + +#: skins/default/templates/user_profile/user_email_subscriptions.html:8 +msgid "email subscription settings info" +msgstr "" +"Modifica la frequenza delle e-mail di notifica Ricevi aggiornamenti via e-mail sulle domande che ti interessano, e " +"
      aiuta la comunità
      rispondendo alle domande degli " +"altri. Se non vuoi ricevere e-mail, seleziona 'mai' qui sotto.
      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_favorites.html:4 +#: skins/default/templates/user_profile/user_tabs.html:27 +#, fuzzy +msgid "followed questions" +msgstr "Chiudi domanda" + +#: skins/default/templates/user_profile/user_inbox.html:18 +#: skins/default/templates/user_profile/user_tabs.html:12 +msgid "inbox" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:34 +#, fuzzy +msgid "Sections:" +msgstr "domande" + +#: skins/default/templates/user_profile/user_inbox.html:38 +#, python-format +msgid "forum responses (%(re_count)s)" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:43 +#, python-format +msgid "flagged items (%(flag_count)s)" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:49 +#, fuzzy +msgid "select:" +msgstr "cancella" + +#: skins/default/templates/user_profile/user_inbox.html:51 +#, fuzzy +msgid "seen" +msgstr "ultimo accesso" + +#: skins/default/templates/user_profile/user_inbox.html:52 +#, fuzzy +msgid "new" +msgstr "più recenti" + +#: skins/default/templates/user_profile/user_inbox.html:53 +#, fuzzy +msgid "none" +msgstr "bronzo" + +#: skins/default/templates/user_profile/user_inbox.html:54 +#, fuzzy +msgid "mark as seen" +msgstr "ultimo accesso" + +#: skins/default/templates/user_profile/user_inbox.html:55 +#, fuzzy +msgid "mark as new" +msgstr "ha accettato una risposta" + +#: skins/default/templates/user_profile/user_inbox.html:56 +msgid "dismiss" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:19 +msgid "remove" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:36 +msgid "update profile" +msgstr "aggiorna profilo" + +#: skins/default/templates/user_profile/user_info.html:40 +msgid "manage login methods" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:53 +msgid "real name" +msgstr "nome vero" + +#: skins/default/templates/user_profile/user_info.html:58 +msgid "member for" +msgstr "membro dal" + +#: skins/default/templates/user_profile/user_info.html:63 +msgid "last seen" +msgstr "ultimo accesso" + +#: skins/default/templates/user_profile/user_info.html:69 +msgid "user website" +msgstr "sito personale" + +#: skins/default/templates/user_profile/user_info.html:75 +msgid "location" +msgstr "residenza" + +#: skins/default/templates/user_profile/user_info.html:82 +msgid "age" +msgstr "età" + +#: skins/default/templates/user_profile/user_info.html:83 +msgid "age unit" +msgstr "anni" + +#: skins/default/templates/user_profile/user_info.html:90 +msgid "todays unused votes" +msgstr "voti rimanenti per oggi" + +#: skins/default/templates/user_profile/user_info.html:91 +msgid "votes left" +msgstr "voti rimanenti" + +#: skins/default/templates/user_profile/user_moderate.html:4 +#: skins/default/templates/user_profile/user_tabs.html:48 +msgid "moderation" +msgstr "modera" + +#: skins/default/templates/user_profile/user_moderate.html:8 +#, python-format +msgid "%(username)s's current status is \"%(status)s\"" +msgstr "lo stato dell'utente %(username)s è \"%(status)s\"" + +#: skins/default/templates/user_profile/user_moderate.html:11 +msgid "User status changed" +msgstr "Lo stato dell'utente è stato modificato" + +#: skins/default/templates/user_profile/user_moderate.html:20 +msgid "Save" +msgstr "Salva" + +#: skins/default/templates/user_profile/user_moderate.html:26 +#, python-format +msgid "Your current reputation is %(reputation)s points" +msgstr "Hai %(reputation)s punti reputazione" + +#: skins/default/templates/user_profile/user_moderate.html:28 +#, python-format +msgid "User's current reputation is %(reputation)s points" +msgstr "Questo utente ha %(reputation)s punti reputazione" + +#: skins/default/templates/user_profile/user_moderate.html:32 +msgid "User reputation changed" +msgstr "La reputazione dell'utente è stata modificata" + +#: skins/default/templates/user_profile/user_moderate.html:39 +msgid "Subtract" +msgstr "Sottrai" + +#: skins/default/templates/user_profile/user_moderate.html:44 +#, python-format +msgid "Send message to %(username)s" +msgstr "Spedisci messaggio a %(username)s" + +#: skins/default/templates/user_profile/user_moderate.html:45 +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 "" +"Verrà spedita all'utente un'e-mail utilizzando il tuo indirizzo come campo " +"'reply-to'. Assicurati che il tuo indirizzo sia inserito correttamente." + +#: skins/default/templates/user_profile/user_moderate.html:47 +msgid "Message sent" +msgstr "Messaggio spedito" + +#: skins/default/templates/user_profile/user_moderate.html:65 +msgid "Send message" +msgstr "Spedisci messaggio" + +#: skins/default/templates/user_profile/user_moderate.html:75 +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 "" + +#: skins/default/templates/user_profile/user_moderate.html:78 +msgid "" +"Moderators have the same privileges as administrators, but cannot add or " +"remove user status of 'moderator' or 'administrator'." +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:81 +msgid "'Approved' status means the same as regular user." +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:84 +#, fuzzy +msgid "Suspended users can only edit or delete their own posts." +msgstr "" +"Non puoi segnalare questo messaggio come inappropriato perché il tuo account " +"è sospeso." + +#: skins/default/templates/user_profile/user_moderate.html:87 +msgid "" +"Blocked users can only login and send feedback to the site administrators." +msgstr "" + +#: skins/default/templates/user_profile/user_network.html:5 +#: skins/default/templates/user_profile/user_tabs.html:18 +msgid "network" +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[1] "" + +#: 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[1] "" + +#: skins/default/templates/user_profile/user_network.html:19 +msgid "" +"Your network is empty. Would you like to follow someone? - Just visit their " +"profiles and click \"follow\"" +msgstr "" + +#: skins/default/templates/user_profile/user_network.html:21 +#, fuzzy, python-format +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:31 +msgid "activity" +msgstr "attività" + +#: skins/default/templates/user_profile/user_recent.html:21 +#: 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" + +#: skins/default/templates/user_profile/user_reputation.html:13 +#, python-format +msgid "%(user_name)s's karma change log" +msgstr "Registro dei punti reputazione di %(user_name)s" + +#: skins/default/templates/user_profile/user_stats.html:5 +#: skins/default/templates/user_profile/user_tabs.html:7 +msgid "overview" +msgstr "dettagli" + +#: skins/default/templates/user_profile/user_stats.html:11 +#, python-format +msgid "%(counter)s Question" +msgid_plural "%(counter)s Questions" +msgstr[0] "%(counter)s Domanda" +msgstr[1] "%(counter)s Domande" + +#: skins/default/templates/user_profile/user_stats.html:16 +#, python-format +msgid "%(counter)s Answer" +msgid_plural "%(counter)s Answers" +msgstr[0] "%(counter)s Risposta" +msgstr[1] "%(counter)s Risposte" + +#: 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)" +msgid_plural "the answer has been commented %(comment_count)s times" +msgstr[0] "(%(comment_count)s commento)" +msgstr[1] "(%(comment_count)s commenti)" + +#: skins/default/templates/user_profile/user_stats.html:44 +#, python-format +msgid "%(cnt)s Vote" +msgid_plural "%(cnt)s Votes " +msgstr[0] "%(cnt)s Voto" +msgstr[1] "%(cnt)s Voti" + +#: skins/default/templates/user_profile/user_stats.html:50 +msgid "thumb up" +msgstr "pollice su" + +#: skins/default/templates/user_profile/user_stats.html:51 +msgid "user has voted up this many times" +msgstr "l'utente ha dato questo numero di voti a favore" + +#: skins/default/templates/user_profile/user_stats.html:54 +msgid "thumb down" +msgstr "pollice in giù" + +#: skins/default/templates/user_profile/user_stats.html:55 +msgid "user voted down this many times" +msgstr "l'utente ha dato questo numero di voti contro" + +#: skins/default/templates/user_profile/user_stats.html:63 +#, python-format +msgid "%(counter)s Tag" +msgid_plural "%(counter)s Tags" +msgstr[0] "%(counter)s Tag" +msgstr[1] "%(counter)s Tag" + +#: skins/default/templates/user_profile/user_stats.html:99 +#, python-format +msgid "%(counter)s Badge" +msgid_plural "%(counter)s Badges" +msgstr[0] "%(counter)s Medaglia" +msgstr[1] "%(counter)s Medaglie" + +#: skins/default/templates/user_profile/user_stats.html:122 +#, fuzzy +msgid "Answer to:" +msgstr "consigli per le risposte" + +#: skins/default/templates/user_profile/user_tabs.html:5 +msgid "User profile" +msgstr "Profilo utente" + +#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:772 +msgid "comments and answers to others questions" +msgstr "commenti e risposte a domande" + +#: skins/default/templates/user_profile/user_tabs.html:16 +msgid "followers and followed users" +msgstr "" + +#: skins/default/templates/user_profile/user_tabs.html:21 +msgid "graph of user reputation" +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:847 +msgid "user vote record" +msgstr "elenco dei voti dati" + +#: skins/default/templates/user_profile/user_tabs.html:36 +msgid "casted votes" +msgstr "voti" + +#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:960 +msgid "email subscription settings" +msgstr "impostazioni notifiche via e-mail" + +#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:224 +msgid "moderate this user" +msgstr "modera questo utente" -#: templatetags/extra_tags.py:221 -#, python-format -msgid "your karma is %(reputation)s" -msgstr "hai %(reputation)s punti reputazione" +#: skins/default/templates/user_profile/user_votes.html:4 +msgid "votes" +msgstr "voti" -#: templatetags/extra_tags.py:237 -msgid "badges: " -msgstr "medaglie:" +#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:240 +msgid "no items in counter" +msgstr "no" -#: utils/decorators.py:82 views/commands.py:132 views/commands.py:149 +#: utils/decorators.py:90 views/commands.py:112 views/commands.py:132 msgid "Oops, apologies - there was some error" msgstr "" +#: utils/decorators.py:109 +#, fuzzy +msgid "Please login to post" +msgstr "Accedi o registrati" + +#: utils/decorators.py:205 +msgid "Spam was detected on your post, sorry for if this is a mistake" +msgstr "" + #: utils/forms.py:32 msgid "this field is required" msgstr "campo obbligatorio" @@ -5471,60 +6439,67 @@ 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:63 -#, python-format -msgid "on %(date)s" -msgstr "il %(date)s" - -#: utils/functions.py:67 +#: utils/functions.py:74 msgid "2 days ago" msgstr "2 giorni fa" -#: utils/functions.py:69 +#: utils/functions.py:76 msgid "yesterday" msgstr "ieri" -#: utils/functions.py:71 +#: utils/functions.py:79 #, 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:73 +#: utils/functions.py:85 #, 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" -#: views/commands.py:42 +#: views/avatar_views.py:99 +msgid "Successfully uploaded a new avatar." +msgstr "" + +#: views/avatar_views.py:140 +msgid "Successfully updated your avatar." +msgstr "" + +#: views/avatar_views.py:180 +msgid "Successfully deleted the requested avatars." +msgstr "" + +#: views/commands.py:39 msgid "anonymous users cannot vote" msgstr "mi spiace, devi essere registrato per votare" -#: views/commands.py:62 +#: views/commands.py:59 msgid "Sorry you ran out of votes for today" msgstr "hai superato il massimo giornaliero di voti consentiti" -#: views/commands.py:68 +#: views/commands.py:65 #, python-format msgid "You have %(votes_left)s votes left for today" msgstr "Puoi votare ancora %(votes_left)s volte oggi" -#: views/commands.py:139 +#: views/commands.py:122 #, fuzzy msgid "Sorry, but anonymous users cannot access the inbox" msgstr "mi spiace, devi essere registrato per accettare una risposta" -#: views/commands.py:209 +#: views/commands.py:192 msgid "Sorry, something is not right here..." msgstr "Mi spiace, qualcosa non va qui..." -#: views/commands.py:224 +#: views/commands.py:207 msgid "Sorry, but anonymous users cannot accept answers" msgstr "mi spiace, devi essere registrato per accettare una risposta" -#: views/commands.py:305 +#: views/commands.py:288 #, python-format msgid "subscription saved, %(email)s needs validation, see %(details_url)s" msgstr "" @@ -5532,42 +6507,62 @@ msgstr "" "dev'essere verificato, leggi
      qui per maggiori " "dettagli" -#: views/commands.py:313 +#: views/commands.py:295 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:371 +#: views/commands.py:400 +#, python-format +msgid "Tag subscription was canceled (undo)." +msgstr "" + +#: views/commands.py:409 +#, fuzzy, python-format +msgid "Please sign in to subscribe for: %(tags)s" +msgstr "Accedi o registrati" + +#: views/commands.py:542 #, fuzzy -msgid "Bad request" -msgstr "Richiesta non valida" +msgid "Please sign in to vote" +msgstr "Puoi accedere al tuo account da qui:" -#: views/meta.py:58 +#: views/meta.py:83 msgid "Q&A forum feedback" msgstr "Contatti forum Q&A" -#: views/meta.py:59 +#: views/meta.py:84 msgid "Thanks for the feedback!" msgstr "Grazie per il tuo messaggio!" -#: views/meta.py:69 +#: views/meta.py:92 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:432 -msgid "Sorry, this question has been deleted and is no longer accessible" +#: views/readers.py:177 +#, 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:441 +#, fuzzy +msgid "" +"Sorry, the comment you are looking for has been deleted and is no longer " +"accessible" msgstr "Mi spiace, questa domanda è stata cancellata e non è più accessibile" -#: views/users.py:217 +#: views/users.py:225 msgid "moderate user" msgstr "modera utente" -#: views/users.py:401 +#: views/users.py:380 msgid "user profile" msgstr "profilo utente" -#: views/users.py:402 +#: views/users.py:381 msgid "user profile overview" msgstr "profilo" @@ -5579,87 +6574,604 @@ msgstr "attività recente" msgid "profile - recent activity" msgstr "profilo utente — attività recente" -#: views/users.py:754 +#: views/users.py:773 msgid "profile - responses" msgstr "profilo utente — risposte" -#: views/users.py:819 +#: views/users.py:848 msgid "profile - votes" msgstr "profilo utente — voti" -#: views/users.py:857 +#: views/users.py:883 msgid "user reputation in the community" msgstr "punti reputazione" -#: views/users.py:858 +#: views/users.py:884 msgid "profile - user reputation" msgstr "profilo utente — reputazione" -#: views/users.py:886 +#: views/users.py:911 msgid "users favorite questions" msgstr "domande preferite" -#: views/users.py:887 +#: views/users.py:912 msgid "profile - favorite questions" msgstr "profilo utente — domande preferite" -#: views/users.py:907 views/users.py:911 +#: views/users.py:932 views/users.py:936 msgid "changes saved" msgstr "i cambiamenti sono stati salvati" -#: views/users.py:917 +#: views/users.py:942 msgid "email updates canceled" msgstr "notifiche via e-mail cancellate" -#: views/users.py:929 +#: views/users.py:961 msgid "profile - email subscriptions" msgstr "profilo utente — notifiche via e-mail" -#: views/writers.py:56 +#: views/writers.py:58 msgid "Sorry, anonymous users cannot upload files" msgstr "Mi spiace, gli utenti non registrati non possono caricare file." -#: views/writers.py:65 +#: views/writers.py:68 #, python-format msgid "allowed file types are '%(file_types)s'" msgstr "i tipi di file consentiti sono: '%(file_types)s'" -#: views/writers.py:88 +#: views/writers.py:91 #, python-format msgid "maximum upload file size is %(file_size)sK" msgstr "la dimensione massima di file caricabile è %(file_size)sK" -#: views/writers.py:96 +#: views/writers.py:99 msgid "Error uploading file. Please contact the site administrator. Thank you." msgstr "Errore nel caricamento del file. Contatta un amministratore." -#: views/writers.py:452 +#: views/writers.py:191 +#, fuzzy +msgid "Please log in to ask questions" +msgstr "Ricorda, puoi sempre porre tu stesso una domanda!" + +#: views/writers.py:492 +#, fuzzy +msgid "Please log in to answer questions" +msgstr "vedi domande senza risposta" + +#: views/writers.py:598 #, python-format msgid "" "Sorry, you appear to be logged out and cannot post comments. Please sign in." msgstr "" -"Gli utenti non registrati non possono lasciare commenti. Accedi o registrati." +"Gli utenti non registrati non possono lasciare commenti. Accedi o registrati." -#: views/writers.py:497 +#: views/writers.py:646 #, fuzzy msgid "Sorry, anonymous users cannot edit comments" msgstr "Mi spiace, gli utenti non registrati non possono caricare file." -#: views/writers.py:505 +#: views/writers.py:654 #, python-format msgid "" "Sorry, you appear to be logged out and cannot delete comments. Please sign in." msgstr "" -"Gli utenti non registrati non possono cancellare commenti. Accedi o registrati." +"Gli utenti non registrati non possono cancellare commenti. Accedi o registrati." -#: views/writers.py:526 +#: views/writers.py:675 msgid "sorry, we seem to have some technical difficulties" msgstr "Mi spiace, ci sono dei problemi tecnici" +#~ msgid "community wiki" +#~ msgstr "domanda comunitaria" + +#~ msgid "Location" +#~ msgstr "Luogo" + +#~ msgid "command/" +#~ msgstr "comando/" + +#~ msgid "mark-tag/" +#~ msgstr "assegna-tag/" + +#~ msgid "interesting/" +#~ msgstr "interessante/" + +#~ msgid "ignored/" +#~ msgstr "ignorato/" + +#~ msgid "unmark-tag/" +#~ msgstr "rimuovi-tag/" + +#~ msgid "search/" +#~ msgstr "ricerca/" + +#~ msgid "Askbot" +#~ msgstr "Askbot" + +#~ msgid "" +#~ "If you change this url from the default - then you will also probably " +#~ "want to adjust translation of the following string: " +#~ msgstr "" +#~ "Se cambi l'impostazione di questo url, allora probabilmente vorrai anche " +#~ "modificare la traduzione del testo seguente:" + +#~ msgid "" +#~ "Increment this number when you change image in skin media or stylesheet. " +#~ "This helps avoid showing your users outdated images from their browser " +#~ "cache." +#~ msgstr "" +#~ "Incrementa questo numero quando cambi un'immagine o un media nella skin o " +#~ "nel foglio di stile. Questo fa in modo che gli utenti non visualizzino " +#~ "immagini vecchie provenienti dalla cache del loro browser." + +#~ msgid "allow only selected tags" +#~ msgstr "consenti solo i tag selezionati" + +#~ msgid "First time here? Check out the FAQ!" +#~ msgstr "Prima volta quì? Controlla le FAQ!" + +#~ msgid "newquestion/" +#~ msgstr "nuovadomanda/" + +#~ msgid "newanswer/" +#~ msgstr "nuovarisposta/" + +#, fuzzy +#~ msgid "MyOpenid user name" +#~ msgstr "per nome" + +#~ msgid "Email verification subject line" +#~ msgstr "Messaggio di verifica" + +#~ msgid "Unknown error." +#~ msgstr "Errore sconosciuto" + +#~ msgid "ReCAPTCHA is wrongly configured." +#~ msgstr "Il reCAPTCHA è configurato in modo errato" + +#~ msgid "Bad reCAPTCHA challenge parameter." +#~ msgstr "Il reCAPTCHA challenge parameter non è valido" + +#~ msgid "The CAPTCHA solution was incorrect." +#~ msgstr "La soluzione del CAPTCHA non è esatta" + +#~ msgid "Bad reCAPTCHA verification parameters." +#~ msgstr "Il verification parameter del reCAPTCHA non è valido" + +#~ msgid "Provided reCAPTCHA API keys are not valid for this domain." +#~ msgstr "" +#~ "Le API keys per il reCAPTCHA fornite non sono valide per questo dominio" + +#~ msgid "ReCAPTCHA could not be reached." +#~ msgstr "Non è stato possibile contattare il server reCAPTCHA " + +#~ msgid "Invalid request" +#~ msgstr "Richiesta non valida" + +#~ msgid "disciplined" +#~ msgstr "ordinato" + +#~ msgid "Deleted own post with score of 3 or higher" +#~ msgstr "Ha cancellato un proprio post con un punteggio di 3 o più" + +#~ msgid "peer-pressure" +#~ msgstr "sotto-pressione" + +#~ msgid "nice-answer" +#~ msgstr "buona-risposta" + +#~ msgid "nice-question" +#~ msgstr "buona-domanda" + +#~ msgid "pundit" +#~ msgstr "sapientone" + +#~ msgid "popular-question" +#~ msgstr "domanda-gettonata" + +#~ msgid "citizen-patrol" +#~ msgstr "sempre-in-guardia" + +#~ msgid "cleanup" +#~ msgstr "riparatore" + +#~ msgid "critic" +#~ msgstr "critico" + +#~ msgid "editor" +#~ msgstr "revisore" + +#~ msgid "organizer" +#~ msgstr "Organizzatore" + +#~ msgid "scholar" +#~ msgstr "Studioso" + +#~ msgid "student" +#~ msgstr "studente" + +#~ msgid "supporter" +#~ msgstr "sostenitore" + +#~ msgid "teacher" +#~ msgstr "insegnante" + +#~ msgid "Answered first question with at least one up vote" +#~ msgstr "Ha risposto per la prima volta a una domanda con almeno un voto" + +#~ msgid "autobiographer" +#~ msgstr "autobiografo" + +#~ msgid "self-learner" +#~ msgstr "autodidatta" + +#~ msgid "great-answer" +#~ msgstr "risposta-eccezionale" + +#~ msgid "Answer voted up 100 times" +#~ msgstr "Risposta con almeno 100 voti" + +#~ msgid "great-question" +#~ msgstr "domanda-eccezionale" + +#~ msgid "Question voted up 100 times" +#~ msgstr "Domanda con almeno 100 voti" + +#~ msgid "stellar-question" +#~ msgstr "domanda-stellare" + +#~ msgid "Question favorited by 100 users" +#~ msgstr "Domanda scelta tra le \"preferite\" da almeno 100 utenti" + +#~ msgid "famous-question" +#~ msgstr "domanda-famosa" + +#~ msgid "Asked a question with 10,000 views" +#~ msgstr "Ha posto una domanda con almeno 10.000 consultazioni" + +#~ msgid "Alpha" +#~ msgstr "Alpha" + +#~ msgid "alpha" +#~ msgstr "alpha" + +#~ msgid "Actively participated in the private alpha" +#~ msgstr "Ha partecipato attivamente alla primissima fase di testing" + +#~ msgid "good-answer" +#~ msgstr "ottima-risposta" + +#~ msgid "Answer voted up 25 times" +#~ msgstr "Risposta con almeno 25 voti" + +#~ msgid "good-question" +#~ msgstr "ottima-domanda" + +#~ msgid "Question voted up 25 times" +#~ msgstr "Domanda con almeno 25 voti" + +#~ msgid "favorite-question" +#~ msgstr "domanda-apprezzata" + +#~ msgid "civic-duty" +#~ msgstr "senso-civico" + +#~ msgid "Strunk & White" +#~ msgstr "Devoto-Oli" + +#~ msgid "strunk-and-white" +#~ msgstr "devoto-oli" + +#~ msgid "Generalist" +#~ msgstr "Generalista" + +#~ msgid "generalist" +#~ msgstr "generalista" + +#~ msgid "Active in many different tags" +#~ msgstr "Attivo in domande con molti tag diversi" + +#~ msgid "expert" +#~ msgstr "esperto" + +#~ msgid "Yearling" +#~ msgstr "Gavetta" + +#~ msgid "yearling" +#~ msgstr "gavetta" + +#~ msgid "Active member for a year" +#~ msgstr "Membro attivo da almeno un anno" + +#~ msgid "notable-question" +#~ msgstr "domanda-notevole" + +#~ msgid "Asked a question with 2,500 views" +#~ msgstr "Ha posto una domanda con almeno 2500 consultazioni" + +#~ msgid "enlightened" +#~ msgstr "illuminato" + +#~ msgid "Beta" +#~ msgstr "Beta" + +#~ msgid "beta" +#~ msgstr "beta" + +#~ msgid "Actively participated in the private beta" +#~ msgstr "Ha partecipato attivamente alla fase di beta-testing" + +#~ msgid "guru" +#~ msgstr "guru" + +#~ msgid "Accepted answer and voted up 40 times" +#~ msgstr "Risposta accettata e con almeno 40 voti" + +#~ msgid "necromancer" +#~ msgstr "negromante" + +#~ msgid "taxonomist" +#~ msgstr "tassonomista" + +#~ msgid "About" +#~ msgstr "About" + +#~ msgid "" +#~ "must have valid %(email)s to post, \n" +#~ " see %(email_validation_faq_url)s\n" +#~ " " +#~ msgstr "" +#~ "Looks like your email address, %(email)s has not " +#~ "yet been validated. To post messages you must verify your email, " +#~ "please see more details here." +#~ "
      You can submit your question now and validate email after that. Your " +#~ "question will saved as pending meanwhile. " + +#, fuzzy +#~ msgid "%(type)s" +#~ msgstr "il %(date)s" + +#~ msgid "how to validate email title" +#~ msgstr "Come faccio a verificare il mio indirizzo e-mail?" + +#~ msgid "" +#~ "how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)" +#~ "s" +#~ msgstr "" +#~ "

      Come? Se hai appena inserito o " +#~ "cambiato il tuo indirizzo e-mail, riceverai un messaggio di posta " +#~ "contenente un collegamento. Devi semplicemente cliccare sul link " +#~ "contenuto nel messaggio.
      Esso contiene un codice personale di " +#~ "verifica. Puoi .

      Perché? Verificare il tuo " +#~ "indirizzo serve a verificare la tua identità e a " +#~ "ridurre lo spam .
      Puoi scegliere di ricevere " +#~ "messaggi di notifica riguardo alle domande che più ti " +#~ "interessano. Inoltre, quando ti registri per la prima volta, viene creata " +#~ "un'gravatarimmagine " +#~ "personale

      basata sul tuo indirizzo." + +#~ msgid "." +#~ msgstr "." + +#~ msgid "Sender is" +#~ msgstr "Inviato da:" + +#~ msgid "Message body:" +#~ msgstr "Corpo del messaggio" + +#~ msgid "" +#~ "As a registered user you can login with your OpenID, log out of the site " +#~ "or permanently remove your account." +#~ msgstr "" +#~ "Cliccando su Logout effettuerai il logout da questo " +#~ "forum ma non dal tuo provider OpenID.

      Se vuoi assicurarti di essere " +#~ "completamente anonimo, esegui il logout anche sul sito del tuo provider " +#~ "OpenID." + +#~ msgid "Logout now" +#~ msgstr "Fai il logout adesso" + +#~ msgid "mark this question as favorite (click again to cancel)" +#~ msgstr "" +#~ "Aggiungi alle domande preferite (clicca una seconda volta per annullare)" + +#~ msgid "" +#~ "remove favorite mark from this question (click again to restore mark)" +#~ msgstr "" +#~ "Togli dalla lista delle domande preferite (clicca di nuovo per " +#~ "riaggiungerla)" + +#~ msgid "see questions tagged '%(tag_name)s'" +#~ msgstr "Vedi le domande con tag '%(tag_name)s'" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " %(q_num)s question\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " %(q_num)s questions\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "%(q_num)s domanda trovata" +#~ msgstr[1] "" +#~ "\n" +#~ "%(q_num)s domande trovate" + +#~ msgid "tagged" +#~ msgstr "con i tag" + +#~ msgid "remove '%(tag_name)s' from the list of interesting tags" +#~ msgstr "rimuovi '%(tag_name)s' dalla tua lista di tag preferiti" + +#~ msgid "remove '%(tag_name)s' from the list of ignored tags" +#~ msgstr "rimuovi '%(tag_name)s' dalla tua lista di tag ignorati" + +#~ msgid "keep ignored questions hidden" +#~ msgstr "nascondi le domande ignorate" + +#~ msgid "" +#~ "All tags matching '%(stag)s'" +#~ msgstr "" +#~ "Tutti i tag contenenti '%(stag)s'" + +#~ msgid "" +#~ "see other questions with %(view_user)s's contributions tagged '%(tag_name)" +#~ "s' " +#~ msgstr "" +#~ "vedi altre domande con il tag '%(tag_name)s' a cui %(view_user)s ha " +#~ "contribuito" + +#~ msgid "favorites" +#~ msgstr "preferite" + +#, fuzzy +#~ msgid "this questions was selected as favorite %(cnt)s time" +#~ msgid_plural "this questions was selected as favorite %(cnt)s times" +#~ msgstr[0] "questa domanda è stata aggiunta alle preferite" +#~ msgstr[1] "questa domanda è stata aggiunta alle preferite" + +#~ msgid "thumb-up on" +#~ msgstr "pollice in su attivato" + +#~ msgid "thumb-up off" +#~ msgstr "pollice in su disattivato" + +#~ msgid "Login name" +#~ msgstr "Nome utente" + +#~ msgid "home" +#~ msgstr "home" + +#~ msgid "Please prove that you are a Human Being" +#~ msgstr "Dimostraci di essere un essere umano" + +#~ msgid "I am a Human Being" +#~ msgstr "Sono un essere umano" + +#~ msgid "Please decide if you like this question or not by voting" +#~ msgstr "Indica la tua opinione su questa domanda votando" + +#~ msgid "" +#~ "\n" +#~ " vote\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " votes\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "voto" +#~ msgstr[1] "" +#~ "\n" +#~ "voti" + +#~ msgid "this answer has been accepted to be correct" +#~ msgstr "questa risposta è stata accettata dall'autore della domanda" + +#~ msgid "" +#~ "\n" +#~ " answer \n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " answers \n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "risposta" +#~ msgstr[1] "" +#~ "\n" +#~ "risposte" + +#~ msgid "" +#~ "\n" +#~ " view\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " views\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "consultazione" +#~ msgstr[1] "" +#~ "\n" +#~ "consultazioni" + +#~ msgid "" +#~ "\n" +#~ " vote\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " votes\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "voto" +#~ msgstr[1] "" +#~ "\n" +#~ "voti" + +#~ msgid "" +#~ "\n" +#~ " answer \n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " answers \n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "risposta" +#~ msgstr[1] "" +#~ "\n" +#~ "risposte" + +#~ msgid "" +#~ "\n" +#~ " view\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " views\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "consultazione" +#~ msgstr[1] "" +#~ "\n" +#~ "consultazioni" + +#~ msgid "views" +#~ msgstr "consultazioni" + +#~ msgid "reputation points" +#~ msgstr "punti reputazione" + +#~ msgid "your karma is %(reputation)s" +#~ msgstr "hai %(reputation)s punti reputazione" + +#~ msgid "badges: " +#~ msgstr "medaglie:" + +#, fuzzy +#~ msgid "Bad request" +#~ msgstr "Richiesta non valida" + #~ msgid "comments/" #~ msgstr "commenti/" @@ -5754,9 +7266,6 @@ msgstr "Mi spiace, ci sono dei problemi tecnici" #~ msgid "OpenID %s is now associated with your account." #~ msgstr "L'OpenID %s è ora associato con il tuo account." -#~ msgid "Account deleted." -#~ msgstr "Account eliminato." - #~ msgid "Request for new password" #~ msgstr "Richiedi una nuova password" @@ -5804,26 +7313,12 @@ msgstr "Mi spiace, ci sono dei problemi tecnici" #~ msgid "Change openid associated to your account" #~ msgstr "Cambia il tuo OpenID" -#~ msgid "Delete account" -#~ msgstr "Cancella il tuo utente" - #~ msgid "Erase your username and all your data from website" #~ msgstr "Cancella il tuo nome utente e tutti i tuoi dati da questo sito" #~ msgid "toggle preview" #~ msgstr "attiva/disattiva anteprima" -#~ msgid "" -#~ "must have valid %(email)s to post, \n" -#~ " see %(email_validation_faq_url)s\n" -#~ " " -#~ msgstr "" -#~ "Il tuo indirizzo e-mail %(email)s non è stato " -#~ "ancora verificato Prima di pubblicare messaggi devi verificare il " -#~ "tuo indirizzo; maggiori dettagli qui.
      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 "reading channel" #~ msgstr "Lettura libri" @@ -5897,21 +7392,6 @@ msgstr "Mi spiace, ci sono dei problemi tecnici" #~ msgid "tags help us keep Questions organized" #~ msgstr "i tag ci aiutano a organizzare le domande" -#~ msgid "click to see the newest questions" -#~ msgstr "clicca qui per vedere le domande più nuove" - -#~ msgid "click to see the oldest questions" -#~ msgstr "clicca qui per vedere le domande più vecchie" - -#~ msgid "click to see the most recently updated questions" -#~ msgstr "clicca qui per vedere le domande modificate più di recente" - -#~ msgid "click to see the least recently updated questions" -#~ msgstr "clicca qui per vedere le domande modificate meno recentemente" - -#~ msgid "click to see hottest questions" -#~ msgstr "clicca qui per vedere le domande con più risposte" - #~ msgid "less answers" #~ msgstr "meno risposte" @@ -5921,15 +7401,9 @@ msgstr "Mi spiace, ci sono dei problemi tecnici" #~ msgid "more answers" #~ msgstr "più risposte" -#~ msgid "click to see most voted questions" -#~ msgstr "clicca qui per vedere le domande più votate" - #~ msgid "unpopular" #~ msgstr "meno votate" -#~ msgid "click to see least voted questions" -#~ msgstr "clicca per vedere le domande meno votate" - #~ msgid "popular" #~ msgstr "più votate" @@ -5995,8 +7469,8 @@ msgstr "Mi spiace, ci sono dei problemi tecnici" #~ msgstr "Login attraverso un sito esterno" #~ msgid "" -#~ "how to login with password through external login website or use %" -#~ "(feedback_url)s" +#~ "how to login with password through external login website or use " +#~ "%(feedback_url)s" #~ msgstr "" #~ "Inserisci qui le informazioni per il login attraverso un sito esterno o " #~ "utilizza %(feedback_url)s" @@ -6023,8 +7497,8 @@ msgstr "Mi spiace, ci sono dei problemi tecnici" #~ "Someone has requested to reset your password on %(site_url)s.\n" #~ "If it were not you, it is safe to ignore this email." #~ msgstr "" -#~ "Qualcuno sta cercando di recuperare la tua password per il sito %" -#~ "(site_url)s.\n" +#~ "Qualcuno sta cercando di recuperare la tua password per il sito " +#~ "%(site_url)s.\n" #~ "Se non si tratta di te, puoi ignorare questo messaggio." #~ msgid "" @@ -6082,9 +7556,6 @@ msgstr "Mi spiace, ci sono dei problemi tecnici" #~ msgid "sign out from askbot" #~ msgstr "logout" -#~ msgid "Please, sign in or Join askbot!" -#~ msgstr "Accedi o registrati" - #~ msgid "please help translate! see credits" #~ msgstr "aiutaci a tradurre Askbot!" @@ -6129,8 +7600,8 @@ msgstr "Mi spiace, ci sono dei problemi tecnici" #~ msgstr "subscriptions" #~ msgid "" -#~ "go to %(email_settings_url)s to change frequency of email updates or %" -#~ "(admin_email)s administrator" +#~ "go to %(email_settings_url)s to change frequency of email updates or " +#~ "%(admin_email)s administrator" #~ msgstr "" #~ "

      Please remember that you can always adjust " #~ "frequency of the email updates or turn them off entirely.
      If you " diff --git a/askbot/locale/it/LC_MESSAGES/djangojs.mo b/askbot/locale/it/LC_MESSAGES/djangojs.mo new file mode 100644 index 00000000..e51c1286 Binary files /dev/null and b/askbot/locale/it/LC_MESSAGES/djangojs.mo differ diff --git a/askbot/locale/it/LC_MESSAGES/djangojs.po b/askbot/locale/it/LC_MESSAGES/djangojs.po new file mode 100644 index 00000000..ce10412c --- /dev/null +++ b/askbot/locale/it/LC_MESSAGES/djangojs.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: 0.7\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-10-08 02:27-0500\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"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" + +#: skins/default/media/js/post.js:532 +msgid "Follow" +msgstr "" + +#: skins/default/media/js/post.js:541 skins/default/media/js/post.js.py:550 +#, perl-format +msgid "%s follower" +msgid_plural "%s followers" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/media/js/post.js:546 +msgid "

      Following
      Unfollow
      " +msgstr "" + +#: skins/default/media/js/post.js:1613 +msgid "Please enter question title (>10 characters)" +msgstr "" + +#: skins/default/media/js/tag_selector.js:15 +msgid "Tag \"\" matches:" +msgstr "" + +#: skins/default/media/js/tag_selector.js:84 +#, perl-format +msgid "and %s more, not shown..." +msgstr "" + +#: skins/default/media/js/user.js:129 +msgid "Please signin to follow %(username)s" +msgstr "" + +#: skins/default/media/js/user.js:161 +#, perl-format +msgid "unfollow %s" +msgstr "" + +#: skins/default/media/js/user.js:164 +#, perl-format +msgid "following %s" +msgstr "" + +#: skins/default/media/js/user.js:170 +#, perl-format +msgid "follow %s" +msgstr "" diff --git a/askbot/locale/ja/LC_MESSAGES/django.mo b/askbot/locale/ja/LC_MESSAGES/django.mo index 3a7e3471..efb75cc8 100644 Binary files a/askbot/locale/ja/LC_MESSAGES/django.mo and b/askbot/locale/ja/LC_MESSAGES/django.mo differ diff --git a/askbot/locale/ja/LC_MESSAGES/django.po b/askbot/locale/ja/LC_MESSAGES/django.po index acc25ed3..80ddf12b 100644 --- a/askbot/locale/ja/LC_MESSAGES/django.po +++ b/askbot/locale/ja/LC_MESSAGES/django.po @@ -3,94 +3,117 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # -#, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: 0.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-11-29 16:54-0600\n" +"POT-Creation-Date: 2011-10-08 02:27-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" -#: exceptions.py:9 +#: exceptions.py:13 msgid "Sorry, but anonymous visitors cannot access this function" msgstr "" -#: feed.py:22 +#: feed.py:26 feed.py:100 msgid " - " msgstr " - " -#: feed.py:22 +#: feed.py:26 +#, fuzzy +msgid "Individual question feed" +msgstr "個人的に選択した質問" + +#: feed.py:100 msgid "latest questions" msgstr "最近の質問" -#: forms.py:54 skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:40 -#: skins/default/templates/question_edit_tips.html:45 +#: forms.py:74 +#, fuzzy +msgid "select country" +msgstr "アカウントを消去する" + +#: forms.py:83 +msgid "Country" +msgstr "" + +#: forms.py:91 +#, fuzzy +msgid "Country field is required" +msgstr "このフィールドは必須です" + +#: forms.py:104 skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:38 +#: skins/default/templates/blocks/question_edit_tips.html:43 msgid "title" msgstr "タイトル" -#: forms.py:55 +#: forms.py:105 msgid "please enter a descriptive title for your question" msgstr "質問の記述的なタイトルを入力してください" -#: forms.py:60 +#: forms.py:110 msgid "title must be > 10 characters" msgstr "タイトルは10文字以上必要です" -#: forms.py:69 +#: forms.py:119 msgid "content" msgstr "内容" -#: forms.py:75 +#: forms.py:125 msgid "question content must be > 10 characters" msgstr "質問の内容は10文字以上必要です" -#: forms.py:84 skins/default/templates/header.html:83 +#: forms.py:134 skins/default/templates/macros.html:660 +#: skins/default/templates/macros.html:672 +#: skins/default/templates/blocks/header.html:25 msgid "tags" msgstr "タグ" -#: forms.py:86 +#: forms.py:136 msgid "" "Tags are short keywords, with no spaces within. Up to five tags can be used." msgstr "" "タグは短いキーワードで空白文字(スペース)は含めません。5つまでのタグが使用" "できます。" -#: forms.py:93 skins/default/templates/question_retag.html:78 +#: forms.py:164 skins/default/templates/question_retag.html:58 msgid "tags are required" msgstr "タグが必須です" -#: forms.py:102 +#: forms.py:173 #, 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つ以内のタグを使いましょう" -msgstr[1] "5つ以内のタグを使いましょう" +msgstr[0] "%(tag_count)dつ以内のタグを使いましょう" -#: forms.py:111 +#: forms.py:181 +#, python-format +msgid "At least one of the following tags is required : %(tags)s" +msgstr "" + +#: forms.py:190 #, 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文字以内の長さです" -msgstr[1] "タグは20文字以内の長さです" +msgstr[0] "タグは%(max_chars)d文字以内の長さです" -#: forms.py:119 +#: forms.py:198 msgid "use-these-chars-in-tags" msgstr "" -#: forms.py:130 -#: skins/default/templates/unused/question_summary_list_roll.html:26 -#: skins/default/templates/unused/question_summary_list_roll.html:38 -msgid "community wiki" -msgstr "コミュニティー wiki" +#: forms.py:233 +msgid "community wiki (karma is not awarded & many others can edit wiki post)" +msgstr "" -#: forms.py:131 +#: forms.py:234 msgid "" "if you choose community wiki option, the question and answer do not generate " "points and name of author will not be shown" @@ -98,11 +121,11 @@ msgstr "" "コミュニティー wikiオプションを選択した場合、質問と回答はポイントを生成せず、" "作者名は表示されない" -#: forms.py:147 +#: forms.py:250 msgid "update summary:" msgstr "サマリーを更新:" -#: forms.py:148 +#: forms.py:251 msgid "" "enter a brief summary of your revision (e.g. fixed spelling, grammar, " "improved style, this field is optional)" @@ -110,285 +133,445 @@ msgstr "" "あなたのリビジョンの要約サマリ(たとえば、スペル修正、文法修正、スタイル改善" "など。ここオプションです。)を入力してください" -#: forms.py:161 +#: forms.py:327 msgid "Enter number of points to add or subtract" msgstr "" -#: forms.py:175 const/__init__.py:219 +#: forms.py:341 const/__init__.py:245 msgid "approved" msgstr "" -#: forms.py:176 const/__init__.py:220 +#: forms.py:342 const/__init__.py:246 msgid "watched" msgstr "" -#: forms.py:177 const/__init__.py:221 +#: forms.py:343 const/__init__.py:247 #, fuzzy msgid "suspended" msgstr "更新日" -#: forms.py:178 const/__init__.py:222 +#: forms.py:344 const/__init__.py:248 msgid "blocked" msgstr "" -#: forms.py:180 const/__init__.py:218 +#: forms.py:346 +#, fuzzy +msgid "administrator" +msgstr "" +"よろしくおねがいします。\n" +"--\n" +"Q&A フォーラム管理" + +#: forms.py:347 const/__init__.py:244 msgid "moderator" msgstr "" -#: forms.py:200 +#: forms.py:367 #, fuzzy msgid "Change status to" msgstr "タグを変更する" -#: forms.py:227 +#: forms.py:394 msgid "which one?" msgstr "" -#: forms.py:248 +#: forms.py:415 msgid "Cannot change own status" msgstr "" -#: forms.py:254 +#: forms.py:421 msgid "Cannot turn other user to moderator" msgstr "" -#: forms.py:261 +#: forms.py:428 msgid "Cannot change status of another moderator" msgstr "" -#: forms.py:267 +#: forms.py:434 +#, fuzzy +msgid "Cannot change status to admin" +msgstr "タグを変更する" + +#: forms.py:440 #, python-format -msgid "If you wish to change %(username)s's status, " +msgid "" +"If you wish to change %(username)s's status, please make a meaningful " +"selection." msgstr "" -#: forms.py:276 +#: forms.py:449 msgid "Subject line" msgstr "" -#: forms.py:283 +#: forms.py:456 #, fuzzy msgid "Message text" msgstr "メッセージ本文:" -#: forms.py:360 +#: forms.py:542 msgid "Your name:" msgstr "名前:" -#: forms.py:361 +#: forms.py:543 msgid "Email (not shared with anyone):" msgstr "メールアドレス(ほかのひとには非公開):" -#: forms.py:362 +#: forms.py:544 msgid "Your message:" msgstr "メッセージ:" -#: forms.py:449 -msgid "this email does not have to be linked to gravatar" +#: forms.py:581 +#, fuzzy +msgid "ask anonymously" +msgstr "匿名" + +#: forms.py:583 +msgid "Check if you do not want to reveal your name when asking this question" +msgstr "" + +#: forms.py:743 +msgid "" +"You have asked this question anonymously, if you decide to reveal your " +"identity, please check this box." +msgstr "" + +#: forms.py:747 +msgid "reveal identity" +msgstr "" + +#: forms.py:805 +msgid "" +"Sorry, only owner of the anonymous question can reveal his or her identity, " +"please uncheck the box" +msgstr "" + +#: forms.py:818 +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:856 +#, fuzzy +msgid "this email will be linked to gravatar" msgstr "このメールアドレスはgravatorにリンクされていません" -#: forms.py:456 +#: forms.py:863 msgid "Real name" msgstr "実名" -#: forms.py:463 +#: forms.py:870 msgid "Website" msgstr "ウェブサイト" -#: forms.py:470 -msgid "Location" -msgstr "場所" +#: forms.py:877 +msgid "City" +msgstr "" + +#: forms.py:886 +msgid "Show country" +msgstr "" -#: forms.py:477 +#: forms.py:891 msgid "Date of birth" msgstr "生年月日" -#: forms.py:478 +#: forms.py:892 msgid "will not be shown, used to calculate age, format: YYYY-MM-DD" msgstr "表示されません、年齢の計算に利用します、型式:YYYY-MM-DD" -#: forms.py:484 +#: forms.py:898 msgid "Profile" msgstr "プロファイル" -#: forms.py:493 +#: forms.py:907 msgid "Screen name" msgstr "スクリーン名" -#: forms.py:518 forms.py:519 +#: forms.py:938 forms.py:939 msgid "this email has already been registered, please use another one" msgstr "このメールアドレスは登録済みです、ほかのものを使って下さい" -#: forms.py:525 +#: forms.py:946 msgid "Choose email tag filter" msgstr "電子メールタグフィルターを選択してください" -#: forms.py:564 +#: forms.py:993 msgid "Asked by me" msgstr "自分からの質問" -#: forms.py:567 +#: forms.py:996 msgid "Answered by me" msgstr "自分からの回答" -#: forms.py:570 +#: forms.py:999 msgid "Individually selected" msgstr "個人的に選択された" -#: forms.py:573 +#: forms.py:1002 msgid "Entire forum (tag filtered)" msgstr "フォーラム全体(タグでフィルターされた)" -#: forms.py:577 +#: forms.py:1006 msgid "Comments and posts mentioning me" msgstr "" -#: forms.py:635 +#: forms.py:1085 msgid "okay, let's try!" msgstr "よし、はじめよう!" -#: forms.py:636 +#: forms.py:1086 #, fuzzy msgid "no community email please, thanks" msgstr "OSAQコミュニティ電子メール無しで" -#: forms.py:640 +#: forms.py:1090 msgid "please choose one of the options above" msgstr "上記から一つ選択してください" -#: urls.py:42 +#: urls.py:53 msgid "about/" msgstr "" -#: urls.py:43 conf/site_settings.py:79 +#: urls.py:54 msgid "faq/" msgstr "" -#: urls.py:44 +#: urls.py:55 msgid "privacy/" msgstr "" -#: urls.py:45 -msgid "logout/" -msgstr "" - -#: urls.py:47 urls.py:52 +#: urls.py:57 urls.py:62 msgid "answers/" msgstr "" -#: urls.py:47 urls.py:68 urls.py:164 +#: urls.py:57 urls.py:83 urls.py:198 msgid "edit/" msgstr "" -#: urls.py:52 urls.py:98 +#: urls.py:62 urls.py:113 msgid "revisions/" msgstr "" -#: urls.py:58 urls.py:63 urls.py:68 urls.py:73 urls.py:78 urls.py:83 -#: urls.py:88 urls.py:93 urls.py:98 +#: urls.py:68 urls.py:78 urls.py:83 urls.py:88 urls.py:93 urls.py:98 +#: urls.py:103 urls.py:108 urls.py:113 urls.py:285 +#: skins/default/templates/question.html:508 msgid "questions/" msgstr "" -#: urls.py:63 +#: urls.py:78 msgid "ask/" msgstr "" -#: urls.py:73 +#: urls.py:88 #, fuzzy msgid "retag/" msgstr "再度タグ付け" -#: urls.py:78 +#: urls.py:93 msgid "close/" msgstr "" -#: urls.py:83 +#: urls.py:98 msgid "reopen/" msgstr "" -#: urls.py:88 +#: urls.py:103 msgid "answer/" msgstr "" -#: urls.py:93 +#: urls.py:108 skins/default/templates/question.html:508 msgid "vote/" msgstr "" -#: urls.py:114 -msgid "command/" +#: urls.py:144 +msgid "tags/" +msgstr "" + +#: urls.py:187 +msgid "subscribe-for-tags/" msgstr "" -#: urls.py:130 +#: urls.py:192 urls.py:198 urls.py:204 urls.py:212 +#: skins/default/templates/main_page/javascript.html:23 +msgid "users/" +msgstr "" + +#: urls.py:205 +#, fuzzy +msgid "subscriptions/" +msgstr "メール登録設定" + +#: urls.py:217 +msgid "users/update_has_custom_avatar/" +msgstr "" + +#: urls.py:222 urls.py:227 +msgid "badges/" +msgstr "" + +#: urls.py:232 +msgid "messages/" +msgstr "" + +#: urls.py:232 +msgid "markread/" +msgstr "" + +#: urls.py:248 +msgid "upload/" +msgstr "" + +#: urls.py:249 +msgid "feedback/" +msgstr "" + +#: urls.py:291 skins/default/templates/question.html:506 +#: skins/default/templates/main_page/javascript.html:22 msgid "question/" msgstr "" -#: urls.py:135 -msgid "tags/" +#: urls.py:298 setup_templates/settings.py:202 +#: skins/default/templates/authopenid/providers_javascript.html:7 +msgid "account/" msgstr "" -#: urls.py:140 urls.py:146 -msgid "mark-tag/" +#: conf/badges.py:12 +#, fuzzy +msgid "Badge settings" +msgstr "設定" + +#: conf/badges.py:21 +msgid "Disciplined: minimum upvotes for deleted post" msgstr "" -#: urls.py:140 -msgid "interesting/" +#: conf/badges.py:30 +msgid "Peer Pressure: minimum downvotes for deleted post" msgstr "" -#: urls.py:146 -msgid "ignored/" +#: conf/badges.py:39 +msgid "Teacher: minimum upvotes for the answer" msgstr "" -#: urls.py:152 -msgid "unmark-tag/" +#: conf/badges.py:48 +msgid "Nice Answer: minimum upvotes for the answer" msgstr "" -#: urls.py:158 urls.py:164 urls.py:169 -msgid "users/" +#: conf/badges.py:57 +msgid "Good Answer: minimum upvotes for the answer" msgstr "" -#: urls.py:174 urls.py:179 -msgid "badges/" +#: conf/badges.py:66 +msgid "Great Answer: minimum upvotes for the answer" msgstr "" -#: urls.py:184 -msgid "messages/" +#: conf/badges.py:75 +#, fuzzy +msgid "Nice Question: minimum upvotes for the question" +msgstr "Tags" + +#: conf/badges.py:84 +#, fuzzy +msgid "Good Question: minimum upvotes for the question" +msgstr "Tags" + +#: conf/badges.py:93 +#, fuzzy +msgid "Great Question: minimum upvotes for the question" +msgstr "Tags" + +#: conf/badges.py:102 +#, fuzzy +msgid "Popular Question: minimum views" +msgstr "人気の質問" + +#: conf/badges.py:111 +#, fuzzy +msgid "Notable Question: minimum views" +msgstr "卓越した質問" + +#: conf/badges.py:120 +#, fuzzy +msgid "Famous Question: minimum views" +msgstr "著名な質問" + +#: conf/badges.py:129 +msgid "Self-Learner: minimum answer upvotes" msgstr "" -#: urls.py:184 -msgid "markread/" +#: conf/badges.py:138 +msgid "Civic Duty: minimum votes" msgstr "" -#: urls.py:199 -msgid "upload/" +#: conf/badges.py:147 +msgid "Enlightened Duty: minimum upvotes" msgstr "" -#: urls.py:200 -msgid "search/" +#: conf/badges.py:156 +msgid "Guru: minimum upvotes" msgstr "" -#: urls.py:201 -msgid "feedback/" +#: conf/badges.py:165 +msgid "Necromancer: minimum upvotes" msgstr "" -#: urls.py:202 setup_templates/settings.py:182 -#: skins/default/templates/authopenid/signin.html:249 -msgid "account/" +#: conf/badges.py:174 +msgid "Necromancer: minimum delay in days" +msgstr "" + +#: conf/badges.py:183 +msgid "Associate Editor: minimum number of edits" +msgstr "" + +#: conf/badges.py:192 +#, fuzzy +msgid "Favorite Question: minimum stars" +msgstr "お気に入りの質問" + +#: conf/badges.py:201 +#, fuzzy +msgid "Stellar Question: minimum stars" +msgstr "スター質問" + +#: conf/badges.py:210 +msgid "Commentator: minimum comments" +msgstr "" + +#: conf/badges.py:219 +msgid "Taxonomist: minimum tag use count" +msgstr "" + +#: conf/badges.py:228 +msgid "Enthusiast: minimum days" msgstr "" -#: conf/email.py:12 +#: conf/email.py:14 #, fuzzy msgid "Email and email alert settings" msgstr "電子メール通知設定" -#: conf/email.py:20 +#: conf/email.py:22 +#, fuzzy +msgid "Prefix for the email subject line" +msgstr "Welcome to the Q&A forum" + +#: conf/email.py:24 +msgid "" +"This setting takes default from the django settingEMAIL_SUBJECT_PREFIX. A " +"value entered here will overridethe default." +msgstr "" + +#: conf/email.py:36 msgid "Maximum number of news entries in an email alert" msgstr "" -#: conf/email.py:30 +#: conf/email.py:46 #, fuzzy msgid "Default news notification frequency" msgstr "電子メール通知設定" -#: conf/email.py:32 +#: conf/email.py:48 msgid "" "This option currently defines default frequency of emailed updates in the " "following five categories: questions asked by user, answered by user, " @@ -396,34 +579,82 @@ msgid "" "posts mentioning the user and comment responses" msgstr "" -#: conf/email.py:47 +#: conf/email.py:62 +#, fuzzy +msgid "Send periodic reminders about unanswered questions" +msgstr "" +"
      %(num_q)s
      questions without " +"accepted answers" + +#: conf/email.py:64 +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) and an IMAP server with a dedicated inbox " +"must be configured " +msgstr "" + +#: conf/email.py:78 +#, fuzzy +msgid "Days before starting to send reminders about unanswered questions" +msgstr "" +"
      %(num_q)s
      questions without " +"accepted answers" + +#: conf/email.py:89 +msgid "" +"How often to send unanswered question reminders (in days between the " +"reminders sent)." +msgstr "" + +#: conf/email.py:101 +msgid "Max. number of reminders to send about unanswered questions" +msgstr "" + +#: conf/email.py:113 msgid "Require email verification before allowing to post" msgstr "" -#: conf/email.py:48 +#: conf/email.py:114 msgid "" "Active email verification is done by sending a verification key in email" msgstr "" -#: conf/email.py:57 +#: conf/email.py:123 #, fuzzy msgid "Allow only one account per email address" msgstr "電子メール (非公開)" -#: conf/email.py:66 +#: conf/email.py:132 msgid "Fake email for anonymous user" msgstr "" -#: conf/email.py:67 +#: conf/email.py:133 msgid "Use this setting to control gravatar for email-less user" msgstr "" -#: conf/email.py:76 +#: conf/email.py:142 #, fuzzy -msgid "Prefix for the email subject line" -msgstr "Welcome to the Q&A forum" +msgid "Allow posting questions by email" +msgstr "この質問をフォローする" + +#: conf/email.py:144 +msgid "" +"Before enabling this setting - please fill out IMAP settings in the settings." +"py file" +msgstr "" -#: conf/external_keys.py:11 +#: conf/email.py:155 +msgid "Replace space in emailed tags with dash" +msgstr "" + +#: conf/email.py:157 +msgid "" +"This setting applies to tags written in the subject line of questions asked " +"by email" +msgstr "" + +#: conf/external_keys.py:10 msgid "Keys to connect the site with external services like Facebook, etc." msgstr "" @@ -434,90 +665,114 @@ msgstr "" #: conf/external_keys.py:20 #, python-format msgid "" -"This key helps google index your site please obtain is at google webmasters tools site" +"This key helps google index your site please obtain is at google webmasters tools site" msgstr "" -#: conf/external_keys.py:34 +#: conf/external_keys.py:35 msgid "Google Analytics key" msgstr "" -#: conf/external_keys.py:36 +#: conf/external_keys.py:37 #, python-format msgid "" -"Obtain is at Google Analytics site, if you wish " -"to use Google Analytics to monitor your site" +"Obtain is at Google Analytics site, if you wish to " +"use Google Analytics to monitor your site" msgstr "" -#: conf/external_keys.py:49 +#: conf/external_keys.py:50 msgid "Enable recaptcha (keys below are required)" msgstr "" -#: conf/external_keys.py:58 +#: conf/external_keys.py:59 msgid "Recaptcha public key" msgstr "" -#: conf/external_keys.py:66 +#: conf/external_keys.py:67 msgid "Recaptcha private key" msgstr "" -#: conf/external_keys.py:68 +#: conf/external_keys.py:69 +#, 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 recaptcha.net" +"robots. Please get this and a public key at the %(url)s" msgstr "" -#: conf/external_keys.py:80 +#: conf/external_keys.py:81 msgid "Facebook public API key" msgstr "" -#: conf/external_keys.py:82 +#: conf/external_keys.py:83 +#, python-format msgid "" "Facebook API key and Facebook secret allow to use Facebook Connect login " -"method at your site. Please obtain these keys at facebook create app site" +"method at your site. Please obtain these keys at facebook create app site" msgstr "" -#: conf/external_keys.py:95 +#: conf/external_keys.py:96 msgid "Facebook secret key" msgstr "" -#: conf/external_keys.py:103 +#: conf/external_keys.py:104 msgid "Twitter consumer key" msgstr "" -#: conf/external_keys.py:105 conf/external_keys.py:126 +#: conf/external_keys.py:106 +#, python-format msgid "" -"Please register your forum at twitter applications site" +"Please register your forum at twitter applications site" msgstr "" -#: conf/external_keys.py:116 +#: conf/external_keys.py:117 msgid "Twitter consumer secret" msgstr "" -#: conf/external_keys.py:124 +#: conf/external_keys.py:125 msgid "LinkedIn consumer key" msgstr "" -#: conf/external_keys.py:137 +#: conf/external_keys.py:127 +#, python-format +msgid "" +"Please register your forum at LinkedIn developer site" +msgstr "" + +#: conf/external_keys.py:138 msgid "LinkedIn consumer secret" msgstr "" -#: conf/external_keys.py:145 -msgid "User LDAP authentication for the password login" +#: conf/external_keys.py:146 +msgid "ident.ca consumer key" +msgstr "" + +#: conf/external_keys.py:148 +#, python-format +msgid "" +"Please register your forum at Identi.ca applications " +"site" +msgstr "" + +#: conf/external_keys.py:159 +msgid "ident.ca consumer secret" +msgstr "" + +#: conf/external_keys.py:167 +msgid "Use LDAP authentication for the password login" msgstr "" -#: conf/external_keys.py:154 +#: conf/external_keys.py:176 msgid "LDAP service provider name" msgstr "" -#: conf/external_keys.py:162 +#: conf/external_keys.py:184 msgid "URL for the LDAP service" msgstr "" -#: conf/external_keys.py:170 +#: conf/external_keys.py:192 #, fuzzy msgid "Explain how to change LDAP password" msgstr "パスワードを変更する" @@ -537,170 +792,444 @@ msgid "" msgstr "" #: conf/flatpages.py:30 -msgid "Text of the Q&A forum Privacy Policy (html format)" +msgid "Text of the Q&A forum FAQ page (html format)" msgstr "" #: conf/flatpages.py:33 msgid "" "Save, then use HTML validator on " +"the \"faq\" page to check your input." +msgstr "" + +#: conf/flatpages.py:44 +msgid "Text of the Q&A forum Privacy Policy (html format)" +msgstr "" + +#: conf/flatpages.py:47 +msgid "" +"Save, then use HTML validator on " "the \"privacy\" page to check your input." msgstr "" -#: conf/forum_data_rules.py:12 -msgid "Settings for askbot data entry and display" +#: conf/forum_data_rules.py:11 +msgid "Data entry and display" msgstr "" #: conf/forum_data_rules.py:20 -msgid "Check to enable community wiki feature" +#, python-format +msgid "" +"Enable embedding videos. Note: please read read this first." msgstr "" -#: conf/forum_data_rules.py:29 -msgid "Maximum length of tag (number of characters)" +#: conf/forum_data_rules.py:31 +msgid "Check to enable community wiki feature" msgstr "" -#: conf/forum_data_rules.py:39 -msgid "Default max number of comments to display under posts" +#: conf/forum_data_rules.py:40 +msgid "Allow asking questions anonymously" msgstr "" -#: conf/forum_data_rules.py:50 -#, python-format -msgid "Maximum comment length, must be < %(max_len)s" +#: conf/forum_data_rules.py:42 +msgid "" +"Users do not accrue reputation for anonymous questions and their identity is " +"not revealed until they change their mind" msgstr "" -#: conf/forum_data_rules.py:60 -msgid "Minimum length of search term for Ajax search" +#: conf/forum_data_rules.py:54 +msgid "Allow posting before logging in" msgstr "" -#: conf/forum_data_rules.py:61 -msgid "Must match the corresponding database backend setting" +#: conf/forum_data_rules.py:56 +msgid "" +"Check if you want to allow users start posting questions or answers before " +"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 "" -#: conf/forum_data_rules.py:70 -msgid "Maximum number of tags per question" +#: conf/forum_data_rules.py:71 +#, fuzzy +msgid "Allow swapping answer with question" +msgstr "質問への回答になっていません" + +#: conf/forum_data_rules.py:73 +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 "" -#: conf/forum_data_rules.py:82 -msgid "Number of questions to list by default" +#: conf/forum_data_rules.py:85 +msgid "Maximum length of tag (number of characters)" msgstr "" -#: conf/forum_data_rules.py:92 +#: conf/forum_data_rules.py:93 #, fuzzy -msgid "What should \"unanswered question\" mean?" -msgstr "unanswered questions" +msgid "Mandatory tags" +msgstr "更新されたタグ" -#: conf/markup.py:15 -msgid "Markup formatting" +#: conf/forum_data_rules.py:96 +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/markup.py:29 -msgid "Enable code-friendly Markdown" +#: conf/forum_data_rules.py:108 +msgid "Force lowercase the tags" msgstr "" -#: conf/markup.py:31 +#: conf/forum_data_rules.py:110 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 " -"\"MathJax support\" implicitly turns this feature on, because underscores " -"are heavily used in LaTeX input." +"Attention: after checking this, please back up the database, and run a " +"management command: python manage.py fix_question_tags to " +"globally rename the tags" msgstr "" -#: conf/markup.py:46 -msgid "Mathjax support (rendering of LaTeX)" +#: conf/forum_data_rules.py:124 +msgid "Format of tag list" msgstr "" -#: conf/markup.py:48 -#, python-format +#: conf/forum_data_rules.py:126 msgid "" -"If you enable this feature, mathjax must be " -"installed in directory %(dir)s" +"Select the format to show tags in, either as a simple list, or as a tag cloud" msgstr "" -#: conf/markup.py:63 -msgid "Base url of MathJax deployment" -msgstr "" +#: conf/forum_data_rules.py:138 +#, fuzzy +msgid "Use wildcard tags" +msgstr "タグ" -#: conf/markup.py:65 +#: conf/forum_data_rules.py:140 msgid "" -"Note - MathJax is not included with askbot - you should " -"deploy it yourself, preferably at a separate domain and enter url pointing " -"to the \"mathjax\" directory (for example: http://mysite.com/mathjax)" +"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/minimum_reputation.py:11 -msgid "Minimum reputation required to perform actions" +#: conf/forum_data_rules.py:153 +msgid "Default max number of comments to display under posts" msgstr "" -#: conf/minimum_reputation.py:20 -#, fuzzy -msgid "Upvote" -msgstr "投票" +#: conf/forum_data_rules.py:164 +#, python-format +msgid "Maximum comment length, must be < %(max_len)s" +msgstr "" -#: conf/minimum_reputation.py:29 +#: conf/forum_data_rules.py:174 #, fuzzy -msgid "Downvote" -msgstr "下げ" +msgid "Limit time to edit comments" +msgstr "%s 回コメントした" -#: conf/minimum_reputation.py:38 -#, fuzzy -msgid "Flag offensive" -msgstr "侮辱的と印を付ける" +#: conf/forum_data_rules.py:176 +msgid "If unchecked, there will be no time limit to edit the comments" +msgstr "" -#: conf/minimum_reputation.py:47 -#, fuzzy -msgid "Leave comments" -msgstr "コメントを加える" +#: conf/forum_data_rules.py:187 +msgid "Minutes allowed to edit a comment" +msgstr "" -#: conf/minimum_reputation.py:56 -#, fuzzy -msgid "Delete comments posted by others" -msgstr "コメントが投稿されたとき" +#: conf/forum_data_rules.py:188 +msgid "To enable this setting, check the previous one" +msgstr "" -#: conf/minimum_reputation.py:65 -#, fuzzy +#: conf/forum_data_rules.py:197 +msgid "Save comment by pressing key" +msgstr "" + +#: conf/forum_data_rules.py:206 +msgid "Minimum length of search term for Ajax search" +msgstr "" + +#: conf/forum_data_rules.py:207 +msgid "Must match the corresponding database backend setting" +msgstr "" + +#: conf/forum_data_rules.py:216 +msgid "Do not make text query sticky in search" +msgstr "" + +#: conf/forum_data_rules.py:218 +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:231 +msgid "Maximum number of tags per question" +msgstr "" + +#: conf/forum_data_rules.py:243 +msgid "Number of questions to list by default" +msgstr "" + +#: conf/forum_data_rules.py:253 +#, fuzzy +msgid "What should \"unanswered question\" mean?" +msgstr "unanswered questions" + +#: conf/license.py:12 +#, fuzzy +msgid "License settings" +msgstr "設定" + +#: conf/license.py:19 +msgid "Show license clause in the site footer" +msgstr "" + +#: conf/license.py:28 +msgid "Short name for the license" +msgstr "" + +#: conf/license.py:37 +msgid "Full name of the license" +msgstr "" + +#: conf/license.py:38 +msgid "Creative Commons Attribution Share Alike 3.0" +msgstr "" + +#: conf/license.py:46 +msgid "Add link to the license page" +msgstr "" + +#: conf/license.py:55 +#, fuzzy +msgid "License homepage" +msgstr "ホームに戻る" + +#: conf/license.py:57 +msgid "URL of the official page with all the license legal clauses" +msgstr "" + +#: conf/license.py:67 +msgid "Use license logo" +msgstr "" + +#: conf/license.py:76 +msgid "License logo image" +msgstr "" + +#: conf/login_providers.py:12 +msgid "Login provider setings" +msgstr "" + +#: conf/login_providers.py:20 +msgid "" +"Show alternative login provider buttons on the password \"Sign Up\" page" +msgstr "" + +#: conf/login_providers.py:29 +msgid "Always display local login form and hide \"Askbot\" button." +msgstr "" + +#: conf/login_providers.py:38 +msgid "Activate to allow login with self-hosted wordpress site" +msgstr "" + +#: conf/login_providers.py:39 +msgid "" +"to activate this feature you must fill out the wordpress xml-rpc setting " +"bellow" +msgstr "" + +#: conf/login_providers.py:48 +msgid "" +"Fill it with the wordpress url to the xml-rpc, normally http://mysite.com/" +"xmlrpc.php" +msgstr "" + +#: conf/login_providers.py:49 +msgid "" +"To enable, go to Settings->Writing->Remote Publishing and check the box for " +"XML-RPC" +msgstr "" + +#: conf/login_providers.py:60 +msgid "Upload your icon" +msgstr "" + +#: conf/login_providers.py:90 +#, python-format +msgid "Activate %(provider)s login" +msgstr "" + +#: conf/login_providers.py:95 +#, python-format +msgid "" +"Note: to really enable %(provider)s login some additional parameters will " +"need to be set in the \"External keys\" section" +msgstr "" + +#: conf/markup.py:14 +msgid "Markup formatting" +msgstr "" + +#: conf/markup.py:39 +msgid "Enable code-friendly Markdown" +msgstr "" + +#: conf/markup.py:41 +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 " +"\"MathJax support\" implicitly turns this feature on, because underscores " +"are heavily used in LaTeX input." +msgstr "" + +#: conf/markup.py:56 +msgid "Mathjax support (rendering of LaTeX)" +msgstr "" + +#: conf/markup.py:58 +#, python-format +msgid "" +"If you enable this feature, mathjax must be " +"installed on your server in its own directory." +msgstr "" + +#: conf/markup.py:72 +msgid "Base url of MathJax deployment" +msgstr "" + +#: conf/markup.py:74 +msgid "" +"Note - MathJax is not included with askbot - 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 "" + +#: conf/markup.py:89 +msgid "Enable autolinking with specific patterns" +msgstr "" + +#: conf/markup.py:91 +msgid "" +"If you enable this feature, the application will be able to detect patterns " +"and auto link to URLs" +msgstr "" + +#: conf/markup.py:104 +msgid "Regexes to detect the link patterns" +msgstr "" + +#: conf/markup.py:106 +msgid "" +"Enter valid regular expressions for the patters, one per line. For example " +"to detect a bug pattern like #bug123, use the following regex: #bug(\\d+). " +"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 "" + +#: conf/markup.py:125 +msgid "URLs for autolinking" +msgstr "" + +#: conf/markup.py:127 +msgid "" +"Here, please enter url templates for the patterns entered in the previous " +"setting, also one entry per line. Make sure that number of lines in " +"this setting and the previous one are the same 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 "" + +#: conf/minimum_reputation.py:11 +msgid "Minimum reputation required to perform actions" +msgstr "" + +#: conf/minimum_reputation.py:20 +#, fuzzy +msgid "Upvote" +msgstr "投票" + +#: conf/minimum_reputation.py:29 +#, fuzzy +msgid "Downvote" +msgstr "下げ" + +#: conf/minimum_reputation.py:38 +#, fuzzy +msgid "Answer own question immediately" +msgstr "あなた自身の質問に回答する" + +#: conf/minimum_reputation.py:47 +#, fuzzy +msgid "Accept own answer" +msgstr "あらゆる回答を編集する" + +#: conf/minimum_reputation.py:56 +#, fuzzy +msgid "Flag offensive" +msgstr "侮辱的と印を付ける" + +#: conf/minimum_reputation.py:65 +#, fuzzy +msgid "Leave comments" +msgstr "コメントを加える" + +#: conf/minimum_reputation.py:74 +#, fuzzy +msgid "Delete comments posted by others" +msgstr "コメントが投稿されたとき" + +#: conf/minimum_reputation.py:83 +#, fuzzy msgid "Delete questions and answers posted by others" msgstr "あらゆる質問と回答を削除し、ほかのモデレート作業を実行する" -#: conf/minimum_reputation.py:74 +#: conf/minimum_reputation.py:92 msgid "Upload files" msgstr "" -#: conf/minimum_reputation.py:83 +#: conf/minimum_reputation.py:101 #, fuzzy msgid "Close own questions" msgstr "質問を閉鎖する" -#: conf/minimum_reputation.py:92 +#: conf/minimum_reputation.py:110 msgid "Retag questions posted by other people" msgstr "" -#: conf/minimum_reputation.py:101 +#: conf/minimum_reputation.py:119 #, fuzzy msgid "Reopen own questions" msgstr "再開された質問" -#: conf/minimum_reputation.py:110 +#: conf/minimum_reputation.py:128 #, fuzzy msgid "Edit community wiki posts" msgstr "コミュニティー wiki 質問を編集する" -#: conf/minimum_reputation.py:119 +#: conf/minimum_reputation.py:137 msgid "Edit posts authored by other people" msgstr "" -#: conf/minimum_reputation.py:128 +#: conf/minimum_reputation.py:146 #, fuzzy msgid "View offensive flags" msgstr "不快印" -#: conf/minimum_reputation.py:137 +#: conf/minimum_reputation.py:155 #, fuzzy msgid "Close questions asked by others" msgstr "タグ付けされた質問をみる" -#: conf/minimum_reputation.py:146 +#: conf/minimum_reputation.py:164 msgid "Lock posts" msgstr "" +#: conf/minimum_reputation.py:173 +msgid "Remove rel=nofollow from own homepage" +msgstr "" + +#: conf/minimum_reputation.py:175 +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 "" + #: conf/reputation_changes.py:12 msgid "Reputation loss and gain rules" msgstr "" @@ -763,56 +1292,168 @@ msgstr "" msgid "Loss for post owner when upvote is canceled" msgstr "" -#: conf/site_settings.py:13 +#: conf/sidebar_main.py:11 +msgid "Sidebar widget settings - main page" +msgstr "" + +#: conf/sidebar_main.py:18 conf/sidebar_profile.py:18 +#: conf/sidebar_question.py:18 +msgid "Custom sidebar header" +msgstr "" + +#: conf/sidebar_main.py:21 conf/sidebar_profile.py:21 +#: conf/sidebar_question.py:21 +msgid "" +"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." +msgstr "" + +#: conf/sidebar_main.py:34 +msgid "Show avatar block in sidebar" +msgstr "" + +#: conf/sidebar_main.py:36 +msgid "Uncheck this if you want to hide the avatar block from the sidebar " +msgstr "" + +#: conf/sidebar_main.py:47 +msgid "Limit how many avatars will be displayed on the sidebar" +msgstr "" + +#: conf/sidebar_main.py:57 +msgid "Show tag selector in sidebar" +msgstr "" + +#: conf/sidebar_main.py:59 +msgid "" +"Uncheck this if you want to hide the options for choosing interesting and " +"ignored tags " +msgstr "" + +#: conf/sidebar_main.py:70 +msgid "Show tag list/cloud in sidebar" +msgstr "" + +#: conf/sidebar_main.py:72 +msgid "" +"Uncheck this if you want to hide the tag cloud or tag list from the sidebar " +msgstr "" + +#: conf/sidebar_main.py:83 conf/sidebar_profile.py:34 +#: conf/sidebar_question.py:74 +msgid "Custom sidebar footer" +msgstr "" + +#: conf/sidebar_main.py:86 conf/sidebar_profile.py:37 +#: conf/sidebar_question.py:77 +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 "" + +#: conf/sidebar_profile.py:11 +msgid "Sidebar widget settings - profile page" +msgstr "" + +#: conf/sidebar_question.py:11 +msgid "Sidebar widget settings - question page" +msgstr "" + +#: conf/sidebar_question.py:34 +msgid "Show tag list in sidebar" +msgstr "" + +#: conf/sidebar_question.py:36 +msgid "Uncheck this if you want to hide the tag list from the sidebar " +msgstr "" + +#: conf/sidebar_question.py:47 +msgid "Show meta information in sidebar" +msgstr "" + +#: conf/sidebar_question.py:49 +msgid "" +"Uncheck this if you want to hide the meta information about the question " +"(post date, views, last updated). " +msgstr "" + +#: conf/sidebar_question.py:61 +#, fuzzy +msgid "Show related questions in sidebar" +msgstr "関係した質問" + +#: conf/sidebar_question.py:63 +msgid "Uncheck this if you want to hide the list of related questions. " +msgstr "" + +#: conf/site_modes.py:63 +#, fuzzy +msgid "Site modes" +msgstr "サイトの状態" + +#: conf/site_modes.py:72 +msgid "Activate a \"Bootstrap\" mode" +msgstr "" + +#: conf/site_modes.py:74 +msgid "" +"Bootstrap mode lowers reputation and certain badge thresholds, to values, " +"more suitable for the smaller communities, WARNING: your " +"current value for Minimum reputation, Bagde Settings and Vote Rules will be " +"changed after you modify this setting." +msgstr "" + +#: conf/site_settings.py:11 msgid "Q&A forum website parameters and urls" msgstr "" -#: conf/site_settings.py:21 +#: conf/site_settings.py:19 #, fuzzy msgid "Site title for the Q&A forum" msgstr "Q&Aフォーマルからのおしらせです" -#: conf/site_settings.py:30 +#: conf/site_settings.py:28 msgid "Comma separated list of Q&A site keywords" msgstr "" -#: conf/site_settings.py:40 +#: conf/site_settings.py:37 msgid "Copyright message to show in the footer" msgstr "" -#: conf/site_settings.py:50 +#: conf/site_settings.py:47 msgid "Site description for the search engines" msgstr "" -#: conf/site_settings.py:58 -#, fuzzy -msgid "Askbot" -msgstr "QAとは" - -#: conf/site_settings.py:59 +#: conf/site_settings.py:56 msgid "Short name for your Q&A forum" msgstr "" -#: conf/site_settings.py:69 +#: conf/site_settings.py:66 msgid "Base URL for your Q&A forum, must start with http or https" msgstr "" -#: conf/site_settings.py:82 -msgid "Link shown in the greeting message shown to the anonymous user" +#: conf/site_settings.py:77 +msgid "Check to enable greeting for anonymous user" msgstr "" -#: conf/site_settings.py:85 -msgid "" -"If you change this url from the default - then you will also probably want " -"to adjust translation of the following string: " +#: conf/site_settings.py:88 +msgid "Text shown in the greeting message shown to the anonymous user" +msgstr "" + +#: conf/site_settings.py:92 +msgid "Use HTML to format the message " msgstr "" -#: conf/site_settings.py:98 +#: conf/site_settings.py:101 #, fuzzy msgid "Feedback site URL" msgstr "フィードバック" -#: conf/site_settings.py:100 +#: conf/site_settings.py:103 msgid "If left empty, a simple internal feedback form will be used instead" msgstr "" @@ -925,23 +1566,33 @@ msgstr "" msgid "Foreground color for accepted answer" msgstr "" -#: conf/skin_general_settings.py:15 +#: conf/skin_general_settings.py:14 msgid "Skin and User Interface settings" msgstr "" -#: conf/skin_general_settings.py:22 +#: conf/skin_general_settings.py:21 msgid "Q&A site logo" msgstr "" -#: conf/skin_general_settings.py:24 +#: conf/skin_general_settings.py:23 msgid "To change the logo, select new file, then submit this whole form." msgstr "" -#: conf/skin_general_settings.py:38 +#: conf/skin_general_settings.py:37 +msgid "Show logo" +msgstr "" + +#: 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 msgid "Site favicon" msgstr "" -#: conf/skin_general_settings.py:40 +#: conf/skin_general_settings.py:53 #, python-format msgid "" "A small 16x16 or 32x32 pixel icon image used to distinguish your site in the " @@ -949,64 +1600,231 @@ msgid "" "href=\"%(favicon_info_url)s\">this page." msgstr "" -#: conf/skin_general_settings.py:56 +#: conf/skin_general_settings.py:71 msgid "Password login button" msgstr "" -#: conf/skin_general_settings.py:58 +#: conf/skin_general_settings.py:73 msgid "" "An 88x38 pixel image that is used on the login screen for the password login " "button." msgstr "" -#: conf/skin_general_settings.py:73 +#: conf/skin_general_settings.py:88 msgid "Show all UI functions to all users" msgstr "" -#: conf/skin_general_settings.py:75 +#: conf/skin_general_settings.py:90 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:90 +#: conf/skin_general_settings.py:105 #, fuzzy msgid "Select skin" msgstr "改訂を選択する" -#: conf/skin_general_settings.py:99 -msgid "Skin media revision number" +#: conf/skin_general_settings.py:116 +msgid "Customize HTML " +msgstr "" + +#: conf/skin_general_settings.py:125 +msgid "Custom portion of the HTML " msgstr "" -#: conf/skin_general_settings.py:101 +#: conf/skin_general_settings.py:127 msgid "" -"Increment this number when you change image in skin media or stylesheet. " -"This helps avoid showing your users outdated images from their browser cache." +"To use this option, check \"Customize HTML <HEAD>\" " +"above. Contents of this box will be inserted into the <HEAD> portion " +"of the HTML output, where elements such as <script>, <link>, <" +"meta> may be added. Please, keep in mind that adding external javascript " +"to the <HEAD> 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. Note: if you do use this setting, " +"please test the site with the W3C HTML validator service." msgstr "" -#: conf/social_sharing.py:10 -msgid "Sharing content on social networks" +#: conf/skin_general_settings.py:149 +msgid "Custom header additions" msgstr "" -#: conf/social_sharing.py:18 -msgid "Check to enable sharing of questions on Twitter and Facebook" +#: conf/skin_general_settings.py:151 +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 " +"headerin the HTML format. When customizing the site header (as well as " +"footer and the HTML <HEAD>), use the HTML validation service to make " +"sure that your input is valid and works well in all browsers." msgstr "" -# "クッキー" -#: conf/user_settings.py:10 -#, fuzzy -msgid "User policy settings" -msgstr " " +#: conf/skin_general_settings.py:166 +msgid "Site footer mode" +msgstr "" -#: conf/user_settings.py:18 +#: conf/skin_general_settings.py:168 +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:185 +msgid "Custom footer (HTML format)" +msgstr "" + +#: conf/skin_general_settings.py:187 +msgid "" +"To enable this function, please select option 'customize' " +"in the \"Site footer mode\" above. Use this area to enter contents of the " +"footer in the HTML format. When customizing the site footer (as well as the " +"header and HTML <HEAD>), use the HTML validation service to make sure " +"that your input is valid and works well in all browsers." +msgstr "" + +#: conf/skin_general_settings.py:202 +msgid "Apply custom style sheet (CSS)" +msgstr "" + +#: conf/skin_general_settings.py:204 +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:216 +msgid "Custom style sheet (CSS)" +msgstr "" + +#: conf/skin_general_settings.py:218 +msgid "" +"To use this function, 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 \"<forum url>/custom.css\", where the \"<forum url> part " +"depends (default is empty string) on the url configuration in your urls.py." +msgstr "" + +#: conf/skin_general_settings.py:234 +msgid "Add custom javascript" +msgstr "" + +#: conf/skin_general_settings.py:237 +msgid "Check to enable javascript that you can enter in the next field" +msgstr "" + +#: conf/skin_general_settings.py:247 +msgid "Custom javascript" +msgstr "" + +#: conf/skin_general_settings.py:249 +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 \"<forum url>/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 (to " +"enable your custom code, check \"Add custom javascript\" option " +"above)." +msgstr "" + +#: conf/skin_general_settings.py:267 +msgid "Skin media revision number" +msgstr "" + +#: conf/skin_general_settings.py:269 +msgid "Will be set automatically but you can modify it if necessary." +msgstr "" + +#: conf/skin_general_settings.py:280 +msgid "Hash to update the media revision number automatically." +msgstr "" + +#: conf/skin_general_settings.py:284 +msgid "Will be set automatically, it is not necesary to modify manually." +msgstr "" + +#: conf/social_sharing.py:10 +msgid "Sharing content on social networks" +msgstr "" + +#: conf/social_sharing.py:18 +#, fuzzy +msgid "Check to enable sharing of questions on Twitter" +msgstr "この質問を再開する" + +#: conf/social_sharing.py:27 +#, fuzzy +msgid "Check to enable sharing of questions on Facebook" +msgstr "最新の質問から表示してます。" + +#: conf/social_sharing.py:36 +msgid "Check to enable sharing of questions on LinkedIn" +msgstr "" + +#: conf/social_sharing.py:45 +msgid "Check to enable sharing of questions on Identi.ca" +msgstr "" + +#: conf/social_sharing.py:54 +msgid "Check to enable sharing of questions on Google+" +msgstr "" + +#: conf/spam_and_moderation.py:9 +msgid "Spam control and content moderation" +msgstr "" + +#: conf/spam_and_moderation.py:16 +msgid "Enable Akismet spam detection(keys below are required)" +msgstr "" + +#: conf/spam_and_moderation.py:19 +#, python-format +msgid "To get an Akismet key please visit Akismet site" +msgstr "" + +#: conf/spam_and_moderation.py:29 +msgid "Akismet key for spam detection" +msgstr "" + +# "クッキー" +#: conf/user_settings.py:11 +#, fuzzy +msgid "User settings" +msgstr " " + +#: conf/user_settings.py:19 msgid "Allow editing user screen name" msgstr "" #: conf/user_settings.py:28 +#, fuzzy +msgid "Allow account recovery by email" +msgstr "電子メール (非公開)" + +#: conf/user_settings.py:37 +msgid "Allow adding and removing login methods" +msgstr "" + +#: conf/user_settings.py:47 msgid "Minimum allowed length for screen name" msgstr "" +#: conf/user_settings.py:57 +msgid "Default Gravatar icon type" +msgstr "" + +#: conf/user_settings.py:59 +msgid "" +"This option allows you to set the default avatar type for email addresses " +"without associated gravatar images. For more information, please visit this page." +msgstr "" + +#: conf/user_settings.py:69 +msgid "Name for the Anonymous user" +msgstr "" + #: conf/vote_rules.py:13 msgid "Limits applicable to votes and moderation flags" msgstr "" @@ -1028,301 +1846,446 @@ msgid "Number of days to allow canceling votes" msgstr "" #: conf/vote_rules.py:58 -msgid "Number of flags required to automatically hide posts" +msgid "Number of days required before answering own question" msgstr "" #: conf/vote_rules.py:67 +msgid "Number of flags required to automatically hide posts" +msgstr "" + +#: conf/vote_rules.py:76 msgid "Number of flags required to automatically delete posts" msgstr "" -#: const/__init__.py:9 +#: const/__init__.py:10 msgid "duplicate question" msgstr "重複した質問" -#: const/__init__.py:10 +#: const/__init__.py:11 msgid "question is off-topic or not relevant" msgstr "質問が場違いもしくは無関係です。" -#: const/__init__.py:11 +#: const/__init__.py:12 msgid "too subjective and argumentative" msgstr "主観的で論争的すぎます" -#: const/__init__.py:12 +#: const/__init__.py:13 #, fuzzy msgid "not a real question" msgstr "質問する" -#: const/__init__.py:13 +#: const/__init__.py:14 msgid "the question is answered, right answer was accepted" msgstr "質問は回答され、正当な回答が受け入れられました" -#: const/__init__.py:14 +#: const/__init__.py:15 #, fuzzy msgid "question is not relevant or outdated" msgstr "問題は再現しないか無効です" -#: const/__init__.py:15 +#: const/__init__.py:16 #, fuzzy msgid "question contains offensive or malicious remarks" msgstr "質問は侮辱的で不適切もしくは悪意のある意見を含んでいます" -#: const/__init__.py:16 +#: const/__init__.py:17 msgid "spam or advertising" msgstr "スパムもしくは広告" -#: const/__init__.py:17 +#: const/__init__.py:18 msgid "too localized" msgstr "" -#: const/__init__.py:40 +#: const/__init__.py:41 msgid "newest" msgstr "最新" -#: const/__init__.py:41 skins/default/templates/users.html:25 -#: skins/default/templates/users.html:26 +#: const/__init__.py:42 skins/default/templates/users.html:26 msgid "oldest" msgstr "登録順" -#: const/__init__.py:42 +#: const/__init__.py:43 msgid "active" msgstr "" -#: const/__init__.py:43 +#: const/__init__.py:44 msgid "inactive" msgstr "" -#: const/__init__.py:44 +#: const/__init__.py:45 msgid "hottest" msgstr "ホット" -#: const/__init__.py:45 +#: const/__init__.py:46 #, fuzzy msgid "coldest" msgstr "登録順" -#: const/__init__.py:46 +#: const/__init__.py:47 msgid "most voted" msgstr "注目の質問" -#: const/__init__.py:47 +#: const/__init__.py:48 #, fuzzy msgid "least voted" msgstr "注目の質問" -#: const/__init__.py:48 +#: const/__init__.py:49 msgid "relevance" msgstr "関連" -#: const/__init__.py:55 skins/default/templates/questions.html:14 -#: skins/default/templates/user_inbox.html:47 +#: const/__init__.py:57 skins/default/templates/main_page/tab_bar.html:10 +#: skins/default/templates/user_profile/user_inbox.html:50 msgid "all" msgstr "" # -#: const/__init__.py:56 skins/default/templates/questions.html:19 +#: const/__init__.py:58 skins/default/templates/main_page/tab_bar.html:15 msgid "unanswered" msgstr "未回答" -#: const/__init__.py:57 skins/default/templates/questions.html:25 +#: const/__init__.py:59 #, fuzzy msgid "favorite" msgstr "お気に入り" -#: const/__init__.py:70 +#: const/__init__.py:64 +#, fuzzy +msgid "list" +msgstr "タグリスト" + +#: const/__init__.py:65 +msgid "cloud" +msgstr "" + +#: const/__init__.py:78 #, fuzzy msgid "Question has no answers" msgstr "質問に回答したとき" -#: const/__init__.py:71 +#: const/__init__.py:79 #, fuzzy msgid "Question has no accepted answers" msgstr "個の質問が回答募集中" -#: const/__init__.py:111 +#: const/__init__.py:121 #, fuzzy msgid "asked a question" msgstr "質問する" -#: const/__init__.py:112 +#: const/__init__.py:122 #, fuzzy msgid "answered a question" msgstr "未回答" -#: const/__init__.py:113 +#: const/__init__.py:123 msgid "commented question" msgstr "コメント付き質問" -#: const/__init__.py:114 +#: const/__init__.py:124 msgid "commented answer" msgstr "コメント付き回答" -#: const/__init__.py:115 +#: const/__init__.py:125 msgid "edited question" msgstr "編集された質問" -#: const/__init__.py:116 +#: const/__init__.py:126 msgid "edited answer" msgstr "編集された回答" -#: const/__init__.py:117 +#: const/__init__.py:127 msgid "received award" msgstr "得られたバッジ" -#: const/__init__.py:118 +#: const/__init__.py:128 msgid "marked best answer" msgstr "ベストアンサー印" -#: const/__init__.py:119 +#: const/__init__.py:129 msgid "upvoted" msgstr "上げ" -#: const/__init__.py:120 +#: const/__init__.py:130 msgid "downvoted" msgstr "下げ" -#: const/__init__.py:121 +#: const/__init__.py:131 msgid "canceled vote" msgstr "キャンセルされた投票" -#: const/__init__.py:122 +#: const/__init__.py:132 msgid "deleted question" msgstr "削除された質問" -#: const/__init__.py:123 +#: const/__init__.py:133 msgid "deleted answer" msgstr "削除された回答" -#: const/__init__.py:124 +#: const/__init__.py:134 msgid "marked offensive" msgstr "不快印" -#: const/__init__.py:125 +#: const/__init__.py:135 msgid "updated tags" msgstr "更新されたタグ" -#: const/__init__.py:126 +#: const/__init__.py:136 msgid "selected favorite" msgstr "選択されたお気に入り" -#: const/__init__.py:127 +#: const/__init__.py:137 msgid "completed user profile" msgstr "完全なユーザプロファイル" -#: const/__init__.py:128 +#: const/__init__.py:138 msgid "email update sent to user" msgstr "電子メールアップデートをユーザに送信" -#: const/__init__.py:129 +#: const/__init__.py:141 +#, fuzzy +msgid "reminder about unanswered questions sent" +msgstr "未回答" + +#: const/__init__.py:143 msgid "mentioned in the post" msgstr "" -#: const/__init__.py:180 +#: const/__init__.py:194 msgid "question_answered" msgstr "回答" -#: const/__init__.py:181 +#: const/__init__.py:195 msgid "question_commented" msgstr "質問コメント" -#: const/__init__.py:182 +#: const/__init__.py:196 msgid "answer_commented" msgstr "回答コメント" -#: const/__init__.py:183 +#: const/__init__.py:197 msgid "answer_accepted" msgstr "納得された回答" -#: const/__init__.py:187 +#: const/__init__.py:201 msgid "[closed]" msgstr "[閉鎖されました]" -#: const/__init__.py:188 +#: const/__init__.py:202 msgid "[deleted]" msgstr "[削除されました]" -#: const/__init__.py:189 views/readers.py:549 +#: const/__init__.py:203 views/readers.py:614 msgid "initial version" msgstr "最初のバージョン" -#: const/__init__.py:190 +#: const/__init__.py:204 msgid "retagged" msgstr "再度タグ付け" -#: const/__init__.py:195 -msgid "exclude ignored tags" +#: const/__init__.py:212 +msgid "off" +msgstr "" + +#: const/__init__.py:213 +#, fuzzy +msgid "exclude ignored" msgstr "排除、無視するタグ" -#: const/__init__.py:196 -msgid "allow only selected tags" -msgstr "選択されたタグのみ" +#: const/__init__.py:214 +#, fuzzy +msgid "only selected" +msgstr "個人的に選択された" -#: const/__init__.py:200 +#: const/__init__.py:218 #, fuzzy msgid "instantly" msgstr "すぐに" -#: const/__init__.py:201 +#: const/__init__.py:219 msgid "daily" msgstr "デイリー" -#: const/__init__.py:202 +#: const/__init__.py:220 msgid "weekly" msgstr "ウイークリー" -#: const/__init__.py:203 +#: const/__init__.py:221 msgid "no email" msgstr "電子メール無し" +#: const/__init__.py:228 +msgid "identicon" +msgstr "" + +#: const/__init__.py:229 +#, fuzzy +msgid "mystery-man" +msgstr "昨日" + +#: const/__init__.py:230 +msgid "monsterid" +msgstr "" + +#: const/__init__.py:231 +#, fuzzy +msgid "wavatar" +msgstr "What is gravatar?" + +#: const/__init__.py:232 +msgid "retro" +msgstr "" + +#: const/__init__.py:279 skins/default/templates/badges.html:37 +msgid "gold" +msgstr "金賞" + +#: const/__init__.py:280 skins/default/templates/badges.html:46 +msgid "silver" +msgstr "銀賞" + +#: const/__init__.py:281 skins/default/templates/badges.html:53 +msgid "bronze" +msgstr "銅賞" + +#: const/__init__.py:293 +msgid "None" +msgstr "" + +#: const/__init__.py:294 +msgid "Gravatar" +msgstr "" + +#: const/__init__.py:295 +msgid "Uploaded Avatar" +msgstr "" + +#: const/message_keys.py:15 +#, fuzzy +msgid "most relevant questions" +msgstr "投票の多い質問" + +#: const/message_keys.py:16 +#, fuzzy +msgid "click to see most relevant questions" +msgstr "CNPROG コミュニティーに適した質問をしましょう。" + +#: const/message_keys.py:17 +#, fuzzy +msgid "by relevance" +msgstr "関連" + +#: const/message_keys.py:18 +#, fuzzy +msgid "click to see the oldest questions" +msgstr "最新の質問をみる" + #: const/message_keys.py:19 -#, python-format -msgid "First time here? Check out the FAQ!" -msgstr "ここははじめてですか? FAQをチェックしましょう。" +#, fuzzy +msgid "by date" +msgstr "更新する" + +#: const/message_keys.py:20 +#, fuzzy +msgid "click to see the newest questions" +msgstr "最新の質問をみる" + +#: const/message_keys.py:21 +#, fuzzy +msgid "click to see the least recently updated questions" +msgstr "最近更新された質問" + +#: const/message_keys.py:22 +#, fuzzy +msgid "by activity" +msgstr "最近の活動" + +#: const/message_keys.py:23 +#, fuzzy +msgid "click to see the most recently updated questions" +msgstr "最近更新された質問" + +#: const/message_keys.py:24 +#, fuzzy +msgid "click to see the least answered questions" +msgstr "未回答" + +#: const/message_keys.py:25 +#, fuzzy +msgid "by answers" +msgstr "回答" + +#: const/message_keys.py:26 +#, fuzzy +msgid "click to see the most answered questions" +msgstr "未回答" + +#: const/message_keys.py:27 +#, fuzzy +msgid "click to see least voted questions" +msgstr "投票の多い質問" + +#: const/message_keys.py:28 +#, fuzzy +msgid "by votes" +msgstr "投票" + +#: const/message_keys.py:29 +#, fuzzy +msgid "click to see most voted questions" +msgstr "投票の多い質問" -#: deps/django_authopenid/forms.py:116 deps/django_authopenid/views.py:137 +#: deps/django_authopenid/backends.py:88 +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 #, fuzzy msgid "i-names are not supported" msgstr "基本HTMLタグもサポートしています" -#: deps/django_authopenid/forms.py:237 +#: deps/django_authopenid/forms.py:233 #, fuzzy, python-format msgid "Please enter your %(username_token)s" msgstr "ユーザ名を入力してください" -#: deps/django_authopenid/forms.py:263 +#: deps/django_authopenid/forms.py:259 #, fuzzy msgid "Please, enter your user name" msgstr "ユーザ名を入力してください" -#: deps/django_authopenid/forms.py:267 +#: deps/django_authopenid/forms.py:263 #, fuzzy msgid "Please, enter your password" msgstr "パスワードを入力してください" -#: deps/django_authopenid/forms.py:274 deps/django_authopenid/forms.py:278 +#: deps/django_authopenid/forms.py:270 deps/django_authopenid/forms.py:274 #, fuzzy msgid "Please, enter your new password" msgstr "パスワードを入力してください" -#: deps/django_authopenid/forms.py:289 +#: deps/django_authopenid/forms.py:285 msgid "Passwords did not match" msgstr "" -#: deps/django_authopenid/forms.py:301 +#: deps/django_authopenid/forms.py:297 #, python-format msgid "Please choose password > %(len)s characters" msgstr "" -#: deps/django_authopenid/forms.py:336 +#: deps/django_authopenid/forms.py:335 msgid "Current password" msgstr "現在のパスワード" -#: deps/django_authopenid/forms.py:347 +#: deps/django_authopenid/forms.py:346 msgid "" "Old password is incorrect. Please enter the correct " "password." msgstr "古いパスワードは誤りです。正しいパスワードを入力してください。" -#: deps/django_authopenid/forms.py:400 +#: deps/django_authopenid/forms.py:399 msgid "Sorry, we don't have this email address in the database" msgstr "" @@ -1335,220 +2298,213 @@ msgstr "ユーザ名は必須です" msgid "Incorrect username." msgstr "sorry, there is no such user name" -#: deps/django_authopenid/urls.py:10 deps/django_authopenid/urls.py:11 -#: deps/django_authopenid/urls.py:12 deps/django_authopenid/urls.py:15 -#: deps/django_authopenid/urls.py:18 setup_templates/settings.py:182 +#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12 +#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:202 msgid "signin/" msgstr "" -#: deps/django_authopenid/urls.py:11 -#, fuzzy -msgid "newquestion/" -msgstr "あたらしい質問" - -#: deps/django_authopenid/urls.py:12 -#, fuzzy -msgid "newanswer/" -msgstr "回答" - -#: deps/django_authopenid/urls.py:13 +#: deps/django_authopenid/urls.py:10 msgid "signout/" msgstr "" -#: deps/django_authopenid/urls.py:15 +#: deps/django_authopenid/urls.py:12 msgid "complete/" msgstr "" -#: deps/django_authopenid/urls.py:18 +#: deps/django_authopenid/urls.py:15 msgid "complete-oauth/" msgstr "" -#: deps/django_authopenid/urls.py:22 +#: deps/django_authopenid/urls.py:19 msgid "register/" msgstr "" -#: deps/django_authopenid/urls.py:24 +#: deps/django_authopenid/urls.py:21 #, fuzzy msgid "signup/" msgstr "サインアップする" -#: deps/django_authopenid/urls.py:32 +#: deps/django_authopenid/urls.py:25 +msgid "logout/" +msgstr "" + +#: deps/django_authopenid/urls.py:30 #, fuzzy msgid "recover/" msgstr "取り除く" -#: deps/django_authopenid/util.py:196 +#: deps/django_authopenid/util.py:378 #, fuzzy, python-format msgid "%(site)s user name and password" msgstr "ユーザ名とパスワードを入力してください" -#: deps/django_authopenid/util.py:202 -#: skins/default/templates/authopenid/signin.html:124 +#: deps/django_authopenid/util.py:384 +#: skins/default/templates/authopenid/signin.html:108 msgid "Create a password-protected account" msgstr "" -#: deps/django_authopenid/util.py:203 +#: deps/django_authopenid/util.py:385 #, fuzzy msgid "Change your password" msgstr "パスワードを変更する" -#: deps/django_authopenid/util.py:265 +#: deps/django_authopenid/util.py:473 msgid "Sign in with Yahoo" msgstr "" -#: deps/django_authopenid/util.py:272 +#: deps/django_authopenid/util.py:480 #, fuzzy msgid "AOL screen name" msgstr "スクリーン名" -#: deps/django_authopenid/util.py:280 +#: deps/django_authopenid/util.py:488 #, fuzzy msgid "OpenID url" msgstr "OpenID URL:" -#: deps/django_authopenid/util.py:297 -#, fuzzy -msgid "MyOpenid user name" -msgstr "ユーザー名順" - -#: deps/django_authopenid/util.py:305 deps/django_authopenid/util.py:313 +#: deps/django_authopenid/util.py:517 #, fuzzy msgid "Flickr user name" msgstr "ユーザー名" -#: deps/django_authopenid/util.py:321 +#: deps/django_authopenid/util.py:525 #, fuzzy msgid "Technorati user name" msgstr "スクリーン名を選択しましょう" -#: deps/django_authopenid/util.py:329 +#: deps/django_authopenid/util.py:533 msgid "WordPress blog name" msgstr "" -#: deps/django_authopenid/util.py:337 +#: deps/django_authopenid/util.py:541 msgid "Blogger blog name" msgstr "" -#: deps/django_authopenid/util.py:345 +#: deps/django_authopenid/util.py:549 msgid "LiveJournal blog name" msgstr "" -#: deps/django_authopenid/util.py:353 +#: deps/django_authopenid/util.py:557 #, fuzzy msgid "ClaimID user name" msgstr "ユーザー名" -#: deps/django_authopenid/util.py:361 +#: deps/django_authopenid/util.py:565 #, fuzzy msgid "Vidoop user name" msgstr "ユーザー名" -#: deps/django_authopenid/util.py:369 +#: deps/django_authopenid/util.py:573 #, fuzzy msgid "Verisign user name" msgstr "ユーザー名" -#: deps/django_authopenid/util.py:393 +#: deps/django_authopenid/util.py:608 #, fuzzy, python-format msgid "Change your %(provider)s password" msgstr "パスワードを変更する" -#: deps/django_authopenid/util.py:397 +#: deps/django_authopenid/util.py:612 #, python-format msgid "Click to see if your %(provider)s signin still works for %(site_name)s" msgstr "" -#: deps/django_authopenid/util.py:406 +#: deps/django_authopenid/util.py:621 #, python-format msgid "Create password for %(provider)s" msgstr "" -#: deps/django_authopenid/util.py:410 +#: deps/django_authopenid/util.py:625 #, fuzzy, python-format msgid "Connect your %(provider)s account to %(site_name)s" msgstr "新規ユーザサインアップ" -#: deps/django_authopenid/util.py:419 +#: deps/django_authopenid/util.py:634 #, fuzzy, python-format msgid "Signin with %(provider)s user name and password" msgstr "ユーザ名とパスワードを入力してください" -#: deps/django_authopenid/util.py:426 +#: deps/django_authopenid/util.py:641 #, python-format msgid "Sign in with your %(provider)s account" msgstr "" -#: deps/django_authopenid/views.py:144 +#: deps/django_authopenid/views.py:158 #, python-format msgid "OpenID %(openid_url)s is invalid" msgstr "" -#: deps/django_authopenid/views.py:256 deps/django_authopenid/views.py:399 -#: deps/django_authopenid/views.py:427 +#: deps/django_authopenid/views.py:270 deps/django_authopenid/views.py:415 +#: deps/django_authopenid/views.py:443 #, 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:349 +#: deps/django_authopenid/views.py:365 #, fuzzy msgid "Your new password saved" msgstr "パスワードの復旧" -#: deps/django_authopenid/views.py:511 +#: deps/django_authopenid/views.py:469 +msgid "The login password combination was not correct" +msgstr "" + +#: deps/django_authopenid/views.py:573 msgid "Please click any of the icons below to sign in" msgstr "" -#: deps/django_authopenid/views.py:513 +#: deps/django_authopenid/views.py:575 msgid "Account recovery email sent" msgstr "" -#: deps/django_authopenid/views.py:516 +#: deps/django_authopenid/views.py:578 msgid "Please add one or more login methods." msgstr "" -#: deps/django_authopenid/views.py:518 +#: deps/django_authopenid/views.py:580 msgid "If you wish, please add, remove or re-validate your login methods" msgstr "" -#: deps/django_authopenid/views.py:520 +#: deps/django_authopenid/views.py:582 msgid "Please wait a second! Your account is recovered, but ..." msgstr "" -#: deps/django_authopenid/views.py:522 +#: deps/django_authopenid/views.py:584 msgid "Sorry, this account recovery key has expired or is invalid" msgstr "" -#: deps/django_authopenid/views.py:578 +#: deps/django_authopenid/views.py:657 #, python-format msgid "Login method %(provider_name)s does not exist" msgstr "" -#: deps/django_authopenid/views.py:584 +#: deps/django_authopenid/views.py:663 #, fuzzy msgid "Oops, sorry - there was some error - please try again" msgstr "" "申し訳ありませんが、入力したパスワードは一致しませんでした。再度入力してくだ" "さい。" -#: deps/django_authopenid/views.py:675 +#: deps/django_authopenid/views.py:754 #, python-format msgid "Your %(provider)s login works fine" msgstr "" -#: deps/django_authopenid/views.py:973 deps/django_authopenid/views.py:979 +#: deps/django_authopenid/views.py:1065 deps/django_authopenid/views.py:1071 #, python-format msgid "your email needs to be validated see %(details_url)s" msgstr "" "Your email needs to be validated. Please see details here." -#: deps/django_authopenid/views.py:1000 -msgid "Email verification subject line" -msgstr "Verification Email from Q&A forum" +#: deps/django_authopenid/views.py:1092 +#, fuzzy, python-format +msgid "Recover your %(site)s account" +msgstr "あたらしいパスワードを設定する" -#: deps/django_authopenid/views.py:1065 +#: deps/django_authopenid/views.py:1162 msgid "Please check your email and visit the enclosed link." msgstr "" @@ -1557,25 +2513,25 @@ msgstr "" msgid "Site" msgstr "タイトル" -#: deps/livesettings/values.py:107 +#: deps/livesettings/values.py:106 #, fuzzy msgid "Base Settings" msgstr "設定" -#: deps/livesettings/values.py:214 +#: deps/livesettings/values.py:213 msgid "Default value: \"\"" msgstr "" -#: deps/livesettings/values.py:221 +#: deps/livesettings/values.py:220 msgid "Default value: " msgstr "" -#: deps/livesettings/values.py:224 +#: deps/livesettings/values.py:223 #, python-format msgid "Default value: %s" msgstr "" -#: deps/livesettings/values.py:589 +#: deps/livesettings/values.py:601 #, python-format msgid "Allowed image file types are %(types)s" msgstr "" @@ -1593,7 +2549,7 @@ msgstr "場所" #: deps/livesettings/templates/livesettings/group_settings.html:11 #: deps/livesettings/templates/livesettings/site_settings.html:23 -#: skins/default/templates/authopenid/signin.html:142 +#: skins/default/templates/authopenid/signin.html:132 msgid "Change password" msgstr "パスワードを変更する" @@ -1619,7 +2575,6 @@ msgstr "質問を編集する" msgid "Please correct the error below." msgid_plural "Please correct the errors below." msgstr[0] "次のエラーを正してください:" -msgstr[1] "次のエラーを正してください:" #: deps/livesettings/templates/livesettings/group_settings.html:28 #, python-format @@ -1658,106 +2613,100 @@ msgstr "" msgid "Uncollapse all" msgstr "" -#: deps/recaptcha_django/__init__.py:19 deps/recaptcha_django/__init__.py:80 -msgid "Unknown error." +#: importers/stackexchange/management/commands/load_stackexchange.py:141 +msgid "Congratulations, you are now an Administrator" msgstr "" -#: deps/recaptcha_django/__init__.py:20 deps/recaptcha_django/__init__.py:21 -msgid "ReCAPTCHA is wrongly configured." +#: 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 "" -#: deps/recaptcha_django/__init__.py:22 -msgid "Bad reCAPTCHA challenge parameter." +#: management/commands/post_emailed_questions.py:35 +msgid "" +"

      To ask by email, please:

      \n" +"
        \n" +"
      • Format the subject line as: [Tag1; Tag2] Question title
      • \n" +"
      • Type details of your question into the email body
      • \n" +"
      \n" +"

      Note that tags may consist of more than one word, and tags\n" +"may be separated by a semicolon or a comma

      \n" msgstr "" -#: deps/recaptcha_django/__init__.py:23 -msgid "The CAPTCHA solution was incorrect." +#: management/commands/post_emailed_questions.py:55 +#, python-format +msgid "" +"

      Sorry, there was an error posting your question please contact the " +"%(site)s administrator

      " msgstr "" -#: deps/recaptcha_django/__init__.py:24 -msgid "Bad reCAPTCHA verification parameters." +#: management/commands/post_emailed_questions.py:61 +#, python-format +msgid "" +"

      Sorry, in order to post questions on %(site)s by email, please register first

      " msgstr "" -#: deps/recaptcha_django/__init__.py:25 -msgid "Provided reCAPTCHA API keys are not valid for this domain." +#: management/commands/post_emailed_questions.py:69 +msgid "" +"

      Sorry, your question could not be posted due to insufficient privileges " +"of your user account

      " msgstr "" -#: deps/recaptcha_django/__init__.py:26 -msgid "ReCAPTCHA could not be reached." -msgstr "" - -#: deps/recaptcha_django/__init__.py:73 -msgid "Invalid request" -msgstr "" - -#: importers/stackexchange/management/commands/load_stackexchange.py:125 -msgid "Congratulations, you are now an Administrator" -msgstr "" - -#: management/commands/send_email_alerts.py:105 -#, python-format -msgid "\" and \"%s\"" -msgstr "" - -#: management/commands/send_email_alerts.py:108 -#, fuzzy -msgid "\" and more" -msgstr "より詳しく知るには" - -#: management/commands/send_email_alerts.py:113 +#: management/commands/send_email_alerts.py:411 #, 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:467 +#: 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] "" "

      Dear %(name)s,

      The following question has been updated on the Q&A " "forum:

      " -msgstr[1] "" -"

      Dear %(name)s,

      The following %(num)d questions have been updated on " -"the Q&A forum:

      " -#: management/commands/send_email_alerts.py:484 +#: management/commands/send_email_alerts.py:438 msgid "new question" msgstr "あたらしい質問" -#: management/commands/send_email_alerts.py:501 +#: 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:513 +#: 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:519 +#: 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:525 +#: 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:530 +#: management/commands/send_email_alerts.py:490 #, fuzzy, python-format msgid "" -"go to %(email_settings_link)s to change frequency of email updates or %" -"(admin_email)s administrator" +"go to %(email_settings_link)s to change frequency of email updates or " +"%(admin_email)s administrator" msgstr "" "

      Please remember that you can always adjust " "frequency of the email updates or turn them off entirely.
      If you believe " @@ -1765,488 +2714,572 @@ msgstr "" "administrator at %(email)s.

      Sincerely,

      Your friendly Q&A forum " "server.

      " -#: migrations/0005_install_badges.py:11 -msgid "Disciplined" -msgstr "規律的" - -#: migrations/0005_install_badges.py:11 -#, fuzzy -msgid "disciplined" -msgstr "規律的" +#: management/commands/send_unanswered_question_reminders.py:80 +#, python-format +msgid "%(question_count)d unanswered question about %(topics)s" +msgid_plural "%(question_count)d unanswered questions about %(topics)s" +msgstr[0] "" -#: migrations/0005_install_badges.py:11 -#, fuzzy -msgid "Deleted own post with score of 3 or higher" -msgstr "%s 以上のスコアの自身のポストを削除した" +#: models/__init__.py:316 +msgid "" +"Sorry, you cannot accept or unaccept best answers because your account is " +"blocked" +msgstr "" -#: migrations/0005_install_badges.py:12 -msgid "Peer Pressure" -msgstr "同僚からのプレッシャー" +#: models/__init__.py:320 +msgid "" +"Sorry, you cannot accept or unaccept best answers because your account is " +"suspended" +msgstr "" -#: migrations/0005_install_badges.py:12 -#, fuzzy -msgid "peer-pressure" -msgstr "同僚からのプレッシャー" +#: models/__init__.py:333 +#, fuzzy, python-format +msgid "" +">%(points)s points required to accept or unaccept your own answer to your " +"own question" +msgstr "自身の質問の最初の納得回答" -#: migrations/0005_install_badges.py:12 -#, fuzzy -msgid "Deleted own post with score of -3 or lower" -msgstr "スコアが3以下の自身のポストを消した" +#: models/__init__.py:347 +#, python-format +msgid "" +"Sorry, only original author of the question - %(username)s - can accept or " +"unaccept the best answer" +msgstr "" -#: migrations/0005_install_badges.py:13 -#, fuzzy -msgid "Nice answer" -msgstr "ナイス回答" +#: models/__init__.py:375 +msgid "cannot vote for own posts" +msgstr "" -#: migrations/0005_install_badges.py:13 -#, fuzzy -msgid "nice-answer" -msgstr "ナイス回答" +#: models/__init__.py:378 +msgid "Sorry your account appears to be blocked " +msgstr "" -#: migrations/0005_install_badges.py:13 -#, fuzzy -msgid "Answer voted up 10 times" -msgstr "Post Your Answer" +#: models/__init__.py:383 +msgid "Sorry your account appears to be suspended " +msgstr "" -#: migrations/0005_install_badges.py:14 -msgid "Nice Question" -msgstr "ナイス質問" +#: models/__init__.py:393 +#, python-format +msgid ">%(points)s points required to upvote" +msgstr "" -#: migrations/0005_install_badges.py:14 -#, fuzzy -msgid "nice-question" -msgstr "あたらしい質問" +#: models/__init__.py:399 +#, python-format +msgid ">%(points)s points required to downvote" +msgstr "" -#: migrations/0005_install_badges.py:14 -#, fuzzy -msgid "Question voted up 10 times" -msgstr "質問が %s 回上げ投票された" +#: models/__init__.py:414 +msgid "Sorry, blocked users cannot upload files" +msgstr "" -#: migrations/0005_install_badges.py:15 -msgid "Pundit" -msgstr "評論家" +#: models/__init__.py:415 +msgid "Sorry, suspended users cannot upload files" +msgstr "" -#: migrations/0005_install_badges.py:15 -#, fuzzy -msgid "pundit" -msgstr "評論家" +#: models/__init__.py:417 +#, fuzzy, python-format +msgid "" +"uploading images is limited to users with >%(min_rep)s reputation points" +msgstr "sorry, file uploading requires karma >60" -#: migrations/0005_install_badges.py:15 -#, fuzzy -msgid "Left 10 comments with score of 10 or more" -msgstr "スコアが3以下の自身のポストを消した" +#: models/__init__.py:436 models/__init__.py:503 models/__init__.py:918 +msgid "blocked users cannot post" +msgstr "" -#: migrations/0005_install_badges.py:16 -msgid "Popular Question" -msgstr "人気の質問" +#: models/__init__.py:437 models/__init__.py:921 +msgid "suspended users cannot post" +msgstr "" -#: migrations/0005_install_badges.py:16 -#, fuzzy -msgid "popular-question" -msgstr "人気の質問" +#: models/__init__.py:464 +#, python-format +msgid "" +"Sorry, comments (except the last one) are editable only within %(minutes)s " +"minute from posting" +msgid_plural "" +"Sorry, comments (except the last one) are editable only within %(minutes)s " +"minutes from posting" +msgstr[0] "" -#: migrations/0005_install_badges.py:16 -#, fuzzy -msgid "Asked a question with 1,000 views" -msgstr "%s 回読まれた質問をした" +#: models/__init__.py:476 +msgid "Sorry, but only post owners or moderators can edit comments" +msgstr "" -#: migrations/0005_install_badges.py:17 -#, fuzzy -msgid "Citizen patrol" -msgstr "市民パトロール" +#: models/__init__.py:489 +msgid "" +"Sorry, since your account is suspended you can comment only your own posts" +msgstr "" -#: migrations/0005_install_badges.py:17 -#, fuzzy -msgid "citizen-patrol" -msgstr "市民パトロール" +#: models/__init__.py:493 +#, 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 "" -#: migrations/0005_install_badges.py:17 -msgid "First flagged post" -msgstr "フラグを最初にポストした" +#: models/__init__.py:521 +msgid "" +"This post has been deleted and can be seen only by post owners, site " +"administrators and moderators" +msgstr "" -#: migrations/0005_install_badges.py:18 -msgid "Cleanup" -msgstr "クリーンアップ" +#: models/__init__.py:538 +msgid "" +"Sorry, only moderators, site administrators and post owners can edit deleted " +"posts" +msgstr "" -#: migrations/0005_install_badges.py:18 -#, fuzzy -msgid "cleanup" -msgstr "クリーンアップ" +#: models/__init__.py:553 +msgid "Sorry, since your account is blocked you cannot edit posts" +msgstr "" -#: migrations/0005_install_badges.py:18 -msgid "First rollback" -msgstr "初めて巻き戻した" +#: models/__init__.py:557 +msgid "Sorry, since your account is suspended you can edit only your own posts" +msgstr "" -#: migrations/0005_install_badges.py:19 -msgid "Critic" -msgstr "批評家" +#: models/__init__.py:562 +#, python-format +msgid "" +"Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required" +msgstr "" -#: migrations/0005_install_badges.py:19 -#, fuzzy -msgid "critic" -msgstr "批評家" +#: models/__init__.py:569 +#, python-format +msgid "" +"Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is " +"required" +msgstr "" -#: migrations/0005_install_badges.py:19 -msgid "First down vote" -msgstr "最初の下げ投票" +#: models/__init__.py:632 +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] "" -#: migrations/0005_install_badges.py:20 -msgid "Editor" -msgstr "編集者" +#: models/__init__.py:647 +msgid "Sorry, since your account is blocked you cannot delete posts" +msgstr "" -#: migrations/0005_install_badges.py:20 -#, fuzzy -msgid "editor" -msgstr "編集者" +#: models/__init__.py:651 +msgid "" +"Sorry, since your account is suspended you can delete only your own posts" +msgstr "" -#: migrations/0005_install_badges.py:20 -msgid "First edit" -msgstr "最初の編集" +#: models/__init__.py:655 +#, python-format +msgid "" +"Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s " +"is required" +msgstr "" -#: migrations/0005_install_badges.py:21 -msgid "Organizer" -msgstr "オーガナイザー" +#: models/__init__.py:675 +msgid "Sorry, since your account is blocked you cannot close questions" +msgstr "" -#: migrations/0005_install_badges.py:21 -#, fuzzy -msgid "organizer" -msgstr "オーガナイザー" +#: models/__init__.py:679 +msgid "Sorry, since your account is suspended you cannot close questions" +msgstr "" -#: migrations/0005_install_badges.py:21 -msgid "First retag" -msgstr "最初にタグを付け替えた" +#: models/__init__.py:683 +#, python-format +msgid "" +"Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is " +"required" +msgstr "" -#: migrations/0005_install_badges.py:22 -msgid "Scholar" -msgstr "学者" +#: models/__init__.py:692 +#, python-format +msgid "" +"Sorry, to close own question a minimum reputation of %(min_rep)s is required" +msgstr "" -#: migrations/0005_install_badges.py:22 -#, fuzzy -msgid "scholar" -msgstr "学者" +#: models/__init__.py:716 +#, python-format +msgid "" +"Sorry, only administrators, moderators or post owners with reputation > " +"%(min_rep)s can reopen questions." +msgstr "" -#: migrations/0005_install_badges.py:22 -msgid "First accepted answer on your own question" -msgstr "自身の質問の最初の納得回答" +#: models/__init__.py:722 +#, python-format +msgid "" +"Sorry, to reopen own question a minimum reputation of %(min_rep)s is required" +msgstr "" -#: migrations/0005_install_badges.py:23 -msgid "Student" -msgstr "生徒" +#: models/__init__.py:742 +msgid "cannot flag message as offensive twice" +msgstr "" -#: migrations/0005_install_badges.py:23 -#, fuzzy -msgid "student" -msgstr "生徒" +#: models/__init__.py:747 +msgid "blocked users cannot flag posts" +msgstr "" -#: migrations/0005_install_badges.py:23 -msgid "Asked first question with at least one up vote" -msgstr "質問を最初に尋ねつつ少なくとも一つの上げ投票した" +#: models/__init__.py:749 +msgid "suspended users cannot flag posts" +msgstr "" -#: migrations/0005_install_badges.py:24 -msgid "Supporter" -msgstr "サポーター" +#: models/__init__.py:751 +#, python-format +msgid "need > %(min_rep)s points to flag spam" +msgstr "" -#: migrations/0005_install_badges.py:24 -#, fuzzy -msgid "supporter" -msgstr "サポーター" +#: models/__init__.py:770 +#, python-format +msgid "%(max_flags_per_day)s exceeded" +msgstr "" -#: migrations/0005_install_badges.py:24 -msgid "First up vote" -msgstr "最初に上げ投票した" +#: models/__init__.py:785 +msgid "" +"Sorry, only question owners, site administrators and moderators can retag " +"deleted questions" +msgstr "" -#: migrations/0005_install_badges.py:25 -msgid "Teacher" -msgstr "教師" +#: models/__init__.py:792 +msgid "Sorry, since your account is blocked you cannot retag questions" +msgstr "" -#: migrations/0005_install_badges.py:25 -#, fuzzy -msgid "teacher" -msgstr "教師" +#: models/__init__.py:796 +msgid "" +"Sorry, since your account is suspended you can retag only your own questions" +msgstr "" -#: migrations/0005_install_badges.py:25 -msgid "Answered first question with at least one up vote" -msgstr "質問に最初に回答しつつ少なくとも一つの上げ投票した" +#: models/__init__.py:800 +#, python-format +msgid "" +"Sorry, to retag questions a minimum reputation of %(min_rep)s is required" +msgstr "" -#: migrations/0005_install_badges.py:26 -msgid "Autobiographer" -msgstr "自伝作家" +#: models/__init__.py:819 +msgid "Sorry, since your account is blocked you cannot delete comment" +msgstr "" -#: migrations/0005_install_badges.py:26 -#, fuzzy -msgid "autobiographer" -msgstr "自伝作家" +#: models/__init__.py:823 +msgid "" +"Sorry, since your account is suspended you can delete only your own comments" +msgstr "" -#: migrations/0005_install_badges.py:26 -msgid "Completed all user profile fields" -msgstr "ユーザープロファイルをすべて入力した" +#: models/__init__.py:827 +#, python-format +msgid "Sorry, to delete comments reputation of %(min_rep)s is required" +msgstr "" -#: migrations/0005_install_badges.py:27 +#: models/__init__.py:850 #, fuzzy -msgid "Self-Learner" -msgstr "自習者" - -#: migrations/0005_install_badges.py:27 -#, fuzzy -msgid "self-learner" -msgstr "自習者" +msgid "cannot revoke old vote" +msgstr "キャンセルされた投票" -#: migrations/0005_install_badges.py:27 -#, fuzzy -msgid "Answered your own question with at least 3 up votes" +#: models/__init__.py:1325 utils/functions.py:70 +#, python-format +msgid "on %(date)s" msgstr "" -"You are welcome to answer your own question, " -"but please make sure to give an answer. Remember that you " -"can always revise your original question. Please " -"use comments for discussions and please don't " -"forget to vote :) for the answers that you liked (or perhaps did " -"not like)! " -#: migrations/0005_install_badges.py:28 -msgid "Great Answer" -msgstr "偉大な回答" +#: models/__init__.py:1327 +msgid "in two days" +msgstr "" -#: migrations/0005_install_badges.py:28 -#, fuzzy -msgid "great-answer" -msgstr "偉大な回答" +#: models/__init__.py:1329 +msgid "tomorrow" +msgstr "" -#: migrations/0005_install_badges.py:28 -#, fuzzy -msgid "Answer voted up 100 times" -msgstr "Post Your Answer" +#: models/__init__.py:1331 +#, fuzzy, python-format +msgid "in %(hr)d hour" +msgid_plural "in %(hr)d hours" +msgstr[0] "%(hr)d 時間前" -#: migrations/0005_install_badges.py:29 -msgid "Great Question" -msgstr "偉大な質問" +#: models/__init__.py:1333 +#, fuzzy, python-format +msgid "in %(min)d min" +msgid_plural "in %(min)d mins" +msgstr[0] "%(min)d 分前" + +#: models/__init__.py:1334 +#, python-format +msgid "%(days)d day" +msgid_plural "%(days)d days" +msgstr[0] "" + +#: models/__init__.py:1336 +#, python-format +msgid "" +"New users must wait %(days)s before answering their own question. You can " +"post an answer %(left)s" +msgstr "" -#: migrations/0005_install_badges.py:29 +#: models/__init__.py:1501 skins/default/templates/feedback_email.txt:9 #, fuzzy -msgid "great-question" -msgstr "偉大な質問" +msgid "Anonymous" +msgstr "匿名" -#: migrations/0005_install_badges.py:29 +#: models/__init__.py:1597 views/users.py:365 #, fuzzy -msgid "Question voted up 100 times" -msgstr "質問が %s 回上げ投票された" +msgid "Site Adminstrator" +msgstr "" +"よろしくおねがいします。\n" +"--\n" +"Q&A フォーラム管理" -#: migrations/0005_install_badges.py:30 -msgid "Stellar Question" -msgstr "スター質問" +#: models/__init__.py:1599 views/users.py:367 +msgid "Forum Moderator" +msgstr "" -#: migrations/0005_install_badges.py:30 +#: models/__init__.py:1601 views/users.py:369 #, fuzzy -msgid "stellar-question" -msgstr "スター質問" +msgid "Suspended User" +msgstr "送信者は" -#: migrations/0005_install_badges.py:30 -#, fuzzy -msgid "Question favorited by 100 users" -msgstr "質問が %s ユーザのお気に入りになった" +#: models/__init__.py:1603 views/users.py:371 +msgid "Blocked User" +msgstr "" -#: migrations/0005_install_badges.py:31 +#: models/__init__.py:1605 views/users.py:373 #, fuzzy -msgid "Famous question" -msgstr "著名な質問" +msgid "Registered User" +msgstr "登録ユーザー" -#: migrations/0005_install_badges.py:31 -#, fuzzy -msgid "famous-question" -msgstr "著名な質問" +#: models/__init__.py:1607 +msgid "Watched User" +msgstr "" -#: migrations/0005_install_badges.py:31 -#, fuzzy -msgid "Asked a question with 10,000 views" -msgstr "%s 回読まれた質問をした" +#: models/__init__.py:1609 +msgid "Approved User" +msgstr "" -#: migrations/0005_install_badges.py:32 -msgid "Alpha" +#: models/__init__.py:1718 +#, python-format +msgid "%(username)s karma is %(reputation)s" msgstr "" -#: migrations/0005_install_badges.py:32 -msgid "alpha" +#: models/__init__.py:1728 +#, python-format +msgid "one gold badge" +msgid_plural "%(count)d gold badges" +msgstr[0] "" + +#: models/__init__.py:1735 +#, fuzzy, python-format +msgid "one silver badge" +msgid_plural "%(count)d silver badges" +msgstr[0] "" +"銀バッジを得るには、著しい勤勉さが必要です。得る事ができたなら、それはこのコ" +"ミュニティーへの偉大な貢献を意味しています。" + +#: models/__init__.py:1742 +#, fuzzy, python-format +msgid "one bronze badge" +msgid_plural "%(count)d bronze badges" +msgstr[0] "" +"このコミュニティーの活動的な参加者であるなら、このバッジで認定されます。" + +#: models/__init__.py:1753 +#, python-format +msgid "%(item1)s and %(item2)s" msgstr "" -#: migrations/0005_install_badges.py:32 -msgid "Actively participated in the private alpha" +#: models/__init__.py:1757 +#, python-format +msgid "%(user)s has %(badges)s" msgstr "" -#: migrations/0005_install_badges.py:33 -msgid "Good Answer" -msgstr "良い回答" +#: models/__init__.py:2164 models/__init__.py:2170 models/__init__.py:2175 +#: models/__init__.py:2180 +#, python-format +msgid "Re: \"%(title)s\"" +msgstr "" -#: migrations/0005_install_badges.py:33 -#, fuzzy -msgid "good-answer" -msgstr "良い回答" +#: models/__init__.py:2185 models/__init__.py:2190 +#, fuzzy, python-format +msgid "Question: \"%(title)s\"" +msgstr "タグ" -#: migrations/0005_install_badges.py:33 -#, fuzzy -msgid "Answer voted up 25 times" -msgstr "Post Your Answer" +#: models/__init__.py:2371 +#, python-format +msgid "" +"Congratulations, you have received a badge '%(badge_name)s'. Check out your profile." +msgstr "" -#: migrations/0005_install_badges.py:34 -msgid "Good Question" -msgstr "良い質問" +#: models/__init__.py:2550 views/commands.py:396 +msgid "Your tag subscription was saved, thanks!" +msgstr "" -#: migrations/0005_install_badges.py:34 -#, fuzzy -msgid "good-question" -msgstr "良い質問" +#: models/answer.py:105 +msgid "" +"Sorry, the answer you are looking for is no longer available, because the " +"parent question has been removed" +msgstr "" -#: migrations/0005_install_badges.py:34 +#: models/answer.py:112 #, fuzzy -msgid "Question voted up 25 times" -msgstr "質問が %s 回上げ投票された" +msgid "Sorry, this answer has been removed and is no longer accessible" +msgstr "この質問はお気に入りとして選ばれました" -#: migrations/0005_install_badges.py:35 -msgid "Favorite Question" -msgstr "お気に入りの質問" +#: models/badges.py:129 +#, fuzzy, python-format +msgid "Deleted own post with %(votes)s or more upvotes" +msgstr "スコアが3以下の自身のポストを消した" -#: migrations/0005_install_badges.py:35 -#, fuzzy -msgid "favorite-question" -msgstr "お気に入りの質問" +#: models/badges.py:133 +msgid "Disciplined" +msgstr "規律的" + +#: models/badges.py:151 +#, fuzzy, python-format +msgid "Deleted own post with %(votes)s or more downvotes" +msgstr "スコアが3以下の自身のポストを消した" + +#: models/badges.py:155 +msgid "Peer Pressure" +msgstr "同僚からのプレッシャー" -#: migrations/0005_install_badges.py:35 +#: models/badges.py:174 +#, python-format +msgid "Received at least %(votes)s upvote for an answer for the first time" +msgstr "" + +#: models/badges.py:178 +msgid "Teacher" +msgstr "教師" + +#: models/badges.py:218 +msgid "Supporter" +msgstr "サポーター" + +#: models/badges.py:219 #, fuzzy -msgid "Question favorited by 25 users" -msgstr "質問が %s ユーザのお気に入りになった" +msgid "First upvote" +msgstr "最初に上げ投票した" + +#: models/badges.py:227 +msgid "Critic" +msgstr "批評家" -#: migrations/0005_install_badges.py:36 +#: models/badges.py:228 #, fuzzy -msgid "Civic duty" -msgstr "市民の義務" +msgid "First downvote" +msgstr "最初の下げ投票" -#: migrations/0005_install_badges.py:36 +#: models/badges.py:237 #, fuzzy -msgid "civic-duty" +msgid "Civic Duty" msgstr "市民の義務" -#: migrations/0005_install_badges.py:36 -#, fuzzy -msgid "Voted 300 times" +#: models/badges.py:238 +#, fuzzy, python-format +msgid "Voted %(num)s times" msgstr "%s回投票した" -#: migrations/0005_install_badges.py:37 -msgid "Strunk & White" -msgstr "「木下是清」" +#: models/badges.py:252 +#, fuzzy, python-format +msgid "Answered own question with at least %(num)s up votes" +msgstr "" +"You are welcome to answer your own question, " +"but please make sure to give an answer. Remember that you " +"can always revise your original question. Please " +"use comments for discussions and please don't " +"forget to vote :) for the answers that you liked (or perhaps did " +"not like)! " -#: migrations/0005_install_badges.py:37 +#: models/badges.py:256 #, fuzzy -msgid "strunk-and-white" -msgstr "「木下是清」" +msgid "Self-Learner" +msgstr "自習者" -#: migrations/0005_install_badges.py:37 +#: models/badges.py:304 #, fuzzy -msgid "Edited 100 entries" -msgstr "%s 個のエントリを編集した" +msgid "Nice Answer" +msgstr "ナイス回答" -#: migrations/0005_install_badges.py:38 -#, fuzzy -msgid "Generalist" -msgstr "送信者は" +#: models/badges.py:309 models/badges.py:321 models/badges.py:333 +#, fuzzy, python-format +msgid "Answer voted up %(num)s times" +msgstr "Post Your Answer" -#: migrations/0005_install_badges.py:38 -#, fuzzy -msgid "generalist" -msgstr "送信者は" +#: models/badges.py:316 +msgid "Good Answer" +msgstr "良い回答" -#: migrations/0005_install_badges.py:38 -msgid "Active in many different tags" -msgstr "" +#: models/badges.py:328 +msgid "Great Answer" +msgstr "偉大な回答" -#: migrations/0005_install_badges.py:39 -msgid "Expert" -msgstr "" +#: models/badges.py:340 +msgid "Nice Question" +msgstr "ナイス質問" -#: migrations/0005_install_badges.py:39 -#, fuzzy -msgid "expert" -msgstr "レポートする" +#: models/badges.py:345 models/badges.py:357 models/badges.py:369 +#, fuzzy, python-format +msgid "Question voted up %(num)s times" +msgstr "質問が %s 回上げ投票された" -#: migrations/0005_install_badges.py:39 -msgid "Very active in one tag" -msgstr "" +#: models/badges.py:352 +msgid "Good Question" +msgstr "良い質問" -#: migrations/0005_install_badges.py:40 -msgid "Yearling" -msgstr "" +#: models/badges.py:364 +msgid "Great Question" +msgstr "偉大な質問" -#: migrations/0005_install_badges.py:40 -msgid "yearling" -msgstr "" +#: models/badges.py:376 +msgid "Student" +msgstr "生徒" -#: migrations/0005_install_badges.py:40 -msgid "Active member for a year" -msgstr "" +#: models/badges.py:381 +msgid "Asked first question with at least one up vote" +msgstr "質問を最初に尋ねつつ少なくとも一つの上げ投票した" + +#: models/badges.py:414 +msgid "Popular Question" +msgstr "人気の質問" -#: migrations/0005_install_badges.py:41 +#: models/badges.py:418 models/badges.py:429 models/badges.py:441 +#, fuzzy, python-format +msgid "Asked a question with %(views)s views" +msgstr "%s 回読まれた質問をした" + +#: models/badges.py:425 msgid "Notable Question" msgstr "卓越した質問" -#: migrations/0005_install_badges.py:41 +#: models/badges.py:436 #, fuzzy -msgid "notable-question" -msgstr "卓越した質問" +msgid "Famous Question" +msgstr "著名な質問" -#: migrations/0005_install_badges.py:41 +#: models/badges.py:450 #, fuzzy -msgid "Asked a question with 2,500 views" -msgstr "%s 回読まれた質問をした" +msgid "Asked a question and accepted an answer" +msgstr "個の質問が回答募集中" -#: migrations/0005_install_badges.py:42 -msgid "Enlightened" -msgstr "よくわかっていらっしゃる" +#: models/badges.py:453 +msgid "Scholar" +msgstr "学者" -#: migrations/0005_install_badges.py:42 -#, fuzzy -msgid "enlightened" +#: models/badges.py:495 +msgid "Enlightened" msgstr "よくわかっていらっしゃる" -#: migrations/0005_install_badges.py:42 -#, fuzzy -msgid "First answer was accepted with at least 10 up votes" +#: models/badges.py:499 +#, fuzzy, python-format +msgid "First answer was accepted with %(num)s or more votes" msgstr "最初の回答が納得され、少なくとも %s 上げ投票があった。" -#: migrations/0005_install_badges.py:43 -msgid "Beta" -msgstr "" - -#: migrations/0005_install_badges.py:43 -msgid "beta" -msgstr "" - -#: migrations/0005_install_badges.py:43 -msgid "Actively participated in the private beta" -msgstr "" - -#: migrations/0005_install_badges.py:44 +#: models/badges.py:507 msgid "Guru" msgstr "導師" -#: migrations/0005_install_badges.py:44 -#, fuzzy -msgid "guru" -msgstr "導師" - -#: migrations/0005_install_badges.py:44 -#, fuzzy -msgid "Accepted answer and voted up 40 times" -msgstr "回答が納得され、%s 回上げ投票された" - -#: migrations/0005_install_badges.py:45 -msgid "Necromancer" -msgstr "ネクロマンサー" - -#: migrations/0005_install_badges.py:45 -#, fuzzy -msgid "necromancer" -msgstr "ネクロマンサー" +#: models/badges.py:510 +#, fuzzy, python-format +msgid "Answer accepted with %(num)s or more votes" +msgstr "最初の回答が納得され、少なくとも %s 上げ投票があった。" -#: migrations/0005_install_badges.py:45 -#, fuzzy -msgid "Answered a question more than 60 days later with at least 5 votes" +#: models/badges.py:518 +#, fuzzy, python-format +msgid "" +"Answered a question more than %(days)s days later with at least %(votes)s " +"votes" msgstr "" "You are welcome to answer your own question, " "but please make sure to give an answer. Remember that you " @@ -2255,543 +3288,317 @@ msgstr "" "forget to vote :)
      for the answers that you liked (or perhaps did " "not like)! " -#: migrations/0005_install_badges.py:46 -msgid "Taxonomist" -msgstr "体系学者" +#: models/badges.py:525 +msgid "Necromancer" +msgstr "ネクロマンサー" -#: migrations/0005_install_badges.py:46 +#: models/badges.py:548 #, fuzzy -msgid "taxonomist" -msgstr "体系学者" +msgid "Citizen Patrol" +msgstr "市民パトロール" -#: migrations/0005_install_badges.py:46 -#, fuzzy -msgid "Created a tag used by 50 questions" -msgstr "%s 個の質問でつかわれるタグをつくった" +#: models/badges.py:551 +msgid "First flagged post" +msgstr "フラグを最初にポストした" -#: models/__init__.py:169 -msgid "" -"Sorry, you cannot accept or unaccept best answers because your account is " -"blocked" -msgstr "" +#: models/badges.py:563 +msgid "Cleanup" +msgstr "クリーンアップ" -#: models/__init__.py:174 -msgid "" -"Sorry, you cannot accept or unaccept best answers because your account is " -"suspended" -msgstr "" +#: models/badges.py:566 +msgid "First rollback" +msgstr "初めて巻き戻した" -#: models/__init__.py:180 -#, fuzzy -msgid "" -"Sorry, you cannot accept or unaccept your own answer to your own question" -msgstr "自身の質問の最初の納得回答" +#: models/badges.py:577 +msgid "Pundit" +msgstr "評論家" -#: models/__init__.py:187 -#, python-format -msgid "" -"Sorry, only original author of the question - %(username)s - can accept the " -"best answer" -msgstr "" - -#: models/__init__.py:210 -msgid "cannot vote for own posts" -msgstr "" - -#: models/__init__.py:213 -msgid "Sorry your account appears to be blocked " -msgstr "" - -#: models/__init__.py:218 -msgid "Sorry your account appears to be suspended " -msgstr "" - -#: models/__init__.py:228 -#, python-format -msgid ">%(points)s points required to upvote" -msgstr "" +#: models/badges.py:580 +#, fuzzy +msgid "Left 10 comments with score of 10 or more" +msgstr "スコアが3以下の自身のポストを消した" -#: models/__init__.py:234 -#, python-format -msgid ">%(points)s points required to downvote" -msgstr "" +#: models/badges.py:612 +msgid "Editor" +msgstr "編集者" -#: models/__init__.py:249 -msgid "Sorry, blocked users cannot upload files" -msgstr "" +#: models/badges.py:615 +msgid "First edit" +msgstr "最初の編集" -#: models/__init__.py:250 -msgid "Sorry, suspended users cannot upload files" +#: models/badges.py:623 +msgid "Associate Editor" msgstr "" -#: models/__init__.py:252 +#: models/badges.py:627 #, fuzzy, python-format -msgid "" -"uploading images is limited to users with >%(min_rep)s reputation points" -msgstr "sorry, file uploading requires karma >60" - -#: models/__init__.py:271 models/__init__.py:331 models/__init__.py:1950 -msgid "blocked users cannot post" -msgstr "" - -#: models/__init__.py:272 models/__init__.py:1953 -msgid "suspended users cannot post" -msgstr "" - -#: models/__init__.py:297 -msgid "" -"Sorry, comments (except the last one) are editable only within 10 minutes " -"from posting" -msgstr "" - -#: models/__init__.py:303 -msgid "Sorry, but only post owners or moderators can edit comments" -msgstr "" - -#: models/__init__.py:317 -msgid "" -"Sorry, since your account is suspended you can comment only your own posts" -msgstr "" - -#: models/__init__.py:321 -#, 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:349 -msgid "" -"This post has been deleted and can be seen only by post ownwers, site " -"administrators and moderators" -msgstr "" - -#: models/__init__.py:366 -msgid "" -"Sorry, only moderators, site administrators and post owners can edit deleted " -"posts" -msgstr "" - -#: models/__init__.py:381 -msgid "Sorry, since your account is blocked you cannot edit posts" -msgstr "" - -#: models/__init__.py:385 -msgid "Sorry, since your account is suspended you can edit only your own posts" -msgstr "" - -#: models/__init__.py:390 -#, python-format -msgid "" -"Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required" -msgstr "" - -#: models/__init__.py:397 -#, python-format -msgid "" -"Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is " -"required" -msgstr "" - -#: models/__init__.py:460 -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] "" -msgstr[1] "" +msgid "Edited %(num)s entries" +msgstr "%s 個のエントリを編集した" -#: models/__init__.py:475 -msgid "Sorry, since your account is blocked you cannot delete posts" -msgstr "" +#: models/badges.py:634 +msgid "Organizer" +msgstr "オーガナイザー" -#: models/__init__.py:479 -msgid "" -"Sorry, since your account is suspended you can delete only your own posts" -msgstr "" +#: models/badges.py:637 +msgid "First retag" +msgstr "最初にタグを付け替えた" -#: models/__init__.py:483 -#, python-format -msgid "" -"Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s " -"is required" -msgstr "" +#: models/badges.py:644 +msgid "Autobiographer" +msgstr "自伝作家" -#: models/__init__.py:503 -msgid "Sorry, since your account is blocked you cannot close questions" -msgstr "" +#: models/badges.py:647 +msgid "Completed all user profile fields" +msgstr "ユーザープロファイルをすべて入力した" -#: models/__init__.py:507 -msgid "Sorry, since your account is suspended you cannot close questions" -msgstr "" +#: models/badges.py:663 +#, fuzzy, python-format +msgid "Question favorited by %(num)s users" +msgstr "質問が %s ユーザのお気に入りになった" -#: models/__init__.py:511 -#, python-format -msgid "" -"Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is " -"required" -msgstr "" +#: models/badges.py:689 +msgid "Stellar Question" +msgstr "スター質問" -#: models/__init__.py:520 -#, python-format -msgid "" -"Sorry, to close own question a minimum reputation of %(min_rep)s is required" -msgstr "" +#: models/badges.py:698 +msgid "Favorite Question" +msgstr "お気に入りの質問" -#: models/__init__.py:544 -#, python-format -msgid "" -"Sorry, only administrators, moderators or post owners with reputation > %" -"(min_rep)s can reopen questions." +#: models/badges.py:710 +msgid "Enthusiast" msgstr "" -#: models/__init__.py:550 +#: models/badges.py:714 #, python-format -msgid "" -"Sorry, to reopen own question a minimum reputation of %(min_rep)s is required" -msgstr "" - -#: models/__init__.py:570 -msgid "cannot flag message as offensive twice" +msgid "Visited site every day for %(num)s days in a row" msgstr "" -#: models/__init__.py:575 -msgid "blocked users cannot flag posts" -msgstr "" - -#: models/__init__.py:577 -msgid "suspended users cannot flag posts" -msgstr "" +#: models/badges.py:732 +#, fuzzy +msgid "Commentator" +msgstr "場所" -#: models/__init__.py:579 +#: models/badges.py:736 #, python-format -msgid "need > %(min_rep)s points to flag spam" +msgid "Posted %(num_comments)s comments" msgstr "" -#: models/__init__.py:598 -#, python-format -msgid "%(max_flags_per_day)s exceeded" -msgstr "" +#: models/badges.py:752 +msgid "Taxonomist" +msgstr "体系学者" -#: models/__init__.py:613 -msgid "" -"Sorry, only question owners, site administrators and moderators can retag " -"deleted questions" -msgstr "" +#: models/badges.py:756 +#, fuzzy, python-format +msgid "Created a tag used by %(num)s questions" +msgstr "%s 個の質問でつかわれるタグをつくった" -#: models/__init__.py:620 -msgid "Sorry, since your account is blocked you cannot retag questions" +#: models/badges.py:776 +msgid "Expert" msgstr "" -#: models/__init__.py:624 -msgid "" -"Sorry, since your account is suspended you can retag only your own questions" +#: models/badges.py:779 +msgid "Very active in one tag" msgstr "" -#: models/__init__.py:628 -#, python-format +#: models/meta.py:112 msgid "" -"Sorry, to retag questions a minimum reputation of %(min_rep)s is required" -msgstr "" - -#: models/__init__.py:647 -msgid "Sorry, since your account is blocked you cannot delete comment" +"Sorry, the comment you are looking for is no longer accessible, because the " +"parent question has been removed" msgstr "" -#: models/__init__.py:651 +#: models/meta.py:119 msgid "" -"Sorry, since your account is suspended you can delete only your own comments" +"Sorry, the comment you are looking for is no longer accessible, because the " +"parent answer has been removed" msgstr "" -#: models/__init__.py:655 +#: models/question.py:72 #, python-format -msgid "Sorry, to delete comments reputation of %(min_rep)s is required" -msgstr "" - -#: models/__init__.py:678 -#, fuzzy -msgid "cannot revoke old vote" -msgstr "キャンセルされた投票" - -#: models/__init__.py:1166 views/users.py:388 -#, fuzzy -msgid "Site Adminstrator" -msgstr "" -"よろしくおねがいします。\n" -"--\n" -"Q&A フォーラム管理" - -#: models/__init__.py:1168 views/users.py:390 -msgid "Forum Moderator" +msgid "\" and \"%s\"" msgstr "" -#: models/__init__.py:1170 views/users.py:392 +#: models/question.py:75 #, fuzzy -msgid "Suspended User" -msgstr "送信者は" - -#: models/__init__.py:1172 views/users.py:394 -msgid "Blocked User" -msgstr "" +msgid "\" and more" +msgstr "より詳しく知るには" -#: models/__init__.py:1174 views/users.py:396 +#: models/question.py:452 #, fuzzy -msgid "Registered User" -msgstr "登録ユーザー" - -#: models/__init__.py:1176 -msgid "Watched User" -msgstr "" - -#: models/__init__.py:1178 -msgid "Approved User" -msgstr "" - -#: models/__init__.py:1234 -#, python-format -msgid "%(username)s karma is %(reputation)s" -msgstr "" - -#: models/__init__.py:1244 -#, python-format -msgid "one gold badge" -msgid_plural "%(count)d gold badges" -msgstr[0] "" -msgstr[1] "" - -#: models/__init__.py:1251 -#, fuzzy, python-format -msgid "one silver badge" -msgid_plural "%(count)d silver badges" -msgstr[0] "" -"銀バッジを得るには、著しい勤勉さが必要です。得る事ができたなら、それはこのコ" -"ミュニティーへの偉大な貢献を意味しています。" -msgstr[1] "" -"銀バッジを得るには、著しい勤勉さが必要です。得る事ができたなら、それはこのコ" -"ミュニティーへの偉大な貢献を意味しています。" - -#: models/__init__.py:1258 -#, fuzzy, python-format -msgid "one bronze badge" -msgid_plural "%(count)d bronze badges" -msgstr[0] "" -"このコミュニティーの活動的な参加者であるなら、このバッジで認定されます。" -msgstr[1] "" -"このコミュニティーの活動的な参加者であるなら、このバッジで認定されます。" - -#: models/__init__.py:1269 -#, python-format -msgid "%(item1)s and %(item2)s" -msgstr "" - -#: models/__init__.py:1273 -#, python-format -msgid "%(user)s has %(badges)s" -msgstr "" - -#: models/__init__.py:1566 models/__init__.py:1572 models/__init__.py:1577 -#: models/__init__.py:1582 -#, python-format -msgid "Re: \"%(title)s\"" -msgstr "" - -#: models/__init__.py:1587 models/__init__.py:1592 -#, fuzzy, python-format -msgid "Question: \"%(title)s\"" -msgstr "タグ" - -#: models/__init__.py:1773 -#, python-format -msgid "" -"Congratulations, you have received a badge '%(badge_name)s'. Check out your profile." -msgstr "" +msgid "Sorry, this question has been deleted and is no longer accessible" +msgstr "この質問はお気に入りとして選ばれました" -#: models/question.py:687 +#: models/question.py:908 #, python-format msgid "%(author)s modified the question" msgstr "%(author)s が改変した質問" -#: models/question.py:691 +#: models/question.py:912 #, python-format msgid "%(people)s posted %(new_answer_count)s new answers" msgstr "" -#: models/question.py:696 +#: models/question.py:917 #, python-format msgid "%(people)s commented the question" msgstr "" -#: models/question.py:701 +#: models/question.py:922 #, python-format msgid "%(people)s commented answers" msgstr "" -#: models/question.py:703 +#: models/question.py:924 #, python-format msgid "%(people)s commented an answer" msgstr "" -#: models/repute.py:16 skins/default/templates/badges.html:43 -msgid "gold" -msgstr "金賞" - -#: models/repute.py:17 skins/default/templates/badges.html:52 -msgid "silver" -msgstr "銀賞" - -#: models/repute.py:18 skins/default/templates/badges.html:59 -msgid "bronze" -msgstr "銅賞" - -#: models/repute.py:150 +#: models/repute.py:142 #, python-format msgid "Changed by moderator. Reason: %(reason)s" msgstr "" -#: models/repute.py:161 +#: models/repute.py:153 #, python-format msgid "" -"%(points)s points were added for %(username)s's contribution to question %" -"(question_title)s" +"%(points)s points were added for %(username)s's contribution to question " +"%(question_title)s" msgstr "" -#: models/repute.py:166 +#: models/repute.py:158 #, python-format msgid "" "%(points)s points were subtracted for %(username)s's contribution to " "question %(question_title)s" msgstr "" -#: models/tag.py:91 +#: models/tag.py:151 msgid "interesting" msgstr "興味深い" -#: models/tag.py:91 +#: models/tag.py:151 msgid "ignored" msgstr "無視" -#: models/user.py:233 +#: models/user.py:264 msgid "Entire forum" msgstr "フォーラムに入る" -#: models/user.py:234 +#: models/user.py:265 msgid "Questions that I asked" msgstr "尋ねた質問" -#: models/user.py:235 +#: models/user.py:266 msgid "Questions that I answered" msgstr "回答した質問" -#: models/user.py:236 +#: models/user.py:267 msgid "Individually selected questions" msgstr "個人的に選択した質問" -#: models/user.py:237 +#: models/user.py:268 #, fuzzy msgid "Mentions and comment responses" msgstr "質問にコメントしたとき" -#: models/user.py:240 +#: models/user.py:271 msgid "Instantly" msgstr "すぐに" -#: models/user.py:241 +#: models/user.py:272 msgid "Daily" msgstr "デイリー" -#: models/user.py:242 +#: models/user.py:273 msgid "Weekly" msgstr "ウイークリー" -#: models/user.py:243 +#: models/user.py:274 msgid "No email" msgstr "メール無し" #: skins/default/templates/404.jinja.html:3 -#: skins/default/templates/404.jinja.html:11 +#: skins/default/templates/404.jinja.html:10 msgid "Page not found" msgstr "" -#: skins/default/templates/404.jinja.html:15 +#: skins/default/templates/404.jinja.html:13 msgid "Sorry, could not find the page you requested." msgstr "残念ながら、リクエストされたページは見つかりません。" -#: skins/default/templates/404.jinja.html:17 +#: skins/default/templates/404.jinja.html:15 msgid "This might have happened for the following reasons:" msgstr "これはもしかしたらつぎのような理由でおこったかもしれない:" -#: skins/default/templates/404.jinja.html:19 +#: skins/default/templates/404.jinja.html:17 msgid "this question or answer has been deleted;" msgstr "この質問もしくは回答は削除されました;" -#: skins/default/templates/404.jinja.html:20 +#: skins/default/templates/404.jinja.html:18 msgid "url has error - please check it;" msgstr "URLがエラーを含んでいます。。確認して下さい;" -#: skins/default/templates/404.jinja.html:21 +#: skins/default/templates/404.jinja.html:19 msgid "" "the page you tried to visit is protected or you don't have sufficient " "points, see" msgstr "開こうとしたページは保護されているか、十分なポイントをもっていません、" -#: skins/default/templates/404.jinja.html:21 -#: skins/default/templates/footer.html:6 -#: skins/default/templates/header.html:57 -#: skins/default/templates/question_edit_tips.html:16 +#: skins/default/templates/404.jinja.html:19 +#: skins/default/templates/blocks/footer.html:5 +#: skins/default/templates/blocks/header_meta_links.html:13 +#: skins/default/templates/blocks/question_edit_tips.html:15 msgid "faq" msgstr "よくある質問" -#: skins/default/templates/404.jinja.html:22 +#: skins/default/templates/404.jinja.html:20 msgid "if you believe this error 404 should not have occured, please" msgstr "このエラー404がおこらないとを信じるなら、" -#: skins/default/templates/404.jinja.html:23 +#: skins/default/templates/404.jinja.html:21 msgid "report this problem" msgstr "この問題をレポートする" -#: skins/default/templates/404.jinja.html:32 -#: skins/default/templates/500.jinja.html:13 +#: skins/default/templates/404.jinja.html:30 +#: skins/default/templates/500.jinja.html:11 msgid "back to previous page" msgstr "以前のページに戻る" -#: skins/default/templates/404.jinja.html:33 -#: skins/default/templates/questions.html:13 +#: skins/default/templates/404.jinja.html:31 +#: skins/default/templates/main_page/tab_bar.html:9 msgid "see all questions" msgstr "すべての質問をみる" -#: skins/default/templates/404.jinja.html:34 +#: skins/default/templates/404.jinja.html:32 msgid "see all tags" msgstr "すべてのタグをみる" #: skins/default/templates/500.jinja.html:3 -#: skins/default/templates/500.jinja.html:6 +#: skins/default/templates/500.jinja.html:5 msgid "Internal server error" msgstr "" -#: skins/default/templates/500.jinja.html:10 +#: skins/default/templates/500.jinja.html:8 msgid "system error log is recorded, error will be fixed as soon as possible" msgstr "" "システムエラーログが記録されました、エラーはできる限り速やかに修正されるで" "しょう" -#: skins/default/templates/500.jinja.html:11 +#: skins/default/templates/500.jinja.html:9 msgid "please report the error to the site administrators if you wish" msgstr "" -#: skins/default/templates/500.jinja.html:14 +#: skins/default/templates/500.jinja.html:12 msgid "see latest questions" msgstr "最新の質問をみる" -#: skins/default/templates/500.jinja.html:15 +#: skins/default/templates/500.jinja.html:13 msgid "see tags" msgstr "タグをみる" -#: skins/default/templates/about.html:3 skins/default/templates/about.html:6 -msgid "About" -msgstr "QAとは" +#: 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 @@ -2799,324 +3606,188 @@ msgid "Edit answer" msgstr "回答を編集する" #: skins/default/templates/answer_edit.html:10 -#: skins/default/templates/question_edit.html:10 -#: skins/default/templates/question_retag.html:6 +#: skins/default/templates/question_edit.html:9 +#: skins/default/templates/question_retag.html:5 #: skins/default/templates/revisions.html:7 msgid "back" msgstr "もどる" -#: skins/default/templates/answer_edit.html:15 -#: skins/default/templates/question_edit.html:14 +#: skins/default/templates/answer_edit.html:14 msgid "revision" msgstr "改訂" -#: skins/default/templates/answer_edit.html:18 -#: skins/default/templates/question_edit.html:19 +#: skins/default/templates/answer_edit.html:17 +#: skins/default/templates/question_edit.html:16 msgid "select revision" msgstr "改訂を選択する" -#: skins/default/templates/answer_edit.html:22 -#: skins/default/templates/question_edit.html:28 +#: skins/default/templates/answer_edit.html:21 +#: skins/default/templates/question_edit.html:27 msgid "Save edit" msgstr "編集を保存する" -#: skins/default/templates/answer_edit.html:23 -#: skins/default/templates/close.html:19 -#: skins/default/templates/feedback.html:45 -#: skins/default/templates/question_edit.html:29 -#: skins/default/templates/question_retag.html:26 -#: skins/default/templates/reopen.html:30 -#: skins/default/templates/user_edit.html:76 +#: skins/default/templates/answer_edit.html:22 +#: skins/default/templates/close.html:16 +#: skins/default/templates/feedback.html:42 +#: skins/default/templates/question_edit.html:28 +#: skins/default/templates/question_retag.html:22 +#: skins/default/templates/reopen.html:27 +#: skins/default/templates/subscribe_for_tags.html:16 #: skins/default/templates/authopenid/changeemail.html:38 +#: skins/default/templates/user_profile/user_edit.html:84 msgid "Cancel" msgstr "キャンセル" -#: skins/default/templates/answer_edit.html:59 -#: skins/default/templates/answer_edit.html:62 -#: skins/default/templates/ask.html:36 skins/default/templates/ask.html:39 -#: skins/default/templates/macros.html:398 -#: skins/default/templates/question.html:456 -#: skins/default/templates/question.html:459 -#: skins/default/templates/question_edit.html:63 -#: skins/default/templates/question_edit.html:66 +#: skins/default/templates/answer_edit.html:60 +#: skins/default/templates/answer_edit.html:63 +#: skins/default/templates/ask.html:46 skins/default/templates/ask.html:49 +#: skins/default/templates/macros.html:698 +#: skins/default/templates/question.html:562 +#: skins/default/templates/question.html:565 +#: skins/default/templates/question_edit.html:72 +#: skins/default/templates/question_edit.html:75 msgid "hide preview" msgstr "プレビューを隠す" -#: skins/default/templates/answer_edit.html:62 -#: skins/default/templates/ask.html:39 -#: skins/default/templates/question.html:459 -#: skins/default/templates/question_edit.html:66 +#: skins/default/templates/answer_edit.html:63 +#: skins/default/templates/ask.html:49 +#: skins/default/templates/question.html:565 +#: skins/default/templates/question_edit.html:75 msgid "show preview" msgstr "プレビューを表示する" -#: skins/default/templates/answer_edit_tips.html:3 -msgid "answer tips" -msgstr "コツ" - -#: skins/default/templates/answer_edit_tips.html:6 -msgid "please make your answer relevant to this community" -msgstr "このコミュニティーに即した回答をしてくだあし" - -#: skins/default/templates/answer_edit_tips.html:9 -msgid "try to give an answer, rather than engage into a discussion" -msgstr "議論にかみ合うよりむしろ、回答をあたえるようにしてみましょう" - -#: skins/default/templates/answer_edit_tips.html:12 -msgid "please try to provide details" -msgstr "詳細を提供してみましょう" - -#: skins/default/templates/answer_edit_tips.html:15 -#: skins/default/templates/question_edit_tips.html:12 -msgid "be clear and concise" -msgstr "明確で正確な質問を" - -#: skins/default/templates/answer_edit_tips.html:19 -#: skins/default/templates/question_edit_tips.html:16 -msgid "see frequently asked questions" -msgstr "良くある質問をみましょう" - -#: skins/default/templates/answer_edit_tips.html:25 -#: skins/default/templates/question_edit_tips.html:22 -msgid "Markdown tips" -msgstr "Markdown 記法の基本" - -#: skins/default/templates/answer_edit_tips.html:29 -#: skins/default/templates/question_edit_tips.html:26 -msgid "*italic*" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:32 -#: skins/default/templates/question_edit_tips.html:29 -msgid "**bold**" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:36 -#: skins/default/templates/question_edit_tips.html:33 -#, fuzzy -msgid "*italic* or _italic_" -msgstr "*斜体* もしくは __斜体__" - -#: skins/default/templates/answer_edit_tips.html:39 -#: skins/default/templates/question_edit_tips.html:36 -msgid "**bold** or __bold__" -msgstr "**太文字** もしくは __太文字__" - -#: skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/question_edit_tips.html:40 -msgid "link" -msgstr "リンク" - -#: skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:40 -#: skins/default/templates/question_edit_tips.html:45 -msgid "text" -msgstr "テキスト" - -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:45 -msgid "image" -msgstr "画像" - -#: skins/default/templates/answer_edit_tips.html:51 -#: skins/default/templates/question_edit_tips.html:49 -msgid "numbered list:" -msgstr "数字付きリスト" - -#: skins/default/templates/answer_edit_tips.html:56 -#: skins/default/templates/question_edit_tips.html:54 -msgid "basic HTML tags are also supported" -msgstr "基本HTMLタグもサポートしています" - -#: skins/default/templates/answer_edit_tips.html:60 -#: skins/default/templates/question_edit_tips.html:58 -msgid "learn more about Markdown" -msgstr "Markdown記法についてさらに学ぶ" - -#: skins/default/templates/ask.html:3 +#: skins/default/templates/ask.html:4 msgid "Ask a question" msgstr "質問する" -#: skins/default/templates/ask_form.html:7 -msgid "login to post question info" -msgstr "" -"You are welcome to start submitting your question " -"anonymously. 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/ask_form.html:11 -#, fuzzy, python-format -msgid "" -"must have valid %(email)s to post, \n" -" see %(email_validation_faq_url)s\n" -" " -msgstr "" -"Looks like your email address, %(email)s has not " -"yet been validated. To post messages you must verify your email, " -"please see more details here." -"
      You can submit your question now and validate email after that. Your " -"question will saved as pending meanwhile. " - -#: skins/default/templates/ask_form.html:27 -msgid "Login/signup to post your question" -msgstr "投稿するためにログイン/サインアップする" - -#: skins/default/templates/ask_form.html:29 -msgid "Ask your question" -msgstr "質問を投稿する" - -#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:11 -#: skins/default/templates/badges.html:28 -#: skins/default/templates/user_recent.html:13 -#: skins/default/templates/user_stats.html:88 +#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:8 +#: skins/default/templates/user_profile/user_recent.html:16 +#: skins/default/templates/user_profile/user_stats.html:110 #, python-format msgid "%(name)s" msgstr "" -#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:7 +#: skins/default/templates/badge.html:4 msgid "Badge" msgstr "バッジ" -#: skins/default/templates/badge.html:11 -#: skins/default/templates/badges.html:27 -#: skins/default/templates/badges.html:31 -#: skins/default/templates/user_recent.html:13 -#: skins/default/templates/user_stats.html:88 +#: skins/default/templates/badge.html:6 +#, python-format +msgid "Badge \"%(name)s\"" +msgstr "" + +#: skins/default/templates/badge.html:8 +#: skins/default/templates/user_profile/user_recent.html:16 +#: skins/default/templates/user_profile/user_stats.html:108 #, python-format msgid "%(description)s" msgstr "" -#: skins/default/templates/badge.html:16 +#: skins/default/templates/badge.html:13 msgid "user received this badge:" 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:6 +#: skins/default/templates/badges.html:5 msgid "Badges" msgstr "バッジ" -#: skins/default/templates/badges.html:10 +#: skins/default/templates/badges.html:7 msgid "Community gives you awards for your questions, answers and votes." msgstr "" "質問と回答が高く投票されると、Q&Aコミュニティーへの貢献がさまざまなバッジ" "で認定されます。" -#: skins/default/templates/badges.html:11 -#, python-format +#: skins/default/templates/badges.html:8 +#, 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. Give us feedback at " +"%(feedback_faq_url)s.\n" msgstr "" "Currently badges differ only by their level: gold, " "silver and bronze (their meanings are " "described on the right). In the future there will be many types of badges at " -"each level. Please give us your feedback - what kinds of badges would you like to see and " -"suggest the activity for which those badges might be awarded." - -#: skins/default/templates/badges.html:27 -#, python-format -msgid "%(type)s" -msgstr "" +"each level. Please give us your feedback - what kinds of badges " +"would you like to see and suggest the activity for which those badges might " +"be awarded." -#: skins/default/templates/badges.html:40 +#: skins/default/templates/badges.html:35 msgid "Community badges" msgstr "バッジレベル" -#: skins/default/templates/badges.html:43 +#: skins/default/templates/badges.html:37 msgid "gold badge: the highest honor and is very rare" msgstr "" -#: skins/default/templates/badges.html:46 +#: skins/default/templates/badges.html:40 msgid "gold badge description" msgstr "" "金バッジはこのコミュニティーの最高の栄誉です。活発な参加にくわえて、深い洞察" "と知識、実行力を示したことによってそれは得られます。" -#: skins/default/templates/badges.html:51 +#: skins/default/templates/badges.html:45 msgid "" "silver badge: occasionally awarded for the very high quality contributions" msgstr "" -#: skins/default/templates/badges.html:55 +#: skins/default/templates/badges.html:49 msgid "silver badge description" msgstr "" "銀バッジを得るには、著しい勤勉さが必要です。得る事ができたなら、それはこのコ" "ミュニティーへの偉大な貢献を意味しています。" -#: skins/default/templates/badges.html:58 +#: skins/default/templates/badges.html:52 msgid "bronze badge: often given as a special honor" msgstr "" -#: skins/default/templates/badges.html:62 +#: skins/default/templates/badges.html:56 msgid "bronze badge description" msgstr "" "このコミュニティーの活動的な参加者であるなら、このバッジで認定されます。" -#: skins/default/templates/close.html:3 skins/default/templates/close.html:6 +#: skins/default/templates/close.html:3 skins/default/templates/close.html:5 msgid "Close question" msgstr "質問を閉鎖する" -#: skins/default/templates/close.html:9 +#: skins/default/templates/close.html:6 msgid "Close the question" msgstr "質問を閉鎖する" -#: skins/default/templates/close.html:14 +#: skins/default/templates/close.html:11 msgid "Reasons" msgstr "理由" -#: skins/default/templates/close.html:18 +#: skins/default/templates/close.html:15 msgid "OK to close" msgstr "閉鎖を確定する" -#: skins/default/templates/editor_data.html:8 -#, 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] "タグは20文字以内の長さです" -msgstr[1] "タグは20文字以内の長さです" - -#: skins/default/templates/editor_data.html:10 -#, fuzzy, python-format -msgid "please use %(tag_count)s tag" -msgid_plural "please use %(tag_count)s tags or less" -msgstr[0] "5つ以内のタグを使いましょう" -msgstr[1] "5つ以内のタグを使いましょう" - -#: skins/default/templates/editor_data.html:11 -#, fuzzy, python-format -msgid "" -"please use up to %(tag_count)s tags, less than %(max_chars)s characters each" -msgstr "5タグまで、20文字未満" - -#: skins/default/templates/faq.html:3 skins/default/templates/faq.html.py:6 +#: skins/default/templates/faq.html:3 +#: skins/default/templates/faq_static.html:3 +#: skins/default/templates/faq_static.html:5 msgid "FAQ" msgstr "" -#: skins/default/templates/faq.html:6 +#: skins/default/templates/faq_static.html:5 msgid "Frequently Asked Questions " msgstr "よくある質問" -#: skins/default/templates/faq.html:11 +#: skins/default/templates/faq_static.html:6 msgid "What kinds of questions can I ask here?" msgstr "ここでどんな質問をしてよいのか?" -#: skins/default/templates/faq.html:12 +#: skins/default/templates/faq_static.html:7 msgid "" "Most importanly - questions should be relevant to this " "community." msgstr "" -#: skins/default/templates/faq.html:13 +#: 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." @@ -3124,21 +3795,21 @@ 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.html:15 +#: skins/default/templates/faq_static.html:10 msgid "What questions should I avoid asking?" msgstr "What kinds of questions should be avoided?" -#: skins/default/templates/faq.html:16 +#: skins/default/templates/faq_static.html:11 msgid "" "Please avoid asking questions that are not relevant to this community, too " "subjective and argumentative." msgstr "" -#: skins/default/templates/faq.html:20 +#: skins/default/templates/faq_static.html:13 msgid "What should I avoid in my answers?" msgstr "" -#: skins/default/templates/faq.html:21 +#: 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 " @@ -3149,19 +3820,19 @@ msgstr "" "they tend to dilute the essense of questions and answers. For the brief " "discussions please use commenting facility." -#: skins/default/templates/faq.html:24 +#: skins/default/templates/faq_static.html:15 msgid "Who moderates this community?" msgstr "このコミュニティーをだれがモデレートしているのか?" -#: skins/default/templates/faq.html:25 +#: skins/default/templates/faq_static.html:16 msgid "The short answer is: you." msgstr "" -#: skins/default/templates/faq.html:26 +#: skins/default/templates/faq_static.html:17 msgid "This website is moderated by the users." msgstr "" -#: skins/default/templates/faq.html:27 +#: skins/default/templates/faq_static.html:18 msgid "" "The reputation system allows users earn the authorization to perform a " "variety of moderation tasks." @@ -3169,11 +3840,11 @@ msgstr "" "Karma system allows users to earn rights to perform a variety of moderation " "tasks" -#: skins/default/templates/faq.html:32 +#: skins/default/templates/faq_static.html:20 msgid "How does reputation system work?" msgstr "How does karma system work?" -#: skins/default/templates/faq.html:33 +#: skins/default/templates/faq_static.html:21 msgid "Rep system summary" msgstr "" "When a question or answer is upvoted, the user who posted them will gain " @@ -3181,87 +3852,70 @@ 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/faq.html:34 +#: 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 %" -"(REP_GAIN_FOR_RECEIVING_UPVOTE)s points, each vote against will " +"it will be downvoted. Each vote in favor will generate " +"%(REP_GAIN_FOR_RECEIVING_UPVOTE)s points, each vote against will " "subtract %(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s points. There " "is a limit of %(MAX_REP_GAIN_PER_USER_PER_DAY)s 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 "" -#: skins/default/templates/faq.html:44 -#: skins/default/templates/user_votes.html:10 +#: skins/default/templates/faq_static.html:32 +#: skins/default/templates/user_profile/user_votes.html:13 msgid "upvote" msgstr "" -#: skins/default/templates/faq.html:49 +#: skins/default/templates/faq_static.html:37 msgid "use tags" msgstr "タグを利用する" -#: skins/default/templates/faq.html:54 +#: skins/default/templates/faq_static.html:42 msgid "add comments" msgstr "コメントを加える" -#: skins/default/templates/faq.html:58 -#: skins/default/templates/user_votes.html:12 +#: skins/default/templates/faq_static.html:46 +#: skins/default/templates/user_profile/user_votes.html:15 msgid "downvote" msgstr "" -#: skins/default/templates/faq.html:61 +#: skins/default/templates/faq_static.html:49 +#, fuzzy +msgid " accept own answer to own questions" +msgstr "自身の質問の最初の納得回答" + +#: skins/default/templates/faq_static.html:53 msgid "open and close own questions" msgstr "" -#: skins/default/templates/faq.html:65 +#: skins/default/templates/faq_static.html:57 #, fuzzy msgid "retag other's questions" msgstr "質問にタグを再びつける" -#: skins/default/templates/faq.html:70 +#: skins/default/templates/faq_static.html:62 msgid "edit community wiki questions" msgstr "コミュニティー wiki 質問を編集する" -#: skins/default/templates/faq.html:75 +#: skins/default/templates/faq_static.html:67 #, fuzzy msgid "\"edit any answer" msgstr "あらゆる回答を編集する" -#: skins/default/templates/faq.html:79 +#: skins/default/templates/faq_static.html:71 #, fuzzy msgid "\"delete any comment" msgstr "あらゆるコメントを削除する" -#: skins/default/templates/faq.html:86 -msgid "how to validate email title" -msgstr "How to validate email and why?" - -#: skins/default/templates/faq.html:88 -#, python-format -msgid "" -"how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)s" -msgstr "" -"

      How? If you have just set or changed your " -"email address - check your email and click the included link.
      The link contains a key generated specifically for you. You can " -"also and check your email again.

      Why? Email validation is required to make sure that " -"only you can post messages on your behalf and to " -"minimize spam posts.
      With email you can " -"subscribe for updates on the most interesting questions. " -"Also, when you sign up for the first time - create a unique gravatar personal image.

      " - -#: skins/default/templates/faq.html:93 +#: skins/default/templates/faq_static.html:74 msgid "what is gravatar" msgstr "What is gravatar?" -#: skins/default/templates/faq.html:94 +#: skins/default/templates/faq_static.html:75 msgid "gravatar faq info" msgstr "" "Gravatar means globally r at gravatar.com" -#: skins/default/templates/faq.html:97 +#: skins/default/templates/faq_static.html:76 msgid "To register, do I need to create new password?" msgstr "" -#: skins/default/templates/faq.html:98 +#: skins/default/templates/faq_static.html:77 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.html:99 +#: skins/default/templates/faq_static.html:78 #, fuzzy msgid "\"Login now!\"" msgstr "ログインできます!" -#: skins/default/templates/faq.html:103 +#: skins/default/templates/faq_static.html:80 msgid "Why other people can edit my questions/answers?" msgstr "なぜ他のひとが私の質問や回答を編集できるのですか?" -#: skins/default/templates/faq.html:104 +#: skins/default/templates/faq_static.html:81 msgid "Goal of this site is..." msgstr "このサイトのゴールは..." -#: skins/default/templates/faq.html:104 +#: skins/default/templates/faq_static.html:81 msgid "" "So questions and answers can be edited like wiki pages by experienced users " "of this site and this improves the overall quality of the knowledge base " "content." msgstr "" -#: skins/default/templates/faq.html:105 +#: skins/default/templates/faq_static.html:82 msgid "If this approach is not for you, we respect your choice." msgstr "" -#: skins/default/templates/faq.html:109 +#: skins/default/templates/faq_static.html:84 msgid "Still have questions?" msgstr "" -#: skins/default/templates/faq.html:110 +#: skins/default/templates/faq_static.html:85 #, python-format msgid "" "Please ask your question at %(ask_question_url)s, help make our community " @@ -3319,163 +3973,82 @@ msgstr "" "Please ask your question, help make our " "community better!" -#: skins/default/templates/faq.html:112 skins/default/templates/header.html:78 -msgid "questions" -msgstr "質問" - -#: skins/default/templates/faq.html:112 -msgid "." -msgstr "" - #: skins/default/templates/feedback.html:3 msgid "Feedback" msgstr "フィードバック" -#: skins/default/templates/feedback.html:6 +#: skins/default/templates/feedback.html:5 msgid "Give us your feedback!" msgstr "あなたのフィードバックをください!" -#: skins/default/templates/feedback.html:12 +#: skins/default/templates/feedback.html:9 #, python-format msgid "" "\n" -" Dear %(user_name)s, we look " -"forward to hearing your feedback. \n" -" Please type and send us your message below.\n" -" " +" Dear %(user_name)s, we look forward " +"to hearing your feedback. \n" +" Please type and send us your message below.\n" +" " msgstr "" -#: skins/default/templates/feedback.html:19 +#: skins/default/templates/feedback.html:16 msgid "" "\n" -" Dear visitor, we look forward to " +" Dear visitor, we look forward to " "hearing your feedback.\n" -" Please type and send us your message below.\n" -" " +" Please type and send us your message below.\n" +" " msgstr "" -#: skins/default/templates/feedback.html:28 +#: skins/default/templates/feedback.html:25 #, fuzzy msgid "(please enter a valid email)" msgstr "有効な電子メールアドレスを入力してください" -#: skins/default/templates/feedback.html:36 +#: skins/default/templates/feedback.html:33 msgid "(this field is required)" msgstr "(このフィールドは必須)" -#: skins/default/templates/feedback.html:44 +#: skins/default/templates/feedback.html:41 msgid "Send Feedback" msgstr "フィードバックを送る" -#: skins/default/templates/feedback_email.txt:3 +#: skins/default/templates/feedback_email.txt:2 #, python-format msgid "" "\n" -"Hello, this is a %(site_title)s forum feedback message\n" +"Hello, this is a %(site_title)s forum feedback message.\n" msgstr "" -#: skins/default/templates/feedback_email.txt:9 -msgid "Sender is" -msgstr "送信者は" - -#: skins/default/templates/feedback_email.txt:11 -#: skins/default/templates/feedback_email.txt:14 -msgid "email" -msgstr "メールアドレス" - -#: skins/default/templates/feedback_email.txt:13 -msgid "anonymous" -msgstr "匿名" - -#: skins/default/templates/feedback_email.txt:19 -msgid "Message body:" -msgstr "メッセージ本文:" - -#: skins/default/templates/footer.html:5 -#: skins/default/templates/header.html:56 -msgid "about" -msgstr "概要" - -#: skins/default/templates/footer.html:7 -msgid "privacy policy" -msgstr "プライバシーポリシー" - -#: skins/default/templates/footer.html:16 -msgid "give feedback" -msgstr "フィードバックする" - -#: skins/default/templates/header.html:12 -#, fuzzy, python-format -msgid "responses for %(username)s" -msgstr "スクリーン名を選択しましょう" - -#: skins/default/templates/header.html:15 -#, python-format -msgid "you have a new response" -msgid_plural "you nave %(response_count)s new responses" -msgstr[0] "" -msgstr[1] "" - -#: skins/default/templates/header.html:18 -#, fuzzy -msgid "no new responses yet" -msgstr "反応" - -#: skins/default/templates/header.html:30 -#: skins/default/templates/header.html:31 -#, python-format -msgid "%(new)s new flagged posts and %(seen)s previous" +#: skins/default/templates/import_data.html:2 +#: skins/default/templates/import_data.html:4 +msgid "Import StackExchange data" msgstr "" -#: skins/default/templates/header.html:33 -#: skins/default/templates/header.html:34 -#, fuzzy, python-format -msgid "%(new)s new flagged posts" -msgstr "フラグを最初にポストした" - -#: skins/default/templates/header.html:39 -#: skins/default/templates/header.html:40 -#, fuzzy, python-format -msgid "%(seen)s flagged posts" -msgstr "フラグを最初にポストした" - -#: skins/default/templates/header.html:52 -msgid "logout" -msgstr "ログアウト" - -#: skins/default/templates/header.html:54 -msgid "login" -msgstr "ログイン" - -#: skins/default/templates/header.html:59 -#, fuzzy -msgid "settings" -msgstr "設定" - -#: skins/default/templates/header.html:68 -msgid "back to home page" -msgstr "ホームに戻る" - -#: skins/default/templates/header.html:69 -#, python-format -msgid "%(site)s logo" +#: skins/default/templates/import_data.html:13 +msgid "" +"Warning: if your database is not empty, please back it up\n" +" before attempting this operation." msgstr "" -#: skins/default/templates/header.html:88 -msgid "users" -msgstr "ユーザー" - -#: skins/default/templates/header.html:93 -msgid "badges" -msgstr "バッジ" +#: skins/default/templates/import_data.html:16 +msgid "" +"Upload your stackexchange dump .zip file, then wait until\n" +" the data import completes. This process may take several minutes.\n" +" Please note that feedback will be printed in plain text.\n" +" " +msgstr "" -#: skins/default/templates/header.html:98 -msgid "ask a question" -msgstr "質問する" +#: skins/default/templates/import_data.html:25 +msgid "Import data" +msgstr "" -#: skins/default/templates/input_bar.html:32 -msgid "search" -msgstr "検索する" +#: 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: python manage." +"py load_stackexchange path/to/your-data.zip" +msgstr "" #: skins/default/templates/instant_notification.html:1 #, python-format @@ -3549,164 +4122,207 @@ msgstr "" "--\n" "Q&A フォーラム管理" -#: skins/default/templates/logout.html:3 skins/default/templates/logout.html:6 -msgid "Logout" -msgstr "ログアウト" +#: skins/default/templates/macros.html:25 +#, fuzzy, python-format +msgid "Share this question on %(site)s" +msgstr "この質問を再開する" -#: skins/default/templates/logout.html:9 -msgid "" -"As a registered user you can login with your OpenID, log out of the site or " -"permanently remove your account." +#: skins/default/templates/macros.html:36 +#, python-format +msgid "follow %(alias)s" +msgstr "" + +#: skins/default/templates/macros.html:39 +#, python-format +msgid "unfollow %(alias)s" msgstr "" -"Clicking Logout will log you out from the forumbut will not " -"sign you off from your OpenID provider.

      If you wish to sign off " -"completely - please make sure to log out from your OpenID provider as well." -#: skins/default/templates/logout.html:10 -msgid "Logout now" -msgstr "いまログアウトする" +#: skins/default/templates/macros.html:40 +#, python-format +msgid "following %(alias)s" +msgstr "" -#: skins/default/templates/macros.html:26 +#: skins/default/templates/macros.html:63 msgid "karma:" msgstr "" -#: skins/default/templates/macros.html:30 +#: skins/default/templates/macros.html:67 #, fuzzy msgid "badges:" msgstr "バッジ" -#: skins/default/templates/macros.html:52 -#: skins/default/templates/macros.html:53 +#: skins/default/templates/macros.html:143 +#: skins/default/templates/macros.html:144 msgid "previous" msgstr "以前の" -#: skins/default/templates/macros.html:64 +#: skins/default/templates/macros.html:155 msgid "current page" msgstr "現在のページ" -#: skins/default/templates/macros.html:66 -#: skins/default/templates/macros.html:73 +#: skins/default/templates/macros.html:157 +#: skins/default/templates/macros.html:164 #, fuzzy, python-format msgid "page number %(num)s" msgstr "ページ数" -#: skins/default/templates/macros.html:77 +#: skins/default/templates/macros.html:168 msgid "next page" msgstr "次のページ" -#: skins/default/templates/macros.html:88 +#: skins/default/templates/macros.html:179 msgid "posts per page" msgstr "ページあたりの投稿数" -#: skins/default/templates/macros.html:119 templatetags/extra_tags.py:56 +#: skins/default/templates/macros.html:211 templatetags/extra_tags.py:43 #, python-format msgid "%(username)s gravatar image" msgstr "" -#: skins/default/templates/macros.html:142 +#: skins/default/templates/macros.html:220 +#, fuzzy, python-format +msgid "%(username)s's website is %(url)s" +msgstr "ユーザプロファイル" + +#: skins/default/templates/macros.html:232 +#, fuzzy +msgid "anonymous user" +msgstr "匿名" + +#: skins/default/templates/macros.html:260 msgid "this post is marked as community wiki" msgstr "" -#: skins/default/templates/macros.html:145 +#: skins/default/templates/macros.html:263 #, python-format msgid "" "This post is a wiki.\n" " Anyone with karma >%(wiki_min_rep)s is welcome to improve it." msgstr "" -#: skins/default/templates/macros.html:151 +#: skins/default/templates/macros.html:269 msgid "asked" msgstr "質問日" -#: skins/default/templates/macros.html:153 +#: skins/default/templates/macros.html:271 msgid "answered" msgstr "回答日" -#: skins/default/templates/macros.html:155 +#: skins/default/templates/macros.html:273 msgid "posted" msgstr "投稿日" -#: skins/default/templates/macros.html:185 +#: skins/default/templates/macros.html:303 msgid "updated" msgstr "更新日" -#: skins/default/templates/macros.html:210 -#: skins/default/templates/unused/questions_ajax.html:23 views/readers.py:237 +#: skins/default/templates/macros.html:379 +#, fuzzy, python-format +msgid "see questions tagged '%(tag)s'" +msgstr "'%(tagname)s'タグのついた質問をみる" + +#: skins/default/templates/macros.html:424 views/readers.py:239 #, fuzzy -msgid "vote" -msgid_plural "votes" -msgstr[0] "投票" -msgstr[1] "投票" +msgid "view" +msgid_plural "views" +msgstr[0] "閲覧" -#: skins/default/templates/macros.html:227 -#: skins/default/templates/unused/questions_ajax.html:43 views/readers.py:240 +#: skins/default/templates/macros.html:441 views/readers.py:236 #, fuzzy msgid "answer" msgid_plural "answers" msgstr[0] "回答" -msgstr[1] "回答" -#: skins/default/templates/macros.html:239 -#: skins/default/templates/unused/questions_ajax.html:55 views/readers.py:243 +#: skins/default/templates/macros.html:452 views/readers.py:233 #, fuzzy -msgid "view" -msgid_plural "views" -msgstr[0] "閲覧" -msgstr[1] "閲覧" - -#: skins/default/templates/macros.html:251 -#: skins/default/templates/question.html:88 -#: skins/default/templates/tags.html:38 -#: skins/default/templates/unused/question_list.html:64 -#: skins/default/templates/unused/question_summary_list_roll.html:52 -#: skins/default/templates/unused/questions_ajax.html:68 -#, fuzzy, python-format -msgid "see questions tagged '%(tag)s'" -msgstr "'%(tagname)s'タグのついた質問をみる" +msgid "vote" +msgid_plural "votes" +msgstr[0] "投票" -#: skins/default/templates/macros.html:272 -#: skins/default/templates/question.html:94 -#: skins/default/templates/question.html:247 +#: skins/default/templates/macros.html:491 +msgid "delete this comment" +msgstr "このコメントを削除する" + +#: skins/default/templates/macros.html:502 +#: skins/default/templates/question.html:79 +#: skins/default/templates/question.html:235 #: skins/default/templates/revisions.html:37 msgid "edit" msgstr "編集する" -#: skins/default/templates/macros.html:277 -msgid "delete this comment" -msgstr "このコメントを削除する" - -#: skins/default/templates/macros.html:295 -#: skins/default/templates/macros.html:303 -#: skins/default/templates/question.html:423 +#: skins/default/templates/macros.html:520 +#: skins/default/templates/macros.html:528 +#: skins/default/templates/question.html:511 msgid "add comment" msgstr "post a comment" -#: skins/default/templates/macros.html:296 +#: skins/default/templates/macros.html:521 #, fuzzy, python-format msgid "see %(counter)s more" msgid_plural "see %(counter)s more" msgstr[0] "もっとも投票された質問" -msgstr[1] "もっとも投票された質問" -#: skins/default/templates/macros.html:298 +#: skins/default/templates/macros.html:523 #, fuzzy, python-format msgid "see %(counter)s more comment" msgid_plural "" "see %(counter)s more comments\n" -" " +" " msgstr[0] "もっとも投票された質問" -msgstr[1] "もっとも投票された質問" -#: skins/default/templates/macros.html:375 +#: skins/default/templates/macros.html:661 +#, fuzzy +msgid "one of these is required" +msgstr "このフィールドは必須です" + +#: skins/default/templates/macros.html:673 msgid "(required)" msgstr "(必須)" -#: skins/default/templates/macros.html:396 +#: skins/default/templates/macros.html:696 msgid "Toggle the real time Markdown editor preview" msgstr "リアルタイムMarkdown編集プレビューをトグルする" +#: skins/default/templates/macros.html:708 +#, fuzzy, python-format +msgid "responses for %(username)s" +msgstr "スクリーン名を選択しましょう" + +#: skins/default/templates/macros.html:711 +#, python-format +msgid "you have a new response" +msgid_plural "you have %(response_count)s new responses" +msgstr[0] "" + +#: skins/default/templates/macros.html:714 +#, fuzzy +msgid "no new responses yet" +msgstr "反応" + +#: skins/default/templates/macros.html:729 +#: skins/default/templates/macros.html:730 +#, python-format +msgid "%(new)s new flagged posts and %(seen)s previous" +msgstr "" + +#: skins/default/templates/macros.html:732 +#: skins/default/templates/macros.html:733 +#, fuzzy, python-format +msgid "%(new)s new flagged posts" +msgstr "フラグを最初にポストした" + +#: skins/default/templates/macros.html:738 +#: skins/default/templates/macros.html:739 +#, fuzzy, python-format +msgid "%(seen)s flagged posts" +msgstr "フラグを最初にポストした" + +#: skins/default/templates/main_page.html:11 +msgid "Questions" +msgstr "質問" + #: skins/default/templates/privacy.html:3 -#: skins/default/templates/privacy.html:6 +#: skins/default/templates/privacy.html:5 msgid "Privacy policy" msgstr "プライバシーポリシー" @@ -3714,184 +4330,182 @@ msgstr "プライバシーポリシー" # "These policies may be adjusted to improve protection of user's privacy. " # "Whenever such changes occur, users will be notified via the internal " # "messaging system. " -#: skins/default/templates/question.html:30 -#: skins/default/templates/question.html:31 -#: skins/default/templates/question.html:46 -#: skins/default/templates/question.html:48 +#: skins/default/templates/question.html:26 +#: skins/default/templates/question.html:27 +#: skins/default/templates/question.html:42 +#: skins/default/templates/question.html:44 msgid "i like this post (click again to cancel)" msgstr "この投稿は良いと思う(再度クリックでキャンセル)" -#: skins/default/templates/question.html:33 -#: skins/default/templates/question.html:50 -#: skins/default/templates/question.html:198 +#: skins/default/templates/question.html:29 +#: skins/default/templates/question.html:46 +#: skins/default/templates/question.html:186 msgid "current number of votes" msgstr "現在の投票数" -#: skins/default/templates/question.html:42 -#: skins/default/templates/question.html:43 -#: skins/default/templates/question.html:55 -#: skins/default/templates/question.html:56 +#: skins/default/templates/question.html:38 +#: skins/default/templates/question.html:39 +#: skins/default/templates/question.html:51 +#: skins/default/templates/question.html:52 msgid "i dont like this post (click again to cancel)" msgstr "この投票は良くない(再度クリックでキャンセル)" -#: skins/default/templates/question.html:60 -#: skins/default/templates/question.html:61 -msgid "mark this question as favorite (click again to cancel)" -msgstr "この質問をお気に入りに登録する(再度クリックでキャンセル)" - -#: skins/default/templates/question.html:67 -#: skins/default/templates/question.html:68 -msgid "remove favorite mark from this question (click again to restore mark)" -msgstr "この質問をお気に入りからとりのぞく(再度クリックで再登録)" - -#: skins/default/templates/question.html:74 -#, fuzzy -msgid "Share this question on twitter" -msgstr "この質問を再開する" - -#: skins/default/templates/question.html:75 -#, fuzzy -msgid "Share this question on facebook" -msgstr "最新の質問から表示してます。" - -#: skins/default/templates/question.html:97 +#: skins/default/templates/question.html:82 #, fuzzy msgid "retag" msgstr "再度タグ付け" -#: skins/default/templates/question.html:104 +#: skins/default/templates/question.html:89 msgid "reopen" msgstr "再度開く" -#: skins/default/templates/question.html:108 +#: skins/default/templates/question.html:93 msgid "close" msgstr "閉鎖する" -#: skins/default/templates/question.html:113 -#: skins/default/templates/question.html:251 +#: skins/default/templates/question.html:98 +#: skins/default/templates/question.html:239 msgid "" "report as offensive (i.e containing spam, advertising, malicious text, etc.)" msgstr "" "侮辱的とレポートする (例:SPAMが含まれる、広告的、悪意のあるテキスト、などな" "ど)" -#: skins/default/templates/question.html:114 -#: skins/default/templates/question.html:252 +#: skins/default/templates/question.html:99 +#: skins/default/templates/question.html:240 msgid "flag offensive" msgstr "侮辱的と印を付ける" -#: skins/default/templates/question.html:121 -#: skins/default/templates/question.html:262 -#: skins/default/templates/authopenid/signin.html:175 +#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:250 +msgid "undelete" +msgstr "" + +#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:250 +#: skins/default/templates/authopenid/signin.html:166 msgid "delete" msgstr "削除する" -#: skins/default/templates/question.html:156 +#: skins/default/templates/question.html:143 #, python-format msgid "" "The question has been closed for the following reason \"%(close_reason)s\" by" msgstr "" -#: skins/default/templates/question.html:158 +#: skins/default/templates/question.html:145 #, python-format msgid "close date %(closed_at)s" msgstr "" -#: skins/default/templates/question.html:166 +#: skins/default/templates/question.html:151 #, 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" -" 回答:\n" -" " -msgstr[1] "" -"\n" " %(counter)個の回答:\n" " " -#: skins/default/templates/question.html:174 +#: skins/default/templates/question.html:159 msgid "oldest answers will be shown first" msgstr "最古の回答が最初に表示されます" -#: skins/default/templates/question.html:174 +#: skins/default/templates/question.html:160 msgid "oldest answers" msgstr "回答順" -#: skins/default/templates/question.html:176 +#: skins/default/templates/question.html:162 msgid "newest answers will be shown first" msgstr "最新の回答が最初に表示されます" -#: skins/default/templates/question.html:176 +#: skins/default/templates/question.html:163 msgid "newest answers" msgstr "最新" -#: skins/default/templates/question.html:178 +#: skins/default/templates/question.html:165 msgid "most voted answers will be shown first" msgstr "もっとも投票された回答が最初に表示されます" -#: skins/default/templates/question.html:178 +#: skins/default/templates/question.html:166 msgid "popular answers" msgstr "支持されている順" -#: skins/default/templates/question.html:196 -#: skins/default/templates/question.html:197 +#: skins/default/templates/question.html:184 +#: skins/default/templates/question.html:185 msgid "i like this answer (click again to cancel)" msgstr "" -#: skins/default/templates/question.html:207 -#: skins/default/templates/question.html:208 +#: skins/default/templates/question.html:195 +#: skins/default/templates/question.html:196 msgid "i dont like this answer (click again to cancel)" msgstr "" -#: skins/default/templates/question.html:216 -#: skins/default/templates/question.html:217 +#: skins/default/templates/question.html:204 +#: skins/default/templates/question.html:205 msgid "mark this answer as favorite (click again to undo)" msgstr "" -#: skins/default/templates/question.html:226 -#: skins/default/templates/question.html:227 +#: skins/default/templates/question.html:214 +#: skins/default/templates/question.html:215 #, fuzzy, python-format msgid "%(question_author)s has selected this answer as correct" msgstr "この質問はお気に入りに選ばれました" -#: skins/default/templates/question.html:242 +#: skins/default/templates/question.html:230 msgid "answer permanent link" msgstr "回答のリンク" -#: skins/default/templates/question.html:243 +#: skins/default/templates/question.html:231 msgid "permanent link" msgstr "リンク" -#: skins/default/templates/question.html:262 -msgid "undelete" +#: skins/default/templates/question.html:256 +#, fuzzy +msgid "swap with question" +msgstr "Post Your Answer" + +#: skins/default/templates/question.html:297 +#, python-format +msgid "" +"Know someone who can answer? Share a link " +"to this question via" msgstr "" -#: skins/default/templates/question.html:309 -#: skins/default/templates/question.html:311 +#: skins/default/templates/question.html:303 +#, fuzzy +msgid " or" +msgstr "もしくは" + +#: skins/default/templates/question.html:305 +msgid "email" +msgstr "メールアドレス" + +#: skins/default/templates/question.html:320 +#: skins/default/templates/question.html:322 msgid "Notify me once a day when there are any new answers" msgstr "" "Notify me once a day by email when there are any new " "answers or updates" -#: skins/default/templates/question.html:313 +#: skins/default/templates/question.html:324 msgid "Notify me weekly when there are any new answers" msgstr "" "Notify me weekly when there are any new answers or updates" -#: skins/default/templates/question.html:315 +#: skins/default/templates/question.html:326 #, fuzzy msgid "Notify me immediately when there are any new answers" msgstr "" "Notify me weekly when there are any new answers or updates" -#: skins/default/templates/question.html:318 +#: skins/default/templates/question.html:329 #, fuzzy, python-format msgid "" "You can always adjust frequency of email updates from your %(profile_url)s" @@ -3900,21 +4514,26 @@ msgstr "" "(note: you can always adjust frequency of email updates)" -#: skins/default/templates/question.html:323 +#: skins/default/templates/question.html:334 msgid "once you sign in you will be able to subscribe for any updates here" msgstr "" "Here (once you log in) you will be able to sign " "up for the periodic email updates about this question." -#: skins/default/templates/question.html:333 +#: skins/default/templates/question.html:344 +#, fuzzy +msgid "Login/Signup to Answer" +msgstr "投稿するためにログイン/サインアップする" + +#: skins/default/templates/question.html:352 msgid "Your answer" msgstr "" -#: skins/default/templates/question.html:335 +#: skins/default/templates/question.html:354 msgid "Be the first one to answer this question!" msgstr "この質問の最初の回答になれます!" -#: skins/default/templates/question.html:341 +#: skins/default/templates/question.html:360 msgid "you can answer anonymously and then login" msgstr "" "Please start posting your answer anonymously " @@ -3923,7 +4542,7 @@ msgstr "" "answer, for discussions, please use comments and " "please do remember to vote (after you log in)!" -#: skins/default/templates/question.html:345 +#: skins/default/templates/question.html:364 msgid "answer your own question only to give an answer" msgstr "ようこそ!" @@ -3933,7 +4552,7 @@ msgstr "ようこそ!" # "use comments for discussions and please don't " # "forget to vote :) for the answers that you liked (or perhaps did " # "not like)! " -#: skins/default/templates/question.html:347 +#: skins/default/templates/question.html:366 msgid "please only give an answer, no discussions" msgstr "" "Please try to give a substantial answer. If " @@ -3943,298 +4562,163 @@ msgstr "" "please don't forget to vote - it really helps to select the " "best questions and answers!" -#: skins/default/templates/question.html:354 +#: skins/default/templates/question.html:373 msgid "Login/Signup to Post Your Answer" msgstr "" -#: skins/default/templates/question.html:357 +#: skins/default/templates/question.html:376 +#: skins/default/templates/question.html:389 msgid "Answer Your Own Question" msgstr "あなた自身の質問に回答する" -#: skins/default/templates/question.html:359 +#: skins/default/templates/question.html:378 msgid "Answer the question" msgstr "Post Your Answer" -#: skins/default/templates/question.html:373 -msgid "Question tags" +#: skins/default/templates/question.html:397 +#, fuzzy +msgid "Question tools" msgstr "タグ" -#: skins/default/templates/question.html:378 -#: skins/default/templates/questions.html:222 -#: skins/default/templates/tag_selector.html:9 -#: skins/default/templates/tag_selector.html:26 +#: skins/default/templates/question.html:400 +#, fuzzy +msgid "click to unfollow this question" +msgstr "この質問をフォローする" + +#: skins/default/templates/question.html:401 +msgid "Following" +msgstr "" + +#: skins/default/templates/question.html:402 +msgid "Unfollow" +msgstr "" + +#: skins/default/templates/question.html:406 +#, fuzzy +msgid "click to follow this question" +msgstr "この質問をフォローする" + +#: skins/default/templates/question.html:407 +msgid "Follow" +msgstr "" + +#: skins/default/templates/question.html:414 #, python-format -msgid "see questions tagged '%(tag_name)s'" -msgstr "'%(tag_name)s'タグづけられた質問をみる" +msgid "%(count)s follower" +msgid_plural "%(count)s followers" +msgstr[0] "" + +#: skins/default/templates/question.html:420 +#, fuzzy +msgid "email the updates" +msgstr "メール更新がキャンセルされました" + +#: skins/default/templates/question.html:423 +msgid "" +"Here (once you log in) you will be able to sign up for the " +"periodic email updates about this question." +msgstr "" + +#: skins/default/templates/question.html:428 +#, fuzzy +msgid "subscribe to this question rss feed" +msgstr "質問フィードを購読する" + +#: skins/default/templates/question.html:429 +#, fuzzy +msgid "subsribe to rss feed" +msgstr "質問フィードを購読する" + +#: skins/default/templates/question.html:438 +msgid "Question tags" +msgstr "タグ" + +#: skins/default/templates/question.html:460 +msgid "Stats:" +msgstr "" -#: skins/default/templates/question.html:384 +#: skins/default/templates/question.html:462 msgid "question asked" msgstr "質問日" -#: skins/default/templates/question.html:387 +#: skins/default/templates/question.html:465 msgid "question was seen" msgstr "閲覧数" -#: skins/default/templates/question.html:387 +#: skins/default/templates/question.html:465 msgid "times" msgstr "回" -#: skins/default/templates/question.html:390 +#: skins/default/templates/question.html:468 msgid "last updated" msgstr "最終更新日" -#: skins/default/templates/question.html:397 +#: skins/default/templates/question.html:477 msgid "Related questions" msgstr "関係した質問" #: skins/default/templates/question_edit.html:4 -#: skins/default/templates/question_edit.html:10 +#: skins/default/templates/question_edit.html:9 msgid "Edit question" msgstr "質問を編集する" -#: skins/default/templates/question_edit_tips.html:3 -msgid "question tips" -msgstr "コツ" - -#: skins/default/templates/question_edit_tips.html:6 -msgid "please ask a relevant question" -msgstr "CNPROG コミュニティーに適した質問をしましょう。" - -#: skins/default/templates/question_edit_tips.html:9 -msgid "please try provide enough details" -msgstr "必要十分に詳しく質問しましょう。" - #: skins/default/templates/question_retag.html:3 -#: skins/default/templates/question_retag.html:6 +#: skins/default/templates/question_retag.html:5 msgid "Change tags" msgstr "タグを変更する" -#: skins/default/templates/question_retag.html:25 +#: skins/default/templates/question_retag.html:21 #, fuzzy msgid "Retag" msgstr "タグ" -#: skins/default/templates/question_retag.html:34 +#: skins/default/templates/question_retag.html:28 msgid "Why use and modify tags?" msgstr "なぜタグをつかったり、修正するのですか?" -#: skins/default/templates/question_retag.html:36 +#: skins/default/templates/question_retag.html:30 msgid "Tags help to keep the content better organized and searchable" msgstr "" -#: skins/default/templates/question_retag.html:38 +#: skins/default/templates/question_retag.html:32 msgid "tag editors receive special awards from the community" msgstr "" -#: skins/default/templates/question_retag.html:79 +#: skins/default/templates/question_retag.html:59 msgid "up to 5 tags, less than 20 characters each" msgstr "5タグまで、20文字未満" -#: skins/default/templates/questions.html:4 -msgid "Questions" -msgstr "質問" - -#: skins/default/templates/questions.html:9 -msgid "In:" -msgstr "" - -#: skins/default/templates/questions.html:18 -#, fuzzy -msgid "see unanswered questions" -msgstr "未回答" - -#: skins/default/templates/questions.html:24 -#, fuzzy -msgid "see your favorite questions" -msgstr "ユーザのお気に入りの質問" - -#: skins/default/templates/questions.html:29 -msgid "Sort by:" -msgstr "" - -#: skins/default/templates/questions.html:97 -#: skins/default/templates/questions.html:100 -msgid "subscribe to the questions feed" -msgstr "質問フィードを購読する" - -#: skins/default/templates/questions.html:101 -msgid "rss feed" -msgstr "" - -#: skins/default/templates/questions.html:105 -#, fuzzy, python-format -msgid "" -"\n" -" %(q_num)s question\n" -" " -msgid_plural "" -"\n" -" %(q_num)s questions\n" -" " -msgstr[0] "" -"\n" -"

      %(q_num)s

      question

      " -msgstr[1] "" -"\n" -"
      %(q_num)s

      questions

      " - -#: skins/default/templates/questions.html:111 views/readers.py:157 -#, fuzzy, python-format -msgid "%(q_num)s question" -msgid_plural "%(q_num)s questions" -msgstr[0] "あたらしい質問" -msgstr[1] "あたらしい質問" - -#: skins/default/templates/questions.html:114 -#, python-format -msgid "with %(author_name)s's contributions" -msgstr "" - -#: skins/default/templates/questions.html:117 -#, fuzzy -msgid "tagged" -msgstr "再度タグ付け" - -#: skins/default/templates/questions.html:122 -#, fuzzy -msgid "Search tips:" -msgstr "検索結果" - -#: skins/default/templates/questions.html:125 -#, fuzzy -msgid "reset author" -msgstr "作者にたずねる" - -#: skins/default/templates/questions.html:127 -#: skins/default/templates/questions.html:130 -#: skins/default/templates/questions.html:168 -#: skins/default/templates/questions.html:171 -#, fuzzy -msgid " or " -msgstr "もしくは" - -#: skins/default/templates/questions.html:128 -#, fuzzy -msgid "reset tags" -msgstr "タグをみる" - -#: skins/default/templates/questions.html:131 -#: skins/default/templates/questions.html:134 -msgid "start over" -msgstr "" - -#: skins/default/templates/questions.html:136 -msgid " - to expand, or dig in by adding more tags and revising the query." -msgstr "" - -#: skins/default/templates/questions.html:139 -#, fuzzy -msgid "Search tip:" -msgstr "検索結果" - -#: skins/default/templates/questions.html:139 -msgid "add tags and a query to focus your search" -msgstr "" - -#: skins/default/templates/questions.html:154 -#: skins/default/templates/unused/questions_ajax.html:79 -#, fuzzy -msgid "There are no unanswered questions here" -msgstr "" -"

      %(num_q)s
      questions without " -"accepted answers" - -#: skins/default/templates/questions.html:157 -#: skins/default/templates/unused/questions_ajax.html:82 -#, fuzzy -msgid "No favorite questions here. " -msgstr "お気に入りの質問" - -#: skins/default/templates/questions.html:158 -#: skins/default/templates/unused/questions_ajax.html:83 -msgid "Please start (bookmark) some questions when you visit them" -msgstr "" - -#: skins/default/templates/questions.html:163 -#: skins/default/templates/unused/questions_ajax.html:88 -msgid "You can expand your search by " -msgstr "" - -#: skins/default/templates/questions.html:166 -#: skins/default/templates/unused/questions_ajax.html:92 -#, fuzzy -msgid "resetting author" -msgstr "作者にたずねる" - -#: skins/default/templates/questions.html:169 -#: skins/default/templates/unused/questions_ajax.html:96 -#, fuzzy -msgid "resetting tags" -msgstr "興味あるタグ" - -#: skins/default/templates/questions.html:172 -#: skins/default/templates/questions.html:175 -#: skins/default/templates/unused/questions_ajax.html:100 -#: skins/default/templates/unused/questions_ajax.html:104 -msgid "starting over" -msgstr "" - -#: skins/default/templates/questions.html:180 -#: skins/default/templates/unused/questions_ajax.html:109 -#, fuzzy -msgid "Please always feel free to ask your question!" -msgstr "ぜひ、質問を投稿しましょう!" - -#: skins/default/templates/questions.html:184 -#: skins/default/templates/unused/questions_ajax.html:113 -msgid "Did not find what you were looking for?" -msgstr "探していた物は見付かりませんか?" - -#: skins/default/templates/questions.html:185 -#: skins/default/templates/unused/questions_ajax.html:114 -msgid "Please, post your question!" -msgstr "ぜひ、質問を投稿しましょう!" - -#: skins/default/templates/questions.html:200 -msgid "Contributors" -msgstr "" - -#: skins/default/templates/questions.html:217 -msgid "Related tags" -msgstr "タグ" - -#: skins/default/templates/reopen.html:3 skins/default/templates/reopen.html:6 +#: skins/default/templates/reopen.html:3 skins/default/templates/reopen.html:5 msgid "Reopen question" msgstr "再開された質問" -#: skins/default/templates/reopen.html:9 +#: skins/default/templates/reopen.html:6 #, fuzzy msgid "Title" msgstr "タイトル" -#: skins/default/templates/reopen.html:14 +#: skins/default/templates/reopen.html:11 #, python-format msgid "" "This question has been closed by \n" -" %(closed_by_username)s\n" -" " +" %(closed_by_username)s\n" msgstr "" -#: skins/default/templates/reopen.html:19 +#: skins/default/templates/reopen.html:16 #, fuzzy msgid "Close reason:" msgstr "質問を閉鎖する" -#: skins/default/templates/reopen.html:22 +#: skins/default/templates/reopen.html:19 msgid "When:" msgstr "" -#: skins/default/templates/reopen.html:25 +#: skins/default/templates/reopen.html:22 #, fuzzy msgid "Reopen this question?" msgstr "この質問を再開する" -#: skins/default/templates/reopen.html:29 +#: skins/default/templates/reopen.html:26 msgid "Reopen this question" msgstr "この質問を再開する" @@ -4252,1100 +4736,1477 @@ msgstr "" msgid "revision %(number)s" msgstr "" -#: skins/default/templates/tag_selector.html:3 -msgid "Interesting tags" -msgstr "興味あるタグ" - -#: skins/default/templates/tag_selector.html:13 -#, python-format -msgid "remove '%(tag_name)s' from the list of interesting tags" -msgstr "" - -#: skins/default/templates/tag_selector.html:19 -#: skins/default/templates/tag_selector.html:36 -#: skins/default/templates/user_moderate.html:35 -msgid "Add" -msgstr "追加する" - -#: skins/default/templates/tag_selector.html:20 -msgid "Ignored tags" -msgstr "表示しないタグ" +#: skins/default/templates/subscribe_for_tags.html:3 +#: skins/default/templates/subscribe_for_tags.html:5 +#, fuzzy +msgid "Subscribe for tags" +msgstr "タグを利用する" -#: skins/default/templates/tag_selector.html:30 -#, python-format -msgid "remove '%(tag_name)s' from the list of ignored tags" +#: skins/default/templates/subscribe_for_tags.html:6 +msgid "Please, subscribe for the following tags:" msgstr "" -#: skins/default/templates/tag_selector.html:39 -msgid "keep ignored questions hidden" +#: skins/default/templates/subscribe_for_tags.html:15 +msgid "Subscribe" msgstr "" -#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:8 +#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:11 msgid "Tag list" msgstr "タグリスト" -#: skins/default/templates/tags.html:14 +#: skins/default/templates/tags.html:9 +#, python-format +msgid "Tags, matching \"%(stag)s\"" +msgstr "" + +#: skins/default/templates/tags.html:19 msgid "sorted alphabetically" msgstr "" -#: skins/default/templates/tags.html:15 +#: skins/default/templates/tags.html:20 msgid "by name" msgstr "名前順" -#: skins/default/templates/tags.html:20 +#: skins/default/templates/tags.html:25 msgid "sorted by frequency of tag use" msgstr "" -#: skins/default/templates/tags.html:21 +#: skins/default/templates/tags.html:26 msgid "by popularity" msgstr "人気順" -#: skins/default/templates/tags.html:27 -#, python-format -msgid "" -"All tags matching '%(stag)s'" -msgstr "" - -#: skins/default/templates/tags.html:30 +#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:56 msgid "Nothing found" msgstr "何もみつからない" -#: skins/default/templates/user.html:14 -#, fuzzy, python-format -msgid "%(username)s's profile" -msgstr "ユーザプロファイル" +#: skins/default/templates/users.html:4 skins/default/templates/users.html:7 +msgid "Users" +msgstr "ユーザー" -#: skins/default/templates/user_edit.html:4 -msgid "Edit user profile" -msgstr "ユーザープロファイルを編集する" +#: skins/default/templates/users.html:13 +msgid "see people with the highest reputation" +msgstr "" -#: skins/default/templates/user_edit.html:7 -msgid "edit profile" -msgstr "プロファイルを編集する" +#: skins/default/templates/users.html:14 +#: skins/default/templates/user_profile/user_info.html:25 +msgid "reputation" +msgstr "信用度" -#: skins/default/templates/user_edit.html:17 -#: skins/default/templates/user_info.html:11 -msgid "change picture" +#: skins/default/templates/users.html:19 +msgid "see people who joined most recently" msgstr "" -#: skins/default/templates/user_edit.html:20 -msgid "Registered user" -msgstr "登録ユーザー" +#: skins/default/templates/users.html:20 +msgid "recent" +msgstr "新規登録順" -#: skins/default/templates/user_edit.html:27 -msgid "Screen Name" -msgstr "スクリーン名" +#: skins/default/templates/users.html:25 +msgid "see people who joined the site first" +msgstr "" -#: skins/default/templates/user_edit.html:75 -#: skins/default/templates/user_email_subscriptions.html:18 -msgid "Update" -msgstr "更新する" +#: skins/default/templates/users.html:31 +msgid "see people sorted by name" +msgstr "" -#: skins/default/templates/user_email_subscriptions.html:4 -msgid "Email subscription settings" -msgstr "メール登録設定" +#: skins/default/templates/users.html:32 +msgid "by username" +msgstr "ユーザー名順" -#: skins/default/templates/user_email_subscriptions.html:5 -msgid "email subscription settings info" +#: skins/default/templates/users.html:37 +#, python-format +msgid "users matching query %(suser)s:" msgstr "" -"Adjust frequency of email updates. Receive " -"updates on interesting questions by email,
      help the community by answering questions of your colleagues. If you do not wish to " -"receive emails - select 'no email' on all items below.
      Updates are only " -"sent when there is any new activity on selected items." -#: skins/default/templates/user_email_subscriptions.html:19 -msgid "Stop sending email" -msgstr "電子メールを停止する" +#: skins/default/templates/users.html:40 +msgid "Nothing found." +msgstr "何も見付かりませんでした" -#: skins/default/templates/user_inbox.html:31 -#, fuzzy -msgid "Sections:" -msgstr "設定" +#: skins/default/templates/authopenid/changeemail.html:2 +#: skins/default/templates/authopenid/changeemail.html:8 +#: skins/default/templates/authopenid/changeemail.html:36 +msgid "Change email" +msgstr "電子メールを変更する" + +#: skins/default/templates/authopenid/changeemail.html:10 +msgid "Save your email address" +msgstr "電子メールアドレスを保存する" -#: skins/default/templates/user_inbox.html:35 +#: skins/default/templates/authopenid/changeemail.html:15 #, python-format -msgid "forum responses (%(re_count)s)" +msgid "change %(email)s info" msgstr "" +"Enter your new email into the box below if " +"you'd like to use another email for update subscriptions." +"
      Currently you are using %(email)s" -#: skins/default/templates/user_inbox.html:40 +#: skins/default/templates/authopenid/changeemail.html:17 #, python-format -msgid "flagged items (%(flag_count)s)" +msgid "here is why email is required, see %(gravatar_faq_url)s" msgstr "" +"Please enter your email address in the box below. Valid email address is required on this Q&A forum. If you like, " +"you can receive updates on interesting questions or entire " +"forum via email. Also, your email is used to create a unique gravatar image for your " +"account. Email addresses are never shown or otherwise shared with anybody " +"else." -#: skins/default/templates/user_inbox.html:46 -#, fuzzy -msgid "select:" -msgstr "削除する" - -#: skins/default/templates/user_inbox.html:48 -#, fuzzy -msgid "seen" -msgstr "最終活動" - -#: skins/default/templates/user_inbox.html:49 -#, fuzzy -msgid "new" -msgstr "最新" - -#: skins/default/templates/user_inbox.html:50 -#, fuzzy -msgid "none" -msgstr "銅賞" - -#: skins/default/templates/user_inbox.html:51 -#, fuzzy -msgid "mark as seen" -msgstr "最終活動" - -#: skins/default/templates/user_inbox.html:52 -#, fuzzy -msgid "mark as new" -msgstr "ベストアンサー印" - -#: skins/default/templates/user_inbox.html:53 -msgid "dismiss" +#: skins/default/templates/authopenid/changeemail.html:29 +msgid "Your new Email" msgstr "" +"Your new Email: (will not be shown to " +"anyone, must be valid)" -#: skins/default/templates/user_info.html:18 -#: skins/default/templates/users.html:13 skins/default/templates/users.html:14 -msgid "reputation" -msgstr "信用度" - -#: skins/default/templates/user_info.html:30 -msgid "manage login methods" +#: skins/default/templates/authopenid/changeemail.html:29 +msgid "Your Email" msgstr "" +"Your Email (must be valid, never shown to others)" -#: skins/default/templates/user_info.html:34 -msgid "update profile" -msgstr "プロファイルを更新する" +#: skins/default/templates/authopenid/changeemail.html:36 +msgid "Save Email" +msgstr "" -#: skins/default/templates/user_info.html:46 -msgid "real name" -msgstr "実名" +#: skins/default/templates/authopenid/changeemail.html:45 +msgid "Validate email" +msgstr "電子メールを有効にする" -#: skins/default/templates/user_info.html:51 -msgid "member for" -msgstr "登録日" +#: skins/default/templates/authopenid/changeemail.html:48 +#, python-format +msgid "validate %(email)s info or go to %(change_email_url)s" +msgstr "" +"An email with a validation link has been sent to " +"%(email)s. Please follow the emailed link with your " +"web browser. Email validation is necessary to help insure the proper use of " +"email on Q&A. If you would like to use " +"another email, please change it again." -#: skins/default/templates/user_info.html:56 -msgid "last seen" -msgstr "最終活動" +#: skins/default/templates/authopenid/changeemail.html:52 +msgid "Email not changed" +msgstr "電子メールは変更されませんでした" -#: skins/default/templates/user_info.html:62 -msgid "user website" -msgstr "ユーザーのウェブサイト" +#: skins/default/templates/authopenid/changeemail.html:55 +#, python-format +msgid "old %(email)s kept, if you like go to %(change_email_url)s" +msgstr "" +"Your email address %(email)s has not been changed." +" If you decide to change it later - you can always do it by editing " +"it in your user profile or by using the previous form again." -#: skins/default/templates/user_info.html:68 -msgid "location" -msgstr "場所" +#: skins/default/templates/authopenid/changeemail.html:59 +msgid "Email changed" +msgstr "電子メールは変更されました" -#: skins/default/templates/user_info.html:75 -msgid "age" -msgstr "年齢" +#: skins/default/templates/authopenid/changeemail.html:62 +#, python-format +msgid "your current %(email)s can be used for this" +msgstr "" +"Your email address is now set to %(email)s. " +"Updates on the questions that you like most will be sent to this address. " +"Email notifications are sent once a day or less frequently - only when there " +"are any news." -#: skins/default/templates/user_info.html:76 -msgid "age unit" -msgstr "歳" +#: skins/default/templates/authopenid/changeemail.html:66 +msgid "Email verified" +msgstr "電子メールは確証されました" -#: skins/default/templates/user_info.html:83 -msgid "todays unused votes" -msgstr "今日の使われてない投票" +#: skins/default/templates/authopenid/changeemail.html:69 +msgid "thanks for verifying email" +msgstr "" +"Thank you for verifying your email! Now " +"you can ask and answer questions. Also if " +"you find a very interesting question you can subscribe for the " +"updates - then will be notified about changes once a day or less frequently." -#: skins/default/templates/user_info.html:84 -msgid "votes left" -msgstr "消え去った投票" +#: skins/default/templates/authopenid/changeemail.html:73 +msgid "email key not sent" +msgstr "Validation email not sent" -#: skins/default/templates/user_moderate.html:5 +#: skins/default/templates/authopenid/changeemail.html:76 #, python-format -msgid "%(username)s's current status is \"%(status)s\"" -msgstr "" - -#: skins/default/templates/user_moderate.html:8 -msgid "User status changed" +msgid "email key not sent %(email)s change email here %(change_link)s" msgstr "" +"Your current email address %(email)s has been " +"validated before so the new key was not sent. You can change email used for update subscriptions if " +"necessary." -#: skins/default/templates/user_moderate.html:15 +#: skins/default/templates/authopenid/complete.html:21 +#: skins/default/templates/authopenid/complete.html:23 #, fuzzy -msgid "Save" -msgstr "編集を保存する" +msgid "Registration" +msgstr "登録" -#: skins/default/templates/user_moderate.html:21 +#: skins/default/templates/authopenid/complete.html:27 #, python-format -msgid "Your current reputation is %(reputation)s points" +msgid "register new %(provider)s account info, see %(gravatar_faq_url)s" msgstr "" +"

      You are here for the first time with your " +"%(provider)s login. Please create your screen name " +"and save your email address. Saved email address will let " +"you subscribe for the updates on the most interesting " +"questions and will be used to create and retrieve your unique avatar image - " +"gravatar.

      " -#: skins/default/templates/user_moderate.html:23 +#: skins/default/templates/authopenid/complete.html:30 #, python-format -msgid "User's current reputation is %(reputation)s points" +msgid "" +"%(username)s already exists, choose another name for \n" +" %(provider)s. Email is required too, see " +"%(gravatar_faq_url)s\n" +" " msgstr "" +"

      Oops... looks like screen name %(username)s is " +"already used in another account.

      Please choose another screen " +"name to use with your %(provider)s login. Also, a valid email address is " +"required on the Q&A forum. Your email is " +"used to create a unique gravatar image for your account. If you like, you can receive " +"updates on the interesting questions or entire forum by email. " +"Email addresses are never shown or otherwise shared with anybody else.

      " -#: skins/default/templates/user_moderate.html:27 -#, fuzzy -msgid "User reputation changed" -msgstr "徳" - -#: skins/default/templates/user_moderate.html:34 -msgid "Subtract" +#: skins/default/templates/authopenid/complete.html:34 +#, python-format +msgid "" +"register new external %(provider)s account info, see %(gravatar_faq_url)s" msgstr "" +"

      You are here for the first time with your " +"%(provider)s login.

      You can either keep your screen " +"name the same as your %(provider)s login name or choose some other " +"nickname.

      Also, please save a valid email address. " +"With the email you can subscribe for the updates on the " +"most interesting questions. Email address is also used to create and " +"retrieve your unique avatar image - gravatar.

      " -#: skins/default/templates/user_moderate.html:39 +#: skins/default/templates/authopenid/complete.html:37 #, python-format -msgid "Send message to %(username)s" +msgid "register new Facebook connect account info, see %(gravatar_faq_url)s" msgstr "" +"

      You are here for the first time with your " +"Facebook login. Please create your screen name and " +"save your email address. Saved email address will let you " +"subscribe for the updates on the most interesting questions " +"and will be used to create and retrieve your unique avatar image - gravatar.

      " -#: skins/default/templates/user_moderate.html:40 -msgid "" -"An email will be sent to the user with 'reply-to' field set to your email " -"address. Please make sure that your address is entered correctly." -msgstr "" +#: skins/default/templates/authopenid/complete.html:40 +msgid "This account already exists, please use another." +msgstr "このアカウントはすでに存在しています。他のを使ってください。" -#: skins/default/templates/user_moderate.html:42 -#, fuzzy -msgid "Message sent" -msgstr "メッセージ本文:" +#: skins/default/templates/authopenid/complete.html:59 +msgid "Screen name label" +msgstr "スクリーン名 (他のひとに表示されます)" -#: skins/default/templates/user_moderate.html:60 -#, fuzzy -msgid "Send message" -msgstr "メッセージ:" +#: skins/default/templates/authopenid/complete.html:66 +msgid "Email address label" +msgstr "" +"電子メールアドレス (will not be shared " +"with anyone, must be valid)" -#: skins/default/templates/user_reputation.html:7 -msgid "Your karma change log." +#: skins/default/templates/authopenid/complete.html:72 +#: skins/default/templates/authopenid/signup_with_password.html:36 +msgid "receive updates motivational blurb" msgstr "" +"Receive forum updates by email - this will help our " +"community grow and become more useful.
      By default Q&A forum sends up to one email digest per " +"week - only when there is anything new.
      If you like, please " +"adjust this now or any time later from your user account." -#: skins/default/templates/user_reputation.html:9 -#, python-format -msgid "%(user_name)s's karma change log" +#: skins/default/templates/authopenid/complete.html:76 +#: skins/default/templates/authopenid/signup_with_password.html:40 +msgid "please select one of the options above" msgstr "" -#: skins/default/templates/user_stats.html:7 -#, fuzzy, python-format -msgid "%(counter)s Question" -msgid_plural "%(counter)s Questions" -msgstr[0] "" -"\n" -"1個の質問\n" -" " -msgstr[1] "" -"\n" -"%(counter)s個の質問\n" -" " +#: skins/default/templates/authopenid/complete.html:79 +msgid "Tag filter tool will be your right panel, once you log in." +msgstr "" -#: skins/default/templates/user_stats.html:12 -#, python-format -msgid "%(counter)s Answer" -msgid_plural "%(counter)s Answers" -msgstr[0] "" -msgstr[1] "" +#: skins/default/templates/authopenid/complete.html:80 +msgid "create account" +msgstr "サインアップ" -#: skins/default/templates/user_stats.html:20 -#, fuzzy, python-format -msgid "the answer has been voted for %(answer_score)s times" -msgstr "回答は %(vote_count)s 回投票されました" +#: skins/default/templates/authopenid/confirm_email.txt:1 +msgid "Thank you for registering at our Q&A forum!" +msgstr "Q&Aフォーラムに登録いただきありがとうございます!" -#: skins/default/templates/user_stats.html:20 -msgid "this answer has been selected as correct" -msgstr "この回答が妥当であると選ばれました" +#: skins/default/templates/authopenid/confirm_email.txt:3 +msgid "Your account details are:" +msgstr "アカウントの詳細:" -#: skins/default/templates/user_stats.html:30 -#, python-format -msgid "(%(comment_count)s comment)" -msgid_plural "the answer has been commented %(comment_count)s times" -msgstr[0] "" -msgstr[1] "" +#: skins/default/templates/authopenid/confirm_email.txt:5 +msgid "Username:" +msgstr "ユーザ名:" -#: skins/default/templates/user_stats.html:40 -#, python-format -msgid "%(cnt)s Vote" -msgid_plural "%(cnt)s Votes " -msgstr[0] "" -msgstr[1] "" +#: skins/default/templates/authopenid/confirm_email.txt:6 +msgid "Password:" +msgstr "パスワード:" -# msgid "{{cnt}} Vote" -# msgid_plural "{{cnt}} Votes" -# msgstr[0] "{{cnt}}個の投票" -# msgstr[1] "{{cnt}}個の投票" -#: skins/default/templates/user_stats.html:46 -msgid "thumb up" -msgstr "イイネ" +#: skins/default/templates/authopenid/confirm_email.txt:8 +msgid "Please sign in here:" +msgstr "ここにサインしてください:" -#: skins/default/templates/user_stats.html:47 -msgid "user has voted up this many times" +#: skins/default/templates/authopenid/confirm_email.txt:11 +#: skins/default/templates/authopenid/email_validation.txt:13 +msgid "" +"Sincerely,\n" +"Forum Administrator" msgstr "" +"よろしくおねがいします。\n" +"--\n" +"Q&A フォーラム管理" -#: skins/default/templates/user_stats.html:50 -msgid "thumb down" -msgstr "( ´ _ゝ`)" +#: skins/default/templates/authopenid/email_validation.txt:1 +msgid "Greetings from the Q&A forum" +msgstr "Q&Aフォーマルからのおしらせです" -#: skins/default/templates/user_stats.html:51 -msgid "user voted down this many times" +#: skins/default/templates/authopenid/email_validation.txt:3 +msgid "To make use of the Forum, please follow the link below:" msgstr "" -#: skins/default/templates/user_stats.html:59 -#, python-format -msgid "%(counter)s Tag" -msgid_plural "%(counter)s Tags" -msgstr[0] "" -msgstr[1] "" +#: skins/default/templates/authopenid/email_validation.txt:7 +msgid "Following the link above will help us verify your email address." +msgstr "" -#: skins/default/templates/user_stats.html:67 -#, python-format +#: skins/default/templates/authopenid/email_validation.txt:9 msgid "" -"see other questions with %(view_user)s's contributions tagged '%(tag_name)s' " +"If you beleive that this message was sent in mistake - \n" +"no further action is needed. Just ingore this email, we apologize\n" +"for any inconvenience" msgstr "" -#: skins/default/templates/user_stats.html:81 -#, fuzzy, python-format -msgid "%(counter)s Badge" -msgid_plural "%(counter)s Badges" -msgstr[0] "" -"\n" -" バッジ\n" -" " -msgstr[1] "" -"\n" -" %(counter)sバッジ\n" -" " +#: skins/default/templates/authopenid/logout.html:3 +msgid "Logout" +msgstr "ログアウト" -#: skins/default/templates/user_tabs.html:5 -msgid "User profile" -msgstr "ユーザープロファイル" +#: skins/default/templates/authopenid/logout.html:5 +msgid "You have successfully logged out" +msgstr "" -#: skins/default/templates/user_tabs.html:6 -msgid "overview" -msgstr "概略" +#: skins/default/templates/authopenid/logout.html: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 "" -#: skins/default/templates/user_tabs.html:9 views/users.py:753 -msgid "comments and answers to others questions" +#: skins/default/templates/authopenid/macros.html:53 +msgid "Please enter your user name, then sign in" msgstr "" -#: skins/default/templates/user_tabs.html:10 -msgid "inbox" +#: skins/default/templates/authopenid/macros.html:54 +#: skins/default/templates/authopenid/signin.html:90 +msgid "(or select another login method above)" msgstr "" -#: skins/default/templates/user_tabs.html:13 -msgid "graph of user reputation" -msgstr "Graph of user karma" +#: skins/default/templates/authopenid/macros.html:56 +#, fuzzy +msgid "Sign in" +msgstr "サインアップする" -#: skins/default/templates/user_tabs.html:14 -msgid "reputation history" -msgstr "信用度履歴" +#: skins/default/templates/authopenid/signin.html:4 +msgid "User login" +msgstr "ユーザーログイン" -#: skins/default/templates/user_tabs.html:16 -msgid "questions that user selected as his/her favorite" +#: skins/default/templates/authopenid/signin.html:14 +#, fuzzy, python-format +msgid "" +"\n" +" Your answer to %(title)s %(summary)s will be posted once you log in\n" +" " msgstr "" +"\n" +"Your answer to \"%(title)s %(summary)s...\" is saved and will be " +"posted once you log in." -#: skins/default/templates/user_tabs.html:17 -msgid "favorites" -msgstr "お気に入り" +#: skins/default/templates/authopenid/signin.html:21 +#, fuzzy, python-format +msgid "" +"Your question \n" +" %(title)s %(summary)s will be posted once you log in\n" +" " +msgstr "" +"Your question \"%(title)s %(summary)s...\" is saved and will be " +"posted once you log in." -#: skins/default/templates/user_tabs.html:19 -msgid "recent activity" -msgstr "最近の活動" +#: skins/default/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." +msgstr "" -#: skins/default/templates/user_tabs.html:20 -#, fuzzy -msgid "activity" -msgstr "最近の活動" +#: skins/default/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 "" -#: skins/default/templates/user_tabs.html:23 views/users.py:818 -msgid "user vote record" +#: skins/default/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 "" -#: skins/default/templates/user_tabs.html:24 -msgid "casted votes" -msgstr "votes" +#: skins/default/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 "" -#: skins/default/templates/user_tabs.html:28 views/users.py:928 -msgid "email subscription settings" +#: skins/default/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 "" -#: skins/default/templates/user_tabs.html:29 -#, fuzzy -msgid "subscriptions" -msgstr "メール登録設定" +#: skins/default/templates/authopenid/signin.html:42 +msgid "" +"Please check your email and visit the enclosed link to re-connect to your " +"account" +msgstr "" -#: skins/default/templates/user_tabs.html:33 views/users.py:216 +#: skins/default/templates/authopenid/signin.html:87 #, fuzzy -msgid "moderate this user" -msgstr "このユーザーをモデレートする" +msgid "Please enter your user name and password, then sign in" +msgstr "ユーザ名とパスワードを入力してください" -#: skins/default/templates/user_tabs.html:34 -#, fuzzy -msgid "moderation" -msgstr "場所" +#: skins/default/templates/authopenid/signin.html:93 +msgid "Login failed, please try again" +msgstr "" -#: skins/default/templates/users.html:4 skins/default/templates/users.html:7 -msgid "Users" -msgstr "ユーザー" +#: skins/default/templates/authopenid/signin.html:97 +#, fuzzy +msgid "Login or email" +msgstr "電子メール無し" -#: skins/default/templates/users.html:19 skins/default/templates/users.html:20 -msgid "recent" -msgstr "新規登録順" +#: skins/default/templates/authopenid/signin.html:101 +msgid "Password" +msgstr "パスワード" -#: skins/default/templates/users.html:31 skins/default/templates/users.html:32 -msgid "by username" -msgstr "ユーザー名順" +#: skins/default/templates/authopenid/signin.html:106 +msgid "Login" +msgstr "ログイン" -#: skins/default/templates/users.html:38 -#, python-format -msgid "users matching query %(suser)s:" +#: skins/default/templates/authopenid/signin.html:113 +msgid "To change your password - please enter the new one twice, then submit" msgstr "" -#: skins/default/templates/users.html:41 -msgid "Nothing found." -msgstr "何も見付かりませんでした" - -#: skins/default/templates/users_questions.html:9 -#: skins/default/templates/users_questions.html:17 -#, fuzzy, python-format -msgid "this questions was selected as favorite %(cnt)s time" -msgid_plural "this questions was selected as favorite %(cnt)s times" -msgstr[0] "この質問はお気に入りに選ばれました" -msgstr[1] "この質問はお気に入りに選ばれました" +#: skins/default/templates/authopenid/signin.html:117 +#, fuzzy +msgid "New password" +msgstr "パスワード" -#: skins/default/templates/users_questions.html:10 -msgid "thumb-up on" -msgstr "" +#: skins/default/templates/authopenid/signin.html:124 +#, fuzzy +msgid "Please, retype" +msgstr "確認用パスワードを入力してください" -#: skins/default/templates/users_questions.html:18 -msgid "thumb-up off" +#: skins/default/templates/authopenid/signin.html:146 +msgid "Here are your current login methods" msgstr "" -#: skins/default/templates/authopenid/changeemail.html:2 -#: skins/default/templates/authopenid/changeemail.html:8 -#: skins/default/templates/authopenid/changeemail.html:36 -msgid "Change email" -msgstr "電子メールを変更する" +#: skins/default/templates/authopenid/signin.html:150 +#, fuzzy +msgid "provider" +msgstr "あたらしいプロバイダーを追加する" -#: skins/default/templates/authopenid/changeemail.html:10 -msgid "Save your email address" -msgstr "電子メールアドレスを保存する" +#: skins/default/templates/authopenid/signin.html:151 +#, fuzzy +msgid "last used" +msgstr "最終活動" -#: skins/default/templates/authopenid/changeemail.html:15 -#, python-format -msgid "change %(email)s info" +#: skins/default/templates/authopenid/signin.html:152 +msgid "delete, if you like" msgstr "" -"Enter your new email into the box below if " -"you'd like to use another email for update subscriptions." -"
      Currently you are using %(email)s" -#: skins/default/templates/authopenid/changeemail.html:17 -#, python-format -msgid "here is why email is required, see %(gravatar_faq_url)s" -msgstr "" -"Please enter your email address in the box below. Valid email address is required on this Q&A forum. If you like, " -"you can receive updates on interesting questions or entire " -"forum via email. Also, your email is used to create a unique gravatar image for your account. " -"Email addresses are never shown or otherwise shared with anybody else." +#: skins/default/templates/authopenid/signin.html:168 +#, fuzzy +msgid "cannot be deleted" +msgstr "キャンセルされた投票" -#: skins/default/templates/authopenid/changeemail.html:29 -msgid "Your new Email" +#: skins/default/templates/authopenid/signin.html:181 +msgid "Still have trouble signing in?" msgstr "" -"Your new Email: (will not be shown to " -"anyone, must be valid)" -#: skins/default/templates/authopenid/changeemail.html:29 -msgid "Your Email" +#: skins/default/templates/authopenid/signin.html:186 +msgid "Please, enter your email address below and obtain a new key" msgstr "" -"Your Email (must be valid, never shown to others)" -#: skins/default/templates/authopenid/changeemail.html:36 -msgid "Save Email" +#: skins/default/templates/authopenid/signin.html:188 +msgid "Please, enter your email address below to recover your account" msgstr "" -#: skins/default/templates/authopenid/changeemail.html:45 -msgid "Validate email" -msgstr "電子メールを有効にする" +#: skins/default/templates/authopenid/signin.html:191 +#, fuzzy +msgid "recover your account via email" +msgstr "あたらしいパスワードを設定する" -#: skins/default/templates/authopenid/changeemail.html:48 -#, python-format -msgid "validate %(email)s info or go to %(change_email_url)s" +#: skins/default/templates/authopenid/signin.html:202 +msgid "Send a new recovery key" msgstr "" -"An email with a validation link has been sent to %" -"(email)s. Please follow the emailed link with your " -"web browser. Email validation is necessary to help insure the proper use of " -"email on Q&A. If you would like to use " -"another email, please change it again." - -#: skins/default/templates/authopenid/changeemail.html:52 -msgid "Email not changed" -msgstr "電子メールは変更されませんでした" -#: skins/default/templates/authopenid/changeemail.html:55 -#, python-format -msgid "old %(email)s kept, if you like go to %(change_email_url)s" -msgstr "" -"Your email address %(email)s has not been changed." -" If you decide to change it later - you can always do it by editing " -"it in your user profile or by using the previous form again." +#: skins/default/templates/authopenid/signin.html:204 +#, fuzzy +msgid "Recover your account via email" +msgstr "あたらしいパスワードを設定する" -#: skins/default/templates/authopenid/changeemail.html:59 -msgid "Email changed" -msgstr "電子メールは変更されました" +#: skins/default/templates/authopenid/signin.html:216 +msgid "Why use OpenID?" +msgstr "なぜOpenIDをつかうのか?" -#: skins/default/templates/authopenid/changeemail.html:62 -#, python-format -msgid "your current %(email)s can be used for this" -msgstr "" -"Your email address is now set to %(email)s. " -"Updates on the questions that you like most will be sent to this address. " -"Email notifications are sent once a day or less frequently - only when there " -"are any news." +#: skins/default/templates/authopenid/signin.html:219 +msgid "with openid it is easier" +msgstr "OpenIDをつかうと、あらたにユーザ名とパスワードを作る必要がありません。" -#: skins/default/templates/authopenid/changeemail.html:66 -msgid "Email verified" -msgstr "電子メールは確証されました" +#: skins/default/templates/authopenid/signin.html:222 +msgid "reuse openid" +msgstr "すべてのOpenID対応ウェブサイトでおなじログインを安全に再利用できます。" -#: skins/default/templates/authopenid/changeemail.html:69 -msgid "thanks for verifying email" +#: skins/default/templates/authopenid/signin.html:225 +msgid "openid is widely adopted" +msgstr "すでに多数のウェブサイトでOpenIDアカウントが利用されています。" + +#: skins/default/templates/authopenid/signin.html:228 +msgid "openid is supported open standard" msgstr "" -"Thank you for verifying your email! Now " -"you can ask and answer questions. Also if " -"you find a very interesting question you can subscribe for the " -"updates - then will be notified about changes once a day or less frequently." +"OpenIDは、多くの組織がサポートしているオープンスタンダードに基づいています。" -#: skins/default/templates/authopenid/changeemail.html:73 -msgid "email key not sent" -msgstr "Validation email not sent" +#: skins/default/templates/authopenid/signin.html:232 +msgid "Find out more" +msgstr "より詳しく知るには" -#: skins/default/templates/authopenid/changeemail.html:76 -#, python-format -msgid "email key not sent %(email)s change email here %(change_link)s" +#: skins/default/templates/authopenid/signin.html:233 +msgid "Get OpenID" +msgstr "OpenIDを取得する" + +#: skins/default/templates/authopenid/signup_with_password.html:4 +msgid "Signup" +msgstr "サインアップする" + +#: skins/default/templates/authopenid/signup_with_password.html:10 +msgid "Please register by clicking on any of the icons below" msgstr "" -"Your current email address %(email)s has been " -"validated before so the new key was not sent. You can change email used for update subscriptions if necessary." -#: skins/default/templates/authopenid/complete.html:21 -#: skins/default/templates/authopenid/complete.html:24 +#: skins/default/templates/authopenid/signup_with_password.html:23 #, fuzzy -msgid "Registration" -msgstr "登録" +msgid "or create a new user name and password here" +msgstr "ログイン名とパスワードを作成する" -#: skins/default/templates/authopenid/complete.html:29 -#, python-format -msgid "register new %(provider)s account info, see %(gravatar_faq_url)s" -msgstr "" -"

      You are here for the first time with your %" -"(provider)s login. Please create your screen name " -"and save your email address. Saved email address will let " -"you subscribe for the updates on the most interesting " -"questions and will be used to create and retrieve your unique avatar image - " -"gravatar.

      " +#: skins/default/templates/authopenid/signup_with_password.html:25 +msgid "Create login name and password" +msgstr "ログイン名とパスワードを作成する" -#: skins/default/templates/authopenid/complete.html:32 -#, python-format -msgid "" -"%(username)s already exists, choose another name for \n" -" %(provider)s. Email is required too, see %" -"(gravatar_faq_url)s\n" -" " +#: skins/default/templates/authopenid/signup_with_password.html:26 +msgid "Traditional signup info" msgstr "" -"

      Oops... looks like screen name %(username)s is " -"already used in another account.

      Please choose another screen " -"name to use with your %(provider)s login. Also, a valid email address is " -"required on the Q&A forum. Your email is " -"used to create a unique gravatar image for your account. If you like, you can receive " -"updates on the interesting questions or entire forum by email. " -"Email addresses are never shown or otherwise shared with anybody else.

      " +"If you prefer, create your forum login name and " +"password here. However, please keep in mind that we also support " +"OpenID login method. With OpenID you can " +"simply reuse your external login (e.g. Gmail or AOL) without ever sharing " +"your login details with anyone and having to remember yet another password." -#: skins/default/templates/authopenid/complete.html:36 -#, python-format +#: skins/default/templates/authopenid/signup_with_password.html:44 msgid "" -"register new external %(provider)s account info, see %(gravatar_faq_url)s" +"Please read and type in the two words below to help us prevent automated " +"account creation." msgstr "" -"

      You are here for the first time with your %" -"(provider)s login.

      You can either keep your screen " -"name the same as your %(provider)s login name or choose some other " -"nickname.

      Also, please save a valid email address. " -"With the email you can subscribe for the updates on the " -"most interesting questions. Email address is also used to create and " -"retrieve your unique avatar image - gravatar.

      " -#: skins/default/templates/authopenid/complete.html:39 -#, python-format -msgid "register new Facebook connect account info, see %(gravatar_faq_url)s" +#: skins/default/templates/authopenid/signup_with_password.html:47 +msgid "Create Account" +msgstr "アカウントを作成する" + +#: skins/default/templates/authopenid/signup_with_password.html:49 +msgid "or" +msgstr "もしくは" + +#: skins/default/templates/authopenid/signup_with_password.html:50 +msgid "return to OpenID login" +msgstr "OpenID ログインに戻る" + +#: skins/default/templates/avatar/add.html:3 +#, fuzzy +msgid "add avatar" +msgstr "What is gravatar?" + +#: skins/default/templates/avatar/add.html:5 +#, fuzzy +msgid "Change avatar" +msgstr "タグを変更する" + +#: skins/default/templates/avatar/add.html:6 +#: skins/default/templates/avatar/change.html:7 +#, fuzzy +msgid "Your current avatar: " +msgstr "アカウントの詳細:" + +#: skins/default/templates/avatar/add.html:9 +#: skins/default/templates/avatar/change.html:11 +msgid "You haven't uploaded an avatar yet. Please upload one now." msgstr "" -"

      You are here for the first time with your " -"Facebook login. Please create your screen name and " -"save your email address. Saved email address will let you " -"subscribe for the updates on the most interesting questions " -"and will be used to create and retrieve your unique avatar image - gravatar.

      " -#: skins/default/templates/authopenid/complete.html:42 -msgid "This account already exists, please use another." -msgstr "このアカウントはすでに存在しています。他のを使ってください。" +#: skins/default/templates/avatar/add.html:13 +msgid "Upload New Image" +msgstr "" -#: skins/default/templates/authopenid/complete.html:61 -msgid "Screen name label" -msgstr "スクリーン名 (他のひとに表示されます)" +#: skins/default/templates/avatar/change.html:4 +#, fuzzy +msgid "change avatar" +msgstr "変更が保存されました" -#: skins/default/templates/authopenid/complete.html:68 -msgid "Email address label" +#: skins/default/templates/avatar/change.html:17 +msgid "Choose new Default" msgstr "" -"電子メールアドレス (will not be shared " -"with anyone, must be valid)" -#: skins/default/templates/authopenid/complete.html:74 -#: skins/default/templates/authopenid/signup_with_password.html:17 -msgid "receive updates motivational blurb" +#: skins/default/templates/avatar/change.html:22 +msgid "Upload" msgstr "" -"Receive forum updates by email - this will help our " -"community grow and become more useful.
      By default Q&A forum sends up to one email digest per " -"week - only when there is anything new.
      If you like, please " -"adjust this now or any time later from your user account." -#: skins/default/templates/authopenid/complete.html:78 -#: skins/default/templates/authopenid/signup_with_password.html:21 -msgid "please select one of the options above" +#: skins/default/templates/avatar/confirm_delete.html:3 +#, fuzzy +msgid "delete avatar" +msgstr "削除された回答" + +#: skins/default/templates/avatar/confirm_delete.html:5 +msgid "Please select the avatars that you would like to delete." msgstr "" -#: skins/default/templates/authopenid/complete.html:81 -msgid "Tag filter tool will be your right panel, once you log in." +#: skins/default/templates/avatar/confirm_delete.html:7 +#, python-format +msgid "" +"You have no avatars to delete. Please upload one now." msgstr "" -#: skins/default/templates/authopenid/complete.html:82 -msgid "create account" -msgstr "サインアップ" +#: skins/default/templates/avatar/confirm_delete.html:13 +#, fuzzy +msgid "Delete These" +msgstr "削除された回答" -#: skins/default/templates/authopenid/confirm_email.txt:1 -msgid "Thank you for registering at our Q&A forum!" -msgstr "Q&Aフォーラムに登録いただきありがとうございます!" +#: skins/default/templates/blocks/answer_edit_tips.html:3 +msgid "answer tips" +msgstr "コツ" -#: skins/default/templates/authopenid/confirm_email.txt:3 -msgid "Your account details are:" -msgstr "アカウントの詳細:" +#: skins/default/templates/blocks/answer_edit_tips.html:6 +msgid "please make your answer relevant to this community" +msgstr "このコミュニティーに即した回答をしてくだあし" -#: skins/default/templates/authopenid/confirm_email.txt:5 -msgid "Username:" -msgstr "ユーザ名:" +#: skins/default/templates/blocks/answer_edit_tips.html:9 +msgid "try to give an answer, rather than engage into a discussion" +msgstr "議論にかみ合うよりむしろ、回答をあたえるようにしてみましょう" -#: skins/default/templates/authopenid/confirm_email.txt:6 -msgid "Password:" -msgstr "パスワード:" +#: skins/default/templates/blocks/answer_edit_tips.html:12 +msgid "please try to provide details" +msgstr "詳細を提供してみましょう" -#: skins/default/templates/authopenid/confirm_email.txt:8 -msgid "Please sign in here:" -msgstr "ここにサインしてください:" +#: skins/default/templates/blocks/answer_edit_tips.html:15 +#: skins/default/templates/blocks/question_edit_tips.html:11 +msgid "be clear and concise" +msgstr "明確で正確な質問を" -#: skins/default/templates/authopenid/confirm_email.txt:11 -#: skins/default/templates/authopenid/email_validation.txt:13 -msgid "" -"Sincerely,\n" -"Forum Administrator" -msgstr "" -"よろしくおねがいします。\n" -"--\n" -"Q&A フォーラム管理" +#: skins/default/templates/blocks/answer_edit_tips.html:19 +#: skins/default/templates/blocks/question_edit_tips.html:15 +msgid "see frequently asked questions" +msgstr "良くある質問をみましょう" -#: skins/default/templates/authopenid/email_validation.txt:1 -msgid "Greetings from the Q&A forum" -msgstr "Q&Aフォーマルからのおしらせです" +#: skins/default/templates/blocks/answer_edit_tips.html:25 +#: skins/default/templates/blocks/question_edit_tips.html:20 +msgid "Markdown tips" +msgstr "Markdown 記法の基本" -#: skins/default/templates/authopenid/email_validation.txt:3 -msgid "To make use of the Forum, please follow the link below:" +#: skins/default/templates/blocks/answer_edit_tips.html:29 +#: skins/default/templates/blocks/question_edit_tips.html:24 +msgid "*italic*" msgstr "" -#: skins/default/templates/authopenid/email_validation.txt:7 -msgid "Following the link above will help us verify your email address." +#: skins/default/templates/blocks/answer_edit_tips.html:32 +#: skins/default/templates/blocks/question_edit_tips.html:27 +msgid "**bold**" msgstr "" -#: skins/default/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" -"for any inconvenience" -msgstr "" +#: skins/default/templates/blocks/answer_edit_tips.html:36 +#: skins/default/templates/blocks/question_edit_tips.html:31 +#, fuzzy +msgid "*italic* or _italic_" +msgstr "*斜体* もしくは __斜体__" -#: skins/default/templates/authopenid/signin.html:3 -msgid "User login" -msgstr "ユーザーログイン" +#: skins/default/templates/blocks/answer_edit_tips.html:39 +#: skins/default/templates/blocks/question_edit_tips.html:34 +msgid "**bold** or __bold__" +msgstr "**太文字** もしくは __太文字__" -#: skins/default/templates/authopenid/signin.html:11 -#, fuzzy, python-format -msgid "" -"\n" -" Your answer to %(title)s %(summary)s will be posted once you log in\n" -" " +#: skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/question_edit_tips.html:38 +msgid "link" +msgstr "リンク" + +#: skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:38 +#: skins/default/templates/blocks/question_edit_tips.html:43 +msgid "text" +msgstr "テキスト" + +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:43 +msgid "image" +msgstr "画像" + +#: skins/default/templates/blocks/answer_edit_tips.html:51 +#: skins/default/templates/blocks/question_edit_tips.html:47 +msgid "numbered list:" +msgstr "数字付きリスト" + +#: skins/default/templates/blocks/answer_edit_tips.html:56 +#: skins/default/templates/blocks/question_edit_tips.html:52 +msgid "basic HTML tags are also supported" +msgstr "基本HTMLタグもサポートしています" + +#: skins/default/templates/blocks/answer_edit_tips.html:60 +#: skins/default/templates/blocks/question_edit_tips.html:56 +msgid "learn more about Markdown" +msgstr "Markdown記法についてさらに学ぶ" + +#: skins/default/templates/blocks/ask_form.html:6 +msgid "login to post question info" msgstr "" -"\n" -"Your answer to \"%(title)s %(summary)s...\" is saved and will be " -"posted once you log in." +"You are welcome to start submitting your question " +"anonymously. 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/authopenid/signin.html:18 +#: skins/default/templates/blocks/ask_form.html:10 #, fuzzy, python-format msgid "" -"Your question \n" -" %(title)s %(summary)s will be posted once you log in\n" -" " +"must have valid %(email)s to post, \n" +" see %(email_validation_faq_url)s\n" +" " msgstr "" -"Your question \"%(title)s %(summary)s...\" is saved and will be " -"posted once you log in." +"Looks like your email address, %(email)s has not " +"yet been validated. To post messages you must verify your email, " +"please see more details here." +"
      You can submit your question now and validate email after that. Your " +"question will saved as pending meanwhile. " -#: skins/default/templates/authopenid/signin.html:25 -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." +#: skins/default/templates/blocks/ask_form.html:34 +msgid "Login/signup to post your question" +msgstr "投稿するためにログイン/サインアップする" + +#: skins/default/templates/blocks/ask_form.html:36 +msgid "Ask your question" +msgstr "質問を投稿する" + +#: skins/default/templates/blocks/bottom_scripts.html:7 +#, python-format +msgid "" +"Please note: %(app_name)s requires javascript to work properly, please " +"enable javascript in your browser, here is how" msgstr "" -#: skins/default/templates/authopenid/signin.html:28 +#: skins/default/templates/blocks/editor_data.html:5 +#, 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/blocks/editor_data.html:7 +#, 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つ以内のタグを使いましょう" + +#: skins/default/templates/blocks/editor_data.html:8 +#, fuzzy, python-format 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." +"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/blocks/footer.html:4 +#: skins/default/templates/blocks/header_meta_links.html:12 +msgid "about" +msgstr "概要" + +#: skins/default/templates/blocks/footer.html:6 +msgid "privacy policy" +msgstr "プライバシーポリシー" + +#: skins/default/templates/blocks/footer.html:15 +msgid "give feedback" +msgstr "フィードバックする" + +#: skins/default/templates/blocks/footer.html:41 +#, python-format +msgid "Content on this site is licensed under a %(license)s" +msgstr "" + +#: skins/default/templates/blocks/header.html:8 +msgid "back to home page" +msgstr "ホームに戻る" + +#: skins/default/templates/blocks/header.html:9 +#, python-format +msgid "%(site)s logo" +msgstr "" + +#: skins/default/templates/blocks/header.html:20 +msgid "questions" +msgstr "質問" + +#: skins/default/templates/blocks/header.html:30 +msgid "users" +msgstr "ユーザー" + +#: skins/default/templates/blocks/header.html:35 +msgid "badges" +msgstr "バッジ" + +#: skins/default/templates/blocks/header.html:40 +msgid "ask a question" +msgstr "質問する" + +#: skins/default/templates/blocks/header_meta_links.html:8 +msgid "logout" +msgstr "ログアウト" + +#: skins/default/templates/blocks/header_meta_links.html:10 +msgid "login" +msgstr "ログイン" + +#: skins/default/templates/blocks/header_meta_links.html:15 +#, fuzzy +msgid "settings" +msgstr "設定" + +#: skins/default/templates/blocks/input_bar.html:34 +msgid "search" +msgstr "検索する" + +#: skins/default/templates/blocks/question_edit_tips.html:3 +msgid "question tips" +msgstr "コツ" + +#: skins/default/templates/blocks/question_edit_tips.html:5 +msgid "please ask a relevant question" +msgstr "CNPROG コミュニティーに適した質問をしましょう。" + +#: skins/default/templates/blocks/question_edit_tips.html:8 +msgid "please try provide enough details" +msgstr "必要十分に詳しく質問しましょう。" + +#: skins/default/templates/blocks/tag_selector.html:4 +msgid "Interesting tags" +msgstr "興味あるタグ" + +#: skins/default/templates/blocks/tag_selector.html:18 +#: skins/default/templates/blocks/tag_selector.html:34 +#: skins/default/templates/user_profile/user_moderate.html:40 +msgid "Add" +msgstr "追加する" + +#: skins/default/templates/blocks/tag_selector.html:20 +msgid "Ignored tags" +msgstr "表示しないタグ" + +#: skins/default/templates/blocks/tag_selector.html:36 +#, fuzzy +msgid "Display tag filter" +msgstr "電子メールタグフィルターを選択してください" + +#: skins/default/templates/main_page/content.html:13 +msgid "Did not find what you were looking for?" +msgstr "探していた物は見付かりませんか?" + +#: skins/default/templates/main_page/content.html:14 +msgid "Please, post your question!" +msgstr "ぜひ、質問を投稿しましょう!" + +#: skins/default/templates/main_page/headline.html:7 +msgid "subscribe to the questions feed" +msgstr "質問フィードを購読する" + +#: skins/default/templates/main_page/headline.html:8 +msgid "rss feed" +msgstr "" + +#: skins/default/templates/main_page/headline.html:12 views/readers.py:131 +#, fuzzy, python-format +msgid "%(q_num)s question, tagged" +msgid_plural "%(q_num)s questions, tagged" +msgstr[0] "あたらしい質問" + +#: skins/default/templates/main_page/headline.html:14 views/readers.py:139 +#, fuzzy, python-format +msgid "%(q_num)s question" +msgid_plural "%(q_num)s questions" +msgstr[0] "あたらしい質問" + +#: skins/default/templates/main_page/headline.html:17 +#, python-format +msgid "with %(author_name)s's contributions" +msgstr "" + +#: skins/default/templates/main_page/headline.html:28 +#, fuzzy +msgid "Search tips:" +msgstr "検索結果" + +#: skins/default/templates/main_page/headline.html:31 +#, fuzzy +msgid "reset author" +msgstr "作者にたずねる" + +#: skins/default/templates/main_page/headline.html:33 +#: skins/default/templates/main_page/headline.html:36 +#: 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:34 +#, fuzzy +msgid "reset tags" +msgstr "タグをみる" + +#: skins/default/templates/main_page/headline.html:37 +#: skins/default/templates/main_page/headline.html:40 +msgid "start over" +msgstr "" + +#: skins/default/templates/main_page/headline.html:42 +msgid " - to expand, or dig in by adding more tags and revising the query." +msgstr "" + +#: skins/default/templates/main_page/headline.html:45 +#, fuzzy +msgid "Search tip:" +msgstr "検索結果" + +#: skins/default/templates/main_page/headline.html:45 +msgid "add tags and a query to focus your search" +msgstr "" + +#: skins/default/templates/main_page/nothing_found.html:4 +#, fuzzy +msgid "There are no unanswered questions here" +msgstr "" +"
      %(num_q)s
      questions without " +"accepted answers" + +#: skins/default/templates/main_page/nothing_found.html:7 +#, fuzzy +msgid "No questions here. " +msgstr "お気に入りの質問" + +#: skins/default/templates/main_page/nothing_found.html:8 +msgid "Please star (bookmark) some questions or follow some users." +msgstr "" + +#: skins/default/templates/main_page/nothing_found.html:13 +msgid "You can expand your search by " +msgstr "" + +#: skins/default/templates/main_page/nothing_found.html:16 +#, fuzzy +msgid "resetting author" +msgstr "作者にたずねる" + +#: skins/default/templates/main_page/nothing_found.html:19 +#, fuzzy +msgid "resetting tags" +msgstr "興味あるタグ" + +#: skins/default/templates/main_page/nothing_found.html:22 +#: skins/default/templates/main_page/nothing_found.html:25 +msgid "starting over" +msgstr "" + +#: skins/default/templates/main_page/nothing_found.html:30 +#, fuzzy +msgid "Please always feel free to ask your question!" +msgstr "ぜひ、質問を投稿しましょう!" + +#: skins/default/templates/main_page/sidebar.html:8 +msgid "Contributors" +msgstr "" + +#: skins/default/templates/main_page/sidebar.html:25 +msgid "Related tags" +msgstr "タグ" + +#: skins/default/templates/main_page/tab_bar.html:5 +msgid "In:" +msgstr "" + +#: skins/default/templates/main_page/tab_bar.html:14 +#, fuzzy +msgid "see unanswered questions" +msgstr "未回答" + +#: skins/default/templates/main_page/tab_bar.html:20 +#, fuzzy +msgid "see your followed questions" +msgstr "ユーザのお気に入りの質問" + +#: skins/default/templates/main_page/tab_bar.html:21 +msgid "followed" +msgstr "" + +#: skins/default/templates/main_page/tab_bar.html:25 +msgid "Sort by:" +msgstr "" + +#: skins/default/templates/user_profile/user.html:13 +#, fuzzy, python-format +msgid "%(username)s's profile" +msgstr "ユーザプロファイル" + +#: skins/default/templates/user_profile/user_edit.html:4 +msgid "Edit user profile" +msgstr "ユーザープロファイルを編集する" + +#: skins/default/templates/user_profile/user_edit.html:7 +msgid "edit profile" +msgstr "プロファイルを編集する" + +#: skins/default/templates/user_profile/user_edit.html:17 +#: skins/default/templates/user_profile/user_info.html:15 +msgid "change picture" +msgstr "" + +#: skins/default/templates/user_profile/user_edit.html:20 +msgid "Registered user" +msgstr "登録ユーザー" + +#: skins/default/templates/user_profile/user_edit.html:27 +msgid "Screen Name" +msgstr "スクリーン名" + +#: skins/default/templates/user_profile/user_edit.html:83 +#: skins/default/templates/user_profile/user_email_subscriptions.html:21 +msgid "Update" +msgstr "更新する" + +#: skins/default/templates/user_profile/user_email_subscriptions.html:4 +#: skins/default/templates/user_profile/user_tabs.html:42 +#, fuzzy +msgid "subscriptions" +msgstr "メール登録設定" + +#: skins/default/templates/user_profile/user_email_subscriptions.html:7 +msgid "Email subscription settings" +msgstr "メール登録設定" + +#: skins/default/templates/user_profile/user_email_subscriptions.html:8 +msgid "email subscription settings info" +msgstr "" +"Adjust frequency of email updates. Receive " +"updates on interesting questions by email,
      help the community by answering questions of your colleagues. If you do not wish to " +"receive emails - select 'no email' on all items below.
      Updates are only " +"sent when there is any new activity on selected items." + +#: skins/default/templates/user_profile/user_email_subscriptions.html:22 +msgid "Stop sending email" +msgstr "電子メールを停止する" + +#: skins/default/templates/user_profile/user_favorites.html:4 +#: skins/default/templates/user_profile/user_tabs.html:27 +#, fuzzy +msgid "followed questions" +msgstr "すべての質問" + +#: skins/default/templates/user_profile/user_inbox.html:18 +#: skins/default/templates/user_profile/user_tabs.html:12 +msgid "inbox" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:34 +#, fuzzy +msgid "Sections:" +msgstr "設定" + +#: skins/default/templates/user_profile/user_inbox.html:38 +#, python-format +msgid "forum responses (%(re_count)s)" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:43 +#, python-format +msgid "flagged items (%(flag_count)s)" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:49 +#, fuzzy +msgid "select:" +msgstr "削除する" + +#: skins/default/templates/user_profile/user_inbox.html:51 +#, fuzzy +msgid "seen" +msgstr "最終活動" + +#: skins/default/templates/user_profile/user_inbox.html:52 +#, fuzzy +msgid "new" +msgstr "最新" + +#: skins/default/templates/user_profile/user_inbox.html:53 +#, fuzzy +msgid "none" +msgstr "銅賞" + +#: skins/default/templates/user_profile/user_inbox.html:54 +#, fuzzy +msgid "mark as seen" +msgstr "最終活動" + +#: skins/default/templates/user_profile/user_inbox.html:55 +#, fuzzy +msgid "mark as new" +msgstr "ベストアンサー印" + +#: skins/default/templates/user_profile/user_inbox.html:56 +msgid "dismiss" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:19 +msgid "remove" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:36 +msgid "update profile" +msgstr "プロファイルを更新する" + +#: skins/default/templates/user_profile/user_info.html:40 +msgid "manage login methods" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:53 +msgid "real name" +msgstr "実名" + +#: skins/default/templates/user_profile/user_info.html:58 +msgid "member for" +msgstr "登録日" + +#: skins/default/templates/user_profile/user_info.html:63 +msgid "last seen" +msgstr "最終活動" + +#: skins/default/templates/user_profile/user_info.html:69 +msgid "user website" +msgstr "ユーザーのウェブサイト" + +#: skins/default/templates/user_profile/user_info.html:75 +msgid "location" +msgstr "場所" + +#: skins/default/templates/user_profile/user_info.html:82 +msgid "age" +msgstr "年齢" + +#: skins/default/templates/user_profile/user_info.html:83 +msgid "age unit" +msgstr "歳" + +#: skins/default/templates/user_profile/user_info.html:90 +msgid "todays unused votes" +msgstr "今日の使われてない投票" + +#: skins/default/templates/user_profile/user_info.html:91 +msgid "votes left" +msgstr "消え去った投票" + +#: skins/default/templates/user_profile/user_moderate.html:4 +#: skins/default/templates/user_profile/user_tabs.html:48 +#, fuzzy +msgid "moderation" +msgstr "場所" + +#: skins/default/templates/user_profile/user_moderate.html:8 +#, python-format +msgid "%(username)s's current status is \"%(status)s\"" msgstr "" -#: skins/default/templates/authopenid/signin.html:30 -msgid "" -"Please add a more permanent login method by clicking one of the icons below, " -"to avoid logging in via email each time." +#: skins/default/templates/user_profile/user_moderate.html:11 +msgid "User status changed" msgstr "" -#: skins/default/templates/authopenid/signin.html:34 -msgid "" -"Click on one of the icons below to add a new login method or re-validate an " -"existing one." +#: skins/default/templates/user_profile/user_moderate.html:20 +#, fuzzy +msgid "Save" +msgstr "編集を保存する" + +#: skins/default/templates/user_profile/user_moderate.html:26 +#, python-format +msgid "Your current reputation is %(reputation)s points" msgstr "" -#: skins/default/templates/authopenid/signin.html:36 -msgid "" -"You don't have a method to log in right now, please add one or more by " -"clicking any of the icons below." +#: skins/default/templates/user_profile/user_moderate.html:28 +#, python-format +msgid "User's current reputation is %(reputation)s points" msgstr "" -#: skins/default/templates/authopenid/signin.html:39 -msgid "" -"Please check your email and visit the enclosed link to re-connect to your " -"account" +#: skins/default/templates/user_profile/user_moderate.html:32 +#, fuzzy +msgid "User reputation changed" +msgstr "徳" + +#: skins/default/templates/user_profile/user_moderate.html:39 +msgid "Subtract" msgstr "" -#: skins/default/templates/authopenid/signin.html:86 -msgid "Please enter your user name, then sign in" +#: skins/default/templates/user_profile/user_moderate.html:44 +#, python-format +msgid "Send message to %(username)s" msgstr "" -#: skins/default/templates/authopenid/signin.html:87 -#: skins/default/templates/authopenid/signin.html:109 -msgid "(or select another login method above)" +#: skins/default/templates/user_profile/user_moderate.html:45 +msgid "" +"An email will be sent to the user with 'reply-to' field set to your email " +"address. Please make sure that your address is entered correctly." msgstr "" -#: skins/default/templates/authopenid/signin.html:89 +#: skins/default/templates/user_profile/user_moderate.html:47 #, fuzzy -msgid "Sign in" -msgstr "サインアップする" +msgid "Message sent" +msgstr "メッセージ本文:" -#: skins/default/templates/authopenid/signin.html:107 +#: skins/default/templates/user_profile/user_moderate.html:65 #, fuzzy -msgid "Please enter your user name and password, then sign in" -msgstr "ユーザ名とパスワードを入力してください" +msgid "Send message" +msgstr "メッセージ:" -#: skins/default/templates/authopenid/signin.html:111 -msgid "Login failed, please try again" +#: skins/default/templates/user_profile/user_moderate.html:75 +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 "" -#: skins/default/templates/authopenid/signin.html:114 -msgid "Login name" -msgstr "ログイン名" +#: skins/default/templates/user_profile/user_moderate.html:78 +msgid "" +"Moderators have the same privileges as administrators, but cannot add or " +"remove user status of 'moderator' or 'administrator'." +msgstr "" -#: skins/default/templates/authopenid/signin.html:118 -msgid "Password" -msgstr "パスワード" +#: skins/default/templates/user_profile/user_moderate.html:81 +msgid "'Approved' status means the same as regular user." +msgstr "" -#: skins/default/templates/authopenid/signin.html:122 -msgid "Login" -msgstr "ログイン" +#: skins/default/templates/user_profile/user_moderate.html:84 +msgid "Suspended users can only edit or delete their own posts." +msgstr "" -#: skins/default/templates/authopenid/signin.html:129 -msgid "To change your password - please enter the new one twice, then submit" +#: skins/default/templates/user_profile/user_moderate.html:87 +msgid "" +"Blocked users can only login and send feedback to the site administrators." msgstr "" -#: skins/default/templates/authopenid/signin.html:132 -#, fuzzy -msgid "New password" -msgstr "パスワード" +#: skins/default/templates/user_profile/user_network.html:5 +#: skins/default/templates/user_profile/user_tabs.html:18 +msgid "network" +msgstr "" -#: skins/default/templates/authopenid/signin.html:137 -#, fuzzy -msgid "Please, retype" -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] "" -#: skins/default/templates/authopenid/signin.html:156 -msgid "Here are your current login methods" +#: skins/default/templates/user_profile/user_network.html:14 +#, fuzzy, python-format +msgid "Following %(count)s person" +msgid_plural "Following %(count)s people" +msgstr[0] "この質問をフォローする" + +#: skins/default/templates/user_profile/user_network.html:19 +msgid "" +"Your network is empty. Would you like to follow someone? - Just visit their " +"profiles and click \"follow\"" msgstr "" -#: skins/default/templates/authopenid/signin.html:160 -#, fuzzy -msgid "provider" -msgstr "あたらしいプロバイダーを追加する" +#: skins/default/templates/user_profile/user_network.html:21 +#, fuzzy, python-format +msgid "%(username)s's network is empty" +msgstr "ユーザプロファイル" -#: skins/default/templates/authopenid/signin.html:161 +#: skins/default/templates/user_profile/user_recent.html:4 +#: skins/default/templates/user_profile/user_tabs.html:31 #, fuzzy -msgid "last used" -msgstr "最終活動" - -#: skins/default/templates/authopenid/signin.html:162 -msgid "delete, if you like" -msgstr "" +msgid "activity" +msgstr "最近の活動" -#: skins/default/templates/authopenid/signin.html:187 -msgid "Still have trouble signing in?" +#: skins/default/templates/user_profile/user_recent.html:21 +#: skins/default/templates/user_profile/user_recent.html:28 +msgid "source" msgstr "" -#: skins/default/templates/authopenid/signin.html:192 -msgid "Please, enter your email address below and obtain a new key" +#: skins/default/templates/user_profile/user_reputation.html:4 +msgid "karma" msgstr "" -#: skins/default/templates/authopenid/signin.html:194 -msgid "Please, enter your email address below to recover your account" +#: skins/default/templates/user_profile/user_reputation.html:11 +msgid "Your karma change log." msgstr "" -#: skins/default/templates/authopenid/signin.html:197 -#, fuzzy -msgid "recover your account via email" -msgstr "あたらしいパスワードを設定する" - -#: skins/default/templates/authopenid/signin.html:208 -msgid "Send a new recovery key" +#: skins/default/templates/user_profile/user_reputation.html:13 +#, python-format +msgid "%(user_name)s's karma change log" msgstr "" -#: skins/default/templates/authopenid/signin.html:210 -#, fuzzy -msgid "Recover your account via email" -msgstr "あたらしいパスワードを設定する" - -#: skins/default/templates/authopenid/signin.html:221 -msgid "Why use OpenID?" -msgstr "なぜOpenIDをつかうのか?" - -#: skins/default/templates/authopenid/signin.html:224 -msgid "with openid it is easier" -msgstr "OpenIDをつかうと、あらたにユーザ名とパスワードを作る必要がありません。" +#: skins/default/templates/user_profile/user_stats.html:5 +#: skins/default/templates/user_profile/user_tabs.html:7 +msgid "overview" +msgstr "概略" -#: skins/default/templates/authopenid/signin.html:227 -msgid "reuse openid" -msgstr "すべてのOpenID対応ウェブサイトでおなじログインを安全に再利用できます。" +#: skins/default/templates/user_profile/user_stats.html:11 +#, fuzzy, python-format +msgid "%(counter)s Question" +msgid_plural "%(counter)s Questions" +msgstr[0] "" +"\n" +"%(counter)s個の質問\n" +" " -#: skins/default/templates/authopenid/signin.html:230 -msgid "openid is widely adopted" -msgstr "すでに多数のウェブサイトでOpenIDアカウントが利用されています。" +#: skins/default/templates/user_profile/user_stats.html:16 +#, python-format +msgid "%(counter)s Answer" +msgid_plural "%(counter)s Answers" +msgstr[0] "" -#: skins/default/templates/authopenid/signin.html:233 -msgid "openid is supported open standard" -msgstr "" -"OpenIDは、多くの組織がサポートしているオープンスタンダードに基づいています。" +#: skins/default/templates/user_profile/user_stats.html:24 +#, fuzzy, python-format +msgid "the answer has been voted for %(answer_score)s times" +msgstr "回答は %(vote_count)s 回投票されました" -#: skins/default/templates/authopenid/signin.html:237 -msgid "Find out more" -msgstr "より詳しく知るには" +#: skins/default/templates/user_profile/user_stats.html:24 +msgid "this answer has been selected as correct" +msgstr "この回答が妥当であると選ばれました" -#: skins/default/templates/authopenid/signin.html:238 -msgid "Get OpenID" -msgstr "OpenIDを取得する" +#: skins/default/templates/user_profile/user_stats.html:34 +#, python-format +msgid "(%(comment_count)s comment)" +msgid_plural "the answer has been commented %(comment_count)s times" +msgstr[0] "" -#: skins/default/templates/authopenid/signup_with_password.html:3 -msgid "Signup" -msgstr "サインアップする" +#: skins/default/templates/user_profile/user_stats.html:44 +#, python-format +msgid "%(cnt)s Vote" +msgid_plural "%(cnt)s Votes " +msgstr[0] "" -#: skins/default/templates/authopenid/signup_with_password.html:6 -msgid "Create login name and password" -msgstr "ログイン名とパスワードを作成する" +# msgid "{{cnt}} Vote" +# msgid_plural "{{cnt}} Votes" +# msgstr[0] "{{cnt}}個の投票" +#: skins/default/templates/user_profile/user_stats.html:50 +msgid "thumb up" +msgstr "イイネ" -#: skins/default/templates/authopenid/signup_with_password.html:8 -msgid "Traditional signup info" +#: skins/default/templates/user_profile/user_stats.html:51 +msgid "user has voted up this many times" msgstr "" -"If you prefer, create your forum login name and " -"password here. However, please keep in mind that we also support " -"OpenID login method. With OpenID you can " -"simply reuse your external login (e.g. Gmail or AOL) without ever sharing " -"your login details with anyone and having to remember yet another password." -#: skins/default/templates/authopenid/signup_with_password.html:24 -msgid "" -"Please read and type in the two words below to help us prevent automated " -"account creation." -msgstr "" +#: skins/default/templates/user_profile/user_stats.html:54 +msgid "thumb down" +msgstr "( ´ _ゝ`)" -#: skins/default/templates/authopenid/signup_with_password.html:26 -msgid "Create Account" -msgstr "アカウントを作成する" +#: skins/default/templates/user_profile/user_stats.html:55 +msgid "user voted down this many times" +msgstr "" -#: skins/default/templates/authopenid/signup_with_password.html:27 -msgid "or" -msgstr "もしくは" +#: skins/default/templates/user_profile/user_stats.html:63 +#, python-format +msgid "%(counter)s Tag" +msgid_plural "%(counter)s Tags" +msgstr[0] "" -#: skins/default/templates/authopenid/signup_with_password.html:28 -msgid "return to OpenID login" -msgstr "OpenID ログインに戻る" +#: skins/default/templates/user_profile/user_stats.html:99 +#, fuzzy, python-format +msgid "%(counter)s Badge" +msgid_plural "%(counter)s Badges" +msgstr[0] "" +"\n" +" %(counter)sバッジ\n" +" " -#: skins/default/templates/unused/email_base.html:8 +#: skins/default/templates/user_profile/user_stats.html:122 #, fuzzy -msgid "home" -msgstr "ホーム" - -#: skins/default/templates/unused/notarobot.html:3 -msgid "Please prove that you are a Human Being" -msgstr "" +msgid "Answer to:" +msgstr "回答" -#: skins/default/templates/unused/notarobot.html:10 -msgid "I am a Human Being" -msgstr "人間です" +#: skins/default/templates/user_profile/user_tabs.html:5 +msgid "User profile" +msgstr "ユーザープロファイル" -#: skins/default/templates/unused/question_counter_widget.html:78 -msgid "Please decide if you like this question or not by voting" +#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:772 +msgid "comments and answers to others questions" msgstr "" -#: skins/default/templates/unused/question_counter_widget.html:84 -msgid "" -"\n" -" vote\n" -" " -msgid_plural "" -"\n" -" votes\n" -" " -msgstr[0] "" -msgstr[1] "" - -#: skins/default/templates/unused/question_counter_widget.html:93 -#: skins/default/templates/unused/question_list.html:23 -#: skins/default/templates/unused/questions_ajax.html:27 -msgid "this answer has been accepted to be correct" +#: skins/default/templates/user_profile/user_tabs.html:16 +msgid "followers and followed users" msgstr "" -#: skins/default/templates/unused/question_counter_widget.html:99 -msgid "" -"\n" -" answer \n" -" " -msgid_plural "" -"\n" -" answers \n" -" " -msgstr[0] "" -msgstr[1] "" +#: skins/default/templates/user_profile/user_tabs.html:21 +msgid "graph of user reputation" +msgstr "Graph of user karma" -#: skins/default/templates/unused/question_counter_widget.html:111 -msgid "" -"\n" -" view\n" -" " -msgid_plural "" -"\n" -" views\n" -" " -msgstr[0] "" -msgstr[1] "" +#: skins/default/templates/user_profile/user_tabs.html:23 +msgid "reputation history" +msgstr "信用度履歴" -#: skins/default/templates/unused/question_list.html:15 +#: skins/default/templates/user_profile/user_tabs.html:25 #, fuzzy -msgid "" -"\n" -" vote\n" -" " -msgid_plural "" -"\n" -" votes\n" -" " -msgstr[0] "" -"\n" -"(一個のコメント)\n" -" " -msgstr[1] "" -"\n" -"(%(comment_count)s個のコメント)\n" -" " +msgid "questions that user is following" +msgstr "マッチした質問:" -#: skins/default/templates/unused/question_list.html:35 -#, fuzzy -msgid "" -"\n" -" answer \n" -" " -msgid_plural "" -"\n" -" answers \n" -" " -msgstr[0] "" -"\n" -" 回答:\n" -" " -msgstr[1] "" -"\n" -" %(counter)個の回答:\n" -" " +#: skins/default/templates/user_profile/user_tabs.html:29 +msgid "recent activity" +msgstr "最近の活動" -#: skins/default/templates/unused/question_list.html:47 -#, fuzzy -msgid "" -"\n" -" view\n" -" " -msgid_plural "" -"\n" -" views\n" -" " -msgstr[0] "" -"\n" -" 回答:\n" -" " -msgstr[1] "" -"\n" -" %(counter)個の回答:\n" -" " +#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:847 +msgid "user vote record" +msgstr "" + +#: skins/default/templates/user_profile/user_tabs.html:36 +msgid "casted votes" +msgstr "votes" -#: skins/default/templates/unused/question_summary_list_roll.html:13 -msgid "answers" -msgstr "回答" +#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:960 +msgid "email subscription settings" +msgstr "" + +#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:224 +#, fuzzy +msgid "moderate this user" +msgstr "このユーザーをモデレートする" -#: skins/default/templates/unused/question_summary_list_roll.html:14 +#: skins/default/templates/user_profile/user_votes.html:4 msgid "votes" msgstr "投票" -#: skins/default/templates/unused/question_summary_list_roll.html:15 -msgid "views" -msgstr "閲覧" - -#: templatetags/extra_filters.py:168 templatetags/extra_filters_jinja.py:234 +#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:240 msgid "no items in counter" msgstr "" -#: templatetags/extra_tags.py:155 views/readers.py:187 -#, python-format -msgid "%(badge_count)d %(badge_level)s badge" -msgid_plural "%(badge_count)d %(badge_level)s badges" -msgstr[0] "" -msgstr[1] "" - -#: templatetags/extra_tags.py:178 templatetags/extra_tags.py:225 -#: templatetags/extra_tags.py:229 -msgid "reputation points" -msgstr "徳" - -#: templatetags/extra_tags.py:221 -#, python-format -msgid "your karma is %(reputation)s" +#: utils/decorators.py:90 views/commands.py:112 views/commands.py:132 +msgid "Oops, apologies - there was some error" msgstr "" -#: templatetags/extra_tags.py:237 -#, fuzzy -msgid "badges: " -msgstr "バッジ" +#: utils/decorators.py:109 +msgid "Please login to post" +msgstr "" -#: utils/decorators.py:82 views/commands.py:132 views/commands.py:149 -msgid "Oops, apologies - there was some error" +#: utils/decorators.py:205 +msgid "Spam was detected on your post, sorry for if this is a mistake" msgstr "" #: utils/forms.py:32 @@ -5419,100 +6280,124 @@ msgstr "" "申し訳ありませんが、入力したパスワードは一致しませんでした。再度入力してくだ" "さい。" -#: utils/functions.py:63 -#, python-format -msgid "on %(date)s" -msgstr "" - -#: utils/functions.py:67 +#: utils/functions.py:74 msgid "2 days ago" msgstr "二日前" -#: utils/functions.py:69 +#: utils/functions.py:76 msgid "yesterday" msgstr "昨日" -#: utils/functions.py:71 +#: utils/functions.py:79 #, python-format msgid "%(hr)d hour ago" msgid_plural "%(hr)d hours ago" msgstr[0] "%(hr)d 時間前" -msgstr[1] "%(hr)d 時間前" -#: utils/functions.py:73 +#: utils/functions.py:85 #, python-format msgid "%(min)d min ago" msgid_plural "%(min)d mins ago" msgstr[0] "%(min)d 分前" -msgstr[1] "%(min)d 分前" -#: views/commands.py:42 +#: views/avatar_views.py:99 +msgid "Successfully uploaded a new avatar." +msgstr "" + +#: views/avatar_views.py:140 +msgid "Successfully updated your avatar." +msgstr "" + +#: views/avatar_views.py:180 +msgid "Successfully deleted the requested avatars." +msgstr "" + +#: views/commands.py:39 msgid "anonymous users cannot vote" msgstr "" -#: views/commands.py:62 +#: views/commands.py:59 msgid "Sorry you ran out of votes for today" msgstr "" -#: views/commands.py:68 +#: views/commands.py:65 #, python-format msgid "You have %(votes_left)s votes left for today" msgstr "" -#: views/commands.py:139 +#: views/commands.py:122 msgid "Sorry, but anonymous users cannot access the inbox" msgstr "" -#: views/commands.py:209 +#: views/commands.py:192 msgid "Sorry, something is not right here..." msgstr "" -#: views/commands.py:224 +#: views/commands.py:207 msgid "Sorry, but anonymous users cannot accept answers" msgstr "" -#: views/commands.py:305 +#: views/commands.py:288 #, python-format msgid "subscription saved, %(email)s needs validation, see %(details_url)s" msgstr "" "Your subscription is saved, but email address %(email)s needs to be " "validated, please see
      more details here" -#: views/commands.py:313 +#: views/commands.py:295 msgid "email update frequency has been set to daily" msgstr "メール更新頻度が日刊に設定されました。" -#: views/commands.py:371 -msgid "Bad request" +#: views/commands.py:400 +#, python-format +msgid "Tag subscription was canceled (undo)." +msgstr "" + +#: views/commands.py:409 +#, python-format +msgid "Please sign in to subscribe for: %(tags)s" msgstr "" -#: views/meta.py:58 +#: views/commands.py:542 +#, fuzzy +msgid "Please sign in to vote" +msgstr "ここにサインしてください:" + +#: views/meta.py:83 msgid "Q&A forum feedback" msgstr "QAフォーラムフィードバック" -#: views/meta.py:59 +#: views/meta.py:84 msgid "Thanks for the feedback!" msgstr "ご意見ありがとうございます!" -#: views/meta.py:69 +#: views/meta.py:92 msgid "We look forward to hearing your feedback! Please, give it next time :)" msgstr "" -#: views/readers.py:432 +#: views/readers.py:177 +#, python-format +msgid "%(badge_count)d %(badge_level)s badge" +msgid_plural "%(badge_count)d %(badge_level)s badges" +msgstr[0] "" + +#: views/readers.py:441 #, fuzzy -msgid "Sorry, this question has been deleted and is no longer accessible" +msgid "" +"Sorry, the comment you are looking for has been deleted and is no longer " +"accessible" msgstr "この質問はお気に入りとして選ばれました" -#: views/users.py:217 +#: views/users.py:225 #, fuzzy msgid "moderate user" msgstr "このユーザーをモデレートする" -#: views/users.py:401 +#: views/users.py:380 msgid "user profile" msgstr "ユーザプロファイル" -#: views/users.py:402 +#: views/users.py:381 msgid "user profile overview" msgstr "ユーザプロファイル概略" @@ -5524,85 +6409,443 @@ msgstr "最近のユーザの活動" msgid "profile - recent activity" msgstr "プロファイル:最近の活動" -#: views/users.py:754 +#: views/users.py:773 msgid "profile - responses" msgstr "プロファイル:応答" -#: views/users.py:819 +#: views/users.py:848 msgid "profile - votes" msgstr "プロファイル:投票" -#: views/users.py:857 +#: views/users.py:883 msgid "user reputation in the community" msgstr "徳" -#: views/users.py:858 +#: views/users.py:884 msgid "profile - user reputation" msgstr "プロファイル:徳" -#: views/users.py:886 +#: views/users.py:911 msgid "users favorite questions" msgstr "ユーザのお気に入りの質問" -#: views/users.py:887 +#: views/users.py:912 msgid "profile - favorite questions" msgstr "プロファイル:お気に入りの質問" -#: views/users.py:907 views/users.py:911 +#: views/users.py:932 views/users.py:936 msgid "changes saved" msgstr "変更が保存されました" -#: views/users.py:917 +#: views/users.py:942 msgid "email updates canceled" msgstr "メール更新がキャンセルされました" -#: views/users.py:929 +#: views/users.py:961 msgid "profile - email subscriptions" msgstr "プロファイル:メール登録など" -#: views/writers.py:56 +#: views/writers.py:58 msgid "Sorry, anonymous users cannot upload files" msgstr "" -#: views/writers.py:65 +#: views/writers.py:68 #, python-format msgid "allowed file types are '%(file_types)s'" msgstr "" -#: views/writers.py:88 +#: views/writers.py:91 #, fuzzy, python-format msgid "maximum upload file size is %(file_size)sK" msgstr "最大アップロードファイルサイズは %sK です。" -#: views/writers.py:96 +#: views/writers.py:99 #, fuzzy msgid "Error uploading file. Please contact the site administrator. Thank you." msgstr "" "ファイルアップロードエラー:サイト管理者に連絡してください。ご協力ありがとう" "ございます。" -#: views/writers.py:452 +#: views/writers.py:191 +#, fuzzy +msgid "Please log in to ask questions" +msgstr "ぜひ、質問を投稿しましょう!" + +#: views/writers.py:492 +#, fuzzy +msgid "Please log in to answer questions" +msgstr "未回答" + +#: views/writers.py:598 #, python-format msgid "" "Sorry, you appear to be logged out and cannot post comments. Please sign in." msgstr "" -#: views/writers.py:497 +#: views/writers.py:646 msgid "Sorry, anonymous users cannot edit comments" msgstr "" -#: views/writers.py:505 +#: views/writers.py:654 #, python-format msgid "" "Sorry, you appear to be logged out and cannot delete comments. Please sign in." msgstr "" -#: views/writers.py:526 +#: views/writers.py:675 msgid "sorry, we seem to have some technical difficulties" msgstr "" +#~ msgid "community wiki" +#~ msgstr "コミュニティー wiki" + +#~ msgid "Location" +#~ msgstr "場所" + +#, fuzzy +#~ msgid "Askbot" +#~ msgstr "QAとは" + +#~ msgid "allow only selected tags" +#~ msgstr "選択されたタグのみ" + +#~ msgid "First time here? Check out the FAQ!" +#~ msgstr "ここははじめてですか? FAQをチェックしましょう。" + +#, fuzzy +#~ msgid "newquestion/" +#~ msgstr "あたらしい質問" + +#, fuzzy +#~ msgid "newanswer/" +#~ msgstr "回答" + +#, fuzzy +#~ msgid "MyOpenid user name" +#~ msgstr "ユーザー名順" + +#~ msgid "Email verification subject line" +#~ msgstr "Verification Email from Q&A forum" + +#, fuzzy +#~ msgid "disciplined" +#~ msgstr "規律的" + +#, fuzzy +#~ msgid "Deleted own post with score of 3 or higher" +#~ msgstr "%s 以上のスコアの自身のポストを削除した" + +#, fuzzy +#~ msgid "peer-pressure" +#~ msgstr "同僚からのプレッシャー" + +#, fuzzy +#~ msgid "nice-answer" +#~ msgstr "ナイス回答" + +#, fuzzy +#~ msgid "nice-question" +#~ msgstr "あたらしい質問" + +#, fuzzy +#~ msgid "pundit" +#~ msgstr "評論家" + +#, fuzzy +#~ msgid "popular-question" +#~ msgstr "人気の質問" + +#, fuzzy +#~ msgid "citizen-patrol" +#~ msgstr "市民パトロール" + +#, fuzzy +#~ msgid "cleanup" +#~ msgstr "クリーンアップ" + +#, fuzzy +#~ msgid "critic" +#~ msgstr "批評家" + +#, fuzzy +#~ msgid "editor" +#~ msgstr "編集者" + +#, fuzzy +#~ msgid "organizer" +#~ msgstr "オーガナイザー" + +#, fuzzy +#~ msgid "scholar" +#~ msgstr "学者" + +#, fuzzy +#~ msgid "student" +#~ msgstr "生徒" + +#, fuzzy +#~ msgid "supporter" +#~ msgstr "サポーター" + +#, fuzzy +#~ msgid "teacher" +#~ msgstr "教師" + +#~ msgid "Answered first question with at least one up vote" +#~ msgstr "質問に最初に回答しつつ少なくとも一つの上げ投票した" + +#, fuzzy +#~ msgid "autobiographer" +#~ msgstr "自伝作家" + +#, fuzzy +#~ msgid "self-learner" +#~ msgstr "自習者" + +#, fuzzy +#~ msgid "great-answer" +#~ msgstr "偉大な回答" + +#, fuzzy +#~ msgid "Answer voted up 100 times" +#~ msgstr "Post Your Answer" + +#, fuzzy +#~ msgid "great-question" +#~ msgstr "偉大な質問" + +#, fuzzy +#~ msgid "Question voted up 100 times" +#~ msgstr "質問が %s 回上げ投票された" + +#, fuzzy +#~ msgid "stellar-question" +#~ msgstr "スター質問" + +#, fuzzy +#~ msgid "Question favorited by 100 users" +#~ msgstr "質問が %s ユーザのお気に入りになった" + +#, fuzzy +#~ msgid "famous-question" +#~ msgstr "著名な質問" + +#, fuzzy +#~ msgid "Asked a question with 10,000 views" +#~ msgstr "%s 回読まれた質問をした" + +#, fuzzy +#~ msgid "good-answer" +#~ msgstr "良い回答" + +#, fuzzy +#~ msgid "Answer voted up 25 times" +#~ msgstr "Post Your Answer" + +#, fuzzy +#~ msgid "good-question" +#~ msgstr "良い質問" + +#, fuzzy +#~ msgid "Question voted up 25 times" +#~ msgstr "質問が %s 回上げ投票された" + +#, fuzzy +#~ msgid "favorite-question" +#~ msgstr "お気に入りの質問" + +#, fuzzy +#~ msgid "civic-duty" +#~ msgstr "市民の義務" + +#~ msgid "Strunk & White" +#~ msgstr "「木下是清」" + +#, fuzzy +#~ msgid "strunk-and-white" +#~ msgstr "「木下是清」" + +#, fuzzy +#~ msgid "Generalist" +#~ msgstr "送信者は" + +#, fuzzy +#~ msgid "generalist" +#~ msgstr "送信者は" + +#, fuzzy +#~ msgid "expert" +#~ msgstr "レポートする" + +#, fuzzy +#~ msgid "notable-question" +#~ msgstr "卓越した質問" + +#, fuzzy +#~ msgid "Asked a question with 2,500 views" +#~ msgstr "%s 回読まれた質問をした" + +#, fuzzy +#~ msgid "enlightened" +#~ msgstr "よくわかっていらっしゃる" + +#, fuzzy +#~ msgid "guru" +#~ msgstr "導師" + +#, fuzzy +#~ msgid "Accepted answer and voted up 40 times" +#~ msgstr "回答が納得され、%s 回上げ投票された" + +#, fuzzy +#~ msgid "necromancer" +#~ msgstr "ネクロマンサー" + +#, fuzzy +#~ msgid "taxonomist" +#~ msgstr "体系学者" + +#~ msgid "About" +#~ msgstr "QAとは" + +#~ msgid "how to validate email title" +#~ msgstr "How to validate email and why?" + +#~ msgid "" +#~ "how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)" +#~ "s" +#~ msgstr "" +#~ "

      How? If you have just set or " +#~ "changed your email address - check your email and click the " +#~ "included link.
      The link contains a key generated specifically " +#~ "for you. You can also and check your " +#~ "email again.

      Why? Email " +#~ "validation is required to make sure that only you can post " +#~ "messages on your behalf and to minimize spam " +#~ "posts.
      With email you can subscribe for updates on " +#~ "the most interesting questions. Also, when you sign up for the first time " +#~ "- create a unique gravatar personal image.

      " + +#~ msgid "Sender is" +#~ msgstr "送信者は" + +#~ msgid "Message body:" +#~ msgstr "メッセージ本文:" + +#~ msgid "" +#~ "As a registered user you can login with your OpenID, log out of the site " +#~ "or permanently remove your account." +#~ msgstr "" +#~ "Clicking Logout will log you out from the forumbut will " +#~ "not sign you off from your OpenID provider.

      If you wish to sign off " +#~ "completely - please make sure to log out from your OpenID provider as " +#~ "well." + +#~ msgid "Logout now" +#~ msgstr "いまログアウトする" + +#~ msgid "mark this question as favorite (click again to cancel)" +#~ msgstr "この質問をお気に入りに登録する(再度クリックでキャンセル)" + +#~ msgid "" +#~ "remove favorite mark from this question (click again to restore mark)" +#~ msgstr "この質問をお気に入りからとりのぞく(再度クリックで再登録)" + +#~ msgid "see questions tagged '%(tag_name)s'" +#~ msgstr "'%(tag_name)s'タグづけられた質問をみる" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " %(q_num)s question\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " %(q_num)s questions\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "

      %(q_num)s

      question

      " + +#, fuzzy +#~ msgid "tagged" +#~ msgstr "再度タグ付け" + +#~ msgid "favorites" +#~ msgstr "お気に入り" + +#, fuzzy +#~ msgid "this questions was selected as favorite %(cnt)s time" +#~ msgid_plural "this questions was selected as favorite %(cnt)s times" +#~ msgstr[0] "この質問はお気に入りに選ばれました" + +#~ msgid "Login name" +#~ msgstr "ログイン名" + +#, fuzzy +#~ msgid "home" +#~ msgstr "ホーム" + +#~ msgid "I am a Human Being" +#~ msgstr "人間です" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " vote\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " votes\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "(%(comment_count)s個のコメント)\n" +#~ " " + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " answer \n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " answers \n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ " %(counter)個の回答:\n" +#~ " " + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " view\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " views\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ " %(counter)個の回答:\n" +#~ " " + +#~ msgid "views" +#~ msgstr "閲覧" + +#~ msgid "reputation points" +#~ msgstr "徳" + +#, fuzzy +#~ msgid "badges: " +#~ msgstr "バッジ" + #~ msgid "Your question and all of it's answers have been deleted" #~ msgstr "あなたの質問とその回答のすべては削除されました" @@ -5615,9 +6858,6 @@ msgstr "" #~ msgid "The question has been deleted" #~ msgstr "質問は削除されました" -#~ msgid "is not an answer to the question" -#~ msgstr "質問への回答になっていません" - #~ msgid "question" #~ msgstr "質問" @@ -5678,9 +6918,6 @@ msgstr "" #~ msgid "Change openid associated to your account" #~ msgstr "アカウントに紐づいたOpenIDを変更する" -#~ msgid "Delete account" -#~ msgstr "アカウントを消去する" - #~ msgid "Erase your username and all your data from website" #~ msgstr "ユーザ名とすべてのデータをウェブサイトから消去する" @@ -5749,12 +6986,6 @@ msgstr "" #~ msgid "hottest questions" #~ msgstr "ホットな質問" -#~ msgid "most voted questions" -#~ msgstr "投票の多い質問" - -#~ msgid "all questions" -#~ msgstr "すべての質問" - #~ msgid "welcome to website" #~ msgstr "ようこそ Q&A フォーラムへ" @@ -5867,9 +7098,6 @@ msgstr "" #~ msgid "most recently asked questions" #~ msgstr "最近尋ねられた質問" -#~ msgid "most recently updated questions" -#~ msgstr "最近更新された質問" - #~ msgid "Posted:" #~ msgstr "投稿日:" @@ -5891,50 +7119,37 @@ msgstr "" #~ "\n" #~ "
      %(q_num)s

      question tagged

      %(tagname)s

      " -#~ msgstr[1] "" -#~ "\n" -#~ "
      %(q_num)s

      questions tagged

      %(tagname)s
      " #~ msgid "" #~ "\n" -#~ " have total %(q_num)s questions containing %" -#~ "(searchtitle)s in full text\n" +#~ " have total %(q_num)s questions containing " +#~ "%(searchtitle)s in full text\n" #~ " " #~ msgid_plural "" #~ "\n" -#~ " have total %(q_num)s questions containing %" -#~ "(searchtitle)s in full text\n" +#~ " have total %(q_num)s questions containing " +#~ "%(searchtitle)s in full text\n" #~ " " #~ msgstr[0] "" #~ "\n" #~ "
      %(q_num)s

      question containing " #~ "%(searchtitle)s

      " -#~ msgstr[1] "" -#~ "\n" -#~ "
      %(q_num)s

      questions containing " -#~ "%(searchtitle)s

      " #~ msgid "" #~ "\n" -#~ " have total %(q_num)s questions containing %" -#~ "(searchtitle)s\n" +#~ " have total %(q_num)s questions containing " +#~ "%(searchtitle)s\n" #~ " " #~ msgid_plural "" #~ "\n" -#~ " have total %(q_num)s questions containing %" -#~ "(searchtitle)s\n" +#~ " have total %(q_num)s questions containing " +#~ "%(searchtitle)s\n" #~ " " #~ msgstr[0] "" #~ "\n" #~ "
      %(q_num)s

      question with title " #~ "containing %(searchtitle)s

      " -#~ msgstr[1] "" -#~ "\n" -#~ "
      %(q_num)s

      questions with title " -#~ "containing %(searchtitle)s

      " #~ msgid "" #~ "\n" @@ -5948,10 +7163,6 @@ msgstr "" #~ "\n" #~ "
      %(q_num)s

      question without an " #~ "accepted answer

      " -#~ msgstr[1] "" -#~ "\n" -#~ "
      %(q_num)s

      questions without an " -#~ "accepted answer

      " #~ msgid "Questions are sorted by the time of last update." #~ msgstr "最終更新時に質問はソートされてます。" @@ -5977,9 +7188,6 @@ msgstr "" #~ msgid "All tags matching query" #~ msgstr "クエリ:" -#~ msgid "questions matching" -#~ msgstr "マッチした質問:" - #~ msgid "authentication settings" #~ msgstr "認証設定" @@ -6013,10 +7221,6 @@ msgstr "" #~ "\n" #~ "1個の回答\n" #~ " " -#~ msgstr[1] "" -#~ "\n" -#~ "%(counter)s個の回答\n" -#~ " " #~ msgid "" #~ "\n" @@ -6030,10 +7234,6 @@ msgstr "" #~ "\n" #~ " 1個の投票\n" #~ " " -#~ msgstr[1] "" -#~ "\n" -#~ " %(cnt)s個の投票\n" -#~ " " #~ msgid "karma history" #~ msgstr "徳の履歴" @@ -6190,9 +7390,6 @@ msgstr "" #~ msgstr[0] "" #~ "\n" #~ "
      %(q_num)s

      question

      " -#~ msgstr[1] "" -#~ "\n" -#~ "
      %(q_num)s

      questions

      " #~ msgid "OSQA administration area" #~ msgstr "OSQA 管理エリア" @@ -6209,24 +7406,6 @@ msgstr "" #~ msgid "Administration menu" #~ msgstr "管理メニュー" -#~ msgid "Left %s comments" -#~ msgstr "%s 回コメントした" - -#, fuzzy -#~ msgid "Nice Question up votes" -#~ msgstr "Tags" - -#, fuzzy -#~ msgid "Good Question up votes" -#~ msgstr "Tags" - -#, fuzzy -#~ msgid "Great Question up votes" -#~ msgstr "Tags" - -#~ msgid "Follow this question" -#~ msgstr "この質問をフォローする" - #~ msgid "By Email:" #~ msgstr "電子メールで:" @@ -6243,9 +7422,6 @@ msgstr "" #~ msgid "By RSS:" #~ msgstr "RSSで:" -#~ msgid "Answers" -#~ msgstr "回答" - #~ msgid "Answers and Comments" #~ msgstr "回答とコメント" diff --git a/askbot/locale/ja/LC_MESSAGES/djangojs.mo b/askbot/locale/ja/LC_MESSAGES/djangojs.mo new file mode 100644 index 00000000..a0e8222d Binary files /dev/null and b/askbot/locale/ja/LC_MESSAGES/djangojs.mo differ diff --git a/askbot/locale/ja/LC_MESSAGES/djangojs.po b/askbot/locale/ja/LC_MESSAGES/djangojs.po new file mode 100644 index 00000000..9dc61083 --- /dev/null +++ b/askbot/locale/ja/LC_MESSAGES/djangojs.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: 0.7\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-10-08 02:28-0500\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: skins/default/media/js/post.js:532 +msgid "Follow" +msgstr "" + +#: skins/default/media/js/post.js:541 skins/default/media/js/post.js.py:550 +#, perl-format +msgid "%s follower" +msgid_plural "%s followers" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/media/js/post.js:546 +msgid "
      Following
      Unfollow
      " +msgstr "" + +#: skins/default/media/js/post.js:1613 +msgid "Please enter question title (>10 characters)" +msgstr "" + +#: skins/default/media/js/tag_selector.js:15 +msgid "Tag \"\" matches:" +msgstr "" + +#: skins/default/media/js/tag_selector.js:84 +#, perl-format +msgid "and %s more, not shown..." +msgstr "" + +#: skins/default/media/js/user.js:129 +msgid "Please signin to follow %(username)s" +msgstr "" + +#: skins/default/media/js/user.js:161 +#, perl-format +msgid "unfollow %s" +msgstr "" + +#: skins/default/media/js/user.js:164 +#, perl-format +msgid "following %s" +msgstr "" + +#: skins/default/media/js/user.js:170 +#, perl-format +msgid "follow %s" +msgstr "" diff --git a/askbot/locale/ko/LC_MESSAGES/django.mo b/askbot/locale/ko/LC_MESSAGES/django.mo new file mode 100644 index 00000000..5f175980 Binary files /dev/null and b/askbot/locale/ko/LC_MESSAGES/django.mo differ diff --git a/askbot/locale/ko/LC_MESSAGES/django.po b/askbot/locale/ko/LC_MESSAGES/django.po new file mode 100644 index 00000000..3095dfb4 --- /dev/null +++ b/askbot/locale/ko/LC_MESSAGES/django.po @@ -0,0 +1,6323 @@ +# English translation for CNPROG package. +# Copyright (C) 2009 Gang Chen, 2010 Askbot +# This file is distributed under the same license as the CNPROG package. +# Evgeny Fadeev , 2009. +# +msgid "" +msgstr "" +"Project-Id-Version: 0.7\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-10-08 02:28-0500\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Evgeny Fadeev \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: exceptions.py:13 +msgid "Sorry, but anonymous visitors cannot access this function" +msgstr "" + +#: feed.py:26 feed.py:100 +msgid " - " +msgstr "" + +#: feed.py:26 +msgid "Individual question feed" +msgstr "" + +#: feed.py:100 +msgid "latest questions" +msgstr "" + +#: forms.py:74 +msgid "select country" +msgstr "" + +#: forms.py:83 +msgid "Country" +msgstr "" + +#: forms.py:91 +msgid "Country field is required" +msgstr "" + +#: forms.py:104 skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:38 +#: skins/default/templates/blocks/question_edit_tips.html:43 +msgid "title" +msgstr "" + +#: forms.py:105 +msgid "please enter a descriptive title for your question" +msgstr "" + +#: forms.py:110 +msgid "title must be > 10 characters" +msgstr "" + +#: forms.py:119 +msgid "content" +msgstr "" + +#: forms.py:125 +msgid "question content must be > 10 characters" +msgstr "" + +#: forms.py:134 skins/default/templates/macros.html:660 +#: skins/default/templates/macros.html:672 +#: skins/default/templates/blocks/header.html:25 +msgid "tags" +msgstr "" + +#: forms.py:136 +msgid "" +"Tags are short keywords, with no spaces within. Up to five tags can be used." +msgstr "" + +#: forms.py:164 skins/default/templates/question_retag.html:58 +msgid "tags are required" +msgstr "" + +#: forms.py:173 +#, 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:181 +#, python-format +msgid "At least one of the following tags is required : %(tags)s" +msgstr "" + +#: forms.py:190 +#, 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:198 +msgid "use-these-chars-in-tags" +msgstr "" + +#: forms.py:233 +msgid "community wiki (karma is not awarded & many others can edit wiki post)" +msgstr "" + +#: forms.py:234 +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:250 +msgid "update summary:" +msgstr "" + +#: forms.py:251 +msgid "" +"enter a brief summary of your revision (e.g. fixed spelling, grammar, " +"improved style, this field is optional)" +msgstr "" + +#: forms.py:327 +msgid "Enter number of points to add or subtract" +msgstr "" + +#: forms.py:341 const/__init__.py:245 +msgid "approved" +msgstr "" + +#: forms.py:342 const/__init__.py:246 +msgid "watched" +msgstr "" + +#: forms.py:343 const/__init__.py:247 +msgid "suspended" +msgstr "" + +#: forms.py:344 const/__init__.py:248 +msgid "blocked" +msgstr "" + +#: forms.py:346 +msgid "administrator" +msgstr "" + +#: forms.py:347 const/__init__.py:244 +msgid "moderator" +msgstr "" + +#: forms.py:367 +msgid "Change status to" +msgstr "" + +#: forms.py:394 +msgid "which one?" +msgstr "" + +#: forms.py:415 +msgid "Cannot change own status" +msgstr "" + +#: forms.py:421 +msgid "Cannot turn other user to moderator" +msgstr "" + +#: forms.py:428 +msgid "Cannot change status of another moderator" +msgstr "" + +#: forms.py:434 +msgid "Cannot change status to admin" +msgstr "" + +#: forms.py:440 +#, python-format +msgid "" +"If you wish to change %(username)s's status, please make a meaningful " +"selection." +msgstr "" + +#: forms.py:449 +msgid "Subject line" +msgstr "" + +#: forms.py:456 +msgid "Message text" +msgstr "" + +#: forms.py:542 +msgid "Your name:" +msgstr "" + +#: forms.py:543 +msgid "Email (not shared with anyone):" +msgstr "" + +#: forms.py:544 +msgid "Your message:" +msgstr "" + +#: forms.py:581 +msgid "ask anonymously" +msgstr "" + +#: forms.py:583 +msgid "Check if you do not want to reveal your name when asking this question" +msgstr "" + +#: forms.py:743 +msgid "" +"You have asked this question anonymously, if you decide to reveal your " +"identity, please check this box." +msgstr "" + +#: forms.py:747 +msgid "reveal identity" +msgstr "" + +#: forms.py:805 +msgid "" +"Sorry, only owner of the anonymous question can reveal his or her identity, " +"please uncheck the box" +msgstr "" + +#: forms.py:818 +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:856 +msgid "this email will be linked to gravatar" +msgstr "" + +#: forms.py:863 +msgid "Real name" +msgstr "" + +#: forms.py:870 +msgid "Website" +msgstr "" + +#: forms.py:877 +msgid "City" +msgstr "" + +#: forms.py:886 +msgid "Show country" +msgstr "" + +#: forms.py:891 +msgid "Date of birth" +msgstr "" + +#: forms.py:892 +msgid "will not be shown, used to calculate age, format: YYYY-MM-DD" +msgstr "" + +#: forms.py:898 +msgid "Profile" +msgstr "" + +#: forms.py:907 +msgid "Screen name" +msgstr "" + +#: forms.py:938 forms.py:939 +msgid "this email has already been registered, please use another one" +msgstr "" + +#: forms.py:946 +msgid "Choose email tag filter" +msgstr "" + +#: forms.py:993 +msgid "Asked by me" +msgstr "" + +#: forms.py:996 +msgid "Answered by me" +msgstr "" + +#: forms.py:999 +msgid "Individually selected" +msgstr "" + +#: forms.py:1002 +msgid "Entire forum (tag filtered)" +msgstr "" + +#: forms.py:1006 +msgid "Comments and posts mentioning me" +msgstr "" + +#: forms.py:1085 +msgid "okay, let's try!" +msgstr "" + +#: forms.py:1086 +msgid "no community email please, thanks" +msgstr "no askbot email please, thanks" + +#: forms.py:1090 +msgid "please choose one of the options above" +msgstr "" + +#: urls.py:53 +msgid "about/" +msgstr "" + +#: urls.py:54 +msgid "faq/" +msgstr "" + +#: urls.py:55 +msgid "privacy/" +msgstr "" + +#: urls.py:57 urls.py:62 +msgid "answers/" +msgstr "" + +#: urls.py:57 urls.py:83 urls.py:198 +msgid "edit/" +msgstr "" + +#: urls.py:62 urls.py:113 +msgid "revisions/" +msgstr "" + +#: urls.py:68 urls.py:78 urls.py:83 urls.py:88 urls.py:93 urls.py:98 +#: urls.py:103 urls.py:108 urls.py:113 urls.py:285 +#: skins/default/templates/question.html:508 +msgid "questions/" +msgstr "" + +#: urls.py:78 +msgid "ask/" +msgstr "" + +#: urls.py:88 +msgid "retag/" +msgstr "" + +#: urls.py:93 +msgid "close/" +msgstr "" + +#: urls.py:98 +msgid "reopen/" +msgstr "" + +#: urls.py:103 +msgid "answer/" +msgstr "" + +#: urls.py:108 skins/default/templates/question.html:508 +msgid "vote/" +msgstr "" + +#: urls.py:144 +msgid "tags/" +msgstr "" + +#: urls.py:187 +msgid "subscribe-for-tags/" +msgstr "" + +#: urls.py:192 urls.py:198 urls.py:204 urls.py:212 +#: skins/default/templates/main_page/javascript.html:23 +msgid "users/" +msgstr "" + +#: urls.py:205 +msgid "subscriptions/" +msgstr "" + +#: urls.py:217 +msgid "users/update_has_custom_avatar/" +msgstr "" + +#: urls.py:222 urls.py:227 +msgid "badges/" +msgstr "" + +#: urls.py:232 +msgid "messages/" +msgstr "" + +#: urls.py:232 +msgid "markread/" +msgstr "" + +#: urls.py:248 +msgid "upload/" +msgstr "" + +#: urls.py:249 +msgid "feedback/" +msgstr "" + +#: urls.py:291 skins/default/templates/question.html:506 +#: skins/default/templates/main_page/javascript.html:22 +msgid "question/" +msgstr "" + +#: urls.py:298 setup_templates/settings.py:202 +#: skins/default/templates/authopenid/providers_javascript.html:7 +msgid "account/" +msgstr "" + +#: conf/badges.py:12 +msgid "Badge settings" +msgstr "" + +#: conf/badges.py:21 +msgid "Disciplined: minimum upvotes for deleted post" +msgstr "" + +#: conf/badges.py:30 +msgid "Peer Pressure: minimum downvotes for deleted post" +msgstr "" + +#: conf/badges.py:39 +msgid "Teacher: minimum upvotes for the answer" +msgstr "" + +#: conf/badges.py:48 +msgid "Nice Answer: minimum upvotes for the answer" +msgstr "" + +#: conf/badges.py:57 +msgid "Good Answer: minimum upvotes for the answer" +msgstr "" + +#: conf/badges.py:66 +msgid "Great Answer: minimum upvotes for the answer" +msgstr "" + +#: conf/badges.py:75 +msgid "Nice Question: minimum upvotes for the question" +msgstr "" + +#: conf/badges.py:84 +msgid "Good Question: minimum upvotes for the question" +msgstr "" + +#: conf/badges.py:93 +msgid "Great Question: minimum upvotes for the question" +msgstr "" + +#: conf/badges.py:102 +msgid "Popular Question: minimum views" +msgstr "" + +#: conf/badges.py:111 +msgid "Notable Question: minimum views" +msgstr "" + +#: conf/badges.py:120 +msgid "Famous Question: minimum views" +msgstr "" + +#: conf/badges.py:129 +msgid "Self-Learner: minimum answer upvotes" +msgstr "" + +#: conf/badges.py:138 +msgid "Civic Duty: minimum votes" +msgstr "" + +#: conf/badges.py:147 +msgid "Enlightened Duty: minimum upvotes" +msgstr "" + +#: conf/badges.py:156 +msgid "Guru: minimum upvotes" +msgstr "" + +#: conf/badges.py:165 +msgid "Necromancer: minimum upvotes" +msgstr "" + +#: conf/badges.py:174 +msgid "Necromancer: minimum delay in days" +msgstr "" + +#: conf/badges.py:183 +msgid "Associate Editor: minimum number of edits" +msgstr "" + +#: conf/badges.py:192 +msgid "Favorite Question: minimum stars" +msgstr "" + +#: conf/badges.py:201 +msgid "Stellar Question: minimum stars" +msgstr "" + +#: conf/badges.py:210 +msgid "Commentator: minimum comments" +msgstr "" + +#: conf/badges.py:219 +msgid "Taxonomist: minimum tag use count" +msgstr "" + +#: conf/badges.py:228 +msgid "Enthusiast: minimum days" +msgstr "" + +#: conf/email.py:14 +msgid "Email and email alert settings" +msgstr "" + +#: conf/email.py:22 +msgid "Prefix for the email subject line" +msgstr "Welcome to the Q&A forum" + +#: conf/email.py:24 +msgid "" +"This setting takes default from the django settingEMAIL_SUBJECT_PREFIX. A " +"value entered here will overridethe default." +msgstr "" + +#: conf/email.py:36 +msgid "Maximum number of news entries in an email alert" +msgstr "" + +#: conf/email.py:46 +msgid "Default news notification frequency" +msgstr "" + +#: conf/email.py:48 +msgid "" +"This option currently defines default frequency of emailed updates in the " +"following five categories: questions asked by user, answered by user, " +"individually selected, entire forum (per person tag filter applies) and " +"posts mentioning the user and comment responses" +msgstr "" + +#: conf/email.py:62 +msgid "Send periodic reminders about unanswered questions" +msgstr "" + +#: conf/email.py:64 +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) and an IMAP server with a dedicated inbox " +"must be configured " +msgstr "" + +#: conf/email.py:78 +msgid "Days before starting to send reminders about unanswered questions" +msgstr "" + +#: conf/email.py:89 +msgid "" +"How often to send unanswered question reminders (in days between the " +"reminders sent)." +msgstr "" + +#: conf/email.py:101 +msgid "Max. number of reminders to send about unanswered questions" +msgstr "" + +#: conf/email.py:113 +msgid "Require email verification before allowing to post" +msgstr "" + +#: conf/email.py:114 +msgid "" +"Active email verification is done by sending a verification key in email" +msgstr "" + +#: conf/email.py:123 +msgid "Allow only one account per email address" +msgstr "" + +#: conf/email.py:132 +msgid "Fake email for anonymous user" +msgstr "" + +#: conf/email.py:133 +msgid "Use this setting to control gravatar for email-less user" +msgstr "" + +#: conf/email.py:142 +#, fuzzy +msgid "Allow posting questions by email" +msgstr "" +"You are welcome to start submitting your question " +"anonymously. 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:144 +msgid "" +"Before enabling this setting - please fill out IMAP settings in the settings." +"py file" +msgstr "" + +#: conf/email.py:155 +msgid "Replace space in emailed tags with dash" +msgstr "" + +#: conf/email.py:157 +msgid "" +"This setting applies to tags written in the subject line of questions asked " +"by email" +msgstr "" + +#: conf/external_keys.py:10 +msgid "Keys to connect the site with external services like Facebook, etc." +msgstr "" + +#: conf/external_keys.py:18 +msgid "Google site verification key" +msgstr "" + +#: conf/external_keys.py:20 +#, python-format +msgid "" +"This key helps google index your site please obtain is at google webmasters tools site" +msgstr "" + +#: conf/external_keys.py:35 +msgid "Google Analytics key" +msgstr "" + +#: conf/external_keys.py:37 +#, python-format +msgid "" +"Obtain is at Google Analytics site, if you wish to " +"use Google Analytics to monitor your site" +msgstr "" + +#: conf/external_keys.py:50 +msgid "Enable recaptcha (keys below are required)" +msgstr "" + +#: conf/external_keys.py:59 +msgid "Recaptcha public key" +msgstr "" + +#: conf/external_keys.py:67 +msgid "Recaptcha private key" +msgstr "" + +#: conf/external_keys.py:69 +#, 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 %(url)s" +msgstr "" + +#: conf/external_keys.py:81 +msgid "Facebook public API key" +msgstr "" + +#: conf/external_keys.py:83 +#, python-format +msgid "" +"Facebook API key and Facebook secret allow to use Facebook Connect login " +"method at your site. Please obtain these keys at facebook create app site" +msgstr "" + +#: conf/external_keys.py:96 +msgid "Facebook secret key" +msgstr "" + +#: conf/external_keys.py:104 +msgid "Twitter consumer key" +msgstr "" + +#: conf/external_keys.py:106 +#, python-format +msgid "" +"Please register your forum at twitter applications site" +msgstr "" + +#: conf/external_keys.py:117 +msgid "Twitter consumer secret" +msgstr "" + +#: conf/external_keys.py:125 +msgid "LinkedIn consumer key" +msgstr "" + +#: conf/external_keys.py:127 +#, python-format +msgid "" +"Please register your forum at LinkedIn developer site" +msgstr "" + +#: conf/external_keys.py:138 +msgid "LinkedIn consumer secret" +msgstr "" + +#: conf/external_keys.py:146 +msgid "ident.ca consumer key" +msgstr "" + +#: conf/external_keys.py:148 +#, python-format +msgid "" +"Please register your forum at Identi.ca applications " +"site" +msgstr "" + +#: conf/external_keys.py:159 +msgid "ident.ca consumer secret" +msgstr "" + +#: conf/external_keys.py:167 +msgid "Use LDAP authentication for the password login" +msgstr "" + +#: conf/external_keys.py:176 +msgid "LDAP service provider name" +msgstr "" + +#: conf/external_keys.py:184 +msgid "URL for the LDAP service" +msgstr "" + +#: conf/external_keys.py:192 +msgid "Explain how to change LDAP password" +msgstr "" + +#: conf/flatpages.py:10 +msgid "Flatpages - about, privacy policy, etc." +msgstr "" + +#: conf/flatpages.py:17 +msgid "Text of the Q&A forum About page (html format)" +msgstr "" + +#: conf/flatpages.py:20 +msgid "" +"Save, then use HTML validator on " +"the \"about\" page to check your input." +msgstr "" + +#: conf/flatpages.py:30 +msgid "Text of the Q&A forum FAQ page (html format)" +msgstr "" + +#: conf/flatpages.py:33 +msgid "" +"Save, then use HTML validator on " +"the \"faq\" page to check your input." +msgstr "" + +#: conf/flatpages.py:44 +msgid "Text of the Q&A forum Privacy Policy (html format)" +msgstr "" + +#: conf/flatpages.py:47 +msgid "" +"Save, then use HTML validator on " +"the \"privacy\" page to check your input." +msgstr "" + +#: conf/forum_data_rules.py:11 +msgid "Data entry and display" +msgstr "" + +#: conf/forum_data_rules.py:20 +#, python-format +msgid "" +"Enable embedding videos. Note: please read read this first." +msgstr "" + +#: conf/forum_data_rules.py:31 +msgid "Check to enable community wiki feature" +msgstr "" + +#: conf/forum_data_rules.py:40 +msgid "Allow asking questions anonymously" +msgstr "" + +#: conf/forum_data_rules.py:42 +msgid "" +"Users do not accrue reputation for anonymous questions and their identity is " +"not revealed until they change their mind" +msgstr "" + +#: conf/forum_data_rules.py:54 +msgid "Allow posting before logging in" +msgstr "" + +#: conf/forum_data_rules.py:56 +msgid "" +"Check if you want to allow users start posting questions or answers before " +"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 "" + +#: conf/forum_data_rules.py:71 +#, fuzzy +msgid "Allow swapping answer with question" +msgstr "Post Your Answer" + +#: conf/forum_data_rules.py:73 +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 "" + +#: conf/forum_data_rules.py:85 +msgid "Maximum length of tag (number of characters)" +msgstr "" + +#: conf/forum_data_rules.py:93 +msgid "Mandatory tags" +msgstr "" + +#: conf/forum_data_rules.py:96 +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:108 +msgid "Force lowercase the tags" +msgstr "" + +#: conf/forum_data_rules.py:110 +msgid "" +"Attention: after checking this, please back up the database, and run a " +"management command: python manage.py fix_question_tags to " +"globally rename the tags" +msgstr "" + +#: conf/forum_data_rules.py:124 +msgid "Format of tag list" +msgstr "" + +#: conf/forum_data_rules.py:126 +msgid "" +"Select the format to show tags in, either as a simple list, or as a tag cloud" +msgstr "" + +#: conf/forum_data_rules.py:138 +#, fuzzy +msgid "Use wildcard tags" +msgstr "Tags" + +#: conf/forum_data_rules.py:140 +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:153 +msgid "Default max number of comments to display under posts" +msgstr "" + +#: conf/forum_data_rules.py:164 +#, python-format +msgid "Maximum comment length, must be < %(max_len)s" +msgstr "" + +#: conf/forum_data_rules.py:174 +msgid "Limit time to edit comments" +msgstr "" + +#: conf/forum_data_rules.py:176 +msgid "If unchecked, there will be no time limit to edit the comments" +msgstr "" + +#: conf/forum_data_rules.py:187 +msgid "Minutes allowed to edit a comment" +msgstr "" + +#: conf/forum_data_rules.py:188 +msgid "To enable this setting, check the previous one" +msgstr "" + +#: conf/forum_data_rules.py:197 +msgid "Save comment by pressing key" +msgstr "" + +#: conf/forum_data_rules.py:206 +msgid "Minimum length of search term for Ajax search" +msgstr "" + +#: conf/forum_data_rules.py:207 +msgid "Must match the corresponding database backend setting" +msgstr "" + +#: conf/forum_data_rules.py:216 +msgid "Do not make text query sticky in search" +msgstr "" + +#: conf/forum_data_rules.py:218 +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:231 +msgid "Maximum number of tags per question" +msgstr "" + +#: conf/forum_data_rules.py:243 +msgid "Number of questions to list by default" +msgstr "" + +#: conf/forum_data_rules.py:253 +msgid "What should \"unanswered question\" mean?" +msgstr "" + +#: conf/license.py:12 +msgid "License settings" +msgstr "" + +#: conf/license.py:19 +msgid "Show license clause in the site footer" +msgstr "" + +#: conf/license.py:28 +msgid "Short name for the license" +msgstr "" + +#: conf/license.py:37 +msgid "Full name of the license" +msgstr "" + +#: conf/license.py:38 +msgid "Creative Commons Attribution Share Alike 3.0" +msgstr "" + +#: conf/license.py:46 +msgid "Add link to the license page" +msgstr "" + +#: conf/license.py:55 +msgid "License homepage" +msgstr "" + +#: conf/license.py:57 +msgid "URL of the official page with all the license legal clauses" +msgstr "" + +#: conf/license.py:67 +msgid "Use license logo" +msgstr "" + +#: conf/license.py:76 +msgid "License logo image" +msgstr "" + +#: conf/login_providers.py:12 +msgid "Login provider setings" +msgstr "" + +#: conf/login_providers.py:20 +msgid "" +"Show alternative login provider buttons on the password \"Sign Up\" page" +msgstr "" + +#: conf/login_providers.py:29 +msgid "Always display local login form and hide \"Askbot\" button." +msgstr "" + +#: conf/login_providers.py:38 +msgid "Activate to allow login with self-hosted wordpress site" +msgstr "" + +#: conf/login_providers.py:39 +msgid "" +"to activate this feature you must fill out the wordpress xml-rpc setting " +"bellow" +msgstr "" + +#: conf/login_providers.py:48 +msgid "" +"Fill it with the wordpress url to the xml-rpc, normally http://mysite.com/" +"xmlrpc.php" +msgstr "" + +#: conf/login_providers.py:49 +msgid "" +"To enable, go to Settings->Writing->Remote Publishing and check the box for " +"XML-RPC" +msgstr "" + +#: conf/login_providers.py:60 +msgid "Upload your icon" +msgstr "" + +#: conf/login_providers.py:90 +#, python-format +msgid "Activate %(provider)s login" +msgstr "" + +#: conf/login_providers.py:95 +#, python-format +msgid "" +"Note: to really enable %(provider)s login some additional parameters will " +"need to be set in the \"External keys\" section" +msgstr "" + +#: conf/markup.py:14 +msgid "Markup formatting" +msgstr "" + +#: conf/markup.py:39 +msgid "Enable code-friendly Markdown" +msgstr "" + +#: conf/markup.py:41 +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 " +"\"MathJax support\" implicitly turns this feature on, because underscores " +"are heavily used in LaTeX input." +msgstr "" + +#: conf/markup.py:56 +msgid "Mathjax support (rendering of LaTeX)" +msgstr "" + +#: conf/markup.py:58 +#, python-format +msgid "" +"If you enable this feature, mathjax must be " +"installed on your server in its own directory." +msgstr "" + +#: conf/markup.py:72 +msgid "Base url of MathJax deployment" +msgstr "" + +#: conf/markup.py:74 +msgid "" +"Note - MathJax is not included with askbot - 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 "" + +#: conf/markup.py:89 +msgid "Enable autolinking with specific patterns" +msgstr "" + +#: conf/markup.py:91 +msgid "" +"If you enable this feature, the application will be able to detect patterns " +"and auto link to URLs" +msgstr "" + +#: conf/markup.py:104 +msgid "Regexes to detect the link patterns" +msgstr "" + +#: conf/markup.py:106 +msgid "" +"Enter valid regular expressions for the patters, one per line. For example " +"to detect a bug pattern like #bug123, use the following regex: #bug(\\d+). " +"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 "" + +#: conf/markup.py:125 +msgid "URLs for autolinking" +msgstr "" + +#: conf/markup.py:127 +msgid "" +"Here, please enter url templates for the patterns entered in the previous " +"setting, also one entry per line. Make sure that number of lines in " +"this setting and the previous one are the same 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 "" + +#: conf/minimum_reputation.py:11 +msgid "Minimum reputation required to perform actions" +msgstr "" + +#: conf/minimum_reputation.py:20 +msgid "Upvote" +msgstr "" + +#: conf/minimum_reputation.py:29 +msgid "Downvote" +msgstr "" + +#: conf/minimum_reputation.py:38 +#, fuzzy +msgid "Answer own question immediately" +msgstr "Post Your Answer" + +#: conf/minimum_reputation.py:47 +msgid "Accept own answer" +msgstr "" + +#: conf/minimum_reputation.py:56 +msgid "Flag offensive" +msgstr "" + +#: conf/minimum_reputation.py:65 +msgid "Leave comments" +msgstr "" + +#: conf/minimum_reputation.py:74 +msgid "Delete comments posted by others" +msgstr "" + +#: conf/minimum_reputation.py:83 +msgid "Delete questions and answers posted by others" +msgstr "" + +#: conf/minimum_reputation.py:92 +msgid "Upload files" +msgstr "" + +#: conf/minimum_reputation.py:101 +msgid "Close own questions" +msgstr "" + +#: conf/minimum_reputation.py:110 +msgid "Retag questions posted by other people" +msgstr "" + +#: conf/minimum_reputation.py:119 +msgid "Reopen own questions" +msgstr "" + +#: conf/minimum_reputation.py:128 +msgid "Edit community wiki posts" +msgstr "" + +#: conf/minimum_reputation.py:137 +msgid "Edit posts authored by other people" +msgstr "" + +#: conf/minimum_reputation.py:146 +msgid "View offensive flags" +msgstr "" + +#: conf/minimum_reputation.py:155 +msgid "Close questions asked by others" +msgstr "" + +#: conf/minimum_reputation.py:164 +msgid "Lock posts" +msgstr "" + +#: conf/minimum_reputation.py:173 +msgid "Remove rel=nofollow from own homepage" +msgstr "" + +#: conf/minimum_reputation.py:175 +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 "" + +#: conf/reputation_changes.py:12 +msgid "Reputation loss and gain rules" +msgstr "" + +#: conf/reputation_changes.py:21 +msgid "Maximum daily reputation gain per user" +msgstr "" + +#: conf/reputation_changes.py:30 +msgid "Gain for receiving an upvote" +msgstr "" + +#: conf/reputation_changes.py:39 +msgid "Gain for the author of accepted answer" +msgstr "" + +#: conf/reputation_changes.py:48 +msgid "Gain for accepting best answer" +msgstr "" + +#: conf/reputation_changes.py:57 +msgid "Gain for post owner on canceled downvote" +msgstr "" + +#: conf/reputation_changes.py:66 +msgid "Gain for voter on canceling downvote" +msgstr "" + +#: conf/reputation_changes.py:76 +msgid "Loss for voter for canceling of answer acceptance" +msgstr "" + +#: conf/reputation_changes.py:86 +msgid "Loss for author whose answer was \"un-accepted\"" +msgstr "" + +#: conf/reputation_changes.py:96 +msgid "Loss for giving a downvote" +msgstr "" + +#: conf/reputation_changes.py:106 +msgid "Loss for owner of post that was flagged offensive" +msgstr "" + +#: conf/reputation_changes.py:116 +msgid "Loss for owner of post that was downvoted" +msgstr "" + +#: conf/reputation_changes.py:126 +msgid "Loss for owner of post that was flagged 3 times per same revision" +msgstr "" + +#: conf/reputation_changes.py:136 +msgid "Loss for owner of post that was flagged 5 times per same revision" +msgstr "" + +#: conf/reputation_changes.py:146 +msgid "Loss for post owner when upvote is canceled" +msgstr "" + +#: conf/sidebar_main.py:11 +msgid "Sidebar widget settings - main page" +msgstr "" + +#: conf/sidebar_main.py:18 conf/sidebar_profile.py:18 +#: conf/sidebar_question.py:18 +msgid "Custom sidebar header" +msgstr "" + +#: conf/sidebar_main.py:21 conf/sidebar_profile.py:21 +#: conf/sidebar_question.py:21 +msgid "" +"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." +msgstr "" + +#: conf/sidebar_main.py:34 +msgid "Show avatar block in sidebar" +msgstr "" + +#: conf/sidebar_main.py:36 +msgid "Uncheck this if you want to hide the avatar block from the sidebar " +msgstr "" + +#: conf/sidebar_main.py:47 +msgid "Limit how many avatars will be displayed on the sidebar" +msgstr "" + +#: conf/sidebar_main.py:57 +msgid "Show tag selector in sidebar" +msgstr "" + +#: conf/sidebar_main.py:59 +msgid "" +"Uncheck this if you want to hide the options for choosing interesting and " +"ignored tags " +msgstr "" + +#: conf/sidebar_main.py:70 +msgid "Show tag list/cloud in sidebar" +msgstr "" + +#: conf/sidebar_main.py:72 +msgid "" +"Uncheck this if you want to hide the tag cloud or tag list from the sidebar " +msgstr "" + +#: conf/sidebar_main.py:83 conf/sidebar_profile.py:34 +#: conf/sidebar_question.py:74 +msgid "Custom sidebar footer" +msgstr "" + +#: conf/sidebar_main.py:86 conf/sidebar_profile.py:37 +#: conf/sidebar_question.py:77 +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 "" + +#: conf/sidebar_profile.py:11 +msgid "Sidebar widget settings - profile page" +msgstr "" + +#: conf/sidebar_question.py:11 +msgid "Sidebar widget settings - question page" +msgstr "" + +#: conf/sidebar_question.py:34 +msgid "Show tag list in sidebar" +msgstr "" + +#: conf/sidebar_question.py:36 +msgid "Uncheck this if you want to hide the tag list from the sidebar " +msgstr "" + +#: conf/sidebar_question.py:47 +msgid "Show meta information in sidebar" +msgstr "" + +#: conf/sidebar_question.py:49 +msgid "" +"Uncheck this if you want to hide the meta information about the question " +"(post date, views, last updated). " +msgstr "" + +#: conf/sidebar_question.py:61 +msgid "Show related questions in sidebar" +msgstr "" + +#: conf/sidebar_question.py:63 +msgid "Uncheck this if you want to hide the list of related questions. " +msgstr "" + +#: conf/site_modes.py:63 +msgid "Site modes" +msgstr "" + +#: conf/site_modes.py:72 +msgid "Activate a \"Bootstrap\" mode" +msgstr "" + +#: conf/site_modes.py:74 +msgid "" +"Bootstrap mode lowers reputation and certain badge thresholds, to values, " +"more suitable for the smaller communities, WARNING: your " +"current value for Minimum reputation, Bagde Settings and Vote Rules will be " +"changed after you modify this setting." +msgstr "" + +#: conf/site_settings.py:11 +msgid "Q&A forum website parameters and urls" +msgstr "" + +#: conf/site_settings.py:19 +msgid "Site title for the Q&A forum" +msgstr "" + +#: conf/site_settings.py:28 +msgid "Comma separated list of Q&A site keywords" +msgstr "" + +#: conf/site_settings.py:37 +msgid "Copyright message to show in the footer" +msgstr "" + +#: conf/site_settings.py:47 +msgid "Site description for the search engines" +msgstr "" + +#: conf/site_settings.py:56 +msgid "Short name for your Q&A forum" +msgstr "" + +#: conf/site_settings.py:66 +msgid "Base URL for your Q&A forum, must start with http or https" +msgstr "" + +#: conf/site_settings.py:77 +msgid "Check to enable greeting for anonymous user" +msgstr "" + +#: conf/site_settings.py:88 +msgid "Text shown in the greeting message shown to the anonymous user" +msgstr "" + +#: conf/site_settings.py:92 +msgid "Use HTML to format the message " +msgstr "" + +#: conf/site_settings.py:101 +msgid "Feedback site URL" +msgstr "" + +#: conf/site_settings.py:103 +msgid "If left empty, a simple internal feedback form will be used instead" +msgstr "" + +#: conf/skin_counter_settings.py:11 +msgid "Skin: view, vote and answer counters" +msgstr "" + +#: conf/skin_counter_settings.py:19 +msgid "Vote counter value to give \"full color\"" +msgstr "" + +#: conf/skin_counter_settings.py:29 +msgid "Background color for votes = 0" +msgstr "" + +#: conf/skin_counter_settings.py:30 conf/skin_counter_settings.py:41 +#: conf/skin_counter_settings.py:52 conf/skin_counter_settings.py:62 +#: conf/skin_counter_settings.py:72 conf/skin_counter_settings.py:85 +#: conf/skin_counter_settings.py:106 conf/skin_counter_settings.py:117 +#: conf/skin_counter_settings.py:128 conf/skin_counter_settings.py:138 +#: conf/skin_counter_settings.py:148 conf/skin_counter_settings.py:163 +#: conf/skin_counter_settings.py:186 conf/skin_counter_settings.py:196 +#: conf/skin_counter_settings.py:206 conf/skin_counter_settings.py:216 +#: conf/skin_counter_settings.py:228 conf/skin_counter_settings.py:239 +#: conf/skin_counter_settings.py:252 conf/skin_counter_settings.py:262 +msgid "HTML color name or hex value" +msgstr "" + +#: conf/skin_counter_settings.py:40 +msgid "Foreground color for votes = 0" +msgstr "" + +#: conf/skin_counter_settings.py:51 +msgid "Background color for votes" +msgstr "" + +#: conf/skin_counter_settings.py:61 +msgid "Foreground color for votes" +msgstr "" + +#: conf/skin_counter_settings.py:71 +msgid "Background color for votes = MAX" +msgstr "" + +#: conf/skin_counter_settings.py:84 +msgid "Foreground color for votes = MAX" +msgstr "" + +#: conf/skin_counter_settings.py:95 +msgid "View counter value to give \"full color\"" +msgstr "" + +#: conf/skin_counter_settings.py:105 +msgid "Background color for views = 0" +msgstr "" + +#: conf/skin_counter_settings.py:116 +msgid "Foreground color for views = 0" +msgstr "" + +#: conf/skin_counter_settings.py:127 +msgid "Background color for views" +msgstr "" + +#: conf/skin_counter_settings.py:137 +msgid "Foreground color for views" +msgstr "" + +#: conf/skin_counter_settings.py:147 +msgid "Background color for views = MAX" +msgstr "" + +#: conf/skin_counter_settings.py:162 +msgid "Foreground color for views = MAX" +msgstr "" + +#: conf/skin_counter_settings.py:173 +msgid "Answer counter value to give \"full color\"" +msgstr "" + +#: conf/skin_counter_settings.py:185 +msgid "Background color for answers = 0" +msgstr "" + +#: conf/skin_counter_settings.py:195 +msgid "Foreground color for answers = 0" +msgstr "" + +#: conf/skin_counter_settings.py:205 +msgid "Background color for answers" +msgstr "" + +#: conf/skin_counter_settings.py:215 +msgid "Foreground color for answers" +msgstr "" + +#: conf/skin_counter_settings.py:227 +msgid "Background color for answers = MAX" +msgstr "" + +#: conf/skin_counter_settings.py:238 +msgid "Foreground color for answers = MAX" +msgstr "" + +#: conf/skin_counter_settings.py:251 +msgid "Background color for accepted" +msgstr "" + +#: conf/skin_counter_settings.py:261 +msgid "Foreground color for accepted answer" +msgstr "" + +#: conf/skin_general_settings.py:14 +msgid "Skin and User Interface settings" +msgstr "" + +#: conf/skin_general_settings.py:21 +msgid "Q&A site logo" +msgstr "" + +#: conf/skin_general_settings.py:23 +msgid "To change the logo, select new file, then submit this whole form." +msgstr "" + +#: conf/skin_general_settings.py:37 +msgid "Show logo" +msgstr "" + +#: 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 +msgid "Site favicon" +msgstr "" + +#: 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 this page." +msgstr "" + +#: conf/skin_general_settings.py:71 +msgid "Password login button" +msgstr "" + +#: conf/skin_general_settings.py:73 +msgid "" +"An 88x38 pixel image that is used on the login screen for the password login " +"button." +msgstr "" + +#: conf/skin_general_settings.py:88 +msgid "Show all UI functions to all users" +msgstr "" + +#: conf/skin_general_settings.py:90 +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:105 +msgid "Select skin" +msgstr "" + +#: conf/skin_general_settings.py:116 +msgid "Customize HTML " +msgstr "" + +#: conf/skin_general_settings.py:125 +msgid "Custom portion of the HTML " +msgstr "" + +#: conf/skin_general_settings.py:127 +msgid "" +"To use this option, check \"Customize HTML <HEAD>\" " +"above. Contents of this box will be inserted into the <HEAD> portion " +"of the HTML output, where elements such as <script>, <link>, <" +"meta> may be added. Please, keep in mind that adding external javascript " +"to the <HEAD> 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. Note: if you do use this setting, " +"please test the site with the W3C HTML validator service." +msgstr "" + +#: conf/skin_general_settings.py:149 +msgid "Custom header additions" +msgstr "" + +#: conf/skin_general_settings.py:151 +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 " +"headerin the HTML format. When customizing the site header (as well as " +"footer and the HTML <HEAD>), use the HTML validation service to make " +"sure that your input is valid and works well in all browsers." +msgstr "" + +#: conf/skin_general_settings.py:166 +msgid "Site footer mode" +msgstr "" + +#: conf/skin_general_settings.py:168 +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:185 +msgid "Custom footer (HTML format)" +msgstr "" + +#: conf/skin_general_settings.py:187 +msgid "" +"To enable this function, please select option 'customize' " +"in the \"Site footer mode\" above. Use this area to enter contents of the " +"footer in the HTML format. When customizing the site footer (as well as the " +"header and HTML <HEAD>), use the HTML validation service to make sure " +"that your input is valid and works well in all browsers." +msgstr "" + +#: conf/skin_general_settings.py:202 +msgid "Apply custom style sheet (CSS)" +msgstr "" + +#: conf/skin_general_settings.py:204 +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:216 +msgid "Custom style sheet (CSS)" +msgstr "" + +#: conf/skin_general_settings.py:218 +msgid "" +"To use this function, 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 \"<forum url>/custom.css\", where the \"<forum url> part " +"depends (default is empty string) on the url configuration in your urls.py." +msgstr "" + +#: conf/skin_general_settings.py:234 +msgid "Add custom javascript" +msgstr "" + +#: conf/skin_general_settings.py:237 +msgid "Check to enable javascript that you can enter in the next field" +msgstr "" + +#: conf/skin_general_settings.py:247 +msgid "Custom javascript" +msgstr "" + +#: conf/skin_general_settings.py:249 +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 \"<forum url>/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 (to " +"enable your custom code, check \"Add custom javascript\" option " +"above)." +msgstr "" + +#: conf/skin_general_settings.py:267 +msgid "Skin media revision number" +msgstr "" + +#: conf/skin_general_settings.py:269 +msgid "Will be set automatically but you can modify it if necessary." +msgstr "" + +#: conf/skin_general_settings.py:280 +msgid "Hash to update the media revision number automatically." +msgstr "" + +#: conf/skin_general_settings.py:284 +msgid "Will be set automatically, it is not necesary to modify manually." +msgstr "" + +#: conf/social_sharing.py:10 +msgid "Sharing content on social networks" +msgstr "" + +#: conf/social_sharing.py:18 +msgid "Check to enable sharing of questions on Twitter" +msgstr "" + +#: conf/social_sharing.py:27 +msgid "Check to enable sharing of questions on Facebook" +msgstr "" + +#: conf/social_sharing.py:36 +msgid "Check to enable sharing of questions on LinkedIn" +msgstr "" + +#: conf/social_sharing.py:45 +msgid "Check to enable sharing of questions on Identi.ca" +msgstr "" + +#: conf/social_sharing.py:54 +msgid "Check to enable sharing of questions on Google+" +msgstr "" + +#: conf/spam_and_moderation.py:9 +msgid "Spam control and content moderation" +msgstr "" + +#: conf/spam_and_moderation.py:16 +msgid "Enable Akismet spam detection(keys below are required)" +msgstr "" + +#: conf/spam_and_moderation.py:19 +#, python-format +msgid "To get an Akismet key please visit Akismet site" +msgstr "" + +#: conf/spam_and_moderation.py:29 +msgid "Akismet key for spam detection" +msgstr "" + +#: conf/user_settings.py:11 +#, fuzzy +msgid "User settings" +msgstr "User login" + +#: conf/user_settings.py:19 +msgid "Allow editing user screen name" +msgstr "" + +#: conf/user_settings.py:28 +msgid "Allow account recovery by email" +msgstr "" + +#: conf/user_settings.py:37 +msgid "Allow adding and removing login methods" +msgstr "" + +#: conf/user_settings.py:47 +msgid "Minimum allowed length for screen name" +msgstr "" + +#: conf/user_settings.py:57 +msgid "Default Gravatar icon type" +msgstr "" + +#: conf/user_settings.py:59 +msgid "" +"This option allows you to set the default avatar type for email addresses " +"without associated gravatar images. For more information, please visit this page." +msgstr "" + +#: conf/user_settings.py:69 +msgid "Name for the Anonymous user" +msgstr "" + +#: conf/vote_rules.py:13 +msgid "Limits applicable to votes and moderation flags" +msgstr "" + +#: conf/vote_rules.py:22 +msgid "Number of votes a user can cast per day" +msgstr "" + +#: conf/vote_rules.py:31 +msgid "Maximum number of flags per user per day" +msgstr "" + +#: conf/vote_rules.py:40 +msgid "Threshold for warning about remaining daily votes" +msgstr "" + +#: conf/vote_rules.py:49 +msgid "Number of days to allow canceling votes" +msgstr "" + +#: conf/vote_rules.py:58 +msgid "Number of days required before answering own question" +msgstr "" + +#: conf/vote_rules.py:67 +msgid "Number of flags required to automatically hide posts" +msgstr "" + +#: conf/vote_rules.py:76 +msgid "Number of flags required to automatically delete posts" +msgstr "" + +#: const/__init__.py:10 +msgid "duplicate question" +msgstr "" + +#: const/__init__.py:11 +msgid "question is off-topic or not relevant" +msgstr "" + +#: const/__init__.py:12 +msgid "too subjective and argumentative" +msgstr "" + +#: const/__init__.py:13 +msgid "not a real question" +msgstr "" + +#: const/__init__.py:14 +msgid "the question is answered, right answer was accepted" +msgstr "" + +#: const/__init__.py:15 +msgid "question is not relevant or outdated" +msgstr "" + +#: const/__init__.py:16 +msgid "question contains offensive or malicious remarks" +msgstr "" + +#: const/__init__.py:17 +msgid "spam or advertising" +msgstr "" + +#: const/__init__.py:18 +msgid "too localized" +msgstr "" + +#: const/__init__.py:41 +msgid "newest" +msgstr "" + +#: const/__init__.py:42 skins/default/templates/users.html:26 +msgid "oldest" +msgstr "" + +#: const/__init__.py:43 +msgid "active" +msgstr "" + +#: const/__init__.py:44 +msgid "inactive" +msgstr "" + +#: const/__init__.py:45 +msgid "hottest" +msgstr "" + +#: const/__init__.py:46 +msgid "coldest" +msgstr "" + +#: const/__init__.py:47 +msgid "most voted" +msgstr "" + +#: const/__init__.py:48 +msgid "least voted" +msgstr "" + +#: const/__init__.py:49 +msgid "relevance" +msgstr "" + +#: const/__init__.py:57 skins/default/templates/main_page/tab_bar.html:10 +#: skins/default/templates/user_profile/user_inbox.html:50 +msgid "all" +msgstr "" + +#: const/__init__.py:58 skins/default/templates/main_page/tab_bar.html:15 +msgid "unanswered" +msgstr "" + +#: const/__init__.py:59 +msgid "favorite" +msgstr "" + +#: const/__init__.py:64 +#, fuzzy +msgid "list" +msgstr "Tags" + +#: const/__init__.py:65 +msgid "cloud" +msgstr "" + +#: const/__init__.py:78 +msgid "Question has no answers" +msgstr "" + +#: const/__init__.py:79 +msgid "Question has no accepted answers" +msgstr "" + +#: const/__init__.py:121 +msgid "asked a question" +msgstr "" + +#: const/__init__.py:122 +msgid "answered a question" +msgstr "" + +#: const/__init__.py:123 +msgid "commented question" +msgstr "" + +#: const/__init__.py:124 +msgid "commented answer" +msgstr "" + +#: const/__init__.py:125 +msgid "edited question" +msgstr "" + +#: const/__init__.py:126 +msgid "edited answer" +msgstr "" + +#: const/__init__.py:127 +msgid "received award" +msgstr "received badge" + +#: const/__init__.py:128 +msgid "marked best answer" +msgstr "" + +#: const/__init__.py:129 +msgid "upvoted" +msgstr "" + +#: const/__init__.py:130 +msgid "downvoted" +msgstr "" + +#: const/__init__.py:131 +msgid "canceled vote" +msgstr "" + +#: const/__init__.py:132 +msgid "deleted question" +msgstr "" + +#: const/__init__.py:133 +msgid "deleted answer" +msgstr "" + +#: const/__init__.py:134 +msgid "marked offensive" +msgstr "" + +#: const/__init__.py:135 +msgid "updated tags" +msgstr "" + +#: const/__init__.py:136 +msgid "selected favorite" +msgstr "" + +#: const/__init__.py:137 +msgid "completed user profile" +msgstr "" + +#: const/__init__.py:138 +msgid "email update sent to user" +msgstr "" + +#: const/__init__.py:141 +msgid "reminder about unanswered questions sent" +msgstr "" + +#: const/__init__.py:143 +msgid "mentioned in the post" +msgstr "" + +#: const/__init__.py:194 +msgid "question_answered" +msgstr "answered question" + +#: const/__init__.py:195 +msgid "question_commented" +msgstr "commented question" + +#: const/__init__.py:196 +msgid "answer_commented" +msgstr "" + +#: const/__init__.py:197 +msgid "answer_accepted" +msgstr "" + +#: const/__init__.py:201 +msgid "[closed]" +msgstr "" + +#: const/__init__.py:202 +msgid "[deleted]" +msgstr "" + +#: const/__init__.py:203 views/readers.py:614 +msgid "initial version" +msgstr "" + +#: const/__init__.py:204 +msgid "retagged" +msgstr "" + +#: const/__init__.py:212 +msgid "off" +msgstr "" + +#: const/__init__.py:213 +msgid "exclude ignored" +msgstr "" + +#: const/__init__.py:214 +msgid "only selected" +msgstr "" + +#: const/__init__.py:218 +msgid "instantly" +msgstr "" + +#: const/__init__.py:219 +msgid "daily" +msgstr "" + +#: const/__init__.py:220 +msgid "weekly" +msgstr "" + +#: const/__init__.py:221 +msgid "no email" +msgstr "" + +#: const/__init__.py:228 +msgid "identicon" +msgstr "" + +#: const/__init__.py:229 +msgid "mystery-man" +msgstr "" + +#: const/__init__.py:230 +msgid "monsterid" +msgstr "" + +#: const/__init__.py:231 +#, fuzzy +msgid "wavatar" +msgstr "How to change my picture (gravatar) and what is gravatar?" + +#: const/__init__.py:232 +msgid "retro" +msgstr "" + +#: const/__init__.py:279 skins/default/templates/badges.html:37 +msgid "gold" +msgstr "" + +#: const/__init__.py:280 skins/default/templates/badges.html:46 +msgid "silver" +msgstr "" + +#: const/__init__.py:281 skins/default/templates/badges.html:53 +msgid "bronze" +msgstr "" + +#: const/__init__.py:293 +msgid "None" +msgstr "" + +#: const/__init__.py:294 +msgid "Gravatar" +msgstr "" + +#: const/__init__.py:295 +msgid "Uploaded Avatar" +msgstr "" + +#: const/message_keys.py:15 +#, fuzzy +msgid "most relevant questions" +msgstr "ask a question interesting to this community" + +#: const/message_keys.py:16 +#, fuzzy +msgid "click to see most relevant questions" +msgstr "ask a question interesting to this community" + +#: const/message_keys.py:17 +msgid "by relevance" +msgstr "" + +#: const/message_keys.py:18 +#, fuzzy +msgid "click to see the oldest questions" +msgstr "" +"You are welcome to start submitting your question " +"anonymously. 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." + +#: const/message_keys.py:19 +msgid "by date" +msgstr "" + +#: const/message_keys.py:20 +msgid "click to see the newest questions" +msgstr "" + +#: const/message_keys.py:21 +msgid "click to see the least recently updated questions" +msgstr "" + +#: const/message_keys.py:22 +msgid "by activity" +msgstr "" + +#: const/message_keys.py:23 +msgid "click to see the most recently updated questions" +msgstr "" + +#: const/message_keys.py:24 +msgid "click to see the least answered questions" +msgstr "" + +#: const/message_keys.py:25 +#, fuzzy +msgid "by answers" +msgstr "oldest" + +#: const/message_keys.py:26 +msgid "click to see the most answered questions" +msgstr "" + +#: const/message_keys.py:27 +msgid "click to see least voted questions" +msgstr "" + +#: const/message_keys.py:28 +#, fuzzy +msgid "by votes" +msgstr "votes" + +#: const/message_keys.py:29 +#, fuzzy +msgid "click to see most voted questions" +msgstr "" +"You are welcome to start submitting your question " +"anonymously. 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." + +#: deps/django_authopenid/backends.py:88 +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 +msgid "i-names are not supported" +msgstr "" + +#: deps/django_authopenid/forms.py:233 +#, python-format +msgid "Please enter your %(username_token)s" +msgstr "" + +#: deps/django_authopenid/forms.py:259 +msgid "Please, enter your user name" +msgstr "" + +#: deps/django_authopenid/forms.py:263 +msgid "Please, enter your password" +msgstr "" + +#: deps/django_authopenid/forms.py:270 deps/django_authopenid/forms.py:274 +msgid "Please, enter your new password" +msgstr "" + +#: deps/django_authopenid/forms.py:285 +msgid "Passwords did not match" +msgstr "" + +#: deps/django_authopenid/forms.py:297 +#, python-format +msgid "Please choose password > %(len)s characters" +msgstr "" + +#: deps/django_authopenid/forms.py:335 +msgid "Current password" +msgstr "" + +#: deps/django_authopenid/forms.py:346 +msgid "" +"Old password is incorrect. Please enter the correct " +"password." +msgstr "" + +#: deps/django_authopenid/forms.py:399 +msgid "Sorry, we don't have this email address in the database" +msgstr "" + +#: deps/django_authopenid/forms.py:435 +msgid "Your user name (required)" +msgstr "" + +#: deps/django_authopenid/forms.py:450 +msgid "Incorrect username." +msgstr "sorry, there is no such user name" + +#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12 +#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:202 +msgid "signin/" +msgstr "" + +#: deps/django_authopenid/urls.py:10 +msgid "signout/" +msgstr "" + +#: deps/django_authopenid/urls.py:12 +msgid "complete/" +msgstr "" + +#: deps/django_authopenid/urls.py:15 +msgid "complete-oauth/" +msgstr "" + +#: deps/django_authopenid/urls.py:19 +msgid "register/" +msgstr "" + +#: deps/django_authopenid/urls.py:21 +msgid "signup/" +msgstr "" + +#: deps/django_authopenid/urls.py:25 +msgid "logout/" +msgstr "" + +#: deps/django_authopenid/urls.py:30 +msgid "recover/" +msgstr "" + +#: deps/django_authopenid/util.py:378 +#, python-format +msgid "%(site)s user name and password" +msgstr "" + +#: deps/django_authopenid/util.py:384 +#: skins/default/templates/authopenid/signin.html:108 +msgid "Create a password-protected account" +msgstr "" + +#: deps/django_authopenid/util.py:385 +msgid "Change your password" +msgstr "" + +#: deps/django_authopenid/util.py:473 +msgid "Sign in with Yahoo" +msgstr "" + +#: deps/django_authopenid/util.py:480 +msgid "AOL screen name" +msgstr "" + +#: deps/django_authopenid/util.py:488 +msgid "OpenID url" +msgstr "" + +#: deps/django_authopenid/util.py:517 +msgid "Flickr user name" +msgstr "" + +#: deps/django_authopenid/util.py:525 +msgid "Technorati user name" +msgstr "" + +#: deps/django_authopenid/util.py:533 +msgid "WordPress blog name" +msgstr "" + +#: deps/django_authopenid/util.py:541 +msgid "Blogger blog name" +msgstr "" + +#: deps/django_authopenid/util.py:549 +msgid "LiveJournal blog name" +msgstr "" + +#: deps/django_authopenid/util.py:557 +msgid "ClaimID user name" +msgstr "" + +#: deps/django_authopenid/util.py:565 +msgid "Vidoop user name" +msgstr "" + +#: deps/django_authopenid/util.py:573 +msgid "Verisign user name" +msgstr "" + +#: deps/django_authopenid/util.py:608 +#, python-format +msgid "Change your %(provider)s password" +msgstr "" + +#: deps/django_authopenid/util.py:612 +#, python-format +msgid "Click to see if your %(provider)s signin still works for %(site_name)s" +msgstr "" + +#: deps/django_authopenid/util.py:621 +#, python-format +msgid "Create password for %(provider)s" +msgstr "" + +#: deps/django_authopenid/util.py:625 +#, python-format +msgid "Connect your %(provider)s account to %(site_name)s" +msgstr "" + +#: deps/django_authopenid/util.py:634 +#, python-format +msgid "Signin with %(provider)s user name and password" +msgstr "" + +#: deps/django_authopenid/util.py:641 +#, python-format +msgid "Sign in with your %(provider)s account" +msgstr "" + +#: deps/django_authopenid/views.py:158 +#, python-format +msgid "OpenID %(openid_url)s is invalid" +msgstr "" + +#: deps/django_authopenid/views.py:270 deps/django_authopenid/views.py:415 +#: deps/django_authopenid/views.py:443 +#, 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:365 +msgid "Your new password saved" +msgstr "" + +#: deps/django_authopenid/views.py:469 +msgid "The login password combination was not correct" +msgstr "" + +#: deps/django_authopenid/views.py:573 +msgid "Please click any of the icons below to sign in" +msgstr "" + +#: deps/django_authopenid/views.py:575 +msgid "Account recovery email sent" +msgstr "" + +#: deps/django_authopenid/views.py:578 +msgid "Please add one or more login methods." +msgstr "" + +#: deps/django_authopenid/views.py:580 +msgid "If you wish, please add, remove or re-validate your login methods" +msgstr "" + +#: deps/django_authopenid/views.py:582 +msgid "Please wait a second! Your account is recovered, but ..." +msgstr "" + +#: deps/django_authopenid/views.py:584 +msgid "Sorry, this account recovery key has expired or is invalid" +msgstr "" + +#: deps/django_authopenid/views.py:657 +#, python-format +msgid "Login method %(provider_name)s does not exist" +msgstr "" + +#: deps/django_authopenid/views.py:663 +msgid "Oops, sorry - there was some error - please try again" +msgstr "" + +#: deps/django_authopenid/views.py:754 +#, python-format +msgid "Your %(provider)s login works fine" +msgstr "" + +#: deps/django_authopenid/views.py:1065 deps/django_authopenid/views.py:1071 +#, python-format +msgid "your email needs to be validated see %(details_url)s" +msgstr "" +"Your email needs to be validated. Please see details here." + +#: deps/django_authopenid/views.py:1092 +#, python-format +msgid "Recover your %(site)s account" +msgstr "" + +#: deps/django_authopenid/views.py:1162 +msgid "Please check your email and visit the enclosed link." +msgstr "" + +#: deps/livesettings/models.py:101 deps/livesettings/models.py:140 +msgid "Site" +msgstr "" + +#: deps/livesettings/values.py:106 +msgid "Base Settings" +msgstr "" + +#: deps/livesettings/values.py:213 +msgid "Default value: \"\"" +msgstr "" + +#: deps/livesettings/values.py:220 +msgid "Default value: " +msgstr "" + +#: deps/livesettings/values.py:223 +#, python-format +msgid "Default value: %s" +msgstr "" + +#: deps/livesettings/values.py:601 +#, python-format +msgid "Allowed image file types are %(types)s" +msgstr "" + +#: deps/livesettings/templates/livesettings/_admin_site_views.html:4 +msgid "Sites" +msgstr "" + +#: deps/livesettings/templates/livesettings/group_settings.html:11 +#: deps/livesettings/templates/livesettings/site_settings.html:23 +msgid "Documentation" +msgstr "" + +#: deps/livesettings/templates/livesettings/group_settings.html:11 +#: deps/livesettings/templates/livesettings/site_settings.html:23 +#: skins/default/templates/authopenid/signin.html:132 +msgid "Change password" +msgstr "" + +#: deps/livesettings/templates/livesettings/group_settings.html:11 +#: deps/livesettings/templates/livesettings/site_settings.html:23 +msgid "Log out" +msgstr "" + +#: deps/livesettings/templates/livesettings/group_settings.html:14 +#: deps/livesettings/templates/livesettings/site_settings.html:26 +msgid "Home" +msgstr "" + +#: deps/livesettings/templates/livesettings/group_settings.html:15 +msgid "Edit Group Settings" +msgstr "" + +#: deps/livesettings/templates/livesettings/group_settings.html:22 +#: deps/livesettings/templates/livesettings/site_settings.html:50 +msgid "Please correct the error below." +msgid_plural "Please correct the errors below." +msgstr[0] "" + +#: deps/livesettings/templates/livesettings/group_settings.html:28 +#, python-format +msgid "Settings included in %(name)s." +msgstr "" + +#: deps/livesettings/templates/livesettings/group_settings.html:62 +#: deps/livesettings/templates/livesettings/site_settings.html:97 +msgid "You don't have permission to edit values." +msgstr "" + +#: deps/livesettings/templates/livesettings/group_settings.html:68 +msgid "Setting groups" +msgstr "" + +#: deps/livesettings/templates/livesettings/site_settings.html:27 +msgid "Edit Site Settings" +msgstr "" + +#: deps/livesettings/templates/livesettings/site_settings.html:43 +msgid "Livesettings are disabled for this site." +msgstr "" + +#: deps/livesettings/templates/livesettings/site_settings.html:44 +msgid "All configuration options must be edited in the site settings.py file" +msgstr "" + +#: deps/livesettings/templates/livesettings/site_settings.html:66 +#, python-format +msgid "Group settings: %(name)s" +msgstr "" + +#: deps/livesettings/templates/livesettings/site_settings.html:93 +msgid "Uncollapse all" +msgstr "" + +#: importers/stackexchange/management/commands/load_stackexchange.py:141 +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 "" +"

      To ask by email, please:

      \n" +"
        \n" +"
      • Format the subject line as: [Tag1; Tag2] Question title
      • \n" +"
      • Type details of your question into the email body
      • \n" +"
      \n" +"

      Note that tags may consist of more than one word, and tags\n" +"may be separated by a semicolon or a comma

      \n" +msgstr "" + +#: management/commands/post_emailed_questions.py:55 +#, python-format +msgid "" +"

      Sorry, there was an error posting your question please contact the " +"%(site)s administrator

      " +msgstr "" + +#: management/commands/post_emailed_questions.py:61 +#, python-format +msgid "" +"

      Sorry, in order to post questions on %(site)s by email, please register first

      " +msgstr "" + +#: management/commands/post_emailed_questions.py:69 +msgid "" +"

      Sorry, your question could not be posted due to insufficient privileges " +"of your user account

      " +msgstr "" + +#: management/commands/send_email_alerts.py:411 +#, 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 +#, 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] "" +"

      Dear %(name)s,

      The following %(num)d question has been updated on " +"the Q&A forum:

      " + +#: management/commands/send_email_alerts.py:438 +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 +#, python-format +msgid "" +"go to %(email_settings_link)s to change frequency of email updates or " +"%(admin_email)s administrator" +msgstr "" +"

      Please remember that you can always adjust frequency of the email updates or " +"turn them off entirely.
      If you believe that this message was sent in an " +"error, please email about it the forum administrator at %(admin_email)s.

      Sincerely,

      Your friendly Q&A forum server.

      " + +#: management/commands/send_unanswered_question_reminders.py:80 +#, python-format +msgid "%(question_count)d unanswered question about %(topics)s" +msgid_plural "%(question_count)d unanswered questions about %(topics)s" +msgstr[0] "" + +#: models/__init__.py:316 +msgid "" +"Sorry, you cannot accept or unaccept best answers because your account is " +"blocked" +msgstr "" + +#: models/__init__.py:320 +msgid "" +"Sorry, you cannot accept or unaccept best answers because your account is " +"suspended" +msgstr "" + +#: models/__init__.py:333 +#, python-format +msgid "" +">%(points)s points required to accept or unaccept your own answer to your " +"own question" +msgstr "" + +#: models/__init__.py:347 +#, python-format +msgid "" +"Sorry, only original author of the question - %(username)s - can accept or " +"unaccept the best answer" +msgstr "" + +#: models/__init__.py:375 +msgid "cannot vote for own posts" +msgstr "Sorry, you cannot vote for your own posts" + +#: models/__init__.py:378 +msgid "Sorry your account appears to be blocked " +msgstr "" + +#: models/__init__.py:383 +msgid "Sorry your account appears to be suspended " +msgstr "" + +#: models/__init__.py:393 +#, python-format +msgid ">%(points)s points required to upvote" +msgstr ">%(points)s points required to upvote " + +#: models/__init__.py:399 +#, python-format +msgid ">%(points)s points required to downvote" +msgstr ">%(points)s points required to downvote " + +#: models/__init__.py:414 +msgid "Sorry, blocked users cannot upload files" +msgstr "" + +#: models/__init__.py:415 +msgid "Sorry, suspended users cannot upload files" +msgstr "" + +#: models/__init__.py:417 +#, 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:436 models/__init__.py:503 models/__init__.py:918 +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:437 models/__init__.py:921 +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:464 +#, python-format +msgid "" +"Sorry, comments (except the last one) are editable only within %(minutes)s " +"minute from posting" +msgid_plural "" +"Sorry, comments (except the last one) are editable only within %(minutes)s " +"minutes from posting" +msgstr[0] "" + +#: models/__init__.py:476 +msgid "Sorry, but only post owners or moderators can edit comments" +msgstr "" + +#: models/__init__.py:489 +msgid "" +"Sorry, since your account is suspended you can comment only your own posts" +msgstr "" + +#: models/__init__.py:493 +#, 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:521 +msgid "" +"This post has been deleted and can be seen only by post owners, site " +"administrators and moderators" +msgstr "" + +#: models/__init__.py:538 +msgid "" +"Sorry, only moderators, site administrators and post owners can edit deleted " +"posts" +msgstr "" + +#: models/__init__.py:553 +msgid "Sorry, since your account is blocked you cannot edit posts" +msgstr "" + +#: models/__init__.py:557 +msgid "Sorry, since your account is suspended you can edit only your own posts" +msgstr "" + +#: models/__init__.py:562 +#, python-format +msgid "" +"Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required" +msgstr "" + +#: models/__init__.py:569 +#, python-format +msgid "" +"Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is " +"required" +msgstr "" + +#: models/__init__.py:632 +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] "" + +#: models/__init__.py:647 +msgid "Sorry, since your account is blocked you cannot delete posts" +msgstr "" + +#: models/__init__.py:651 +msgid "" +"Sorry, since your account is suspended you can delete only your own posts" +msgstr "" + +#: models/__init__.py:655 +#, python-format +msgid "" +"Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s " +"is required" +msgstr "" + +#: models/__init__.py:675 +msgid "Sorry, since your account is blocked you cannot close questions" +msgstr "" + +#: models/__init__.py:679 +msgid "Sorry, since your account is suspended you cannot close questions" +msgstr "" + +#: models/__init__.py:683 +#, python-format +msgid "" +"Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is " +"required" +msgstr "" + +#: models/__init__.py:692 +#, python-format +msgid "" +"Sorry, to close own question a minimum reputation of %(min_rep)s is required" +msgstr "" + +#: models/__init__.py:716 +#, python-format +msgid "" +"Sorry, only administrators, moderators or post owners with reputation > " +"%(min_rep)s can reopen questions." +msgstr "" + +#: models/__init__.py:722 +#, python-format +msgid "" +"Sorry, to reopen own question a minimum reputation of %(min_rep)s is required" +msgstr "" + +#: models/__init__.py:742 +msgid "cannot flag message as offensive twice" +msgstr "You have flagged this question before and cannot do it more than once" + +#: models/__init__.py:747 +msgid "blocked users cannot flag posts" +msgstr "" +"Sorry, since your account is blocked you cannot flag posts as offensive" + +#: models/__init__.py:749 +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." + +#: models/__init__.py:751 +#, python-format +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" + +#: models/__init__.py:770 +#, python-format +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." + +#: models/__init__.py:785 +msgid "" +"Sorry, only question owners, site administrators and moderators can retag " +"deleted questions" +msgstr "" + +#: models/__init__.py:792 +msgid "Sorry, since your account is blocked you cannot retag questions" +msgstr "" + +#: models/__init__.py:796 +msgid "" +"Sorry, since your account is suspended you can retag only your own questions" +msgstr "" + +#: models/__init__.py:800 +#, python-format +msgid "" +"Sorry, to retag questions a minimum reputation of %(min_rep)s is required" +msgstr "" + +#: models/__init__.py:819 +msgid "Sorry, since your account is blocked you cannot delete comment" +msgstr "" + +#: models/__init__.py:823 +msgid "" +"Sorry, since your account is suspended you can delete only your own comments" +msgstr "" + +#: models/__init__.py:827 +#, python-format +msgid "Sorry, to delete comments reputation of %(min_rep)s is required" +msgstr "" + +#: models/__init__.py:850 +msgid "cannot revoke old vote" +msgstr "sorry, but older votes cannot be revoked" + +#: models/__init__.py:1325 utils/functions.py:70 +#, python-format +msgid "on %(date)s" +msgstr "" + +#: models/__init__.py:1327 +msgid "in two days" +msgstr "" + +#: models/__init__.py:1329 +msgid "tomorrow" +msgstr "" + +#: models/__init__.py:1331 +#, python-format +msgid "in %(hr)d hour" +msgid_plural "in %(hr)d hours" +msgstr[0] "" + +#: models/__init__.py:1333 +#, python-format +msgid "in %(min)d min" +msgid_plural "in %(min)d mins" +msgstr[0] "" + +#: models/__init__.py:1334 +#, python-format +msgid "%(days)d day" +msgid_plural "%(days)d days" +msgstr[0] "" + +#: models/__init__.py:1336 +#, 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:1501 skins/default/templates/feedback_email.txt:9 +msgid "Anonymous" +msgstr "" + +#: models/__init__.py:1597 views/users.py:365 +msgid "Site Adminstrator" +msgstr "" + +#: models/__init__.py:1599 views/users.py:367 +msgid "Forum Moderator" +msgstr "" + +#: models/__init__.py:1601 views/users.py:369 +msgid "Suspended User" +msgstr "" + +#: models/__init__.py:1603 views/users.py:371 +msgid "Blocked User" +msgstr "" + +#: models/__init__.py:1605 views/users.py:373 +msgid "Registered User" +msgstr "" + +#: models/__init__.py:1607 +msgid "Watched User" +msgstr "" + +#: models/__init__.py:1609 +msgid "Approved User" +msgstr "" + +#: models/__init__.py:1718 +#, python-format +msgid "%(username)s karma is %(reputation)s" +msgstr "" + +#: models/__init__.py:1728 +#, python-format +msgid "one gold badge" +msgid_plural "%(count)d gold badges" +msgstr[0] "" + +#: models/__init__.py:1735 +#, python-format +msgid "one silver badge" +msgid_plural "%(count)d silver badges" +msgstr[0] "" + +#: models/__init__.py:1742 +#, python-format +msgid "one bronze badge" +msgid_plural "%(count)d bronze badges" +msgstr[0] "" + +#: models/__init__.py:1753 +#, python-format +msgid "%(item1)s and %(item2)s" +msgstr "" + +#: models/__init__.py:1757 +#, python-format +msgid "%(user)s has %(badges)s" +msgstr "" + +#: models/__init__.py:2164 models/__init__.py:2170 models/__init__.py:2175 +#: models/__init__.py:2180 +#, python-format +msgid "Re: \"%(title)s\"" +msgstr "" + +#: models/__init__.py:2185 models/__init__.py:2190 +#, python-format +msgid "Question: \"%(title)s\"" +msgstr "" + +#: models/__init__.py:2371 +#, python-format +msgid "" +"Congratulations, you have received a badge '%(badge_name)s'. Check out your profile." +msgstr "" + +#: models/__init__.py:2550 views/commands.py:396 +msgid "Your tag subscription was saved, thanks!" +msgstr "" + +#: models/answer.py:105 +msgid "" +"Sorry, the answer you are looking for is no longer available, because the " +"parent question has been removed" +msgstr "" + +#: models/answer.py:112 +msgid "Sorry, this answer has been removed and is no longer accessible" +msgstr "" + +#: models/badges.py:129 +#, python-format +msgid "Deleted own post with %(votes)s or more upvotes" +msgstr "" + +#: models/badges.py:133 +msgid "Disciplined" +msgstr "" + +#: models/badges.py:151 +#, python-format +msgid "Deleted own post with %(votes)s or more downvotes" +msgstr "" + +#: models/badges.py:155 +msgid "Peer Pressure" +msgstr "" + +#: models/badges.py:174 +#, python-format +msgid "Received at least %(votes)s upvote for an answer for the first time" +msgstr "" + +#: models/badges.py:178 +msgid "Teacher" +msgstr "" + +#: models/badges.py:218 +msgid "Supporter" +msgstr "" + +#: models/badges.py:219 +msgid "First upvote" +msgstr "" + +#: models/badges.py:227 +msgid "Critic" +msgstr "" + +#: models/badges.py:228 +msgid "First downvote" +msgstr "" + +#: models/badges.py:237 +msgid "Civic Duty" +msgstr "" + +#: models/badges.py:238 +#, python-format +msgid "Voted %(num)s times" +msgstr "" + +#: models/badges.py:252 +#, python-format +msgid "Answered own question with at least %(num)s up votes" +msgstr "" + +#: models/badges.py:256 +msgid "Self-Learner" +msgstr "" + +#: models/badges.py:304 +msgid "Nice Answer" +msgstr "" + +#: models/badges.py:309 models/badges.py:321 models/badges.py:333 +#, python-format +msgid "Answer voted up %(num)s times" +msgstr "" + +#: models/badges.py:316 +msgid "Good Answer" +msgstr "" + +#: models/badges.py:328 +msgid "Great Answer" +msgstr "" + +#: models/badges.py:340 +msgid "Nice Question" +msgstr "" + +#: models/badges.py:345 models/badges.py:357 models/badges.py:369 +#, python-format +msgid "Question voted up %(num)s times" +msgstr "" + +#: models/badges.py:352 +msgid "Good Question" +msgstr "" + +#: models/badges.py:364 +msgid "Great Question" +msgstr "" + +#: models/badges.py:376 +msgid "Student" +msgstr "" + +#: models/badges.py:381 +msgid "Asked first question with at least one up vote" +msgstr "" + +#: models/badges.py:414 +msgid "Popular Question" +msgstr "" + +#: models/badges.py:418 models/badges.py:429 models/badges.py:441 +#, python-format +msgid "Asked a question with %(views)s views" +msgstr "" + +#: models/badges.py:425 +msgid "Notable Question" +msgstr "" + +#: models/badges.py:436 +msgid "Famous Question" +msgstr "" + +#: models/badges.py:450 +msgid "Asked a question and accepted an answer" +msgstr "" + +#: models/badges.py:453 +msgid "Scholar" +msgstr "" + +#: models/badges.py:495 +msgid "Enlightened" +msgstr "" + +#: models/badges.py:499 +#, python-format +msgid "First answer was accepted with %(num)s or more votes" +msgstr "" + +#: models/badges.py:507 +msgid "Guru" +msgstr "" + +#: models/badges.py:510 +#, python-format +msgid "Answer accepted with %(num)s or more votes" +msgstr "" + +#: models/badges.py:518 +#, python-format +msgid "" +"Answered a question more than %(days)s days later with at least %(votes)s " +"votes" +msgstr "" + +#: models/badges.py:525 +msgid "Necromancer" +msgstr "" + +#: models/badges.py:548 +msgid "Citizen Patrol" +msgstr "" + +#: models/badges.py:551 +msgid "First flagged post" +msgstr "" + +#: models/badges.py:563 +msgid "Cleanup" +msgstr "" + +#: models/badges.py:566 +msgid "First rollback" +msgstr "" + +#: models/badges.py:577 +msgid "Pundit" +msgstr "" + +#: models/badges.py:580 +msgid "Left 10 comments with score of 10 or more" +msgstr "" + +#: models/badges.py:612 +msgid "Editor" +msgstr "" + +#: models/badges.py:615 +msgid "First edit" +msgstr "" + +#: models/badges.py:623 +msgid "Associate Editor" +msgstr "" + +#: models/badges.py:627 +#, python-format +msgid "Edited %(num)s entries" +msgstr "" + +#: models/badges.py:634 +msgid "Organizer" +msgstr "" + +#: models/badges.py:637 +msgid "First retag" +msgstr "" + +#: models/badges.py:644 +msgid "Autobiographer" +msgstr "" + +#: models/badges.py:647 +msgid "Completed all user profile fields" +msgstr "" + +#: models/badges.py:663 +#, python-format +msgid "Question favorited by %(num)s users" +msgstr "" + +#: models/badges.py:689 +msgid "Stellar Question" +msgstr "" + +#: models/badges.py:698 +msgid "Favorite Question" +msgstr "" + +#: models/badges.py:710 +msgid "Enthusiast" +msgstr "" + +#: models/badges.py:714 +#, python-format +msgid "Visited site every day for %(num)s days in a row" +msgstr "" + +#: models/badges.py:732 +msgid "Commentator" +msgstr "" + +#: models/badges.py:736 +#, python-format +msgid "Posted %(num_comments)s comments" +msgstr "" + +#: models/badges.py:752 +msgid "Taxonomist" +msgstr "" + +#: models/badges.py:756 +#, python-format +msgid "Created a tag used by %(num)s questions" +msgstr "" + +#: models/badges.py:776 +msgid "Expert" +msgstr "" + +#: models/badges.py:779 +msgid "Very active in one tag" +msgstr "" + +#: models/meta.py:112 +msgid "" +"Sorry, the comment you are looking for is no longer accessible, because the " +"parent question has been removed" +msgstr "" + +#: models/meta.py:119 +msgid "" +"Sorry, the comment you are looking for is no longer accessible, because the " +"parent answer has been removed" +msgstr "" + +#: models/question.py:72 +#, python-format +msgid "\" and \"%s\"" +msgstr "" + +#: models/question.py:75 +msgid "\" and more" +msgstr "" + +#: models/question.py:452 +msgid "Sorry, this question has been deleted and is no longer accessible" +msgstr "" + +#: models/question.py:908 +#, python-format +msgid "%(author)s modified the question" +msgstr "" + +#: models/question.py:912 +#, python-format +msgid "%(people)s posted %(new_answer_count)s new answers" +msgstr "" + +#: models/question.py:917 +#, python-format +msgid "%(people)s commented the question" +msgstr "" + +#: models/question.py:922 +#, python-format +msgid "%(people)s commented answers" +msgstr "" + +#: models/question.py:924 +#, python-format +msgid "%(people)s commented an answer" +msgstr "" + +#: models/repute.py:142 +#, python-format +msgid "Changed by moderator. Reason: %(reason)s" +msgstr "" + +#: models/repute.py:153 +#, python-format +msgid "" +"%(points)s points were added for %(username)s's contribution to question " +"%(question_title)s" +msgstr "" + +#: models/repute.py:158 +#, python-format +msgid "" +"%(points)s points were subtracted for %(username)s's contribution to " +"question %(question_title)s" +msgstr "" + +#: models/tag.py:151 +msgid "interesting" +msgstr "" + +#: models/tag.py:151 +msgid "ignored" +msgstr "" + +#: models/user.py:264 +msgid "Entire forum" +msgstr "" + +#: models/user.py:265 +msgid "Questions that I asked" +msgstr "" + +#: models/user.py:266 +msgid "Questions that I answered" +msgstr "" + +#: models/user.py:267 +msgid "Individually selected questions" +msgstr "" + +#: models/user.py:268 +msgid "Mentions and comment responses" +msgstr "" + +#: models/user.py:271 +msgid "Instantly" +msgstr "" + +#: models/user.py:272 +msgid "Daily" +msgstr "" + +#: models/user.py:273 +msgid "Weekly" +msgstr "" + +#: models/user.py:274 +msgid "No email" +msgstr "" + +#: skins/default/templates/404.jinja.html:3 +#: skins/default/templates/404.jinja.html:10 +msgid "Page not found" +msgstr "" + +#: skins/default/templates/404.jinja.html:13 +msgid "Sorry, could not find the page you requested." +msgstr "" + +#: skins/default/templates/404.jinja.html:15 +msgid "This might have happened for the following reasons:" +msgstr "" + +#: skins/default/templates/404.jinja.html:17 +msgid "this question or answer has been deleted;" +msgstr "" + +#: skins/default/templates/404.jinja.html:18 +msgid "url has error - please check it;" +msgstr "" + +#: skins/default/templates/404.jinja.html:19 +msgid "" +"the page you tried to visit is protected or you don't have sufficient " +"points, see" +msgstr "" + +#: skins/default/templates/404.jinja.html:19 +#: skins/default/templates/blocks/footer.html:5 +#: skins/default/templates/blocks/header_meta_links.html:13 +#: skins/default/templates/blocks/question_edit_tips.html:15 +msgid "faq" +msgstr "" + +#: skins/default/templates/404.jinja.html:20 +msgid "if you believe this error 404 should not have occured, please" +msgstr "" + +#: skins/default/templates/404.jinja.html:21 +msgid "report this problem" +msgstr "" + +#: skins/default/templates/404.jinja.html:30 +#: skins/default/templates/500.jinja.html:11 +msgid "back to previous page" +msgstr "" + +#: skins/default/templates/404.jinja.html:31 +#: skins/default/templates/main_page/tab_bar.html:9 +msgid "see all questions" +msgstr "" + +#: skins/default/templates/404.jinja.html:32 +msgid "see all tags" +msgstr "" + +#: skins/default/templates/500.jinja.html:3 +#: skins/default/templates/500.jinja.html:5 +msgid "Internal server error" +msgstr "" + +#: skins/default/templates/500.jinja.html:8 +msgid "system error log is recorded, error will be fixed as soon as possible" +msgstr "" + +#: skins/default/templates/500.jinja.html:9 +msgid "please report the error to the site administrators if you wish" +msgstr "" + +#: skins/default/templates/500.jinja.html:12 +msgid "see latest questions" +msgstr "" + +#: skins/default/templates/500.jinja.html:13 +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" +msgstr "" + +#: skins/default/templates/answer_edit.html:10 +#: skins/default/templates/question_edit.html:9 +#: skins/default/templates/question_retag.html:5 +#: skins/default/templates/revisions.html:7 +msgid "back" +msgstr "" + +#: skins/default/templates/answer_edit.html:14 +msgid "revision" +msgstr "" + +#: skins/default/templates/answer_edit.html:17 +#: skins/default/templates/question_edit.html:16 +msgid "select revision" +msgstr "" + +#: skins/default/templates/answer_edit.html:21 +#: skins/default/templates/question_edit.html:27 +msgid "Save edit" +msgstr "" + +#: skins/default/templates/answer_edit.html:22 +#: skins/default/templates/close.html:16 +#: skins/default/templates/feedback.html:42 +#: skins/default/templates/question_edit.html:28 +#: skins/default/templates/question_retag.html:22 +#: skins/default/templates/reopen.html:27 +#: skins/default/templates/subscribe_for_tags.html:16 +#: skins/default/templates/authopenid/changeemail.html:38 +#: skins/default/templates/user_profile/user_edit.html:84 +msgid "Cancel" +msgstr "" + +#: skins/default/templates/answer_edit.html:60 +#: skins/default/templates/answer_edit.html:63 +#: skins/default/templates/ask.html:46 skins/default/templates/ask.html:49 +#: skins/default/templates/macros.html:698 +#: skins/default/templates/question.html:562 +#: skins/default/templates/question.html:565 +#: skins/default/templates/question_edit.html:72 +#: skins/default/templates/question_edit.html:75 +msgid "hide preview" +msgstr "" + +#: skins/default/templates/answer_edit.html:63 +#: skins/default/templates/ask.html:49 +#: skins/default/templates/question.html:565 +#: skins/default/templates/question_edit.html:75 +msgid "show preview" +msgstr "" + +#: skins/default/templates/ask.html:4 +msgid "Ask a question" +msgstr "" + +#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:8 +#: skins/default/templates/user_profile/user_recent.html:16 +#: skins/default/templates/user_profile/user_stats.html:110 +#, python-format +msgid "%(name)s" +msgstr "" + +#: skins/default/templates/badge.html:4 +msgid "Badge" +msgstr "" + +#: skins/default/templates/badge.html:6 +#, python-format +msgid "Badge \"%(name)s\"" +msgstr "" + +#: skins/default/templates/badge.html:8 +#: skins/default/templates/user_profile/user_recent.html:16 +#: skins/default/templates/user_profile/user_stats.html:108 +#, python-format +msgid "%(description)s" +msgstr "" + +#: skins/default/templates/badge.html:13 +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 +msgid "Badges" +msgstr "" + +#: skins/default/templates/badges.html:7 +msgid "Community gives you awards for your questions, answers and votes." +msgstr "" + +#: skins/default/templates/badges.html:8 +#, 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 "" +"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 feedback" + +#: skins/default/templates/badges.html:35 +msgid "Community badges" +msgstr "Badge levels" + +#: skins/default/templates/badges.html:37 +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 " +"profound knowledge and ability in addition to your active participation." + +#: skins/default/templates/badges.html:45 +msgid "" +"silver badge: occasionally awarded for the very high quality contributions" +msgstr "" + +#: skins/default/templates/badges.html:49 +msgid "silver badge description" +msgstr "" +"silver badge: occasionally awarded for the very high quality contributions" + +#: skins/default/templates/badges.html:52 +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 +msgid "Close question" +msgstr "" + +#: skins/default/templates/close.html:6 +msgid "Close the question" +msgstr "" + +#: skins/default/templates/close.html:11 +msgid "Reasons" +msgstr "" + +#: skins/default/templates/close.html:15 +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 +msgid "FAQ" +msgstr "" + +#: skins/default/templates/faq_static.html:5 +msgid "Frequently Asked Questions " +msgstr "" + +#: skins/default/templates/faq_static.html:6 +msgid "What kinds of questions can I ask here?" +msgstr "" + +#: skins/default/templates/faq_static.html:7 +msgid "" +"Most importanly - questions should be relevant to this " +"community." +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." +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?" +msgstr "What kinds of questions should be avoided?" + +#: skins/default/templates/faq_static.html:11 +msgid "" +"Please avoid asking questions that are not relevant to this community, too " +"subjective and argumentative." +msgstr "" + +#: skins/default/templates/faq_static.html:13 +msgid "What should I avoid in my answers?" +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 question and answer site - it is not a " +"discussion group. 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." + +#: skins/default/templates/faq_static.html:15 +msgid "Who moderates this community?" +msgstr "" + +#: skins/default/templates/faq_static.html:16 +msgid "The short answer is: you." +msgstr "" + +#: skins/default/templates/faq_static.html:17 +msgid "This website is moderated by the users." +msgstr "" + +#: skins/default/templates/faq_static.html:18 +msgid "" +"The reputation system allows users earn the authorization to perform a " +"variety of moderation tasks." +msgstr "" +"Karma system allows users to earn rights to perform a variety of moderation " +"tasks" + +#: skins/default/templates/faq_static.html:20 +msgid "How does reputation system work?" +msgstr "How does karma system work?" + +#: skins/default/templates/faq_static.html:21 +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." + +#: 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 " +"%(REP_GAIN_FOR_RECEIVING_UPVOTE)s points, each vote against will " +"subtract %(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s points. There " +"is a limit of %(MAX_REP_GAIN_PER_USER_PER_DAY)s 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 "" + +#: skins/default/templates/faq_static.html:32 +#: skins/default/templates/user_profile/user_votes.html:13 +msgid "upvote" +msgstr "" + +#: skins/default/templates/faq_static.html:37 +msgid "use tags" +msgstr "" + +#: skins/default/templates/faq_static.html:42 +msgid "add comments" +msgstr "" + +#: skins/default/templates/faq_static.html:46 +#: skins/default/templates/user_profile/user_votes.html:15 +msgid "downvote" +msgstr "" + +#: skins/default/templates/faq_static.html:49 +msgid " accept own answer to own questions" +msgstr "" + +#: skins/default/templates/faq_static.html:53 +msgid "open and close own questions" +msgstr "" + +#: skins/default/templates/faq_static.html:57 +msgid "retag other's questions" +msgstr "" + +#: skins/default/templates/faq_static.html:62 +msgid "edit community wiki questions" +msgstr "" + +#: skins/default/templates/faq_static.html:67 +#, fuzzy +msgid "\"edit any answer" +msgstr "oldest" + +#: skins/default/templates/faq_static.html:71 +#, fuzzy +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" +msgstr "" +"

      The picture that appears on the users profiles is called " +"gravatar (which means globally recognized avatar).

      Here is how it works: a " +"cryptographic key (unbreakable code) is calculated from " +"your email address. You upload your picture (or your favorite alter ego " +"image) the website gravatar.com from where we later retreive your image using the key.

      This way all the websites you trust can show your image next to your " +"posts and your email address remains private.

      Please " +"personalize your account with an image - just register at " +"gravatar.com (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.

      " + +#: skins/default/templates/faq_static.html:76 +msgid "To register, do I need to create new password?" +msgstr "" + +#: skins/default/templates/faq_static.html:77 +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 +msgid "\"Login now!\"" +msgstr "" + +#: skins/default/templates/faq_static.html:80 +msgid "Why other people can edit my questions/answers?" +msgstr "" + +#: skins/default/templates/faq_static.html:81 +msgid "Goal of this site is..." +msgstr "" + +#: skins/default/templates/faq_static.html:81 +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 +msgid "If this approach is not for you, we respect your choice." +msgstr "" + +#: skins/default/templates/faq_static.html:84 +msgid "Still have questions?" +msgstr "" + +#: skins/default/templates/faq_static.html:85 +#, python-format +msgid "" +"Please ask your question at %(ask_question_url)s, help make our community " +"better!" +msgstr "" +"Please ask your question, help make our " +"community better!" + +#: skins/default/templates/feedback.html:3 +msgid "Feedback" +msgstr "" + +#: skins/default/templates/feedback.html:5 +msgid "Give us your feedback!" +msgstr "" + +#: skins/default/templates/feedback.html:9 +#, python-format +msgid "" +"\n" +" Dear %(user_name)s, we look forward " +"to hearing your feedback. \n" +" Please type and send us your message below.\n" +" " +msgstr "" + +#: skins/default/templates/feedback.html:16 +msgid "" +"\n" +" Dear visitor, we look forward to " +"hearing your feedback.\n" +" Please type and send us your message below.\n" +" " +msgstr "" + +#: skins/default/templates/feedback.html:25 +msgid "(please enter a valid email)" +msgstr "" + +#: skins/default/templates/feedback.html:33 +msgid "(this field is required)" +msgstr "" + +#: skins/default/templates/feedback.html:41 +msgid "Send Feedback" +msgstr "" + +#: skins/default/templates/feedback_email.txt:2 +#, python-format +msgid "" +"\n" +"Hello, this is a %(site_title)s forum feedback message.\n" +msgstr "" + +#: skins/default/templates/import_data.html:2 +#: skins/default/templates/import_data.html:4 +msgid "Import StackExchange data" +msgstr "" + +#: skins/default/templates/import_data.html:13 +msgid "" +"Warning: if your database is not empty, please back it up\n" +" before attempting this operation." +msgstr "" + +#: skins/default/templates/import_data.html:16 +msgid "" +"Upload your stackexchange dump .zip file, then wait until\n" +" the data import completes. This process may take several minutes.\n" +" Please note that feedback will be printed in plain text.\n" +" " +msgstr "" + +#: skins/default/templates/import_data.html:25 +msgid "Import data" +msgstr "" + +#: 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: python manage." +"py load_stackexchange path/to/your-data.zip" +msgstr "" + +#: skins/default/templates/instant_notification.html:1 +#, python-format +msgid "

      Dear %(receiving_user_name)s,

      " +msgstr "" + +#: skins/default/templates/instant_notification.html:3 +#, python-format +msgid "" +"\n" +"

      %(update_author_name)s left a new comment:\n" +msgstr "" + +#: skins/default/templates/instant_notification.html:8 +#, python-format +msgid "" +"\n" +"

      %(update_author_name)s left a new comment\n" +msgstr "" + +#: skins/default/templates/instant_notification.html:13 +#, python-format +msgid "" +"\n" +"

      %(update_author_name)s answered a question \n" +"%(origin_post_title)s

      \n" +msgstr "" + +#: skins/default/templates/instant_notification.html:19 +#, python-format +msgid "" +"\n" +"

      %(update_author_name)s posted a new question \n" +"%(origin_post_title)s

      \n" +msgstr "" + +#: skins/default/templates/instant_notification.html:25 +#, python-format +msgid "" +"\n" +"

      %(update_author_name)s updated an answer to the question\n" +"%(origin_post_title)s

      \n" +msgstr "" + +#: skins/default/templates/instant_notification.html:31 +#, python-format +msgid "" +"\n" +"

      %(update_author_name)s updated a question \n" +"%(origin_post_title)s

      \n" +msgstr "" + +#: skins/default/templates/instant_notification.html:37 +#, python-format +msgid "" +"\n" +"
      %(content_preview)s
      \n" +"

      Please note - you can easily change\n" +"how often you receive these notifications or unsubscribe. Thank you for your " +"interest in our forum!

      \n" +msgstr "" + +#: skins/default/templates/instant_notification.html:42 +msgid "

      Sincerely,
      Forum Administrator

      " +msgstr "" + +#: skins/default/templates/macros.html:25 +#, python-format +msgid "Share this question on %(site)s" +msgstr "" + +#: skins/default/templates/macros.html:36 +#, python-format +msgid "follow %(alias)s" +msgstr "" + +#: skins/default/templates/macros.html:39 +#, python-format +msgid "unfollow %(alias)s" +msgstr "" + +#: skins/default/templates/macros.html:40 +#, python-format +msgid "following %(alias)s" +msgstr "" + +#: skins/default/templates/macros.html:63 +msgid "karma:" +msgstr "" + +#: skins/default/templates/macros.html:67 +msgid "badges:" +msgstr "" + +#: skins/default/templates/macros.html:143 +#: skins/default/templates/macros.html:144 +msgid "previous" +msgstr "" + +#: skins/default/templates/macros.html:155 +msgid "current page" +msgstr "" + +#: skins/default/templates/macros.html:157 +#: skins/default/templates/macros.html:164 +#, python-format +msgid "page number %(num)s" +msgstr "page %(num)s" + +#: skins/default/templates/macros.html:168 +msgid "next page" +msgstr "" + +#: skins/default/templates/macros.html:179 +msgid "posts per page" +msgstr "" + +#: skins/default/templates/macros.html:211 templatetags/extra_tags.py:43 +#, python-format +msgid "%(username)s gravatar image" +msgstr "" + +#: skins/default/templates/macros.html:220 +#, python-format +msgid "%(username)s's website is %(url)s" +msgstr "" + +#: skins/default/templates/macros.html:232 +#, fuzzy +msgid "anonymous user" +msgstr "Sorry, anonymous users cannot vote" + +#: skins/default/templates/macros.html:260 +msgid "this post is marked as community wiki" +msgstr "" + +#: skins/default/templates/macros.html:263 +#, python-format +msgid "" +"This post is a wiki.\n" +" Anyone with karma >%(wiki_min_rep)s is welcome to improve it." +msgstr "" + +#: skins/default/templates/macros.html:269 +msgid "asked" +msgstr "" + +#: skins/default/templates/macros.html:271 +msgid "answered" +msgstr "" + +#: skins/default/templates/macros.html:273 +msgid "posted" +msgstr "" + +#: skins/default/templates/macros.html:303 +msgid "updated" +msgstr "" + +#: skins/default/templates/macros.html:379 +#, python-format +msgid "see questions tagged '%(tag)s'" +msgstr "" + +#: skins/default/templates/macros.html:424 views/readers.py:239 +msgid "view" +msgid_plural "views" +msgstr[0] "" + +#: skins/default/templates/macros.html:441 views/readers.py:236 +msgid "answer" +msgid_plural "answers" +msgstr[0] "" + +#: skins/default/templates/macros.html:452 views/readers.py:233 +msgid "vote" +msgid_plural "votes" +msgstr[0] "" + +#: skins/default/templates/macros.html:491 +msgid "delete this comment" +msgstr "" + +#: skins/default/templates/macros.html:502 +#: skins/default/templates/question.html:79 +#: skins/default/templates/question.html:235 +#: skins/default/templates/revisions.html:37 +msgid "edit" +msgstr "" + +#: skins/default/templates/macros.html:520 +#: skins/default/templates/macros.html:528 +#: skins/default/templates/question.html:511 +msgid "add comment" +msgstr "post a comment" + +#: skins/default/templates/macros.html:521 +#, python-format +msgid "see %(counter)s more" +msgid_plural "see %(counter)s more" +msgstr[0] "" + +#: skins/default/templates/macros.html:523 +#, python-format +msgid "see %(counter)s more comment" +msgid_plural "" +"see %(counter)s more comments\n" +" " +msgstr[0] "" + +#: skins/default/templates/macros.html:661 +msgid "one of these is required" +msgstr "" + +#: skins/default/templates/macros.html:673 +msgid "(required)" +msgstr "" + +#: skins/default/templates/macros.html:696 +msgid "Toggle the real time Markdown editor preview" +msgstr "" + +#: skins/default/templates/macros.html:708 +#, python-format +msgid "responses for %(username)s" +msgstr "" + +#: skins/default/templates/macros.html:711 +#, python-format +msgid "you have a new response" +msgid_plural "you have %(response_count)s new responses" +msgstr[0] "" + +#: skins/default/templates/macros.html:714 +msgid "no new responses yet" +msgstr "" + +#: skins/default/templates/macros.html:729 +#: skins/default/templates/macros.html:730 +#, python-format +msgid "%(new)s new flagged posts and %(seen)s previous" +msgstr "" + +#: skins/default/templates/macros.html:732 +#: skins/default/templates/macros.html:733 +#, python-format +msgid "%(new)s new flagged posts" +msgstr "" + +#: skins/default/templates/macros.html:738 +#: skins/default/templates/macros.html:739 +#, python-format +msgid "%(seen)s flagged posts" +msgstr "" + +#: skins/default/templates/main_page.html:11 +msgid "Questions" +msgstr "" + +#: skins/default/templates/privacy.html:3 +#: skins/default/templates/privacy.html:5 +msgid "Privacy policy" +msgstr "" + +#: skins/default/templates/question.html:26 +#: skins/default/templates/question.html:27 +#: skins/default/templates/question.html:42 +#: skins/default/templates/question.html:44 +msgid "i like this post (click again to cancel)" +msgstr "" + +#: skins/default/templates/question.html:29 +#: skins/default/templates/question.html:46 +#: skins/default/templates/question.html:186 +msgid "current number of votes" +msgstr "" + +#: skins/default/templates/question.html:38 +#: skins/default/templates/question.html:39 +#: skins/default/templates/question.html:51 +#: skins/default/templates/question.html:52 +msgid "i dont like this post (click again to cancel)" +msgstr "" + +#: skins/default/templates/question.html:82 +msgid "retag" +msgstr "" + +#: skins/default/templates/question.html:89 +msgid "reopen" +msgstr "" + +#: skins/default/templates/question.html:93 +msgid "close" +msgstr "" + +#: skins/default/templates/question.html:98 +#: skins/default/templates/question.html:239 +msgid "" +"report as offensive (i.e containing spam, advertising, malicious text, etc.)" +msgstr "" + +#: skins/default/templates/question.html:99 +#: skins/default/templates/question.html:240 +msgid "flag offensive" +msgstr "" + +#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:250 +msgid "undelete" +msgstr "" + +#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:250 +#: skins/default/templates/authopenid/signin.html:166 +msgid "delete" +msgstr "" + +#: skins/default/templates/question.html:143 +#, python-format +msgid "" +"The question has been closed for the following reason \"%(close_reason)s\" by" +msgstr "" + +#: skins/default/templates/question.html:145 +#, python-format +msgid "close date %(closed_at)s" +msgstr "" + +#: skins/default/templates/question.html:151 +#, python-format +msgid "" +"\n" +" %(counter)s Answer:\n" +" " +msgid_plural "" +"\n" +" %(counter)s Answers:\n" +" " +msgstr[0] "" + +#: skins/default/templates/question.html:159 +msgid "oldest answers will be shown first" +msgstr "" + +#: skins/default/templates/question.html:160 +msgid "oldest answers" +msgstr "oldest" + +#: skins/default/templates/question.html:162 +msgid "newest answers will be shown first" +msgstr "" + +#: skins/default/templates/question.html:163 +msgid "newest answers" +msgstr "newest" + +#: skins/default/templates/question.html:165 +msgid "most voted answers will be shown first" +msgstr "" + +#: skins/default/templates/question.html:166 +msgid "popular answers" +msgstr "most voted" + +#: skins/default/templates/question.html:184 +#: skins/default/templates/question.html:185 +msgid "i like this answer (click again to cancel)" +msgstr "" + +#: skins/default/templates/question.html:195 +#: skins/default/templates/question.html:196 +msgid "i dont like this answer (click again to cancel)" +msgstr "" + +#: skins/default/templates/question.html:204 +#: skins/default/templates/question.html:205 +msgid "mark this answer as favorite (click again to undo)" +msgstr "" + +#: skins/default/templates/question.html:214 +#: skins/default/templates/question.html:215 +#, python-format +msgid "%(question_author)s has selected this answer as correct" +msgstr "" + +#: skins/default/templates/question.html:230 +msgid "answer permanent link" +msgstr "permanent link" + +#: skins/default/templates/question.html:231 +msgid "permanent link" +msgstr "link" + +#: skins/default/templates/question.html:256 +#, fuzzy +msgid "swap with question" +msgstr "Post Your Answer" + +#: skins/default/templates/question.html:297 +#, python-format +msgid "" +"Know someone who can answer? Share a link " +"to this question via" +msgstr "" + +#: skins/default/templates/question.html:303 +msgid " or" +msgstr "" + +#: skins/default/templates/question.html:305 +msgid "email" +msgstr "" + +#: skins/default/templates/question.html:320 +#: skins/default/templates/question.html:322 +msgid "Notify me once a day when there are any new answers" +msgstr "" +"Notify me once a day by email when there are any new " +"answers or updates" + +#: skins/default/templates/question.html:324 +msgid "Notify me weekly when there are any new answers" +msgstr "" +"Notify me weekly when there are any new answers or updates" + +#: skins/default/templates/question.html:326 +msgid "Notify me immediately when there are any new answers" +msgstr "" + +#: skins/default/templates/question.html:329 +#, python-format +msgid "" +"You can always adjust frequency of email updates from your %(profile_url)s" +msgstr "" +"(note: you can always change how often you receive updates)" + +#: skins/default/templates/question.html:334 +msgid "once you sign in you will be able to subscribe for any updates here" +msgstr "" +"Here (once you log in) you will be able to sign " +"up for the periodic email updates about this question." + +#: skins/default/templates/question.html:344 +#, fuzzy +msgid "Login/Signup to Answer" +msgstr "Login/Signup to Post" + +#: skins/default/templates/question.html:352 +msgid "Your answer" +msgstr "" + +#: skins/default/templates/question.html:354 +msgid "Be the first one to answer this question!" +msgstr "" + +#: skins/default/templates/question.html:360 +msgid "you can answer anonymously and then login" +msgstr "" +"Please start posting your answer anonymously " +"- 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 substantial " +"answer, for discussions, please use comments and " +"please do remember to vote (after you log in)!" + +#: skins/default/templates/question.html:364 +msgid "answer your own question only to give an answer" +msgstr "" +"You are welcome to answer your own question, " +"but please make sure to give an answer. Remember that you " +"can always revise your original question. Please " +"use comments for discussions and please don't " +"forget to vote :) for the answers that you liked (or perhaps did " +"not like)! " + +#: skins/default/templates/question.html:366 +msgid "please only give an answer, no discussions" +msgstr "" +"Please try to give a substantial answer. If " +"you wanted to comment on the question or answer, just use the " +"commenting tool. Please remember that you can always revise " +"your answers - no need to answer the same question twice. Also, " +"please don't forget to vote - it really helps to select the " +"best questions and answers!" + +#: skins/default/templates/question.html:373 +msgid "Login/Signup to Post Your Answer" +msgstr "Login/Signup to Post" + +#: skins/default/templates/question.html:376 +#: skins/default/templates/question.html:389 +msgid "Answer Your Own Question" +msgstr "" + +#: skins/default/templates/question.html:378 +msgid "Answer the question" +msgstr "Post Your Answer" + +#: skins/default/templates/question.html:397 +#, fuzzy +msgid "Question tools" +msgstr "Tags" + +#: skins/default/templates/question.html:400 +msgid "click to unfollow this question" +msgstr "" + +#: skins/default/templates/question.html:401 +msgid "Following" +msgstr "" + +#: skins/default/templates/question.html:402 +msgid "Unfollow" +msgstr "" + +#: skins/default/templates/question.html:406 +#, fuzzy +msgid "click to follow this question" +msgstr "" +"You are welcome to start submitting your question " +"anonymously. 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/question.html:407 +msgid "Follow" +msgstr "" + +#: skins/default/templates/question.html:414 +#, python-format +msgid "%(count)s follower" +msgid_plural "%(count)s followers" +msgstr[0] "" + +#: skins/default/templates/question.html:420 +#, fuzzy +msgid "email the updates" +msgstr "Last updated" + +#: skins/default/templates/question.html:423 +msgid "" +"Here (once you log in) you will be able to sign up for the " +"periodic email updates about this question." +msgstr "" + +#: skins/default/templates/question.html:428 +msgid "subscribe to this question rss feed" +msgstr "" + +#: skins/default/templates/question.html:429 +msgid "subsribe to rss feed" +msgstr "" + +#: skins/default/templates/question.html:438 +msgid "Question tags" +msgstr "Tags" + +#: skins/default/templates/question.html:460 +msgid "Stats:" +msgstr "" + +#: skins/default/templates/question.html:462 +msgid "question asked" +msgstr "Asked" + +#: skins/default/templates/question.html:465 +msgid "question was seen" +msgstr "Seen" + +#: skins/default/templates/question.html:465 +msgid "times" +msgstr "" + +#: skins/default/templates/question.html:468 +msgid "last updated" +msgstr "Last updated" + +#: skins/default/templates/question.html:477 +msgid "Related questions" +msgstr "" + +#: skins/default/templates/question_edit.html:4 +#: skins/default/templates/question_edit.html:9 +msgid "Edit question" +msgstr "" + +#: skins/default/templates/question_retag.html:3 +#: skins/default/templates/question_retag.html:5 +msgid "Change tags" +msgstr "Retag question" + +#: skins/default/templates/question_retag.html:21 +msgid "Retag" +msgstr "" + +#: skins/default/templates/question_retag.html:28 +msgid "Why use and modify tags?" +msgstr "" + +#: skins/default/templates/question_retag.html:30 +msgid "Tags help to keep the content better organized and searchable" +msgstr "" + +#: skins/default/templates/question_retag.html:32 +msgid "tag editors receive special awards from the community" +msgstr "" + +#: skins/default/templates/question_retag.html:59 +msgid "up to 5 tags, less than 20 characters each" +msgstr "" + +#: skins/default/templates/reopen.html:3 skins/default/templates/reopen.html:5 +msgid "Reopen question" +msgstr "" + +#: skins/default/templates/reopen.html:6 +msgid "Title" +msgstr "" + +#: skins/default/templates/reopen.html:11 +#, python-format +msgid "" +"This question has been closed by \n" +" %(closed_by_username)s\n" +msgstr "" + +#: skins/default/templates/reopen.html:16 +msgid "Close reason:" +msgstr "" + +#: skins/default/templates/reopen.html:19 +msgid "When:" +msgstr "" + +#: skins/default/templates/reopen.html:22 +msgid "Reopen this question?" +msgstr "" + +#: skins/default/templates/reopen.html:26 +msgid "Reopen this question" +msgstr "" + +#: skins/default/templates/revisions.html:4 +#: skins/default/templates/revisions.html:7 +msgid "Revision history" +msgstr "" + +#: skins/default/templates/revisions.html:23 +msgid "click to hide/show revision" +msgstr "" + +#: skins/default/templates/revisions.html:29 +#, python-format +msgid "revision %(number)s" +msgstr "" + +#: skins/default/templates/subscribe_for_tags.html:3 +#: skins/default/templates/subscribe_for_tags.html:5 +msgid "Subscribe for tags" +msgstr "" + +#: skins/default/templates/subscribe_for_tags.html:6 +msgid "Please, subscribe for the following tags:" +msgstr "" + +#: skins/default/templates/subscribe_for_tags.html:15 +msgid "Subscribe" +msgstr "" + +#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:11 +msgid "Tag list" +msgstr "Tags" + +#: skins/default/templates/tags.html:9 +#, python-format +msgid "Tags, matching \"%(stag)s\"" +msgstr "" + +#: skins/default/templates/tags.html:19 +msgid "sorted alphabetically" +msgstr "" + +#: skins/default/templates/tags.html:20 +msgid "by name" +msgstr "" + +#: skins/default/templates/tags.html:25 +msgid "sorted by frequency of tag use" +msgstr "" + +#: skins/default/templates/tags.html:26 +msgid "by popularity" +msgstr "" + +#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:56 +msgid "Nothing found" +msgstr "" + +#: skins/default/templates/users.html:4 skins/default/templates/users.html:7 +msgid "Users" +msgstr "People" + +#: skins/default/templates/users.html:13 +msgid "see people with the highest reputation" +msgstr "" + +#: skins/default/templates/users.html:14 +#: skins/default/templates/user_profile/user_info.html:25 +msgid "reputation" +msgstr "karma" + +#: skins/default/templates/users.html:19 +msgid "see people who joined most recently" +msgstr "" + +#: skins/default/templates/users.html:20 +msgid "recent" +msgstr "" + +#: skins/default/templates/users.html:25 +msgid "see people who joined the site first" +msgstr "" + +#: skins/default/templates/users.html:31 +msgid "see people sorted by name" +msgstr "" + +#: skins/default/templates/users.html:32 +msgid "by username" +msgstr "" + +#: skins/default/templates/users.html:37 +#, python-format +msgid "users matching query %(suser)s:" +msgstr "" + +#: skins/default/templates/users.html:40 +msgid "Nothing found." +msgstr "" + +#: skins/default/templates/authopenid/changeemail.html:2 +#: skins/default/templates/authopenid/changeemail.html:8 +#: skins/default/templates/authopenid/changeemail.html:36 +msgid "Change email" +msgstr "Change Email" + +#: skins/default/templates/authopenid/changeemail.html:10 +msgid "Save your email address" +msgstr "" + +#: skins/default/templates/authopenid/changeemail.html:15 +#, python-format +msgid "change %(email)s info" +msgstr "" +"Enter your new email into the box below if " +"you'd like to use another email for update subscriptions." +"
      Currently you are using %(email)s" + +#: skins/default/templates/authopenid/changeemail.html:17 +#, python-format +msgid "here is why email is required, see %(gravatar_faq_url)s" +msgstr "" +"Please enter your email address in the box below. Valid email address is required on this Q&A forum. If you like, " +"you can receive updates on interesting questions or entire " +"forum via email. Also, your email is used to create a unique gravatar image for your " +"account. Email addresses are never shown or otherwise shared with anybody " +"else." + +#: skins/default/templates/authopenid/changeemail.html:29 +msgid "Your new Email" +msgstr "" +"Your new Email: (will not be shown to " +"anyone, must be valid)" + +#: skins/default/templates/authopenid/changeemail.html:29 +msgid "Your Email" +msgstr "" +"Your Email (must be valid, never shown to others)" + +#: skins/default/templates/authopenid/changeemail.html:36 +msgid "Save Email" +msgstr "" + +#: skins/default/templates/authopenid/changeemail.html:45 +msgid "Validate email" +msgstr "" + +#: skins/default/templates/authopenid/changeemail.html:48 +#, python-format +msgid "validate %(email)s info or go to %(change_email_url)s" +msgstr "" +"An email with a validation link has been sent to " +"%(email)s. Please follow the emailed link with your " +"web browser. Email validation is necessary to help insure the proper use of " +"email on Q&A. If you would like to use " +"another email, please change it again." + +#: skins/default/templates/authopenid/changeemail.html:52 +msgid "Email not changed" +msgstr "" + +#: skins/default/templates/authopenid/changeemail.html:55 +#, python-format +msgid "old %(email)s kept, if you like go to %(change_email_url)s" +msgstr "" +"Your email address %(email)s has not been changed." +" If you decide to change it later - you can always do it by editing " +"it in your user profile or by using the previous form again." + +#: skins/default/templates/authopenid/changeemail.html:59 +msgid "Email changed" +msgstr "" + +#: skins/default/templates/authopenid/changeemail.html:62 +#, python-format +msgid "your current %(email)s can be used for this" +msgstr "" +"Your email address is now set to %(email)s. " +"Updates on the questions that you like most will be sent to this address. " +"Email notifications are sent once a day or less frequently - only when there " +"are any news." + +#: skins/default/templates/authopenid/changeemail.html:66 +msgid "Email verified" +msgstr "" + +#: skins/default/templates/authopenid/changeemail.html:69 +msgid "thanks for verifying email" +msgstr "" +"Thank you for verifying your email! Now " +"you can ask and answer questions. Also if " +"you find a very interesting question you can subscribe for the " +"updates - then will be notified about changes once a day or less frequently." + +#: skins/default/templates/authopenid/changeemail.html:73 +msgid "email key not sent" +msgstr "Validation email not sent" + +#: skins/default/templates/authopenid/changeemail.html:76 +#, python-format +msgid "email key not sent %(email)s change email here %(change_link)s" +msgstr "" +"Your current email address %(email)s has been " +"validated before so the new key was not sent. You can change email used for update subscriptions if " +"necessary." + +#: skins/default/templates/authopenid/complete.html:21 +#: skins/default/templates/authopenid/complete.html:23 +msgid "Registration" +msgstr "" + +#: skins/default/templates/authopenid/complete.html:27 +#, python-format +msgid "register new %(provider)s account info, see %(gravatar_faq_url)s" +msgstr "" +"

      You are here for the first time with your " +"%(provider)s login. Please create your screen name " +"and save your email address. Saved email address will let " +"you subscribe for the updates on the most interesting " +"questions and will be used to create and retrieve your unique avatar image - " +"gravatar.

      " + +#: skins/default/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 "" +"

      Oops... looks like screen name %(username)s is " +"already used in another account.

      Please choose another screen " +"name to use with your %(provider)s login. Also, a valid email address is " +"required on the Q&A forum. Your email is " +"used to create a unique gravatar image for your account. If you like, you can receive " +"updates on the interesting questions or entire forum by email. " +"Email addresses are never shown or otherwise shared with anybody else.

      " + +#: skins/default/templates/authopenid/complete.html:34 +#, python-format +msgid "" +"register new external %(provider)s account info, see %(gravatar_faq_url)s" +msgstr "" +"

      You are here for the first time with your " +"%(provider)s login.

      You can either keep your screen " +"name the same as your %(provider)s login name or choose some other " +"nickname.

      Also, please save a valid email address. " +"With the email you can subscribe for the updates on the " +"most interesting questions. Email address is also used to create and " +"retrieve your unique avatar image - gravatar.

      " + +#: skins/default/templates/authopenid/complete.html:37 +#, python-format +msgid "register new Facebook connect account info, see %(gravatar_faq_url)s" +msgstr "" +"

      You are here for the first time with your " +"Facebook login. Please create your screen name and " +"save your email address. Saved email address will let you " +"subscribe for the updates on the most interesting questions " +"and will be used to create and retrieve your unique avatar image - gravatar.

      " + +#: skins/default/templates/authopenid/complete.html:40 +msgid "This account already exists, please use another." +msgstr "" + +#: skins/default/templates/authopenid/complete.html:59 +msgid "Screen name label" +msgstr "Screen Name (will be shown to others)" + +#: skins/default/templates/authopenid/complete.html:66 +msgid "Email address label" +msgstr "" +"Email Address (will not be shared with " +"anyone, must be valid)" + +#: skins/default/templates/authopenid/complete.html:72 +#: skins/default/templates/authopenid/signup_with_password.html:36 +msgid "receive updates motivational blurb" +msgstr "" +"Receive forum updates by email - this will help our " +"community grow and become more useful.
      By default Q&A forum sends up to one email digest per " +"week - only when there is anything new.
      If you like, please " +"adjust this now or any time later from your user account." + +#: skins/default/templates/authopenid/complete.html:76 +#: skins/default/templates/authopenid/signup_with_password.html:40 +msgid "please select one of the options above" +msgstr "" + +#: skins/default/templates/authopenid/complete.html:79 +msgid "Tag filter tool will be your right panel, once you log in." +msgstr "" + +#: skins/default/templates/authopenid/complete.html:80 +msgid "create account" +msgstr "Signup" + +#: skins/default/templates/authopenid/confirm_email.txt:1 +msgid "Thank you for registering at our Q&A forum!" +msgstr "" + +#: skins/default/templates/authopenid/confirm_email.txt:3 +msgid "Your account details are:" +msgstr "" + +#: skins/default/templates/authopenid/confirm_email.txt:5 +msgid "Username:" +msgstr "" + +#: skins/default/templates/authopenid/confirm_email.txt:6 +msgid "Password:" +msgstr "" + +#: skins/default/templates/authopenid/confirm_email.txt:8 +msgid "Please sign in here:" +msgstr "" + +#: skins/default/templates/authopenid/confirm_email.txt:11 +#: skins/default/templates/authopenid/email_validation.txt:13 +msgid "" +"Sincerely,\n" +"Forum Administrator" +msgstr "" +"Sincerely,\n" +"Q&A Forum Administrator" + +#: skins/default/templates/authopenid/email_validation.txt:1 +msgid "Greetings from the Q&A forum" +msgstr "" + +#: skins/default/templates/authopenid/email_validation.txt:3 +msgid "To make use of the Forum, please follow the link below:" +msgstr "" + +#: skins/default/templates/authopenid/email_validation.txt:7 +msgid "Following the link above will help us verify your email address." +msgstr "" + +#: skins/default/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" +"for any inconvenience" +msgstr "" + +#: skins/default/templates/authopenid/logout.html:3 +msgid "Logout" +msgstr "Sign out" + +#: skins/default/templates/authopenid/logout.html:5 +msgid "You have successfully logged out" +msgstr "" + +#: skins/default/templates/authopenid/logout.html: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 "" + +#: skins/default/templates/authopenid/macros.html:53 +msgid "Please enter your user name, then sign in" +msgstr "" + +#: skins/default/templates/authopenid/macros.html:54 +#: skins/default/templates/authopenid/signin.html:90 +msgid "(or select another login method above)" +msgstr "" + +#: skins/default/templates/authopenid/macros.html:56 +msgid "Sign in" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:4 +msgid "User login" +msgstr "User login" + +#: skins/default/templates/authopenid/signin.html:14 +#, python-format +msgid "" +"\n" +" Your answer to %(title)s %(summary)s will be posted once you log in\n" +" " +msgstr "" +"\n" +"Your answer to \"%(title)s %(summary)s...\" is saved and will be " +"posted once you log in." + +#: skins/default/templates/authopenid/signin.html:21 +#, python-format +msgid "" +"Your question \n" +" %(title)s %(summary)s will be posted once you log in\n" +" " +msgstr "" +"Your question \"%(title)s %(summary)s...\" is saved and will be " +"posted once you log in." + +#: skins/default/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." +msgstr "" + +#: skins/default/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 "" + +#: skins/default/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 "" + +#: skins/default/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 "" + +#: skins/default/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 "" + +#: skins/default/templates/authopenid/signin.html:42 +msgid "" +"Please check your email and visit the enclosed link to re-connect to your " +"account" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:87 +msgid "Please enter your user name and password, then sign in" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:93 +msgid "Login failed, please try again" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:97 +msgid "Login or email" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:101 +msgid "Password" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:106 +msgid "Login" +msgstr "Sign in" + +#: skins/default/templates/authopenid/signin.html:113 +msgid "To change your password - please enter the new one twice, then submit" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:117 +msgid "New password" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:124 +msgid "Please, retype" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:146 +msgid "Here are your current login methods" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:150 +msgid "provider" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:151 +msgid "last used" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:152 +msgid "delete, if you like" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:168 +#, fuzzy +msgid "cannot be deleted" +msgstr "sorry, but older votes cannot be revoked" + +#: skins/default/templates/authopenid/signin.html:181 +msgid "Still have trouble signing in?" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:186 +msgid "Please, enter your email address below and obtain a new key" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:188 +msgid "Please, enter your email address below to recover your account" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:191 +msgid "recover your account via email" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:202 +msgid "Send a new recovery key" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:204 +msgid "Recover your account via email" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:216 +msgid "Why use OpenID?" +msgstr "" + +#: skins/default/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/default/templates/authopenid/signin.html:222 +msgid "reuse openid" +msgstr "You can safely re-use the same login for all OpenID-enabled websites." + +#: skins/default/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/default/templates/authopenid/signin.html:228 +msgid "openid is supported open standard" +msgstr "OpenID is based on an open standard, supported by many organizations." + +#: skins/default/templates/authopenid/signin.html:232 +msgid "Find out more" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:233 +msgid "Get OpenID" +msgstr "" + +#: skins/default/templates/authopenid/signup_with_password.html:4 +msgid "Signup" +msgstr "" + +#: skins/default/templates/authopenid/signup_with_password.html:10 +msgid "Please register by clicking on any of the icons below" +msgstr "" + +#: skins/default/templates/authopenid/signup_with_password.html:23 +msgid "or create a new user name and password here" +msgstr "" + +#: skins/default/templates/authopenid/signup_with_password.html:25 +msgid "Create login name and password" +msgstr "" + +#: skins/default/templates/authopenid/signup_with_password.html:26 +msgid "Traditional signup info" +msgstr "" +"If you prefer, create your forum login name and " +"password here. However, please keep in mind that we also support " +"OpenID login method. With OpenID you can " +"simply reuse your external login (e.g. Gmail or AOL) without ever sharing " +"your login details with anyone and having to remember yet another password." + +#: skins/default/templates/authopenid/signup_with_password.html:44 +msgid "" +"Please read and type in the two words below to help us prevent automated " +"account creation." +msgstr "" + +#: skins/default/templates/authopenid/signup_with_password.html:47 +msgid "Create Account" +msgstr "" + +#: skins/default/templates/authopenid/signup_with_password.html:49 +msgid "or" +msgstr "" + +#: skins/default/templates/authopenid/signup_with_password.html:50 +msgid "return to OpenID login" +msgstr "" + +#: skins/default/templates/avatar/add.html:3 +#, fuzzy +msgid "add avatar" +msgstr "How to change my picture (gravatar) and what is gravatar?" + +#: skins/default/templates/avatar/add.html:5 +#, fuzzy +msgid "Change avatar" +msgstr "Retag question" + +#: skins/default/templates/avatar/add.html:6 +#: skins/default/templates/avatar/change.html:7 +msgid "Your current avatar: " +msgstr "" + +#: skins/default/templates/avatar/add.html:9 +#: skins/default/templates/avatar/change.html:11 +msgid "You haven't uploaded an avatar yet. Please upload one now." +msgstr "" + +#: skins/default/templates/avatar/add.html:13 +msgid "Upload New Image" +msgstr "" + +#: skins/default/templates/avatar/change.html:4 +#, fuzzy +msgid "change avatar" +msgstr "Retag question" + +#: skins/default/templates/avatar/change.html:17 +msgid "Choose new Default" +msgstr "" + +#: skins/default/templates/avatar/change.html:22 +msgid "Upload" +msgstr "" + +#: skins/default/templates/avatar/confirm_delete.html:3 +msgid "delete avatar" +msgstr "" + +#: skins/default/templates/avatar/confirm_delete.html:5 +msgid "Please select the avatars that you would like to delete." +msgstr "" + +#: skins/default/templates/avatar/confirm_delete.html:7 +#, python-format +msgid "" +"You have no avatars to delete. Please upload one now." +msgstr "" + +#: skins/default/templates/avatar/confirm_delete.html:13 +msgid "Delete These" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:3 +msgid "answer tips" +msgstr "Tips" + +#: skins/default/templates/blocks/answer_edit_tips.html:6 +msgid "please make your answer relevant to this community" +msgstr "ask a question interesting to this community" + +#: skins/default/templates/blocks/answer_edit_tips.html:9 +msgid "try to give an answer, rather than engage into a discussion" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:12 +msgid "please try to provide details" +msgstr "provide enough details" + +#: skins/default/templates/blocks/answer_edit_tips.html:15 +#: skins/default/templates/blocks/question_edit_tips.html:11 +msgid "be clear and concise" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:19 +#: skins/default/templates/blocks/question_edit_tips.html:15 +msgid "see frequently asked questions" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:25 +#: skins/default/templates/blocks/question_edit_tips.html:20 +msgid "Markdown tips" +msgstr "Markdown basics" + +#: skins/default/templates/blocks/answer_edit_tips.html:29 +#: skins/default/templates/blocks/question_edit_tips.html:24 +msgid "*italic*" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:32 +#: skins/default/templates/blocks/question_edit_tips.html:27 +msgid "**bold**" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:36 +#: skins/default/templates/blocks/question_edit_tips.html:31 +msgid "*italic* or _italic_" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:39 +#: skins/default/templates/blocks/question_edit_tips.html:34 +msgid "**bold** or __bold__" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/question_edit_tips.html:38 +msgid "link" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:38 +#: skins/default/templates/blocks/question_edit_tips.html:43 +msgid "text" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:43 +msgid "image" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:51 +#: skins/default/templates/blocks/question_edit_tips.html:47 +msgid "numbered list:" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:56 +#: skins/default/templates/blocks/question_edit_tips.html:52 +msgid "basic HTML tags are also supported" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:60 +#: skins/default/templates/blocks/question_edit_tips.html:56 +msgid "learn more about Markdown" +msgstr "" + +#: skins/default/templates/blocks/ask_form.html:6 +msgid "login to post question info" +msgstr "" +"You are welcome to start submitting your question " +"anonymously. 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/blocks/ask_form.html:10 +#, fuzzy, python-format +msgid "" +"must have valid %(email)s to post, \n" +" see %(email_validation_faq_url)s\n" +" " +msgstr "" +"Looks like your email address, %(email)s has not " +"yet been validated. To post messages you must verify your email, " +"please see more details here." +"
      You can submit your question now and validate email after that. Your " +"question will saved as pending meanwhile. " + +#: skins/default/templates/blocks/ask_form.html:34 +msgid "Login/signup to post your question" +msgstr "Login/Signup to Post" + +#: skins/default/templates/blocks/ask_form.html:36 +msgid "Ask your question" +msgstr "Ask Your Question" + +#: skins/default/templates/blocks/bottom_scripts.html:7 +#, python-format +msgid "" +"Please note: %(app_name)s requires javascript to work properly, please " +"enable javascript in your browser, here is how" +msgstr "" + +#: skins/default/templates/blocks/editor_data.html:5 +#, 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/blocks/editor_data.html:7 +#, python-format +msgid "please use %(tag_count)s tag" +msgid_plural "please use %(tag_count)s tags or less" +msgstr[0] "" + +#: skins/default/templates/blocks/editor_data.html:8 +#, python-format +msgid "" +"please use up to %(tag_count)s tags, less than %(max_chars)s characters each" +msgstr "" + +#: skins/default/templates/blocks/footer.html:4 +#: skins/default/templates/blocks/header_meta_links.html:12 +msgid "about" +msgstr "" + +#: skins/default/templates/blocks/footer.html:6 +msgid "privacy policy" +msgstr "" + +#: skins/default/templates/blocks/footer.html:15 +msgid "give feedback" +msgstr "" + +#: skins/default/templates/blocks/footer.html:41 +#, python-format +msgid "Content on this site is licensed under a %(license)s" +msgstr "" + +#: skins/default/templates/blocks/header.html:8 +msgid "back to home page" +msgstr "" + +#: skins/default/templates/blocks/header.html:9 +#, python-format +msgid "%(site)s logo" +msgstr "" + +#: skins/default/templates/blocks/header.html:20 +msgid "questions" +msgstr "" + +#: skins/default/templates/blocks/header.html:30 +msgid "users" +msgstr "people" + +#: skins/default/templates/blocks/header.html:35 +msgid "badges" +msgstr "" + +#: skins/default/templates/blocks/header.html:40 +msgid "ask a question" +msgstr "" + +#: skins/default/templates/blocks/header_meta_links.html:8 +msgid "logout" +msgstr "sign out" + +#: skins/default/templates/blocks/header_meta_links.html:10 +msgid "login" +msgstr "Hi, there! Please sign in" + +#: skins/default/templates/blocks/header_meta_links.html:15 +msgid "settings" +msgstr "" + +#: skins/default/templates/blocks/input_bar.html:34 +msgid "search" +msgstr "" + +#: skins/default/templates/blocks/question_edit_tips.html:3 +msgid "question tips" +msgstr "Tips" + +#: skins/default/templates/blocks/question_edit_tips.html:5 +msgid "please ask a relevant question" +msgstr "ask a question interesting to this community" + +#: skins/default/templates/blocks/question_edit_tips.html:8 +msgid "please try provide enough details" +msgstr "provide enough details" + +#: skins/default/templates/blocks/tag_selector.html:4 +msgid "Interesting tags" +msgstr "" + +#: skins/default/templates/blocks/tag_selector.html:18 +#: skins/default/templates/blocks/tag_selector.html:34 +#: skins/default/templates/user_profile/user_moderate.html:40 +msgid "Add" +msgstr "" + +#: skins/default/templates/blocks/tag_selector.html:20 +msgid "Ignored tags" +msgstr "" + +#: skins/default/templates/blocks/tag_selector.html:36 +msgid "Display tag filter" +msgstr "" + +#: skins/default/templates/main_page/content.html:13 +msgid "Did not find what you were looking for?" +msgstr "" + +#: skins/default/templates/main_page/content.html:14 +msgid "Please, post your question!" +msgstr "" + +#: skins/default/templates/main_page/headline.html:7 +msgid "subscribe to the questions feed" +msgstr "" + +#: skins/default/templates/main_page/headline.html:8 +msgid "rss feed" +msgstr "" + +#: skins/default/templates/main_page/headline.html:12 views/readers.py:131 +#, fuzzy, python-format +msgid "%(q_num)s question, tagged" +msgid_plural "%(q_num)s questions, tagged" +msgstr[0] "Asked" + +#: skins/default/templates/main_page/headline.html:14 views/readers.py:139 +#, python-format +msgid "%(q_num)s question" +msgid_plural "%(q_num)s questions" +msgstr[0] "" + +#: skins/default/templates/main_page/headline.html:17 +#, python-format +msgid "with %(author_name)s's contributions" +msgstr "" + +#: skins/default/templates/main_page/headline.html:28 +msgid "Search tips:" +msgstr "" + +#: skins/default/templates/main_page/headline.html:31 +msgid "reset author" +msgstr "" + +#: skins/default/templates/main_page/headline.html:33 +#: skins/default/templates/main_page/headline.html:36 +#: 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:34 +msgid "reset tags" +msgstr "" + +#: skins/default/templates/main_page/headline.html:37 +#: skins/default/templates/main_page/headline.html:40 +msgid "start over" +msgstr "" + +#: skins/default/templates/main_page/headline.html:42 +msgid " - to expand, or dig in by adding more tags and revising the query." +msgstr "" + +#: skins/default/templates/main_page/headline.html:45 +msgid "Search tip:" +msgstr "" + +#: skins/default/templates/main_page/headline.html:45 +msgid "add tags and a query to focus your search" +msgstr "" + +#: skins/default/templates/main_page/nothing_found.html:4 +msgid "There are no unanswered questions here" +msgstr "" + +#: skins/default/templates/main_page/nothing_found.html:7 +#, fuzzy +msgid "No questions here. " +msgstr "answered question" + +#: skins/default/templates/main_page/nothing_found.html:8 +msgid "Please star (bookmark) some questions or follow some users." +msgstr "" + +#: skins/default/templates/main_page/nothing_found.html:13 +msgid "You can expand your search by " +msgstr "" + +#: skins/default/templates/main_page/nothing_found.html:16 +msgid "resetting author" +msgstr "" + +#: skins/default/templates/main_page/nothing_found.html:19 +msgid "resetting tags" +msgstr "" + +#: skins/default/templates/main_page/nothing_found.html:22 +#: skins/default/templates/main_page/nothing_found.html:25 +msgid "starting over" +msgstr "" + +#: skins/default/templates/main_page/nothing_found.html:30 +msgid "Please always feel free to ask your question!" +msgstr "" + +#: skins/default/templates/main_page/sidebar.html:8 +msgid "Contributors" +msgstr "" + +#: skins/default/templates/main_page/sidebar.html:25 +msgid "Related tags" +msgstr "Tags" + +#: skins/default/templates/main_page/tab_bar.html:5 +msgid "In:" +msgstr "" + +#: skins/default/templates/main_page/tab_bar.html:14 +msgid "see unanswered questions" +msgstr "" + +#: skins/default/templates/main_page/tab_bar.html:20 +#, fuzzy +msgid "see your followed questions" +msgstr "Ask Your Question" + +#: skins/default/templates/main_page/tab_bar.html:21 +msgid "followed" +msgstr "" + +#: skins/default/templates/main_page/tab_bar.html:25 +msgid "Sort by:" +msgstr "" + +#: skins/default/templates/user_profile/user.html:13 +#, python-format +msgid "%(username)s's profile" +msgstr "" + +#: skins/default/templates/user_profile/user_edit.html:4 +msgid "Edit user profile" +msgstr "" + +#: skins/default/templates/user_profile/user_edit.html:7 +msgid "edit profile" +msgstr "" + +#: skins/default/templates/user_profile/user_edit.html:17 +#: skins/default/templates/user_profile/user_info.html:15 +msgid "change picture" +msgstr "" + +#: skins/default/templates/user_profile/user_edit.html:20 +msgid "Registered user" +msgstr "" + +#: skins/default/templates/user_profile/user_edit.html:27 +msgid "Screen Name" +msgstr "" + +#: skins/default/templates/user_profile/user_edit.html:83 +#: skins/default/templates/user_profile/user_email_subscriptions.html:21 +msgid "Update" +msgstr "" + +#: skins/default/templates/user_profile/user_email_subscriptions.html:4 +#: skins/default/templates/user_profile/user_tabs.html:42 +msgid "subscriptions" +msgstr "" + +#: skins/default/templates/user_profile/user_email_subscriptions.html:7 +msgid "Email subscription settings" +msgstr "" + +#: skins/default/templates/user_profile/user_email_subscriptions.html:8 +msgid "email subscription settings info" +msgstr "" +"Adjust frequency of email updates. Receive " +"updates on interesting questions by email,
      help the community by answering questions of your colleagues. If you do not wish to " +"receive emails - select 'no email' on all items below.
      Updates are only " +"sent when there is any new activity on selected items." + +#: skins/default/templates/user_profile/user_email_subscriptions.html:22 +msgid "Stop sending email" +msgstr "Stop Email" + +#: skins/default/templates/user_profile/user_favorites.html:4 +#: skins/default/templates/user_profile/user_tabs.html:27 +msgid "followed questions" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:18 +#: skins/default/templates/user_profile/user_tabs.html:12 +msgid "inbox" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:34 +msgid "Sections:" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:38 +#, python-format +msgid "forum responses (%(re_count)s)" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:43 +#, python-format +msgid "flagged items (%(flag_count)s)" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:49 +msgid "select:" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:51 +msgid "seen" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:52 +msgid "new" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:53 +msgid "none" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:54 +msgid "mark as seen" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:55 +msgid "mark as new" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:56 +msgid "dismiss" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:19 +msgid "remove" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:36 +msgid "update profile" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:40 +msgid "manage login methods" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:53 +msgid "real name" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:58 +msgid "member for" +msgstr "member since" + +#: skins/default/templates/user_profile/user_info.html:63 +msgid "last seen" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:69 +msgid "user website" +msgstr "website" + +#: skins/default/templates/user_profile/user_info.html:75 +msgid "location" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:82 +msgid "age" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:83 +msgid "age unit" +msgstr "years old" + +#: skins/default/templates/user_profile/user_info.html:90 +msgid "todays unused votes" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:91 +msgid "votes left" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:4 +#: skins/default/templates/user_profile/user_tabs.html:48 +msgid "moderation" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:8 +#, python-format +msgid "%(username)s's current status is \"%(status)s\"" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:11 +msgid "User status changed" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:20 +msgid "Save" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:26 +#, python-format +msgid "Your current reputation is %(reputation)s points" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:28 +#, python-format +msgid "User's current reputation is %(reputation)s points" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:32 +msgid "User reputation changed" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:39 +msgid "Subtract" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:44 +#, python-format +msgid "Send message to %(username)s" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:45 +msgid "" +"An email will be sent to the user with 'reply-to' field set to your email " +"address. Please make sure that your address is entered correctly." +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:47 +msgid "Message sent" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:65 +msgid "Send message" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:75 +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 "" + +#: skins/default/templates/user_profile/user_moderate.html:78 +msgid "" +"Moderators have the same privileges as administrators, but cannot add or " +"remove user status of 'moderator' or 'administrator'." +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:81 +msgid "'Approved' status means the same as regular user." +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:84 +#, fuzzy +msgid "Suspended users can only edit or delete their own 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." + +#: skins/default/templates/user_profile/user_moderate.html:87 +msgid "" +"Blocked users can only login and send feedback to the site administrators." +msgstr "" + +#: skins/default/templates/user_profile/user_network.html:5 +#: skins/default/templates/user_profile/user_tabs.html:18 +msgid "network" +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] "" + +#: skins/default/templates/user_profile/user_network.html:14 +#, python-format +msgid "Following %(count)s person" +msgid_plural "Following %(count)s people" +msgstr[0] "" + +#: skins/default/templates/user_profile/user_network.html:19 +msgid "" +"Your network is empty. Would you like to follow someone? - Just visit their " +"profiles and click \"follow\"" +msgstr "" + +#: skins/default/templates/user_profile/user_network.html:21 +#, python-format +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:31 +msgid "activity" +msgstr "" + +#: skins/default/templates/user_profile/user_recent.html:21 +#: 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 "" + +#: skins/default/templates/user_profile/user_reputation.html:13 +#, python-format +msgid "%(user_name)s's karma change log" +msgstr "" + +#: skins/default/templates/user_profile/user_stats.html:5 +#: skins/default/templates/user_profile/user_tabs.html:7 +msgid "overview" +msgstr "" + +#: skins/default/templates/user_profile/user_stats.html:11 +#, python-format +msgid "%(counter)s Question" +msgid_plural "%(counter)s Questions" +msgstr[0] "" + +#: skins/default/templates/user_profile/user_stats.html:16 +#, python-format +msgid "%(counter)s Answer" +msgid_plural "%(counter)s 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 "" + +#: 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)" +msgid_plural "the answer has been commented %(comment_count)s times" +msgstr[0] "" + +#: skins/default/templates/user_profile/user_stats.html:44 +#, python-format +msgid "%(cnt)s Vote" +msgid_plural "%(cnt)s Votes " +msgstr[0] "" + +#: skins/default/templates/user_profile/user_stats.html:50 +msgid "thumb up" +msgstr "" + +#: skins/default/templates/user_profile/user_stats.html:51 +msgid "user has voted up this many times" +msgstr "" + +#: skins/default/templates/user_profile/user_stats.html:54 +msgid "thumb down" +msgstr "" + +#: skins/default/templates/user_profile/user_stats.html:55 +msgid "user voted down this many times" +msgstr "" + +#: skins/default/templates/user_profile/user_stats.html:63 +#, python-format +msgid "%(counter)s Tag" +msgid_plural "%(counter)s Tags" +msgstr[0] "" + +#: skins/default/templates/user_profile/user_stats.html:99 +#, python-format +msgid "%(counter)s Badge" +msgid_plural "%(counter)s Badges" +msgstr[0] "" + +#: skins/default/templates/user_profile/user_stats.html:122 +#, fuzzy +msgid "Answer to:" +msgstr "Tips" + +#: skins/default/templates/user_profile/user_tabs.html:5 +msgid "User profile" +msgstr "" + +#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:772 +msgid "comments and answers to others questions" +msgstr "" + +#: skins/default/templates/user_profile/user_tabs.html:16 +msgid "followers and followed users" +msgstr "" + +#: skins/default/templates/user_profile/user_tabs.html:21 +msgid "graph of user reputation" +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:847 +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_tabs.html:40 views/users.py:960 +msgid "email subscription settings" +msgstr "" + +#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:224 +msgid "moderate this user" +msgstr "" + +#: skins/default/templates/user_profile/user_votes.html:4 +msgid "votes" +msgstr "" + +#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:240 +msgid "no items in counter" +msgstr "no" + +#: utils/decorators.py:90 views/commands.py:112 views/commands.py:132 +msgid "Oops, apologies - there was some error" +msgstr "" + +#: utils/decorators.py:109 +msgid "Please login to post" +msgstr "" + +#: utils/decorators.py:205 +msgid "Spam was detected on your post, sorry for if this is a mistake" +msgstr "" + +#: utils/forms.py:32 +msgid "this field is required" +msgstr "" + +#: utils/forms.py:46 +msgid "choose a username" +msgstr "Choose screen name" + +#: utils/forms.py:52 +msgid "user name is required" +msgstr "" + +#: utils/forms.py:53 +msgid "sorry, this name is taken, please choose another" +msgstr "" + +#: utils/forms.py:54 +msgid "sorry, this name is not allowed, please choose another" +msgstr "" + +#: utils/forms.py:55 +msgid "sorry, there is no user with this name" +msgstr "" + +#: utils/forms.py:56 +msgid "sorry, we have a serious error - user name is taken by several users" +msgstr "" + +#: utils/forms.py:57 +msgid "user name can only consist of letters, empty space and underscore" +msgstr "" + +#: utils/forms.py:118 +msgid "your email address" +msgstr "Your email (never shared)" + +#: utils/forms.py:119 +msgid "email address is required" +msgstr "" + +#: utils/forms.py:120 +msgid "please enter a valid email address" +msgstr "" + +#: utils/forms.py:121 +msgid "this email is already used by someone else, please choose another" +msgstr "" + +#: utils/forms.py:149 +msgid "choose password" +msgstr "Password" + +#: utils/forms.py:150 +msgid "password is required" +msgstr "" + +#: utils/forms.py:153 +msgid "retype password" +msgstr "Password (please retype)" + +#: utils/forms.py:154 +msgid "please, retype your password" +msgstr "" + +#: utils/forms.py:155 +msgid "sorry, entered passwords did not match, please try again" +msgstr "" + +#: utils/functions.py:74 +msgid "2 days ago" +msgstr "" + +#: utils/functions.py:76 +msgid "yesterday" +msgstr "" + +#: utils/functions.py:79 +#, python-format +msgid "%(hr)d hour ago" +msgid_plural "%(hr)d hours ago" +msgstr[0] "" + +#: utils/functions.py:85 +#, python-format +msgid "%(min)d min ago" +msgid_plural "%(min)d mins ago" +msgstr[0] "" + +#: views/avatar_views.py:99 +msgid "Successfully uploaded a new avatar." +msgstr "" + +#: views/avatar_views.py:140 +msgid "Successfully updated your avatar." +msgstr "" + +#: views/avatar_views.py:180 +msgid "Successfully deleted the requested avatars." +msgstr "" + +#: views/commands.py:39 +msgid "anonymous users cannot vote" +msgstr "Sorry, anonymous users cannot vote" + +#: views/commands.py:59 +msgid "Sorry you ran out of votes for today" +msgstr "" + +#: views/commands.py:65 +#, python-format +msgid "You have %(votes_left)s votes left for today" +msgstr "" + +#: views/commands.py:122 +msgid "Sorry, but anonymous users cannot access the inbox" +msgstr "" + +#: views/commands.py:192 +msgid "Sorry, something is not right here..." +msgstr "" + +#: views/commands.py:207 +msgid "Sorry, but anonymous users cannot accept answers" +msgstr "" + +#: views/commands.py:288 +#, python-format +msgid "subscription saved, %(email)s needs validation, see %(details_url)s" +msgstr "" +"Your subscription is saved, but email address %(email)s needs to be " +"validated, please see
      more details here" + +#: views/commands.py:295 +msgid "email update frequency has been set to daily" +msgstr "" + +#: views/commands.py:400 +#, python-format +msgid "Tag subscription was canceled (undo)." +msgstr "" + +#: views/commands.py:409 +#, python-format +msgid "Please sign in to subscribe for: %(tags)s" +msgstr "" + +#: views/commands.py:542 +msgid "Please sign in to vote" +msgstr "" + +#: views/meta.py:83 +msgid "Q&A forum feedback" +msgstr "" + +#: views/meta.py:84 +msgid "Thanks for the feedback!" +msgstr "" + +#: views/meta.py:92 +msgid "We look forward to hearing your feedback! Please, give it next time :)" +msgstr "" + +#: views/readers.py:177 +#, python-format +msgid "%(badge_count)d %(badge_level)s badge" +msgid_plural "%(badge_count)d %(badge_level)s badges" +msgstr[0] "" + +#: views/readers.py:441 +msgid "" +"Sorry, the comment you are looking for has been deleted and is no longer " +"accessible" +msgstr "" + +#: views/users.py:225 +msgid "moderate user" +msgstr "" + +#: views/users.py:380 +msgid "user profile" +msgstr "" + +#: views/users.py:381 +msgid "user profile overview" +msgstr "" + +#: views/users.py:685 +msgid "recent user activity" +msgstr "" + +#: views/users.py:686 +msgid "profile - recent activity" +msgstr "" + +#: views/users.py:773 +msgid "profile - responses" +msgstr "" + +#: views/users.py:848 +msgid "profile - votes" +msgstr "" + +#: views/users.py:883 +msgid "user reputation in the community" +msgstr "user karma" + +#: views/users.py:884 +msgid "profile - user reputation" +msgstr "Profile - User's Karma" + +#: views/users.py:911 +msgid "users favorite questions" +msgstr "" + +#: views/users.py:912 +msgid "profile - favorite questions" +msgstr "" + +#: views/users.py:932 views/users.py:936 +msgid "changes saved" +msgstr "" + +#: views/users.py:942 +msgid "email updates canceled" +msgstr "" + +#: views/users.py:961 +msgid "profile - email subscriptions" +msgstr "" + +#: views/writers.py:58 +msgid "Sorry, anonymous users cannot upload files" +msgstr "" + +#: views/writers.py:68 +#, python-format +msgid "allowed file types are '%(file_types)s'" +msgstr "" + +#: views/writers.py:91 +#, python-format +msgid "maximum upload file size is %(file_size)sK" +msgstr "" + +#: views/writers.py:99 +msgid "Error uploading file. Please contact the site administrator. Thank you." +msgstr "" + +#: views/writers.py:191 +#, fuzzy +msgid "Please log in to ask questions" +msgstr "" +"You are welcome to start submitting your question " +"anonymously. 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/writers.py:492 +#, fuzzy +msgid "Please log in to answer questions" +msgstr "" +"Please try to give a substantial answer. If " +"you wanted to comment on the question or answer, just use the " +"commenting tool. Please remember that you can always revise " +"your answers - no need to answer the same question twice. Also, " +"please don't forget to vote - it really helps to select the " +"best questions and answers!" + +#: views/writers.py:598 +#, python-format +msgid "" +"Sorry, you appear to be logged out and cannot post comments. Please sign in." +msgstr "" + +#: views/writers.py:646 +msgid "Sorry, anonymous users cannot edit comments" +msgstr "" + +#: views/writers.py:654 +#, python-format +msgid "" +"Sorry, you appear to be logged out and cannot delete comments. Please sign in." +msgstr "" + +#: views/writers.py:675 +msgid "sorry, we seem to have some technical difficulties" +msgstr "" + +#~ msgid "Email verification subject line" +#~ msgstr "Verification Email from Q&A forum" + +#~ msgid "how to validate email title" +#~ msgstr "How to validate email and why?" + +#~ msgid "" +#~ "how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)" +#~ "s" +#~ msgstr "" +#~ "

      How? If you have just set or " +#~ "changed your email address - check your email and click the " +#~ "included link.
      The link contains a key generated specifically " +#~ "for you. You can also and check your " +#~ "email again.

      Why? Email " +#~ "validation is required to make sure that only you can post " +#~ "messages on your behalf and to minimize spam " +#~ "posts.
      With email you can subscribe for updates on " +#~ "the most interesting questions. Also, when you sign up for the first time " +#~ "- create a unique gravatar personal image.

      " + +#~ msgid "" +#~ "As a registered user you can login with your OpenID, log out of the site " +#~ "or permanently remove your account." +#~ msgstr "" +#~ "Clicking Logout will log you out from the forumbut will " +#~ "not sign you off from your OpenID provider.

      If you wish to sign off " +#~ "completely - please make sure to log out from your OpenID provider as " +#~ "well." + +#~ msgid "Logout now" +#~ msgstr "Logout Now" + +#~ msgid "reputation points" +#~ msgstr "karma" diff --git a/askbot/locale/ko/LC_MESSAGES/djangojs.mo b/askbot/locale/ko/LC_MESSAGES/djangojs.mo new file mode 100644 index 00000000..94448970 Binary files /dev/null and b/askbot/locale/ko/LC_MESSAGES/djangojs.mo differ diff --git a/askbot/locale/ko/LC_MESSAGES/djangojs.po b/askbot/locale/ko/LC_MESSAGES/djangojs.po new file mode 100644 index 00000000..b033cb97 --- /dev/null +++ b/askbot/locale/ko/LC_MESSAGES/djangojs.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: 0.7\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-10-08 02:29-0500\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: skins/default/media/js/post.js:532 +msgid "Follow" +msgstr "" + +#: skins/default/media/js/post.js:541 skins/default/media/js/post.js.py:550 +#, perl-format +msgid "%s follower" +msgid_plural "%s followers" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/media/js/post.js:546 +msgid "

      Following
      Unfollow
      " +msgstr "" + +#: skins/default/media/js/post.js:1613 +msgid "Please enter question title (>10 characters)" +msgstr "" + +#: skins/default/media/js/tag_selector.js:15 +msgid "Tag \"\" matches:" +msgstr "" + +#: skins/default/media/js/tag_selector.js:84 +#, perl-format +msgid "and %s more, not shown..." +msgstr "" + +#: skins/default/media/js/user.js:129 +msgid "Please signin to follow %(username)s" +msgstr "" + +#: skins/default/media/js/user.js:161 +#, perl-format +msgid "unfollow %s" +msgstr "" + +#: skins/default/media/js/user.js:164 +#, perl-format +msgid "following %s" +msgstr "" + +#: skins/default/media/js/user.js:170 +#, perl-format +msgid "follow %s" +msgstr "" diff --git a/askbot/locale/kr/LC_MESSAGES/django.mo b/askbot/locale/kr/LC_MESSAGES/django.mo deleted file mode 100644 index 2cd947f2..00000000 Binary files a/askbot/locale/kr/LC_MESSAGES/django.mo and /dev/null differ diff --git a/askbot/locale/kr/LC_MESSAGES/django.po b/askbot/locale/kr/LC_MESSAGES/django.po deleted file mode 100644 index 98106260..00000000 --- a/askbot/locale/kr/LC_MESSAGES/django.po +++ /dev/null @@ -1,5570 +0,0 @@ -# English translation for CNPROG package. -# Copyright (C) 2009 Gang Chen, 2010 Askbot -# This file is distributed under the same license as the CNPROG package. -# Evgeny Fadeev , 2009. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-12-12 00:25-0600\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Evgeny Fadeev \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: exceptions.py:9 -msgid "Sorry, but anonymous visitors cannot access this function" -msgstr "" - -#: feed.py:22 -msgid " - " -msgstr "" - -#: feed.py:22 -msgid "latest questions" -msgstr "" - -#: forms.py:54 skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:40 -#: skins/default/templates/question_edit_tips.html:45 -msgid "title" -msgstr "" - -#: forms.py:55 -msgid "please enter a descriptive title for your question" -msgstr "" - -#: forms.py:60 -msgid "title must be > 10 characters" -msgstr "" - -#: forms.py:69 -msgid "content" -msgstr "" - -#: forms.py:75 -msgid "question content must be > 10 characters" -msgstr "" - -#: forms.py:84 skins/default/templates/header.html:105 -msgid "tags" -msgstr "" - -#: forms.py:86 -msgid "" -"Tags are short keywords, with no spaces within. Up to five tags can be used." -msgstr "" - -#: forms.py:93 skins/default/templates/question_retag.html:78 -msgid "tags are required" -msgstr "" - -#: forms.py:102 -#, 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:111 -#, 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:119 -msgid "use-these-chars-in-tags" -msgstr "" - -#: forms.py:130 -#: skins/default/templates/unused/question_summary_list_roll.html:26 -#: skins/default/templates/unused/question_summary_list_roll.html:38 -msgid "community wiki" -msgstr "" - -#: forms.py:131 -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:147 -msgid "update summary:" -msgstr "" - -#: forms.py:148 -msgid "" -"enter a brief summary of your revision (e.g. fixed spelling, grammar, " -"improved style, this field is optional)" -msgstr "" - -#: forms.py:204 -msgid "Enter number of points to add or subtract" -msgstr "" - -#: forms.py:218 const/__init__.py:220 -msgid "approved" -msgstr "" - -#: forms.py:219 const/__init__.py:221 -msgid "watched" -msgstr "" - -#: forms.py:220 const/__init__.py:222 -msgid "suspended" -msgstr "" - -#: forms.py:221 const/__init__.py:223 -msgid "blocked" -msgstr "" - -#: forms.py:223 const/__init__.py:219 -msgid "moderator" -msgstr "" - -#: forms.py:243 -msgid "Change status to" -msgstr "" - -#: forms.py:270 -msgid "which one?" -msgstr "" - -#: forms.py:291 -msgid "Cannot change own status" -msgstr "" - -#: forms.py:297 -msgid "Cannot turn other user to moderator" -msgstr "" - -#: forms.py:304 -msgid "Cannot change status of another moderator" -msgstr "" - -#: forms.py:310 -#, python-format -msgid "If you wish to change %(username)s's status, " -msgstr "" - -#: forms.py:319 -msgid "Subject line" -msgstr "" - -#: forms.py:326 -msgid "Message text" -msgstr "" - -#: forms.py:403 -msgid "Your name:" -msgstr "" - -#: forms.py:404 -msgid "Email (not shared with anyone):" -msgstr "" - -#: forms.py:405 -msgid "Your message:" -msgstr "" - -#: forms.py:492 -msgid "this email does not have to be linked to gravatar" -msgstr "" - -#: forms.py:499 -msgid "Real name" -msgstr "" - -#: forms.py:506 -msgid "Website" -msgstr "" - -#: forms.py:513 -msgid "Location" -msgstr "" - -#: forms.py:520 -msgid "Date of birth" -msgstr "" - -#: forms.py:521 -msgid "will not be shown, used to calculate age, format: YYYY-MM-DD" -msgstr "" - -#: forms.py:527 -msgid "Profile" -msgstr "" - -#: forms.py:536 -msgid "Screen name" -msgstr "" - -#: forms.py:561 forms.py:562 -msgid "this email has already been registered, please use another one" -msgstr "" - -#: forms.py:568 -msgid "Choose email tag filter" -msgstr "" - -#: forms.py:607 -msgid "Asked by me" -msgstr "" - -#: forms.py:610 -msgid "Answered by me" -msgstr "" - -#: forms.py:613 -msgid "Individually selected" -msgstr "" - -#: forms.py:616 -msgid "Entire forum (tag filtered)" -msgstr "" - -#: forms.py:620 -msgid "Comments and posts mentioning me" -msgstr "" - -#: forms.py:678 -msgid "okay, let's try!" -msgstr "" - -#: forms.py:679 -msgid "no community email please, thanks" -msgstr "no askbot email please, thanks" - -#: forms.py:683 -msgid "please choose one of the options above" -msgstr "" - -#: urls.py:45 -msgid "about/" -msgstr "" - -#: urls.py:46 conf/site_settings.py:79 -msgid "faq/" -msgstr "" - -#: urls.py:47 -msgid "privacy/" -msgstr "" - -#: urls.py:48 -msgid "logout/" -msgstr "" - -#: urls.py:50 urls.py:55 -msgid "answers/" -msgstr "" - -#: urls.py:50 urls.py:71 urls.py:167 -msgid "edit/" -msgstr "" - -#: urls.py:55 urls.py:101 -msgid "revisions/" -msgstr "" - -#: urls.py:61 urls.py:66 urls.py:71 urls.py:76 urls.py:81 urls.py:86 -#: urls.py:91 urls.py:96 urls.py:101 -msgid "questions/" -msgstr "" - -#: urls.py:66 -msgid "ask/" -msgstr "" - -#: urls.py:76 -msgid "retag/" -msgstr "" - -#: urls.py:81 -msgid "close/" -msgstr "" - -#: urls.py:86 -msgid "reopen/" -msgstr "" - -#: urls.py:91 -msgid "answer/" -msgstr "" - -#: urls.py:96 -msgid "vote/" -msgstr "" - -#: urls.py:117 -msgid "command/" -msgstr "" - -#: urls.py:133 -msgid "question/" -msgstr "" - -#: urls.py:138 -msgid "tags/" -msgstr "" - -#: urls.py:143 urls.py:149 -msgid "mark-tag/" -msgstr "" - -#: urls.py:143 -msgid "interesting/" -msgstr "" - -#: urls.py:149 -msgid "ignored/" -msgstr "" - -#: urls.py:155 -msgid "unmark-tag/" -msgstr "" - -#: urls.py:161 urls.py:167 urls.py:172 -msgid "users/" -msgstr "" - -#: urls.py:177 urls.py:182 -msgid "badges/" -msgstr "" - -#: urls.py:187 -msgid "messages/" -msgstr "" - -#: urls.py:187 -msgid "markread/" -msgstr "" - -#: urls.py:202 -msgid "upload/" -msgstr "" - -#: urls.py:203 -msgid "search/" -msgstr "" - -#: urls.py:204 -msgid "feedback/" -msgstr "" - -#: urls.py:205 setup_templates/settings.py:182 -#: skins/default/templates/authopenid/signin.html:249 -msgid "account/" -msgstr "" - -#: conf/badges.py:12 -msgid "Badge settings" -msgstr "" - -#: conf/badges.py:21 -msgid "Disciplined: minimum upvotes for deleted post" -msgstr "" - -#: conf/badges.py:30 -msgid "Peer Pressure: minimum downvotes for deleted post" -msgstr "" - -#: conf/badges.py:39 -msgid "Teacher: minimum upvotes for the answer" -msgstr "" - -#: conf/badges.py:48 -msgid "Nice Answer: minimum upvotes for the answer" -msgstr "" - -#: conf/badges.py:57 -msgid "Good Answer: minimum upvotes for the answer" -msgstr "" - -#: conf/badges.py:66 -msgid "Great Answer: minimum upvotes for the answer" -msgstr "" - -#: conf/badges.py:75 -msgid "Nice Question: minimum upvotes for the question" -msgstr "" - -#: conf/badges.py:84 -msgid "Good Question: minimum upvotes for the question" -msgstr "" - -#: conf/badges.py:93 -msgid "Great Question: minimum upvotes for the question" -msgstr "" - -#: conf/badges.py:102 -msgid "Popular Question: minimum views" -msgstr "" - -#: conf/badges.py:111 -msgid "Notable Question: minimum views" -msgstr "" - -#: conf/badges.py:120 -msgid "Famous Question: minimum views" -msgstr "" - -#: conf/badges.py:129 -msgid "Self-Learner: minimum answer upvotes" -msgstr "" - -#: conf/badges.py:138 -msgid "Civic Duty: minimum votes" -msgstr "" - -#: conf/badges.py:147 -msgid "Enlightened Duty: minimum upvotes" -msgstr "" - -#: conf/badges.py:156 -msgid "Guru: minimum upvotes" -msgstr "" - -#: conf/badges.py:165 -msgid "Necromancer: minimum upvotes" -msgstr "" - -#: conf/badges.py:174 -msgid "Necromancer: minimum delay in days" -msgstr "" - -#: conf/badges.py:183 -msgid "Associate Editor: minimum number of edits" -msgstr "" - -#: conf/badges.py:192 -msgid "Favorite Question: minimum stars" -msgstr "" - -#: conf/badges.py:201 -msgid "Stellar Question: minimum stars" -msgstr "" - -#: conf/email.py:12 -msgid "Email and email alert settings" -msgstr "" - -#: conf/email.py:20 -msgid "Maximum number of news entries in an email alert" -msgstr "" - -#: conf/email.py:30 -msgid "Default news notification frequency" -msgstr "" - -#: conf/email.py:32 -msgid "" -"This option currently defines default frequency of emailed updates in the " -"following five categories: questions asked by user, answered by user, " -"individually selected, entire forum (per person tag filter applies) and " -"posts mentioning the user and comment responses" -msgstr "" - -#: conf/email.py:47 -msgid "Require email verification before allowing to post" -msgstr "" - -#: conf/email.py:48 -msgid "" -"Active email verification is done by sending a verification key in email" -msgstr "" - -#: conf/email.py:57 -msgid "Allow only one account per email address" -msgstr "" - -#: conf/email.py:66 -msgid "Fake email for anonymous user" -msgstr "" - -#: conf/email.py:67 -msgid "Use this setting to control gravatar for email-less user" -msgstr "" - -#: conf/email.py:76 -msgid "Prefix for the email subject line" -msgstr "Welcome to the Q&A forum" - -#: conf/external_keys.py:11 -msgid "Keys to connect the site with external services like Facebook, etc." -msgstr "" - -#: conf/external_keys.py:18 -msgid "Google site verification key" -msgstr "" - -#: conf/external_keys.py:20 -#, python-format -msgid "" -"This key helps google index your site please obtain is at google webmasters tools site" -msgstr "" - -#: conf/external_keys.py:34 -msgid "Google Analytics key" -msgstr "" - -#: conf/external_keys.py:36 -#, python-format -msgid "" -"Obtain is at Google Analytics site, if you wish " -"to use Google Analytics to monitor your site" -msgstr "" - -#: conf/external_keys.py:49 -msgid "Enable recaptcha (keys below are required)" -msgstr "" - -#: conf/external_keys.py:58 -msgid "Recaptcha public key" -msgstr "" - -#: conf/external_keys.py:66 -msgid "Recaptcha private key" -msgstr "" - -#: conf/external_keys.py:68 -msgid "" -"Recaptcha is a tool that helps distinguish real people from annoying spam " -"robots. Please get this and a public key at the recaptcha.net" -msgstr "" - -#: conf/external_keys.py:80 -msgid "Facebook public API key" -msgstr "" - -#: conf/external_keys.py:82 -msgid "" -"Facebook API key and Facebook secret allow to use Facebook Connect login " -"method at your site. Please obtain these keys at facebook create app site" -msgstr "" - -#: conf/external_keys.py:95 -msgid "Facebook secret key" -msgstr "" - -#: conf/external_keys.py:103 -msgid "Twitter consumer key" -msgstr "" - -#: conf/external_keys.py:105 conf/external_keys.py:126 -msgid "" -"Please register your forum at twitter applications site" -msgstr "" - -#: conf/external_keys.py:116 -msgid "Twitter consumer secret" -msgstr "" - -#: conf/external_keys.py:124 -msgid "LinkedIn consumer key" -msgstr "" - -#: conf/external_keys.py:137 -msgid "LinkedIn consumer secret" -msgstr "" - -#: conf/external_keys.py:145 -msgid "User LDAP authentication for the password login" -msgstr "" - -#: conf/external_keys.py:154 -msgid "LDAP service provider name" -msgstr "" - -#: conf/external_keys.py:162 -msgid "URL for the LDAP service" -msgstr "" - -#: conf/external_keys.py:170 -msgid "Explain how to change LDAP password" -msgstr "" - -#: conf/flatpages.py:10 -msgid "Flatpages - about, privacy policy, etc." -msgstr "" - -#: conf/flatpages.py:17 -msgid "Text of the Q&A forum About page (html format)" -msgstr "" - -#: conf/flatpages.py:20 -msgid "" -"Save, then use HTML validator on " -"the \"about\" page to check your input." -msgstr "" - -#: conf/flatpages.py:30 -msgid "Text of the Q&A forum Privacy Policy (html format)" -msgstr "" - -#: conf/flatpages.py:33 -msgid "" -"Save, then use HTML validator on " -"the \"privacy\" page to check your input." -msgstr "" - -#: conf/forum_data_rules.py:12 -msgid "Settings for askbot data entry and display" -msgstr "" - -#: conf/forum_data_rules.py:20 -msgid "Check to enable community wiki feature" -msgstr "" - -#: conf/forum_data_rules.py:29 -msgid "Maximum length of tag (number of characters)" -msgstr "" - -#: conf/forum_data_rules.py:39 -msgid "Default max number of comments to display under posts" -msgstr "" - -#: conf/forum_data_rules.py:50 -#, python-format -msgid "Maximum comment length, must be < %(max_len)s" -msgstr "" - -#: conf/forum_data_rules.py:60 -msgid "Minimum length of search term for Ajax search" -msgstr "" - -#: conf/forum_data_rules.py:61 -msgid "Must match the corresponding database backend setting" -msgstr "" - -#: conf/forum_data_rules.py:70 -msgid "Maximum number of tags per question" -msgstr "" - -#: conf/forum_data_rules.py:82 -msgid "Number of questions to list by default" -msgstr "" - -#: conf/forum_data_rules.py:92 -msgid "What should \"unanswered question\" mean?" -msgstr "" - -#: conf/markup.py:15 -msgid "Markup formatting" -msgstr "" - -#: conf/markup.py:29 -msgid "Enable code-friendly Markdown" -msgstr "" - -#: conf/markup.py:31 -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 " -"\"MathJax support\" implicitly turns this feature on, because underscores " -"are heavily used in LaTeX input." -msgstr "" - -#: conf/markup.py:46 -msgid "Mathjax support (rendering of LaTeX)" -msgstr "" - -#: conf/markup.py:48 -#, python-format -msgid "" -"If you enable this feature, mathjax must be " -"installed in directory %(dir)s" -msgstr "" - -#: conf/markup.py:63 -msgid "Base url of MathJax deployment" -msgstr "" - -#: conf/markup.py:65 -msgid "" -"Note - MathJax is not included with askbot - 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 "" - -#: conf/minimum_reputation.py:11 -msgid "Minimum reputation required to perform actions" -msgstr "" - -#: conf/minimum_reputation.py:20 -msgid "Upvote" -msgstr "" - -#: conf/minimum_reputation.py:29 -msgid "Downvote" -msgstr "" - -#: conf/minimum_reputation.py:38 -msgid "Flag offensive" -msgstr "" - -#: conf/minimum_reputation.py:47 -msgid "Leave comments" -msgstr "" - -#: conf/minimum_reputation.py:56 -msgid "Delete comments posted by others" -msgstr "" - -#: conf/minimum_reputation.py:65 -msgid "Delete questions and answers posted by others" -msgstr "" - -#: conf/minimum_reputation.py:74 -msgid "Upload files" -msgstr "" - -#: conf/minimum_reputation.py:83 -msgid "Close own questions" -msgstr "" - -#: conf/minimum_reputation.py:92 -msgid "Retag questions posted by other people" -msgstr "" - -#: conf/minimum_reputation.py:101 -msgid "Reopen own questions" -msgstr "" - -#: conf/minimum_reputation.py:110 -msgid "Edit community wiki posts" -msgstr "" - -#: conf/minimum_reputation.py:119 -msgid "Edit posts authored by other people" -msgstr "" - -#: conf/minimum_reputation.py:128 -msgid "View offensive flags" -msgstr "" - -#: conf/minimum_reputation.py:137 -msgid "Close questions asked by others" -msgstr "" - -#: conf/minimum_reputation.py:146 -msgid "Lock posts" -msgstr "" - -#: conf/reputation_changes.py:12 -msgid "Reputation loss and gain rules" -msgstr "" - -#: conf/reputation_changes.py:21 -msgid "Maximum daily reputation gain per user" -msgstr "" - -#: conf/reputation_changes.py:30 -msgid "Gain for receiving an upvote" -msgstr "" - -#: conf/reputation_changes.py:39 -msgid "Gain for the author of accepted answer" -msgstr "" - -#: conf/reputation_changes.py:48 -msgid "Gain for accepting best answer" -msgstr "" - -#: conf/reputation_changes.py:57 -msgid "Gain for post owner on canceled downvote" -msgstr "" - -#: conf/reputation_changes.py:66 -msgid "Gain for voter on canceling downvote" -msgstr "" - -#: conf/reputation_changes.py:76 -msgid "Loss for voter for canceling of answer acceptance" -msgstr "" - -#: conf/reputation_changes.py:86 -msgid "Loss for author whose answer was \"un-accepted\"" -msgstr "" - -#: conf/reputation_changes.py:96 -msgid "Loss for giving a downvote" -msgstr "" - -#: conf/reputation_changes.py:106 -msgid "Loss for owner of post that was flagged offensive" -msgstr "" - -#: conf/reputation_changes.py:116 -msgid "Loss for owner of post that was downvoted" -msgstr "" - -#: conf/reputation_changes.py:126 -msgid "Loss for owner of post that was flagged 3 times per same revision" -msgstr "" - -#: conf/reputation_changes.py:136 -msgid "Loss for owner of post that was flagged 5 times per same revision" -msgstr "" - -#: conf/reputation_changes.py:146 -msgid "Loss for post owner when upvote is canceled" -msgstr "" - -#: conf/site_settings.py:13 -msgid "Q&A forum website parameters and urls" -msgstr "" - -#: conf/site_settings.py:21 -msgid "Site title for the Q&A forum" -msgstr "" - -#: conf/site_settings.py:30 -msgid "Comma separated list of Q&A site keywords" -msgstr "" - -#: conf/site_settings.py:40 -msgid "Copyright message to show in the footer" -msgstr "" - -#: conf/site_settings.py:50 -msgid "Site description for the search engines" -msgstr "" - -#: conf/site_settings.py:58 -msgid "Askbot" -msgstr "" - -#: conf/site_settings.py:59 -msgid "Short name for your Q&A forum" -msgstr "" - -#: conf/site_settings.py:69 -msgid "Base URL for your Q&A forum, must start with http or https" -msgstr "" - -#: conf/site_settings.py:82 -msgid "Link shown in the greeting message shown to the anonymous user" -msgstr "" - -#: conf/site_settings.py:85 -msgid "" -"If you change this url from the default - then you will also probably want " -"to adjust translation of the following string: " -msgstr "" - -#: conf/site_settings.py:98 -msgid "Feedback site URL" -msgstr "" - -#: conf/site_settings.py:100 -msgid "If left empty, a simple internal feedback form will be used instead" -msgstr "" - -#: conf/skin_counter_settings.py:11 -msgid "Skin: view, vote and answer counters" -msgstr "" - -#: conf/skin_counter_settings.py:19 -msgid "Vote counter value to give \"full color\"" -msgstr "" - -#: conf/skin_counter_settings.py:29 -msgid "Background color for votes = 0" -msgstr "" - -#: conf/skin_counter_settings.py:30 conf/skin_counter_settings.py:41 -#: conf/skin_counter_settings.py:52 conf/skin_counter_settings.py:62 -#: conf/skin_counter_settings.py:72 conf/skin_counter_settings.py:85 -#: conf/skin_counter_settings.py:106 conf/skin_counter_settings.py:117 -#: conf/skin_counter_settings.py:128 conf/skin_counter_settings.py:138 -#: conf/skin_counter_settings.py:148 conf/skin_counter_settings.py:163 -#: conf/skin_counter_settings.py:186 conf/skin_counter_settings.py:196 -#: conf/skin_counter_settings.py:206 conf/skin_counter_settings.py:216 -#: conf/skin_counter_settings.py:228 conf/skin_counter_settings.py:239 -#: conf/skin_counter_settings.py:252 conf/skin_counter_settings.py:262 -msgid "HTML color name or hex value" -msgstr "" - -#: conf/skin_counter_settings.py:40 -msgid "Foreground color for votes = 0" -msgstr "" - -#: conf/skin_counter_settings.py:51 -msgid "Background color for votes" -msgstr "" - -#: conf/skin_counter_settings.py:61 -msgid "Foreground color for votes" -msgstr "" - -#: conf/skin_counter_settings.py:71 -msgid "Background color for votes = MAX" -msgstr "" - -#: conf/skin_counter_settings.py:84 -msgid "Foreground color for votes = MAX" -msgstr "" - -#: conf/skin_counter_settings.py:95 -msgid "View counter value to give \"full color\"" -msgstr "" - -#: conf/skin_counter_settings.py:105 -msgid "Background color for views = 0" -msgstr "" - -#: conf/skin_counter_settings.py:116 -msgid "Foreground color for views = 0" -msgstr "" - -#: conf/skin_counter_settings.py:127 -msgid "Background color for views" -msgstr "" - -#: conf/skin_counter_settings.py:137 -msgid "Foreground color for views" -msgstr "" - -#: conf/skin_counter_settings.py:147 -msgid "Background color for views = MAX" -msgstr "" - -#: conf/skin_counter_settings.py:162 -msgid "Foreground color for views = MAX" -msgstr "" - -#: conf/skin_counter_settings.py:173 -msgid "Answer counter value to give \"full color\"" -msgstr "" - -#: conf/skin_counter_settings.py:185 -msgid "Background color for answers = 0" -msgstr "" - -#: conf/skin_counter_settings.py:195 -msgid "Foreground color for answers = 0" -msgstr "" - -#: conf/skin_counter_settings.py:205 -msgid "Background color for answers" -msgstr "" - -#: conf/skin_counter_settings.py:215 -msgid "Foreground color for answers" -msgstr "" - -#: conf/skin_counter_settings.py:227 -msgid "Background color for answers = MAX" -msgstr "" - -#: conf/skin_counter_settings.py:238 -msgid "Foreground color for answers = MAX" -msgstr "" - -#: conf/skin_counter_settings.py:251 -msgid "Background color for accepted" -msgstr "" - -#: conf/skin_counter_settings.py:261 -msgid "Foreground color for accepted answer" -msgstr "" - -#: conf/skin_general_settings.py:15 -msgid "Skin and User Interface settings" -msgstr "" - -#: conf/skin_general_settings.py:22 -msgid "Q&A site logo" -msgstr "" - -#: conf/skin_general_settings.py:24 -msgid "To change the logo, select new file, then submit this whole form." -msgstr "" - -#: conf/skin_general_settings.py:38 -msgid "Site favicon" -msgstr "" - -#: conf/skin_general_settings.py:40 -#, 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 this page." -msgstr "" - -#: conf/skin_general_settings.py:56 -msgid "Password login button" -msgstr "" - -#: conf/skin_general_settings.py:58 -msgid "" -"An 88x38 pixel image that is used on the login screen for the password login " -"button." -msgstr "" - -#: conf/skin_general_settings.py:73 -msgid "Show all UI functions to all users" -msgstr "" - -#: conf/skin_general_settings.py:75 -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:90 -msgid "Select skin" -msgstr "" - -#: conf/skin_general_settings.py:99 -msgid "Skin media revision number" -msgstr "" - -#: conf/skin_general_settings.py:101 -msgid "" -"Increment this number when you change image in skin media or stylesheet. " -"This helps avoid showing your users outdated images from their browser cache." -msgstr "" - -#: conf/social_sharing.py:10 -msgid "Sharing content on social networks" -msgstr "" - -#: conf/social_sharing.py:18 -msgid "Check to enable sharing of questions on Twitter and Facebook" -msgstr "" - -#: conf/user_settings.py:10 -msgid "User policy settings" -msgstr "" - -#: conf/user_settings.py:18 -msgid "Allow editing user screen name" -msgstr "" - -#: conf/user_settings.py:28 -msgid "Minimum allowed length for screen name" -msgstr "" - -#: conf/vote_rules.py:13 -msgid "Limits applicable to votes and moderation flags" -msgstr "" - -#: conf/vote_rules.py:22 -msgid "Number of votes a user can cast per day" -msgstr "" - -#: conf/vote_rules.py:31 -msgid "Maximum number of flags per user per day" -msgstr "" - -#: conf/vote_rules.py:40 -msgid "Threshold for warning about remaining daily votes" -msgstr "" - -#: conf/vote_rules.py:49 -msgid "Number of days to allow canceling votes" -msgstr "" - -#: conf/vote_rules.py:58 -msgid "Number of flags required to automatically hide posts" -msgstr "" - -#: conf/vote_rules.py:67 -msgid "Number of flags required to automatically delete posts" -msgstr "" - -#: const/__init__.py:9 -msgid "duplicate question" -msgstr "" - -#: const/__init__.py:10 -msgid "question is off-topic or not relevant" -msgstr "" - -#: const/__init__.py:11 -msgid "too subjective and argumentative" -msgstr "" - -#: const/__init__.py:12 -msgid "not a real question" -msgstr "" - -#: const/__init__.py:13 -msgid "the question is answered, right answer was accepted" -msgstr "" - -#: const/__init__.py:14 -msgid "question is not relevant or outdated" -msgstr "" - -#: const/__init__.py:15 -msgid "question contains offensive or malicious remarks" -msgstr "" - -#: const/__init__.py:16 -msgid "spam or advertising" -msgstr "" - -#: const/__init__.py:17 -msgid "too localized" -msgstr "" - -#: const/__init__.py:40 -msgid "newest" -msgstr "" - -#: const/__init__.py:41 skins/default/templates/users.html:25 -#: skins/default/templates/users.html:26 -msgid "oldest" -msgstr "" - -#: const/__init__.py:42 -msgid "active" -msgstr "" - -#: const/__init__.py:43 -msgid "inactive" -msgstr "" - -#: const/__init__.py:44 -msgid "hottest" -msgstr "" - -#: const/__init__.py:45 -msgid "coldest" -msgstr "" - -#: const/__init__.py:46 -msgid "most voted" -msgstr "" - -#: const/__init__.py:47 -msgid "least voted" -msgstr "" - -#: const/__init__.py:48 -msgid "relevance" -msgstr "" - -#: const/__init__.py:55 skins/default/templates/questions.html:14 -#: skins/default/templates/user_inbox.html:47 -msgid "all" -msgstr "" - -#: const/__init__.py:56 skins/default/templates/questions.html:19 -msgid "unanswered" -msgstr "" - -#: const/__init__.py:57 skins/default/templates/questions.html:25 -msgid "favorite" -msgstr "" - -#: const/__init__.py:71 -msgid "Question has no answers" -msgstr "" - -#: const/__init__.py:72 -msgid "Question has no accepted answers" -msgstr "" - -#: const/__init__.py:112 -msgid "asked a question" -msgstr "" - -#: const/__init__.py:113 -msgid "answered a question" -msgstr "" - -#: const/__init__.py:114 -msgid "commented question" -msgstr "" - -#: const/__init__.py:115 -msgid "commented answer" -msgstr "" - -#: const/__init__.py:116 -msgid "edited question" -msgstr "" - -#: const/__init__.py:117 -msgid "edited answer" -msgstr "" - -#: const/__init__.py:118 -msgid "received award" -msgstr "received badge" - -#: const/__init__.py:119 -msgid "marked best answer" -msgstr "" - -#: const/__init__.py:120 -msgid "upvoted" -msgstr "" - -#: const/__init__.py:121 -msgid "downvoted" -msgstr "" - -#: const/__init__.py:122 -msgid "canceled vote" -msgstr "" - -#: const/__init__.py:123 -msgid "deleted question" -msgstr "" - -#: const/__init__.py:124 -msgid "deleted answer" -msgstr "" - -#: const/__init__.py:125 -msgid "marked offensive" -msgstr "" - -#: const/__init__.py:126 -msgid "updated tags" -msgstr "" - -#: const/__init__.py:127 -msgid "selected favorite" -msgstr "" - -#: const/__init__.py:128 -msgid "completed user profile" -msgstr "" - -#: const/__init__.py:129 -msgid "email update sent to user" -msgstr "" - -#: const/__init__.py:130 -msgid "mentioned in the post" -msgstr "" - -#: const/__init__.py:181 -msgid "question_answered" -msgstr "answered question" - -#: const/__init__.py:182 -msgid "question_commented" -msgstr "commented question" - -#: const/__init__.py:183 -msgid "answer_commented" -msgstr "" - -#: const/__init__.py:184 -msgid "answer_accepted" -msgstr "" - -#: const/__init__.py:188 -msgid "[closed]" -msgstr "" - -#: const/__init__.py:189 -msgid "[deleted]" -msgstr "" - -#: const/__init__.py:190 views/readers.py:623 -msgid "initial version" -msgstr "" - -#: const/__init__.py:191 -msgid "retagged" -msgstr "" - -#: const/__init__.py:196 -msgid "exclude ignored tags" -msgstr "" - -#: const/__init__.py:197 -msgid "allow only selected tags" -msgstr "" - -#: const/__init__.py:201 -msgid "instantly" -msgstr "" - -#: const/__init__.py:202 -msgid "daily" -msgstr "" - -#: const/__init__.py:203 -msgid "weekly" -msgstr "" - -#: const/__init__.py:204 -msgid "no email" -msgstr "" - -#: const/__init__.py:241 skins/default/templates/badges.html:43 -msgid "gold" -msgstr "" - -#: const/__init__.py:242 skins/default/templates/badges.html:52 -msgid "silver" -msgstr "" - -#: const/__init__.py:243 skins/default/templates/badges.html:59 -msgid "bronze" -msgstr "" - -#: const/message_keys.py:19 -#, python-format -msgid "First time here? Check out the FAQ!" -msgstr "" - -#: deps/django_authopenid/forms.py:116 deps/django_authopenid/views.py:137 -msgid "i-names are not supported" -msgstr "" - -#: deps/django_authopenid/forms.py:237 -#, python-format -msgid "Please enter your %(username_token)s" -msgstr "" - -#: deps/django_authopenid/forms.py:263 -msgid "Please, enter your user name" -msgstr "" - -#: deps/django_authopenid/forms.py:267 -msgid "Please, enter your password" -msgstr "" - -#: deps/django_authopenid/forms.py:274 deps/django_authopenid/forms.py:278 -msgid "Please, enter your new password" -msgstr "" - -#: deps/django_authopenid/forms.py:289 -msgid "Passwords did not match" -msgstr "" - -#: deps/django_authopenid/forms.py:301 -#, python-format -msgid "Please choose password > %(len)s characters" -msgstr "" - -#: deps/django_authopenid/forms.py:336 -msgid "Current password" -msgstr "" - -#: deps/django_authopenid/forms.py:347 -msgid "" -"Old password is incorrect. Please enter the correct " -"password." -msgstr "" - -#: deps/django_authopenid/forms.py:400 -msgid "Sorry, we don't have this email address in the database" -msgstr "" - -#: deps/django_authopenid/forms.py:435 -msgid "Your user name (required)" -msgstr "" - -#: deps/django_authopenid/forms.py:450 -msgid "Incorrect username." -msgstr "sorry, there is no such user name" - -#: deps/django_authopenid/urls.py:13 deps/django_authopenid/urls.py:14 -#: deps/django_authopenid/urls.py:17 deps/django_authopenid/urls.py:20 -#: setup_templates/settings.py:182 -msgid "signin/" -msgstr "" - -#: deps/django_authopenid/urls.py:13 -msgid "newquestion/" -msgstr "" - -#: deps/django_authopenid/urls.py:14 -msgid "newanswer/" -msgstr "" - -#: deps/django_authopenid/urls.py:15 -msgid "signout/" -msgstr "" - -#: deps/django_authopenid/urls.py:17 -msgid "complete/" -msgstr "" - -#: deps/django_authopenid/urls.py:20 -msgid "complete-oauth/" -msgstr "" - -#: deps/django_authopenid/urls.py:24 -msgid "register/" -msgstr "" - -#: deps/django_authopenid/urls.py:26 -msgid "signup/" -msgstr "" - -#: deps/django_authopenid/urls.py:34 -msgid "recover/" -msgstr "" - -#: deps/django_authopenid/util.py:196 -#, python-format -msgid "%(site)s user name and password" -msgstr "" - -#: deps/django_authopenid/util.py:202 -#: skins/default/templates/authopenid/signin.html:124 -msgid "Create a password-protected account" -msgstr "" - -#: deps/django_authopenid/util.py:203 -msgid "Change your password" -msgstr "" - -#: deps/django_authopenid/util.py:265 -msgid "Sign in with Yahoo" -msgstr "" - -#: deps/django_authopenid/util.py:272 -msgid "AOL screen name" -msgstr "" - -#: deps/django_authopenid/util.py:280 -msgid "OpenID url" -msgstr "" - -#: deps/django_authopenid/util.py:297 -msgid "MyOpenid user name" -msgstr "" - -#: deps/django_authopenid/util.py:305 deps/django_authopenid/util.py:313 -msgid "Flickr user name" -msgstr "" - -#: deps/django_authopenid/util.py:321 -msgid "Technorati user name" -msgstr "" - -#: deps/django_authopenid/util.py:329 -msgid "WordPress blog name" -msgstr "" - -#: deps/django_authopenid/util.py:337 -msgid "Blogger blog name" -msgstr "" - -#: deps/django_authopenid/util.py:345 -msgid "LiveJournal blog name" -msgstr "" - -#: deps/django_authopenid/util.py:353 -msgid "ClaimID user name" -msgstr "" - -#: deps/django_authopenid/util.py:361 -msgid "Vidoop user name" -msgstr "" - -#: deps/django_authopenid/util.py:369 -msgid "Verisign user name" -msgstr "" - -#: deps/django_authopenid/util.py:393 -#, python-format -msgid "Change your %(provider)s password" -msgstr "" - -#: deps/django_authopenid/util.py:397 -#, python-format -msgid "Click to see if your %(provider)s signin still works for %(site_name)s" -msgstr "" - -#: deps/django_authopenid/util.py:406 -#, python-format -msgid "Create password for %(provider)s" -msgstr "" - -#: deps/django_authopenid/util.py:410 -#, python-format -msgid "Connect your %(provider)s account to %(site_name)s" -msgstr "" - -#: deps/django_authopenid/util.py:419 -#, python-format -msgid "Signin with %(provider)s user name and password" -msgstr "" - -#: deps/django_authopenid/util.py:426 -#, python-format -msgid "Sign in with your %(provider)s account" -msgstr "" - -#: deps/django_authopenid/views.py:144 -#, python-format -msgid "OpenID %(openid_url)s is invalid" -msgstr "" - -#: deps/django_authopenid/views.py:256 deps/django_authopenid/views.py:399 -#: deps/django_authopenid/views.py:427 -#, 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:349 -msgid "Your new password saved" -msgstr "" - -#: deps/django_authopenid/views.py:511 -msgid "Please click any of the icons below to sign in" -msgstr "" - -#: deps/django_authopenid/views.py:513 -msgid "Account recovery email sent" -msgstr "" - -#: deps/django_authopenid/views.py:516 -msgid "Please add one or more login methods." -msgstr "" - -#: deps/django_authopenid/views.py:518 -msgid "If you wish, please add, remove or re-validate your login methods" -msgstr "" - -#: deps/django_authopenid/views.py:520 -msgid "Please wait a second! Your account is recovered, but ..." -msgstr "" - -#: deps/django_authopenid/views.py:522 -msgid "Sorry, this account recovery key has expired or is invalid" -msgstr "" - -#: deps/django_authopenid/views.py:578 -#, python-format -msgid "Login method %(provider_name)s does not exist" -msgstr "" - -#: deps/django_authopenid/views.py:584 -msgid "Oops, sorry - there was some error - please try again" -msgstr "" - -#: deps/django_authopenid/views.py:675 -#, python-format -msgid "Your %(provider)s login works fine" -msgstr "" - -#: deps/django_authopenid/views.py:973 deps/django_authopenid/views.py:979 -#, python-format -msgid "your email needs to be validated see %(details_url)s" -msgstr "" -"Your email needs to be validated. Please see details here." - -#: deps/django_authopenid/views.py:1000 -msgid "Email verification subject line" -msgstr "Verification Email from Q&A forum" - -#: deps/django_authopenid/views.py:1066 -msgid "Please check your email and visit the enclosed link." -msgstr "" - -#: deps/livesettings/models.py:101 deps/livesettings/models.py:140 -msgid "Site" -msgstr "" - -#: deps/livesettings/values.py:107 -msgid "Base Settings" -msgstr "" - -#: deps/livesettings/values.py:214 -msgid "Default value: \"\"" -msgstr "" - -#: deps/livesettings/values.py:221 -msgid "Default value: " -msgstr "" - -#: deps/livesettings/values.py:224 -#, python-format -msgid "Default value: %s" -msgstr "" - -#: deps/livesettings/values.py:589 -#, python-format -msgid "Allowed image file types are %(types)s" -msgstr "" - -#: deps/livesettings/templates/livesettings/_admin_site_views.html:4 -#: skins/default/templates/askbot.deps.livesettings/_admin_site_views.html:4 -msgid "Sites" -msgstr "" - -#: deps/livesettings/templates/livesettings/group_settings.html:11 -#: deps/livesettings/templates/livesettings/site_settings.html:23 -#: skins/default/templates/askbot.deps.livesettings/group_settings.html:11 -#: skins/default/templates/askbot.deps.livesettings/site_settings.html:23 -msgid "Documentation" -msgstr "" - -#: deps/livesettings/templates/livesettings/group_settings.html:11 -#: deps/livesettings/templates/livesettings/site_settings.html:23 -#: skins/default/templates/askbot.deps.livesettings/group_settings.html:11 -#: skins/default/templates/askbot.deps.livesettings/site_settings.html:23 -#: skins/default/templates/authopenid/signin.html:142 -msgid "Change password" -msgstr "" - -#: deps/livesettings/templates/livesettings/group_settings.html:11 -#: deps/livesettings/templates/livesettings/site_settings.html:23 -#: skins/default/templates/askbot.deps.livesettings/group_settings.html:11 -#: skins/default/templates/askbot.deps.livesettings/site_settings.html:23 -msgid "Log out" -msgstr "" - -#: deps/livesettings/templates/livesettings/group_settings.html:14 -#: deps/livesettings/templates/livesettings/site_settings.html:26 -#: skins/default/templates/askbot.deps.livesettings/group_settings.html:14 -#: skins/default/templates/askbot.deps.livesettings/site_settings.html:26 -msgid "Home" -msgstr "" - -#: deps/livesettings/templates/livesettings/group_settings.html:15 -#: skins/default/templates/askbot.deps.livesettings/group_settings.html:15 -msgid "Edit Group Settings" -msgstr "" - -#: deps/livesettings/templates/livesettings/group_settings.html:22 -#: deps/livesettings/templates/livesettings/site_settings.html:50 -#: skins/default/templates/askbot.deps.livesettings/group_settings.html:22 -#: skins/default/templates/askbot.deps.livesettings/site_settings.html:50 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "" -msgstr[1] "" - -#: deps/livesettings/templates/livesettings/group_settings.html:28 -#: skins/default/templates/askbot.deps.livesettings/group_settings.html:28 -#, python-format -msgid "Settings included in %(name)s." -msgstr "" - -#: deps/livesettings/templates/livesettings/group_settings.html:62 -#: deps/livesettings/templates/livesettings/site_settings.html:97 -#: skins/default/templates/askbot.deps.livesettings/group_settings.html:62 -#: skins/default/templates/askbot.deps.livesettings/site_settings.html:97 -msgid "You don't have permission to edit values." -msgstr "" - -#: deps/livesettings/templates/livesettings/group_settings.html:68 -#: skins/default/templates/askbot.deps.livesettings/group_settings.html:68 -msgid "Setting groups" -msgstr "" - -#: deps/livesettings/templates/livesettings/site_settings.html:27 -#: skins/default/templates/askbot.deps.livesettings/site_settings.html:27 -msgid "Edit Site Settings" -msgstr "" - -#: deps/livesettings/templates/livesettings/site_settings.html:43 -#: skins/default/templates/askbot.deps.livesettings/site_settings.html:43 -msgid "Livesettings are disabled for this site." -msgstr "" - -#: deps/livesettings/templates/livesettings/site_settings.html:44 -#: skins/default/templates/askbot.deps.livesettings/site_settings.html:44 -msgid "All configuration options must be edited in the site settings.py file" -msgstr "" - -#: deps/livesettings/templates/livesettings/site_settings.html:66 -#: skins/default/templates/askbot.deps.livesettings/site_settings.html:66 -#, python-format -msgid "Group settings: %(name)s" -msgstr "" - -#: deps/livesettings/templates/livesettings/site_settings.html:93 -#: skins/default/templates/askbot.deps.livesettings/site_settings.html:93 -msgid "Uncollapse all" -msgstr "" - -#: deps/recaptcha_django/__init__.py:19 deps/recaptcha_django/__init__.py:80 -msgid "Unknown error." -msgstr "" - -#: deps/recaptcha_django/__init__.py:20 deps/recaptcha_django/__init__.py:21 -msgid "ReCAPTCHA is wrongly configured." -msgstr "" - -#: deps/recaptcha_django/__init__.py:22 -msgid "Bad reCAPTCHA challenge parameter." -msgstr "" - -#: deps/recaptcha_django/__init__.py:23 -msgid "The CAPTCHA solution was incorrect." -msgstr "" - -#: deps/recaptcha_django/__init__.py:24 -msgid "Bad reCAPTCHA verification parameters." -msgstr "" - -#: deps/recaptcha_django/__init__.py:25 -msgid "Provided reCAPTCHA API keys are not valid for this domain." -msgstr "" - -#: deps/recaptcha_django/__init__.py:26 -msgid "ReCAPTCHA could not be reached." -msgstr "" - -#: deps/recaptcha_django/__init__.py:73 -msgid "Invalid request" -msgstr "" - -#: importers/stackexchange/management/commands/load_stackexchange.py:126 -msgid "Congratulations, you are now an Administrator" -msgstr "" - -#: management/commands/send_email_alerts.py:105 -#, python-format -msgid "\" and \"%s\"" -msgstr "" - -#: management/commands/send_email_alerts.py:108 -msgid "\" and more" -msgstr "" - -#: management/commands/send_email_alerts.py:116 -#, python-format -msgid "%(question_count)d updated question tagged %(topics)s" -msgid_plural "%(question_count)d updated questions tagged %(topics)s" -msgstr[0] "" -msgstr[1] "" - -#: management/commands/send_email_alerts.py:472 -#, 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] "" -"

      Dear %(name)s,

      The following question has been updated on the Q&A " -"forum:

      " -msgstr[1] "" -"

      Dear %(name)s,

      The following %(num)d questions have been updated on " -"the Q&A forum:

      " - -#: management/commands/send_email_alerts.py:489 -msgid "new question" -msgstr "" - -#: management/commands/send_email_alerts.py:506 -msgid "Please visit askbot forum and see what's new! " -msgstr "" - -#: management/commands/send_email_alerts.py:515 -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:521 -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:527 -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:532 -#, python-format -msgid "" -"go to %(email_settings_link)s to change frequency of email updates or %" -"(admin_email)s administrator" -msgstr "" -"

      Please remember that you can always adjust frequency of the email updates or turn them off entirely.
      If you believe that this message was sent in an error, please email about " -"it the forum administrator at %(admin_email)s.

      Sincerely,

      Your " -"friendly Q&A forum server.

      " - -#: migrations/0005_install_badges.py:11 models/badges.py:132 -msgid "Disciplined" -msgstr "" - -#: migrations/0005_install_badges.py:11 -msgid "disciplined" -msgstr "" - -#: migrations/0005_install_badges.py:11 -msgid "Deleted own post with score of 3 or higher" -msgstr "" - -#: migrations/0005_install_badges.py:12 models/badges.py:154 -msgid "Peer Pressure" -msgstr "" - -#: migrations/0005_install_badges.py:12 -msgid "peer-pressure" -msgstr "" - -#: migrations/0005_install_badges.py:12 -msgid "Deleted own post with score of -3 or lower" -msgstr "" - -#: migrations/0005_install_badges.py:13 -msgid "Nice answer" -msgstr "" - -#: migrations/0005_install_badges.py:13 -msgid "nice-answer" -msgstr "" - -#: migrations/0005_install_badges.py:13 -msgid "Answer voted up 10 times" -msgstr "" - -#: migrations/0005_install_badges.py:14 models/badges.py:339 -msgid "Nice Question" -msgstr "" - -#: migrations/0005_install_badges.py:14 -msgid "nice-question" -msgstr "" - -#: migrations/0005_install_badges.py:14 -msgid "Question voted up 10 times" -msgstr "" - -#: migrations/0005_install_badges.py:15 models/badges.py:576 -msgid "Pundit" -msgstr "" - -#: migrations/0005_install_badges.py:15 -msgid "pundit" -msgstr "" - -#: migrations/0005_install_badges.py:15 models/badges.py:579 -msgid "Left 10 comments with score of 10 or more" -msgstr "" - -#: migrations/0005_install_badges.py:16 models/badges.py:413 -msgid "Popular Question" -msgstr "" - -#: migrations/0005_install_badges.py:16 -msgid "popular-question" -msgstr "" - -#: migrations/0005_install_badges.py:16 -msgid "Asked a question with 1,000 views" -msgstr "" - -#: migrations/0005_install_badges.py:17 -msgid "Citizen patrol" -msgstr "" - -#: migrations/0005_install_badges.py:17 -msgid "citizen-patrol" -msgstr "" - -#: migrations/0005_install_badges.py:17 models/badges.py:550 -msgid "First flagged post" -msgstr "" - -#: migrations/0005_install_badges.py:18 models/badges.py:562 -msgid "Cleanup" -msgstr "" - -#: migrations/0005_install_badges.py:18 -msgid "cleanup" -msgstr "" - -#: migrations/0005_install_badges.py:18 models/badges.py:565 -msgid "First rollback" -msgstr "" - -#: migrations/0005_install_badges.py:19 models/badges.py:226 -msgid "Critic" -msgstr "" - -#: migrations/0005_install_badges.py:19 -msgid "critic" -msgstr "" - -#: migrations/0005_install_badges.py:19 -msgid "First down vote" -msgstr "" - -#: migrations/0005_install_badges.py:20 models/badges.py:611 -msgid "Editor" -msgstr "" - -#: migrations/0005_install_badges.py:20 -msgid "editor" -msgstr "" - -#: migrations/0005_install_badges.py:20 models/badges.py:614 -msgid "First edit" -msgstr "" - -#: migrations/0005_install_badges.py:21 models/badges.py:633 -msgid "Organizer" -msgstr "" - -#: migrations/0005_install_badges.py:21 -msgid "organizer" -msgstr "" - -#: migrations/0005_install_badges.py:21 models/badges.py:636 -msgid "First retag" -msgstr "" - -#: migrations/0005_install_badges.py:22 models/badges.py:452 -msgid "Scholar" -msgstr "" - -#: migrations/0005_install_badges.py:22 -msgid "scholar" -msgstr "" - -#: migrations/0005_install_badges.py:22 -msgid "First accepted answer on your own question" -msgstr "" - -#: migrations/0005_install_badges.py:23 models/badges.py:375 -msgid "Student" -msgstr "" - -#: migrations/0005_install_badges.py:23 -msgid "student" -msgstr "" - -#: migrations/0005_install_badges.py:23 models/badges.py:380 -msgid "Asked first question with at least one up vote" -msgstr "" - -#: migrations/0005_install_badges.py:24 models/badges.py:217 -msgid "Supporter" -msgstr "" - -#: migrations/0005_install_badges.py:24 -msgid "supporter" -msgstr "" - -#: migrations/0005_install_badges.py:24 -msgid "First up vote" -msgstr "" - -#: migrations/0005_install_badges.py:25 models/badges.py:177 -msgid "Teacher" -msgstr "" - -#: migrations/0005_install_badges.py:25 -msgid "teacher" -msgstr "" - -#: migrations/0005_install_badges.py:25 -msgid "Answered first question with at least one up vote" -msgstr "" - -#: migrations/0005_install_badges.py:26 models/badges.py:643 -msgid "Autobiographer" -msgstr "" - -#: migrations/0005_install_badges.py:26 -msgid "autobiographer" -msgstr "" - -#: migrations/0005_install_badges.py:26 models/badges.py:646 -msgid "Completed all user profile fields" -msgstr "" - -#: migrations/0005_install_badges.py:27 models/badges.py:255 -msgid "Self-Learner" -msgstr "" - -#: migrations/0005_install_badges.py:27 -msgid "self-learner" -msgstr "" - -#: migrations/0005_install_badges.py:27 -msgid "Answered your own question with at least 3 up votes" -msgstr "" - -#: migrations/0005_install_badges.py:28 models/badges.py:327 -msgid "Great Answer" -msgstr "" - -#: migrations/0005_install_badges.py:28 -msgid "great-answer" -msgstr "" - -#: migrations/0005_install_badges.py:28 -msgid "Answer voted up 100 times" -msgstr "" - -#: migrations/0005_install_badges.py:29 models/badges.py:363 -msgid "Great Question" -msgstr "" - -#: migrations/0005_install_badges.py:29 -msgid "great-question" -msgstr "" - -#: migrations/0005_install_badges.py:29 -msgid "Question voted up 100 times" -msgstr "" - -#: migrations/0005_install_badges.py:30 models/badges.py:688 -msgid "Stellar Question" -msgstr "" - -#: migrations/0005_install_badges.py:30 -msgid "stellar-question" -msgstr "" - -#: migrations/0005_install_badges.py:30 -msgid "Question favorited by 100 users" -msgstr "" - -#: migrations/0005_install_badges.py:31 -msgid "Famous question" -msgstr "" - -#: migrations/0005_install_badges.py:31 -msgid "famous-question" -msgstr "" - -#: migrations/0005_install_badges.py:31 -msgid "Asked a question with 10,000 views" -msgstr "" - -#: migrations/0005_install_badges.py:32 -msgid "Alpha" -msgstr "" - -#: migrations/0005_install_badges.py:32 -msgid "alpha" -msgstr "" - -#: migrations/0005_install_badges.py:32 -msgid "Actively participated in the private alpha" -msgstr "" - -#: migrations/0005_install_badges.py:33 models/badges.py:315 -msgid "Good Answer" -msgstr "" - -#: migrations/0005_install_badges.py:33 -msgid "good-answer" -msgstr "" - -#: migrations/0005_install_badges.py:33 -msgid "Answer voted up 25 times" -msgstr "" - -#: migrations/0005_install_badges.py:34 models/badges.py:351 -msgid "Good Question" -msgstr "" - -#: migrations/0005_install_badges.py:34 -msgid "good-question" -msgstr "" - -#: migrations/0005_install_badges.py:34 -msgid "Question voted up 25 times" -msgstr "" - -#: migrations/0005_install_badges.py:35 models/badges.py:697 -msgid "Favorite Question" -msgstr "" - -#: migrations/0005_install_badges.py:35 -msgid "favorite-question" -msgstr "" - -#: migrations/0005_install_badges.py:35 -msgid "Question favorited by 25 users" -msgstr "" - -#: migrations/0005_install_badges.py:36 -msgid "Civic duty" -msgstr "" - -#: migrations/0005_install_badges.py:36 -msgid "civic-duty" -msgstr "" - -#: migrations/0005_install_badges.py:36 -msgid "Voted 300 times" -msgstr "" - -#: migrations/0005_install_badges.py:37 -msgid "Strunk & White" -msgstr "" - -#: migrations/0005_install_badges.py:37 -msgid "strunk-and-white" -msgstr "" - -#: migrations/0005_install_badges.py:37 -msgid "Edited 100 entries" -msgstr "" - -#: migrations/0005_install_badges.py:38 -msgid "Generalist" -msgstr "" - -#: migrations/0005_install_badges.py:38 -msgid "generalist" -msgstr "" - -#: migrations/0005_install_badges.py:38 -msgid "Active in many different tags" -msgstr "" - -#: migrations/0005_install_badges.py:39 -msgid "Expert" -msgstr "" - -#: migrations/0005_install_badges.py:39 -msgid "expert" -msgstr "" - -#: migrations/0005_install_badges.py:39 -msgid "Very active in one tag" -msgstr "" - -#: migrations/0005_install_badges.py:40 -msgid "Yearling" -msgstr "" - -#: migrations/0005_install_badges.py:40 -msgid "yearling" -msgstr "" - -#: migrations/0005_install_badges.py:40 -msgid "Active member for a year" -msgstr "" - -#: migrations/0005_install_badges.py:41 models/badges.py:424 -msgid "Notable Question" -msgstr "" - -#: migrations/0005_install_badges.py:41 -msgid "notable-question" -msgstr "" - -#: migrations/0005_install_badges.py:41 -msgid "Asked a question with 2,500 views" -msgstr "" - -#: migrations/0005_install_badges.py:42 models/badges.py:494 -msgid "Enlightened" -msgstr "" - -#: migrations/0005_install_badges.py:42 -msgid "enlightened" -msgstr "" - -#: migrations/0005_install_badges.py:42 -msgid "First answer was accepted with at least 10 up votes" -msgstr "" - -#: migrations/0005_install_badges.py:43 -msgid "Beta" -msgstr "" - -#: migrations/0005_install_badges.py:43 -msgid "beta" -msgstr "" - -#: migrations/0005_install_badges.py:43 -msgid "Actively participated in the private beta" -msgstr "" - -#: migrations/0005_install_badges.py:44 models/badges.py:506 -msgid "Guru" -msgstr "" - -#: migrations/0005_install_badges.py:44 -msgid "guru" -msgstr "" - -#: migrations/0005_install_badges.py:44 -msgid "Accepted answer and voted up 40 times" -msgstr "" - -#: migrations/0005_install_badges.py:45 models/badges.py:524 -msgid "Necromancer" -msgstr "" - -#: migrations/0005_install_badges.py:45 -msgid "necromancer" -msgstr "" - -#: migrations/0005_install_badges.py:45 -msgid "Answered a question more than 60 days later with at least 5 votes" -msgstr "" - -#: migrations/0005_install_badges.py:46 -msgid "Taxonomist" -msgstr "" - -#: migrations/0005_install_badges.py:46 -msgid "taxonomist" -msgstr "" - -#: migrations/0005_install_badges.py:46 -msgid "Created a tag used by 50 questions" -msgstr "" - -#: models/__init__.py:170 -msgid "" -"Sorry, you cannot accept or unaccept best answers because your account is " -"blocked" -msgstr "" - -#: models/__init__.py:175 -msgid "" -"Sorry, you cannot accept or unaccept best answers because your account is " -"suspended" -msgstr "" - -#: models/__init__.py:181 -msgid "" -"Sorry, you cannot accept or unaccept your own answer to your own question" -msgstr "" - -#: models/__init__.py:188 -#, python-format -msgid "" -"Sorry, only original author of the question - %(username)s - can accept the " -"best answer" -msgstr "" - -#: models/__init__.py:211 -msgid "cannot vote for own posts" -msgstr "Sorry, you cannot vote for your own posts" - -#: models/__init__.py:214 -msgid "Sorry your account appears to be blocked " -msgstr "" - -#: models/__init__.py:219 -msgid "Sorry your account appears to be suspended " -msgstr "" - -#: models/__init__.py:229 -#, python-format -msgid ">%(points)s points required to upvote" -msgstr ">%(points)s points required to upvote " - -#: models/__init__.py:235 -#, python-format -msgid ">%(points)s points required to downvote" -msgstr ">%(points)s points required to downvote " - -#: models/__init__.py:250 -msgid "Sorry, blocked users cannot upload files" -msgstr "" - -#: models/__init__.py:251 -msgid "Sorry, suspended users cannot upload files" -msgstr "" - -#: models/__init__.py:253 -#, 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:272 models/__init__.py:332 models/__init__.py:2021 -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:273 models/__init__.py:2024 -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:298 -msgid "" -"Sorry, comments (except the last one) are editable only within 10 minutes " -"from posting" -msgstr "" - -#: models/__init__.py:304 -msgid "Sorry, but only post owners or moderators can edit comments" -msgstr "" - -#: models/__init__.py:318 -msgid "" -"Sorry, since your account is suspended you can comment only your own posts" -msgstr "" - -#: models/__init__.py:322 -#, 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:350 -msgid "" -"This post has been deleted and can be seen only by post owners, site " -"administrators and moderators" -msgstr "" - -#: models/__init__.py:367 -msgid "" -"Sorry, only moderators, site administrators and post owners can edit deleted " -"posts" -msgstr "" - -#: models/__init__.py:382 -msgid "Sorry, since your account is blocked you cannot edit posts" -msgstr "" - -#: models/__init__.py:386 -msgid "Sorry, since your account is suspended you can edit only your own posts" -msgstr "" - -#: models/__init__.py:391 -#, python-format -msgid "" -"Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required" -msgstr "" - -#: models/__init__.py:398 -#, python-format -msgid "" -"Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is " -"required" -msgstr "" - -#: models/__init__.py:461 -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] "" -msgstr[1] "" - -#: models/__init__.py:476 -msgid "Sorry, since your account is blocked you cannot delete posts" -msgstr "" - -#: models/__init__.py:480 -msgid "" -"Sorry, since your account is suspended you can delete only your own posts" -msgstr "" - -#: models/__init__.py:484 -#, python-format -msgid "" -"Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s " -"is required" -msgstr "" - -#: models/__init__.py:504 -msgid "Sorry, since your account is blocked you cannot close questions" -msgstr "" - -#: models/__init__.py:508 -msgid "Sorry, since your account is suspended you cannot close questions" -msgstr "" - -#: models/__init__.py:512 -#, python-format -msgid "" -"Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is " -"required" -msgstr "" - -#: models/__init__.py:521 -#, python-format -msgid "" -"Sorry, to close own question a minimum reputation of %(min_rep)s is required" -msgstr "" - -#: models/__init__.py:545 -#, python-format -msgid "" -"Sorry, only administrators, moderators or post owners with reputation > %" -"(min_rep)s can reopen questions." -msgstr "" - -#: models/__init__.py:551 -#, python-format -msgid "" -"Sorry, to reopen own question a minimum reputation of %(min_rep)s is required" -msgstr "" - -#: models/__init__.py:571 -msgid "cannot flag message as offensive twice" -msgstr "You have flagged this question before and cannot do it more than once" - -#: models/__init__.py:576 -msgid "blocked users cannot flag posts" -msgstr "" -"Sorry, since your account is blocked you cannot flag posts as offensive" - -#: models/__init__.py:578 -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." - -#: models/__init__.py:580 -#, python-format -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" - -#: models/__init__.py:599 -#, python-format -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." - -#: models/__init__.py:614 -msgid "" -"Sorry, only question owners, site administrators and moderators can retag " -"deleted questions" -msgstr "" - -#: models/__init__.py:621 -msgid "Sorry, since your account is blocked you cannot retag questions" -msgstr "" - -#: models/__init__.py:625 -msgid "" -"Sorry, since your account is suspended you can retag only your own questions" -msgstr "" - -#: models/__init__.py:629 -#, python-format -msgid "" -"Sorry, to retag questions a minimum reputation of %(min_rep)s is required" -msgstr "" - -#: models/__init__.py:648 -msgid "Sorry, since your account is blocked you cannot delete comment" -msgstr "" - -#: models/__init__.py:652 -msgid "" -"Sorry, since your account is suspended you can delete only your own comments" -msgstr "" - -#: models/__init__.py:656 -#, python-format -msgid "Sorry, to delete comments reputation of %(min_rep)s is required" -msgstr "" - -#: models/__init__.py:679 -msgid "cannot revoke old vote" -msgstr "sorry, but older votes cannot be revoked" - -#: models/__init__.py:1213 views/users.py:363 -msgid "Site Adminstrator" -msgstr "" - -#: models/__init__.py:1215 views/users.py:365 -msgid "Forum Moderator" -msgstr "" - -#: models/__init__.py:1217 views/users.py:367 -msgid "Suspended User" -msgstr "" - -#: models/__init__.py:1219 views/users.py:369 -msgid "Blocked User" -msgstr "" - -#: models/__init__.py:1221 views/users.py:371 -msgid "Registered User" -msgstr "" - -#: models/__init__.py:1223 -msgid "Watched User" -msgstr "" - -#: models/__init__.py:1225 -msgid "Approved User" -msgstr "" - -#: models/__init__.py:1281 -#, python-format -msgid "%(username)s karma is %(reputation)s" -msgstr "" - -#: models/__init__.py:1291 -#, python-format -msgid "one gold badge" -msgid_plural "%(count)d gold badges" -msgstr[0] "" -msgstr[1] "" - -#: models/__init__.py:1298 -#, python-format -msgid "one silver badge" -msgid_plural "%(count)d silver badges" -msgstr[0] "" -msgstr[1] "" - -#: models/__init__.py:1305 -#, python-format -msgid "one bronze badge" -msgid_plural "%(count)d bronze badges" -msgstr[0] "" -msgstr[1] "" - -#: models/__init__.py:1316 -#, python-format -msgid "%(item1)s and %(item2)s" -msgstr "" - -#: models/__init__.py:1320 -#, python-format -msgid "%(user)s has %(badges)s" -msgstr "" - -#: models/__init__.py:1633 models/__init__.py:1639 models/__init__.py:1644 -#: models/__init__.py:1649 -#, python-format -msgid "Re: \"%(title)s\"" -msgstr "" - -#: models/__init__.py:1654 models/__init__.py:1659 -#, python-format -msgid "Question: \"%(title)s\"" -msgstr "" - -#: models/__init__.py:1844 -#, python-format -msgid "" -"Congratulations, you have received a badge '%(badge_name)s'. Check out your profile." -msgstr "" - -#: models/answer.py:105 -msgid "" -"Sorry, the answer you are looking for is no longer available, because the " -"parent question has been removed" -msgstr "" - -#: models/answer.py:112 -msgid "Sorry, this answer has been removed and is no longer accessible" -msgstr "" - -#: models/badges.py:128 -#, python-format -msgid "Deleted own post with %(votes)s or more upvotes" -msgstr "" - -#: models/badges.py:150 -#, python-format -msgid "Deleted own post with %(votes)s or more downvotes" -msgstr "" - -#: models/badges.py:173 -#, python-format -msgid "Received at least %(votes)s upvote for an answer for the first time" -msgstr "" - -#: models/badges.py:218 -msgid "First upvote" -msgstr "" - -#: models/badges.py:227 -msgid "First downvote" -msgstr "" - -#: models/badges.py:236 -msgid "Civic Duty" -msgstr "" - -#: models/badges.py:237 -#, python-format -msgid "Voted %(num)s times" -msgstr "" - -#: models/badges.py:251 -#, python-format -msgid "Answered own question with at least %(num)s up votes" -msgstr "" - -#: models/badges.py:303 -msgid "Nice Answer" -msgstr "" - -#: models/badges.py:308 models/badges.py:320 models/badges.py:332 -#, python-format -msgid "Answer voted up %(num)s times" -msgstr "" - -#: models/badges.py:344 models/badges.py:356 models/badges.py:368 -#, python-format -msgid "Question voted up %(num)s times" -msgstr "" - -#: models/badges.py:417 models/badges.py:428 models/badges.py:440 -#, python-format -msgid "Asked a question with %(views)s views" -msgstr "" - -#: models/badges.py:435 -msgid "Famous Question" -msgstr "" - -#: models/badges.py:449 -msgid "Asked a question and accepted an answer" -msgstr "" - -#: models/badges.py:498 -#, python-format -msgid "First answer was accepted with %(num)s or more votes" -msgstr "" - -#: models/badges.py:509 -#, python-format -msgid "Answer accepted with %(num)s or more votes" -msgstr "" - -#: models/badges.py:517 -#, python-format -msgid "" -"Answered a question more than %(days)s days later with at least %(votes)s " -"votes" -msgstr "" - -#: models/badges.py:547 -msgid "Citizen Patrol" -msgstr "" - -#: models/badges.py:622 -msgid "Associate Editor" -msgstr "" - -#: models/badges.py:626 -#, python-format -msgid "Edited %(num)s entries" -msgstr "" - -#: models/badges.py:662 -#, python-format -msgid "Question favorited by %(num)s users" -msgstr "" - -#: models/badges.py:707 -msgid "Enthusiast" -msgstr "" - -#: models/badges.py:710 -msgid "Visited site every day for 30 days in a row" -msgstr "" - -#: models/badges.py:718 -msgid "Commentator" -msgstr "" - -#: models/badges.py:721 -msgid "Posted 10 comments" -msgstr "" - -#: models/meta.py:110 -msgid "" -"Sorry, the comment you are looking for is no longer accessible, because the " -"parent question has been removed" -msgstr "" - -#: models/meta.py:117 -msgid "" -"Sorry, the comment you are looking for is no longer accessible, because the " -"parent answer has been removed" -msgstr "" - -#: models/question.py:326 -msgid "Sorry, this question has been deleted and is no longer accessible" -msgstr "" - -#: models/question.py:715 -#, python-format -msgid "%(author)s modified the question" -msgstr "" - -#: models/question.py:719 -#, python-format -msgid "%(people)s posted %(new_answer_count)s new answers" -msgstr "" - -#: models/question.py:724 -#, python-format -msgid "%(people)s commented the question" -msgstr "" - -#: models/question.py:729 -#, python-format -msgid "%(people)s commented answers" -msgstr "" - -#: models/question.py:731 -#, python-format -msgid "%(people)s commented an answer" -msgstr "" - -#: models/repute.py:142 -#, python-format -msgid "Changed by moderator. Reason: %(reason)s" -msgstr "" - -#: models/repute.py:153 -#, python-format -msgid "" -"%(points)s points were added for %(username)s's contribution to question %" -"(question_title)s" -msgstr "" - -#: models/repute.py:158 -#, python-format -msgid "" -"%(points)s points were subtracted for %(username)s's contribution to " -"question %(question_title)s" -msgstr "" - -#: models/tag.py:91 -msgid "interesting" -msgstr "" - -#: models/tag.py:91 -msgid "ignored" -msgstr "" - -#: models/user.py:265 -msgid "Entire forum" -msgstr "" - -#: models/user.py:266 -msgid "Questions that I asked" -msgstr "" - -#: models/user.py:267 -msgid "Questions that I answered" -msgstr "" - -#: models/user.py:268 -msgid "Individually selected questions" -msgstr "" - -#: models/user.py:269 -msgid "Mentions and comment responses" -msgstr "" - -#: models/user.py:272 -msgid "Instantly" -msgstr "" - -#: models/user.py:273 -msgid "Daily" -msgstr "" - -#: models/user.py:274 -msgid "Weekly" -msgstr "" - -#: models/user.py:275 -msgid "No email" -msgstr "" - -#: skins/default/templates/404.jinja.html:3 -#: skins/default/templates/404.jinja.html:11 -msgid "Page not found" -msgstr "" - -#: skins/default/templates/404.jinja.html:15 -msgid "Sorry, could not find the page you requested." -msgstr "" - -#: skins/default/templates/404.jinja.html:17 -msgid "This might have happened for the following reasons:" -msgstr "" - -#: skins/default/templates/404.jinja.html:19 -msgid "this question or answer has been deleted;" -msgstr "" - -#: skins/default/templates/404.jinja.html:20 -msgid "url has error - please check it;" -msgstr "" - -#: skins/default/templates/404.jinja.html:21 -msgid "" -"the page you tried to visit is protected or you don't have sufficient " -"points, see" -msgstr "" - -#: skins/default/templates/404.jinja.html:21 -#: skins/default/templates/footer.html:6 -#: skins/default/templates/question_edit_tips.html:16 -msgid "faq" -msgstr "" - -#: skins/default/templates/404.jinja.html:22 -msgid "if you believe this error 404 should not have occured, please" -msgstr "" - -#: skins/default/templates/404.jinja.html:23 -msgid "report this problem" -msgstr "" - -#: skins/default/templates/404.jinja.html:32 -#: skins/default/templates/500.jinja.html:13 -msgid "back to previous page" -msgstr "" - -#: skins/default/templates/404.jinja.html:33 -#: skins/default/templates/questions.html:13 -msgid "see all questions" -msgstr "" - -#: skins/default/templates/404.jinja.html:34 -msgid "see all tags" -msgstr "" - -#: skins/default/templates/500.jinja.html:3 -#: skins/default/templates/500.jinja.html:6 -msgid "Internal server error" -msgstr "" - -#: skins/default/templates/500.jinja.html:10 -msgid "system error log is recorded, error will be fixed as soon as possible" -msgstr "" - -#: skins/default/templates/500.jinja.html:11 -msgid "please report the error to the site administrators if you wish" -msgstr "" - -#: skins/default/templates/500.jinja.html:14 -msgid "see latest questions" -msgstr "" - -#: skins/default/templates/500.jinja.html:15 -msgid "see tags" -msgstr "" - -#: skins/default/templates/about.html:3 skins/default/templates/about.html:6 -msgid "About" -msgstr "" - -#: skins/default/templates/answer_edit.html:4 -#: skins/default/templates/answer_edit.html:10 -msgid "Edit answer" -msgstr "" - -#: skins/default/templates/answer_edit.html:10 -#: skins/default/templates/question_edit.html:10 -#: skins/default/templates/question_retag.html:6 -#: skins/default/templates/revisions.html:7 -msgid "back" -msgstr "" - -#: skins/default/templates/answer_edit.html:15 -#: skins/default/templates/question_edit.html:14 -msgid "revision" -msgstr "" - -#: skins/default/templates/answer_edit.html:18 -#: skins/default/templates/question_edit.html:19 -msgid "select revision" -msgstr "" - -#: skins/default/templates/answer_edit.html:22 -#: skins/default/templates/question_edit.html:28 -msgid "Save edit" -msgstr "" - -#: skins/default/templates/answer_edit.html:23 -#: skins/default/templates/close.html:19 -#: skins/default/templates/feedback.html:45 -#: skins/default/templates/question_edit.html:29 -#: skins/default/templates/question_retag.html:26 -#: skins/default/templates/reopen.html:30 -#: skins/default/templates/user_edit.html:76 -#: skins/default/templates/authopenid/changeemail.html:38 -msgid "Cancel" -msgstr "" - -#: skins/default/templates/answer_edit.html:59 -#: skins/default/templates/answer_edit.html:62 -#: skins/default/templates/ask.html:36 skins/default/templates/ask.html:39 -#: skins/default/templates/macros.html:445 -#: skins/default/templates/question.html:462 -#: skins/default/templates/question.html:465 -#: skins/default/templates/question_edit.html:63 -#: skins/default/templates/question_edit.html:66 -msgid "hide preview" -msgstr "" - -#: skins/default/templates/answer_edit.html:62 -#: skins/default/templates/ask.html:39 -#: skins/default/templates/question.html:465 -#: skins/default/templates/question_edit.html:66 -msgid "show preview" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:3 -msgid "answer tips" -msgstr "Tips" - -#: skins/default/templates/answer_edit_tips.html:6 -msgid "please make your answer relevant to this community" -msgstr "ask a question interesting to this community" - -#: skins/default/templates/answer_edit_tips.html:9 -msgid "try to give an answer, rather than engage into a discussion" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:12 -msgid "please try to provide details" -msgstr "provide enough details" - -#: skins/default/templates/answer_edit_tips.html:15 -#: skins/default/templates/question_edit_tips.html:12 -msgid "be clear and concise" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:19 -#: skins/default/templates/question_edit_tips.html:16 -msgid "see frequently asked questions" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:25 -#: skins/default/templates/question_edit_tips.html:22 -msgid "Markdown tips" -msgstr "Markdown basics" - -#: skins/default/templates/answer_edit_tips.html:29 -#: skins/default/templates/question_edit_tips.html:26 -msgid "*italic*" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:32 -#: skins/default/templates/question_edit_tips.html:29 -msgid "**bold**" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:36 -#: skins/default/templates/question_edit_tips.html:33 -msgid "*italic* or _italic_" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:39 -#: skins/default/templates/question_edit_tips.html:36 -msgid "**bold** or __bold__" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/question_edit_tips.html:40 -msgid "link" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:40 -#: skins/default/templates/question_edit_tips.html:45 -msgid "text" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:45 -msgid "image" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:51 -#: skins/default/templates/question_edit_tips.html:49 -msgid "numbered list:" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:56 -#: skins/default/templates/question_edit_tips.html:54 -msgid "basic HTML tags are also supported" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:60 -#: skins/default/templates/question_edit_tips.html:58 -msgid "learn more about Markdown" -msgstr "" - -#: skins/default/templates/ask.html:3 -msgid "Ask a question" -msgstr "" - -#: skins/default/templates/ask_form.html:7 -msgid "login to post question info" -msgstr "" -"You are welcome to start submitting your question " -"anonymously. 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/ask_form.html:11 -#, python-format -msgid "" -"must have valid %(email)s to post, \n" -" see %(email_validation_faq_url)s\n" -" " -msgstr "" -"Looks like your email address, %(email)s has not " -"yet been validated. To post messages you must verify your email, " -"please see more details here." -"
      You can submit your question now and validate email after that. Your " -"question will saved as pending meanwhile. " - -#: skins/default/templates/ask_form.html:27 -msgid "Login/signup to post your question" -msgstr "Login/Signup to Post" - -#: skins/default/templates/ask_form.html:29 -msgid "Ask your question" -msgstr "Ask Your Question" - -#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:11 -#: skins/default/templates/badges.html:28 -#: skins/default/templates/user_recent.html:13 -#: skins/default/templates/user_stats.html:88 -#, python-format -msgid "%(name)s" -msgstr "" - -#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:7 -msgid "Badge" -msgstr "" - -#: skins/default/templates/badge.html:11 -#: skins/default/templates/badges.html:27 -#: skins/default/templates/badges.html:31 -#: skins/default/templates/user_recent.html:13 -#: skins/default/templates/user_stats.html:88 -#, python-format -msgid "%(description)s" -msgstr "" - -#: skins/default/templates/badge.html:16 -msgid "user received this badge:" -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:6 -msgid "Badges" -msgstr "" - -#: skins/default/templates/badges.html:10 -msgid "Community gives you awards for your questions, answers and votes." -msgstr "" - -#: skins/default/templates/badges.html:11 -#, 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 "" -"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 feedback" - -#: skins/default/templates/badges.html:27 -#, python-format -msgid "%(type)s" -msgstr "" - -#: skins/default/templates/badges.html:40 -msgid "Community badges" -msgstr "Badge levels" - -#: skins/default/templates/badges.html:43 -msgid "gold badge: the highest honor and is very rare" -msgstr "" - -#: skins/default/templates/badges.html:46 -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." - -#: skins/default/templates/badges.html:51 -msgid "" -"silver badge: occasionally awarded for the very high quality contributions" -msgstr "" - -#: skins/default/templates/badges.html:55 -msgid "silver badge description" -msgstr "" -"silver badge: occasionally awarded for the very high quality contributions" - -#: skins/default/templates/badges.html:58 -msgid "bronze badge: often given as a special honor" -msgstr "" - -#: skins/default/templates/badges.html:62 -msgid "bronze badge description" -msgstr "bronze badge: often given as a special honor" - -#: skins/default/templates/close.html:3 skins/default/templates/close.html:6 -msgid "Close question" -msgstr "" - -#: skins/default/templates/close.html:9 -msgid "Close the question" -msgstr "" - -#: skins/default/templates/close.html:14 -msgid "Reasons" -msgstr "" - -#: skins/default/templates/close.html:18 -msgid "OK to close" -msgstr "" - -#: skins/default/templates/editor_data.html:8 -#, 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/editor_data.html:10 -#, 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/editor_data.html:11 -#, python-format -msgid "" -"please use up to %(tag_count)s tags, less than %(max_chars)s characters each" -msgstr "" - -#: skins/default/templates/faq.html:3 skins/default/templates/faq.html.py:6 -msgid "FAQ" -msgstr "" - -#: skins/default/templates/faq.html:6 -msgid "Frequently Asked Questions " -msgstr "" - -#: skins/default/templates/faq.html:11 -msgid "What kinds of questions can I ask here?" -msgstr "" - -#: skins/default/templates/faq.html:12 -msgid "" -"Most importanly - questions should be relevant to this " -"community." -msgstr "" - -#: skins/default/templates/faq.html:13 -msgid "" -"Before asking the question - please make sure to use search to see whether " -"your question has alredy been answered." -msgstr "" -"Before you ask - please make sure to search for a similar question. You can " -"search questions by their title or tags." - -#: skins/default/templates/faq.html:15 -msgid "What questions should I avoid asking?" -msgstr "What kinds of questions should be avoided?" - -#: skins/default/templates/faq.html:16 -msgid "" -"Please avoid asking questions that are not relevant to this community, too " -"subjective and argumentative." -msgstr "" - -#: skins/default/templates/faq.html:20 -msgid "What should I avoid in my answers?" -msgstr "" - -#: skins/default/templates/faq.html:21 -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 question and answer site - it is not a " -"discussion group. 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." - -#: skins/default/templates/faq.html:24 -msgid "Who moderates this community?" -msgstr "" - -#: skins/default/templates/faq.html:25 -msgid "The short answer is: you." -msgstr "" - -#: skins/default/templates/faq.html:26 -msgid "This website is moderated by the users." -msgstr "" - -#: skins/default/templates/faq.html:27 -msgid "" -"The reputation system allows users earn the authorization to perform a " -"variety of moderation tasks." -msgstr "" -"Karma system allows users to earn rights to perform a variety of moderation " -"tasks" - -#: skins/default/templates/faq.html:32 -msgid "How does reputation system work?" -msgstr "How does karma system work?" - -#: skins/default/templates/faq.html:33 -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." - -#: skins/default/templates/faq.html:34 -#, 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 %" -"(REP_GAIN_FOR_RECEIVING_UPVOTE)s points, each vote against will " -"subtract %(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s points. There " -"is a limit of %(MAX_REP_GAIN_PER_USER_PER_DAY)s 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 "" - -#: skins/default/templates/faq.html:44 -#: skins/default/templates/user_votes.html:10 -msgid "upvote" -msgstr "" - -#: skins/default/templates/faq.html:49 -msgid "use tags" -msgstr "" - -#: skins/default/templates/faq.html:54 -msgid "add comments" -msgstr "" - -#: skins/default/templates/faq.html:58 -#: skins/default/templates/user_votes.html:12 -msgid "downvote" -msgstr "" - -#: skins/default/templates/faq.html:61 -msgid "open and close own questions" -msgstr "" - -#: skins/default/templates/faq.html:65 -msgid "retag other's questions" -msgstr "" - -#: skins/default/templates/faq.html:70 -msgid "edit community wiki questions" -msgstr "" - -#: skins/default/templates/faq.html:75 -msgid "edit any answer" -msgstr "" - -#: skins/default/templates/faq.html:79 -msgid "delete any comment" -msgstr "" - -#: skins/default/templates/faq.html:86 -msgid "how to validate email title" -msgstr "How to validate email and why?" - -#: skins/default/templates/faq.html:88 -#, python-format -msgid "" -"how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)s" -msgstr "" -"

      How? If you have just set or changed your " -"email address - check your email and click the included link.
      The link contains a key generated specifically for you. You can " -"also and check your email again.

      Why? Email validation is required to make sure that " -"only you can post messages on your behalf and to " -"minimize spam posts.
      With email you can " -"subscribe for updates on the most interesting questions. " -"Also, when you sign up for the first time - create a unique gravatar personal image.

      " - -#: skins/default/templates/faq.html:93 -msgid "what is gravatar" -msgstr "How to change my picture (gravatar) and what is gravatar?" - -#: skins/default/templates/faq.html:94 -msgid "gravatar faq info" -msgstr "" -"

      The picture that appears on the users profiles is called " -"gravatar (which means globally recognized avatar).

      Here is how it works: a " -"cryptographic key (unbreakable code) is calculated from " -"your email address. You upload your picture (or your favorite alter ego " -"image) the website gravatar.com from where we later retreive your image using the key.

      This way all the websites you trust can show your image next to your " -"posts and your email address remains private.

      Please " -"personalize your account with an image - just register at " -"gravatar.com (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.

      " - -#: skins/default/templates/faq.html:97 -msgid "To register, do I need to create new password?" -msgstr "" - -#: skins/default/templates/faq.html:98 -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.html:99 -msgid "\"Login now!\"" -msgstr "" - -#: skins/default/templates/faq.html:103 -msgid "Why other people can edit my questions/answers?" -msgstr "" - -#: skins/default/templates/faq.html:104 -msgid "Goal of this site is..." -msgstr "" - -#: skins/default/templates/faq.html:104 -msgid "" -"So questions and answers can be edited like wiki pages by experienced users " -"of this site and this improves the overall quality of the knowledge base " -"content." -msgstr "" - -#: skins/default/templates/faq.html:105 -msgid "If this approach is not for you, we respect your choice." -msgstr "" - -#: skins/default/templates/faq.html:109 -msgid "Still have questions?" -msgstr "" - -#: skins/default/templates/faq.html:110 -#, python-format -msgid "" -"Please ask your question at %(ask_question_url)s, help make our community " -"better!" -msgstr "" -"Please ask your question, help make our " -"community better!" - -#: skins/default/templates/faq.html:112 -#: skins/default/templates/header.html:100 -msgid "questions" -msgstr "" - -#: skins/default/templates/faq.html:112 -msgid "." -msgstr "" - -#: skins/default/templates/feedback.html:3 -msgid "Feedback" -msgstr "" - -#: skins/default/templates/feedback.html:6 -msgid "Give us your feedback!" -msgstr "" - -#: skins/default/templates/feedback.html:12 -#, python-format -msgid "" -"\n" -" Dear %(user_name)s, we look " -"forward to hearing your feedback. \n" -" Please type and send us your message below.\n" -" " -msgstr "" - -#: skins/default/templates/feedback.html:19 -msgid "" -"\n" -" Dear visitor, we look forward to " -"hearing your feedback.\n" -" Please type and send us your message below.\n" -" " -msgstr "" - -#: skins/default/templates/feedback.html:28 -msgid "(please enter a valid email)" -msgstr "" - -#: skins/default/templates/feedback.html:36 -msgid "(this field is required)" -msgstr "" - -#: skins/default/templates/feedback.html:44 -msgid "Send Feedback" -msgstr "" - -#: skins/default/templates/feedback_email.txt:3 -#, python-format -msgid "" -"\n" -"Hello, this is a %(site_title)s forum feedback message\n" -msgstr "" - -#: skins/default/templates/feedback_email.txt:9 -msgid "Sender is" -msgstr "" - -#: skins/default/templates/feedback_email.txt:11 -#: skins/default/templates/feedback_email.txt:14 -msgid "email" -msgstr "" - -#: skins/default/templates/feedback_email.txt:13 -msgid "anonymous" -msgstr "" - -#: skins/default/templates/feedback_email.txt:19 -msgid "Message body:" -msgstr "" - -#: skins/default/templates/footer.html:5 -msgid "about" -msgstr "" - -#: skins/default/templates/footer.html:7 -msgid "privacy policy" -msgstr "" - -#: skins/default/templates/footer.html:16 -msgid "give feedback" -msgstr "" - -#: skins/default/templates/header.html:13 -#, python-format -msgid "responses for %(username)s" -msgstr "" - -#: skins/default/templates/header.html:16 -#, python-format -msgid "you have a new response" -msgid_plural "you nave %(response_count)s new responses" -msgstr[0] "" -msgstr[1] "" - -#: skins/default/templates/header.html:19 -msgid "no new responses yet" -msgstr "" - -#: skins/default/templates/header.html:31 -#: skins/default/templates/header.html:32 -#, python-format -msgid "%(new)s new flagged posts and %(seen)s previous" -msgstr "" - -#: skins/default/templates/header.html:34 -#: skins/default/templates/header.html:35 -#, python-format -msgid "%(new)s new flagged posts" -msgstr "" - -#: skins/default/templates/header.html:40 -#: skins/default/templates/header.html:41 -#, python-format -msgid "%(seen)s flagged posts" -msgstr "" - -#: skins/default/templates/header.html:54 -msgid "sign out from askbot" -msgstr "" - -#: skins/default/templates/header.html:55 -msgid "logout" -msgstr "sign out" - -#: skins/default/templates/header.html:58 -msgid "Please, sign in or Join askbot!" -msgstr "" - -#: skins/default/templates/header.html:59 -msgid "login" -msgstr "Hi, there! Please sign in" - -#: skins/default/templates/header.html:79 -msgid "please help translate! see credits" -msgstr "" - -#: skins/default/templates/header.html:81 -msgid "settings" -msgstr "" - -#: skins/default/templates/header.html:90 -msgid "back to home page" -msgstr "" - -#: skins/default/templates/header.html:91 -#, python-format -msgid "%(site)s logo" -msgstr "" - -#: skins/default/templates/header.html:110 -msgid "users" -msgstr "people" - -#: skins/default/templates/header.html:115 -msgid "badges" -msgstr "" - -#: skins/default/templates/header.html:120 -msgid "ask a question" -msgstr "" - -#: skins/default/templates/input_bar.html:32 -msgid "search" -msgstr "" - -#: skins/default/templates/instant_notification.html:1 -#, python-format -msgid "

      Dear %(receiving_user_name)s,

      " -msgstr "" - -#: skins/default/templates/instant_notification.html:3 -#, python-format -msgid "" -"\n" -"

      %(update_author_name)s left a new comment:\n" -msgstr "" - -#: skins/default/templates/instant_notification.html:8 -#, python-format -msgid "" -"\n" -"

      %(update_author_name)s left a new comment\n" -msgstr "" - -#: skins/default/templates/instant_notification.html:13 -#, python-format -msgid "" -"\n" -"

      %(update_author_name)s answered a question \n" -"%(origin_post_title)s

      \n" -msgstr "" - -#: skins/default/templates/instant_notification.html:19 -#, python-format -msgid "" -"\n" -"

      %(update_author_name)s posted a new question \n" -"%(origin_post_title)s

      \n" -msgstr "" - -#: skins/default/templates/instant_notification.html:25 -#, python-format -msgid "" -"\n" -"

      %(update_author_name)s updated an answer to the question\n" -"%(origin_post_title)s

      \n" -msgstr "" - -#: skins/default/templates/instant_notification.html:31 -#, python-format -msgid "" -"\n" -"

      %(update_author_name)s updated a question \n" -"%(origin_post_title)s

      \n" -msgstr "" - -#: skins/default/templates/instant_notification.html:37 -#, python-format -msgid "" -"\n" -"
      %(content_preview)s
      \n" -"

      Please note - you can easily change\n" -"how often you receive these notifications or unsubscribe. Thank you for your " -"interest in our forum!

      \n" -msgstr "" - -#: skins/default/templates/instant_notification.html:42 -msgid "

      Sincerely,
      Forum Administrator

      " -msgstr "" - -#: skins/default/templates/logout.html:3 skins/default/templates/logout.html:6 -msgid "Logout" -msgstr "Sign out" - -#: skins/default/templates/logout.html:9 -msgid "" -"As a registered user you can login with your OpenID, log out of the site or " -"permanently remove your account." -msgstr "" -"Clicking Logout will log you out from the forumbut will not " -"sign you off from your OpenID provider.

      If you wish to sign off " -"completely - please make sure to log out from your OpenID provider as well." - -#: skins/default/templates/logout.html:10 -msgid "Logout now" -msgstr "Logout Now" - -#: skins/default/templates/macros.html:26 -msgid "karma:" -msgstr "" - -#: skins/default/templates/macros.html:30 -msgid "badges:" -msgstr "" - -#: skins/default/templates/macros.html:52 -#: skins/default/templates/macros.html:53 -msgid "previous" -msgstr "" - -#: skins/default/templates/macros.html:64 -msgid "current page" -msgstr "" - -#: skins/default/templates/macros.html:66 -#: skins/default/templates/macros.html:73 -#, python-format -msgid "page number %(num)s" -msgstr "page %(num)s" - -#: skins/default/templates/macros.html:77 -msgid "next page" -msgstr "" - -#: skins/default/templates/macros.html:88 -msgid "posts per page" -msgstr "" - -#: skins/default/templates/macros.html:119 templatetags/extra_tags.py:44 -#, python-format -msgid "%(username)s gravatar image" -msgstr "" - -#: skins/default/templates/macros.html:142 -msgid "this post is marked as community wiki" -msgstr "" - -#: skins/default/templates/macros.html:145 -#, python-format -msgid "" -"This post is a wiki.\n" -" Anyone with karma >%(wiki_min_rep)s is welcome to improve it." -msgstr "" - -#: skins/default/templates/macros.html:151 -msgid "asked" -msgstr "" - -#: skins/default/templates/macros.html:153 -msgid "answered" -msgstr "" - -#: skins/default/templates/macros.html:155 -msgid "posted" -msgstr "" - -#: skins/default/templates/macros.html:185 -msgid "updated" -msgstr "" - -#: skins/default/templates/macros.html:210 -#: skins/default/templates/unused/questions_ajax.html:23 views/readers.py:250 -msgid "vote" -msgid_plural "votes" -msgstr[0] "" -msgstr[1] "" - -#: skins/default/templates/macros.html:227 -#: skins/default/templates/unused/questions_ajax.html:43 views/readers.py:253 -msgid "answer" -msgid_plural "answers" -msgstr[0] "" -msgstr[1] "" - -#: skins/default/templates/macros.html:239 -#: skins/default/templates/unused/questions_ajax.html:55 views/readers.py:256 -msgid "view" -msgid_plural "views" -msgstr[0] "" -msgstr[1] "" - -#: skins/default/templates/macros.html:251 -#: skins/default/templates/question.html:88 -#: skins/default/templates/tags.html:38 -#: skins/default/templates/unused/question_list.html:64 -#: skins/default/templates/unused/question_summary_list_roll.html:52 -#: skins/default/templates/unused/questions_ajax.html:68 -#, python-format -msgid "see questions tagged '%(tag)s'" -msgstr "" - -#: skins/default/templates/macros.html:267 -#: skins/default/templates/question.html:94 -#: skins/default/templates/question.html:250 -#: skins/default/templates/revisions.html:37 -msgid "edit" -msgstr "" - -#: skins/default/templates/macros.html:272 -msgid "delete this comment" -msgstr "" - -#: skins/default/templates/macros.html:290 -#: skins/default/templates/macros.html:298 -#: skins/default/templates/question.html:429 -msgid "add comment" -msgstr "post a comment" - -#: skins/default/templates/macros.html:291 -#, python-format -msgid "see %(counter)s more" -msgid_plural "see %(counter)s more" -msgstr[0] "" -msgstr[1] "" - -#: skins/default/templates/macros.html:293 -#, python-format -msgid "see %(counter)s more comment" -msgid_plural "" -"see %(counter)s more comments\n" -" " -msgstr[0] "" -msgstr[1] "" - -#: skins/default/templates/macros.html:422 -msgid "(required)" -msgstr "" - -#: skins/default/templates/macros.html:443 -msgid "Toggle the real time Markdown editor preview" -msgstr "" - -#: skins/default/templates/privacy.html:3 -#: skins/default/templates/privacy.html:6 -msgid "Privacy policy" -msgstr "" - -#: skins/default/templates/question.html:30 -#: skins/default/templates/question.html:31 -#: skins/default/templates/question.html:46 -#: skins/default/templates/question.html:48 -msgid "i like this post (click again to cancel)" -msgstr "" - -#: skins/default/templates/question.html:33 -#: skins/default/templates/question.html:50 -#: skins/default/templates/question.html:201 -msgid "current number of votes" -msgstr "" - -#: skins/default/templates/question.html:42 -#: skins/default/templates/question.html:43 -#: skins/default/templates/question.html:55 -#: skins/default/templates/question.html:56 -msgid "i dont like this post (click again to cancel)" -msgstr "" - -#: skins/default/templates/question.html:60 -#: skins/default/templates/question.html:61 -msgid "mark this question as favorite (click again to cancel)" -msgstr "" - -#: skins/default/templates/question.html:67 -#: skins/default/templates/question.html:68 -msgid "remove favorite mark from this question (click again to restore mark)" -msgstr "" - -#: skins/default/templates/question.html:74 -msgid "Share this question on twitter" -msgstr "" - -#: skins/default/templates/question.html:75 -msgid "Share this question on facebook" -msgstr "" - -#: skins/default/templates/question.html:97 -msgid "retag" -msgstr "" - -#: skins/default/templates/question.html:104 -msgid "reopen" -msgstr "" - -#: skins/default/templates/question.html:108 -msgid "close" -msgstr "" - -#: skins/default/templates/question.html:113 -#: skins/default/templates/question.html:254 -msgid "" -"report as offensive (i.e containing spam, advertising, malicious text, etc.)" -msgstr "" - -#: skins/default/templates/question.html:114 -#: skins/default/templates/question.html:255 -msgid "flag offensive" -msgstr "" - -#: skins/default/templates/question.html:121 -#: skins/default/templates/question.html:265 -msgid "undelete" -msgstr "" - -#: skins/default/templates/question.html:121 -#: skins/default/templates/question.html:265 -#: skins/default/templates/authopenid/signin.html:175 -msgid "delete" -msgstr "" - -#: skins/default/templates/question.html:159 -#, python-format -msgid "" -"The question has been closed for the following reason \"%(close_reason)s\" by" -msgstr "" - -#: skins/default/templates/question.html:161 -#, python-format -msgid "close date %(closed_at)s" -msgstr "" - -#: skins/default/templates/question.html:169 -#, python-format -msgid "" -"\n" -" %(counter)s Answer:\n" -" " -msgid_plural "" -"\n" -" %(counter)s Answers:\n" -" " -msgstr[0] "" -msgstr[1] "" - -#: skins/default/templates/question.html:177 -msgid "oldest answers will be shown first" -msgstr "" - -#: skins/default/templates/question.html:177 -msgid "oldest answers" -msgstr "oldest" - -#: skins/default/templates/question.html:179 -msgid "newest answers will be shown first" -msgstr "" - -#: skins/default/templates/question.html:179 -msgid "newest answers" -msgstr "newest" - -#: skins/default/templates/question.html:181 -msgid "most voted answers will be shown first" -msgstr "" - -#: skins/default/templates/question.html:181 -msgid "popular answers" -msgstr "most voted" - -#: skins/default/templates/question.html:199 -#: skins/default/templates/question.html:200 -msgid "i like this answer (click again to cancel)" -msgstr "" - -#: skins/default/templates/question.html:210 -#: skins/default/templates/question.html:211 -msgid "i dont like this answer (click again to cancel)" -msgstr "" - -#: skins/default/templates/question.html:219 -#: skins/default/templates/question.html:220 -msgid "mark this answer as favorite (click again to undo)" -msgstr "" - -#: skins/default/templates/question.html:229 -#: skins/default/templates/question.html:230 -#, python-format -msgid "%(question_author)s has selected this answer as correct" -msgstr "" - -#: skins/default/templates/question.html:245 -msgid "answer permanent link" -msgstr "permanent link" - -#: skins/default/templates/question.html:246 -msgid "permanent link" -msgstr "link" - -#: skins/default/templates/question.html:315 -#: skins/default/templates/question.html:317 -msgid "Notify me once a day when there are any new answers" -msgstr "" -"Notify me once a day by email when there are any new " -"answers or updates" - -#: skins/default/templates/question.html:319 -msgid "Notify me weekly when there are any new answers" -msgstr "" -"Notify me weekly when there are any new answers or updates" - -#: skins/default/templates/question.html:321 -msgid "Notify me immediately when there are any new answers" -msgstr "" - -#: skins/default/templates/question.html:324 -#, python-format -msgid "" -"You can always adjust frequency of email updates from your %(profile_url)s" -msgstr "" -"(note: you can always change how often you receive updates)" - -#: skins/default/templates/question.html:329 -msgid "once you sign in you will be able to subscribe for any updates here" -msgstr "" -"Here (once you log in) you will be able to sign " -"up for the periodic email updates about this question." - -#: skins/default/templates/question.html:339 -msgid "Your answer" -msgstr "" - -#: skins/default/templates/question.html:341 -msgid "Be the first one to answer this question!" -msgstr "" - -#: skins/default/templates/question.html:347 -msgid "you can answer anonymously and then login" -msgstr "" -"Please start posting your answer anonymously " -"- 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 substantial " -"answer, for discussions, please use comments and " -"please do remember to vote (after you log in)!" - -#: skins/default/templates/question.html:351 -msgid "answer your own question only to give an answer" -msgstr "" -"You are welcome to answer your own question, " -"but please make sure to give an answer. Remember that you " -"can always revise your original question. Please " -"use comments for discussions and please don't " -"forget to vote :) for the answers that you liked (or perhaps did " -"not like)! " - -#: skins/default/templates/question.html:353 -msgid "please only give an answer, no discussions" -msgstr "" -"Please try to give a substantial answer. If " -"you wanted to comment on the question or answer, just use the " -"commenting tool. Please remember that you can always revise " -"your answers - no need to answer the same question twice. Also, " -"please don't forget to vote - it really helps to select the " -"best questions and answers!" - -#: skins/default/templates/question.html:360 -msgid "Login/Signup to Post Your Answer" -msgstr "Login/Signup to Post" - -#: skins/default/templates/question.html:363 -msgid "Answer Your Own Question" -msgstr "" - -#: skins/default/templates/question.html:365 -msgid "Answer the question" -msgstr "Post Your Answer" - -#: skins/default/templates/question.html:379 -msgid "Question tags" -msgstr "Tags" - -#: skins/default/templates/question.html:384 -#: skins/default/templates/questions.html:222 -#: skins/default/templates/tag_selector.html:9 -#: skins/default/templates/tag_selector.html:26 -#, python-format -msgid "see questions tagged '%(tag_name)s'" -msgstr "" - -#: skins/default/templates/question.html:390 -msgid "question asked" -msgstr "Asked" - -#: skins/default/templates/question.html:393 -msgid "question was seen" -msgstr "Seen" - -#: skins/default/templates/question.html:393 -msgid "times" -msgstr "" - -#: skins/default/templates/question.html:396 -msgid "last updated" -msgstr "Last updated" - -#: skins/default/templates/question.html:403 -msgid "Related questions" -msgstr "" - -#: skins/default/templates/question_edit.html:4 -#: skins/default/templates/question_edit.html:10 -msgid "Edit question" -msgstr "" - -#: skins/default/templates/question_edit_tips.html:3 -msgid "question tips" -msgstr "Tips" - -#: skins/default/templates/question_edit_tips.html:6 -msgid "please ask a relevant question" -msgstr "ask a question interesting to this community" - -#: skins/default/templates/question_edit_tips.html:9 -msgid "please try provide enough details" -msgstr "provide enough details" - -#: skins/default/templates/question_retag.html:3 -#: skins/default/templates/question_retag.html:6 -msgid "Change tags" -msgstr "Retag question" - -#: skins/default/templates/question_retag.html:25 -msgid "Retag" -msgstr "" - -#: skins/default/templates/question_retag.html:34 -msgid "Why use and modify tags?" -msgstr "" - -#: skins/default/templates/question_retag.html:36 -msgid "Tags help to keep the content better organized and searchable" -msgstr "" - -#: skins/default/templates/question_retag.html:38 -msgid "tag editors receive special awards from the community" -msgstr "" - -#: skins/default/templates/question_retag.html:79 -msgid "up to 5 tags, less than 20 characters each" -msgstr "" - -#: skins/default/templates/questions.html:4 -msgid "Questions" -msgstr "" - -#: skins/default/templates/questions.html:9 -msgid "In:" -msgstr "" - -#: skins/default/templates/questions.html:18 -msgid "see unanswered questions" -msgstr "" - -#: skins/default/templates/questions.html:24 -msgid "see your favorite questions" -msgstr "" - -#: skins/default/templates/questions.html:29 -msgid "Sort by:" -msgstr "" - -#: skins/default/templates/questions.html:97 -#: skins/default/templates/questions.html:100 -msgid "subscribe to the questions feed" -msgstr "" - -#: skins/default/templates/questions.html:101 -msgid "rss feed" -msgstr "" - -#: skins/default/templates/questions.html:105 -#, python-format -msgid "" -"\n" -" %(q_num)s question\n" -" " -msgid_plural "" -"\n" -" %(q_num)s questions\n" -" " -msgstr[0] "" -msgstr[1] "" - -#: skins/default/templates/questions.html:111 views/readers.py:170 -#, python-format -msgid "%(q_num)s question" -msgid_plural "%(q_num)s questions" -msgstr[0] "" -msgstr[1] "" - -#: skins/default/templates/questions.html:114 -#, python-format -msgid "with %(author_name)s's contributions" -msgstr "" - -#: skins/default/templates/questions.html:117 -msgid "tagged" -msgstr "" - -#: skins/default/templates/questions.html:122 -msgid "Search tips:" -msgstr "" - -#: skins/default/templates/questions.html:125 -msgid "reset author" -msgstr "" - -#: skins/default/templates/questions.html:127 -#: skins/default/templates/questions.html:130 -#: skins/default/templates/questions.html:168 -#: skins/default/templates/questions.html:171 -msgid " or " -msgstr "" - -#: skins/default/templates/questions.html:128 -msgid "reset tags" -msgstr "" - -#: skins/default/templates/questions.html:131 -#: skins/default/templates/questions.html:134 -msgid "start over" -msgstr "" - -#: skins/default/templates/questions.html:136 -msgid " - to expand, or dig in by adding more tags and revising the query." -msgstr "" - -#: skins/default/templates/questions.html:139 -msgid "Search tip:" -msgstr "" - -#: skins/default/templates/questions.html:139 -msgid "add tags and a query to focus your search" -msgstr "" - -#: skins/default/templates/questions.html:154 -#: skins/default/templates/unused/questions_ajax.html:79 -msgid "There are no unanswered questions here" -msgstr "" - -#: skins/default/templates/questions.html:157 -#: skins/default/templates/unused/questions_ajax.html:82 -msgid "No favorite questions here. " -msgstr "" - -#: skins/default/templates/questions.html:158 -#: skins/default/templates/unused/questions_ajax.html:83 -msgid "Please start (bookmark) some questions when you visit them" -msgstr "" - -#: skins/default/templates/questions.html:163 -#: skins/default/templates/unused/questions_ajax.html:88 -msgid "You can expand your search by " -msgstr "" - -#: skins/default/templates/questions.html:166 -#: skins/default/templates/unused/questions_ajax.html:92 -msgid "resetting author" -msgstr "" - -#: skins/default/templates/questions.html:169 -#: skins/default/templates/unused/questions_ajax.html:96 -msgid "resetting tags" -msgstr "" - -#: skins/default/templates/questions.html:172 -#: skins/default/templates/questions.html:175 -#: skins/default/templates/unused/questions_ajax.html:100 -#: skins/default/templates/unused/questions_ajax.html:104 -msgid "starting over" -msgstr "" - -#: skins/default/templates/questions.html:180 -#: skins/default/templates/unused/questions_ajax.html:109 -msgid "Please always feel free to ask your question!" -msgstr "" - -#: skins/default/templates/questions.html:184 -#: skins/default/templates/unused/questions_ajax.html:113 -msgid "Did not find what you were looking for?" -msgstr "" - -#: skins/default/templates/questions.html:185 -#: skins/default/templates/unused/questions_ajax.html:114 -msgid "Please, post your question!" -msgstr "" - -#: skins/default/templates/questions.html:200 -msgid "Contributors" -msgstr "" - -#: skins/default/templates/questions.html:217 -msgid "Related tags" -msgstr "Tags" - -#: skins/default/templates/reopen.html:3 skins/default/templates/reopen.html:6 -msgid "Reopen question" -msgstr "" - -#: skins/default/templates/reopen.html:9 -msgid "Title" -msgstr "" - -#: skins/default/templates/reopen.html:14 -#, python-format -msgid "" -"This question has been closed by \n" -" %(closed_by_username)s\n" -" " -msgstr "" - -#: skins/default/templates/reopen.html:19 -msgid "Close reason:" -msgstr "" - -#: skins/default/templates/reopen.html:22 -msgid "When:" -msgstr "" - -#: skins/default/templates/reopen.html:25 -msgid "Reopen this question?" -msgstr "" - -#: skins/default/templates/reopen.html:29 -msgid "Reopen this question" -msgstr "" - -#: skins/default/templates/revisions.html:4 -#: skins/default/templates/revisions.html:7 -msgid "Revision history" -msgstr "" - -#: skins/default/templates/revisions.html:23 -msgid "click to hide/show revision" -msgstr "" - -#: skins/default/templates/revisions.html:29 -#, python-format -msgid "revision %(number)s" -msgstr "" - -#: skins/default/templates/tag_selector.html:3 -msgid "Interesting tags" -msgstr "" - -#: skins/default/templates/tag_selector.html:13 -#, python-format -msgid "remove '%(tag_name)s' from the list of interesting tags" -msgstr "" - -#: skins/default/templates/tag_selector.html:19 -#: skins/default/templates/tag_selector.html:36 -#: skins/default/templates/user_moderate.html:35 -msgid "Add" -msgstr "" - -#: skins/default/templates/tag_selector.html:20 -msgid "Ignored tags" -msgstr "" - -#: skins/default/templates/tag_selector.html:30 -#, python-format -msgid "remove '%(tag_name)s' from the list of ignored tags" -msgstr "" - -#: skins/default/templates/tag_selector.html:39 -msgid "keep ignored questions hidden" -msgstr "" - -#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:8 -msgid "Tag list" -msgstr "Tags" - -#: skins/default/templates/tags.html:14 -msgid "sorted alphabetically" -msgstr "" - -#: skins/default/templates/tags.html:15 -msgid "by name" -msgstr "" - -#: skins/default/templates/tags.html:20 -msgid "sorted by frequency of tag use" -msgstr "" - -#: skins/default/templates/tags.html:21 -msgid "by popularity" -msgstr "" - -#: skins/default/templates/tags.html:27 -#, python-format -msgid "" -"All tags matching '%(stag)s'" -msgstr "" - -#: skins/default/templates/tags.html:30 -msgid "Nothing found" -msgstr "" - -#: skins/default/templates/user.html:14 -#, python-format -msgid "%(username)s's profile" -msgstr "" - -#: skins/default/templates/user_edit.html:4 -msgid "Edit user profile" -msgstr "" - -#: skins/default/templates/user_edit.html:7 -msgid "edit profile" -msgstr "" - -#: skins/default/templates/user_edit.html:17 -#: skins/default/templates/user_info.html:11 -msgid "change picture" -msgstr "" - -#: skins/default/templates/user_edit.html:20 -msgid "Registered user" -msgstr "" - -#: skins/default/templates/user_edit.html:27 -msgid "Screen Name" -msgstr "" - -#: skins/default/templates/user_edit.html:75 -#: skins/default/templates/user_email_subscriptions.html:18 -msgid "Update" -msgstr "" - -#: skins/default/templates/user_email_subscriptions.html:4 -msgid "Email subscription settings" -msgstr "" - -#: skins/default/templates/user_email_subscriptions.html:5 -msgid "email subscription settings info" -msgstr "" -"Adjust frequency of email updates. Receive " -"updates on interesting questions by email,
      help the community by answering questions of your colleagues. If you do not wish to " -"receive emails - select 'no email' on all items below.
      Updates are only " -"sent when there is any new activity on selected items." - -#: skins/default/templates/user_email_subscriptions.html:19 -msgid "Stop sending email" -msgstr "Stop Email" - -#: skins/default/templates/user_inbox.html:31 -msgid "Sections:" -msgstr "" - -#: skins/default/templates/user_inbox.html:35 -#, python-format -msgid "forum responses (%(re_count)s)" -msgstr "" - -#: skins/default/templates/user_inbox.html:40 -#, python-format -msgid "flagged items (%(flag_count)s)" -msgstr "" - -#: skins/default/templates/user_inbox.html:46 -msgid "select:" -msgstr "" - -#: skins/default/templates/user_inbox.html:48 -msgid "seen" -msgstr "" - -#: skins/default/templates/user_inbox.html:49 -msgid "new" -msgstr "" - -#: skins/default/templates/user_inbox.html:50 -msgid "none" -msgstr "" - -#: skins/default/templates/user_inbox.html:51 -msgid "mark as seen" -msgstr "" - -#: skins/default/templates/user_inbox.html:52 -msgid "mark as new" -msgstr "" - -#: skins/default/templates/user_inbox.html:53 -msgid "dismiss" -msgstr "" - -#: skins/default/templates/user_info.html:18 -#: skins/default/templates/users.html:13 skins/default/templates/users.html:14 -msgid "reputation" -msgstr "karma" - -#: skins/default/templates/user_info.html:30 -msgid "manage login methods" -msgstr "" - -#: skins/default/templates/user_info.html:34 -msgid "update profile" -msgstr "" - -#: skins/default/templates/user_info.html:46 -msgid "real name" -msgstr "" - -#: skins/default/templates/user_info.html:51 -msgid "member for" -msgstr "member since" - -#: skins/default/templates/user_info.html:56 -msgid "last seen" -msgstr "" - -#: skins/default/templates/user_info.html:62 -msgid "user website" -msgstr "website" - -#: skins/default/templates/user_info.html:68 -msgid "location" -msgstr "" - -#: skins/default/templates/user_info.html:75 -msgid "age" -msgstr "" - -#: skins/default/templates/user_info.html:76 -msgid "age unit" -msgstr "years old" - -#: skins/default/templates/user_info.html:83 -msgid "todays unused votes" -msgstr "" - -#: skins/default/templates/user_info.html:84 -msgid "votes left" -msgstr "" - -#: skins/default/templates/user_moderate.html:5 -#, python-format -msgid "%(username)s's current status is \"%(status)s\"" -msgstr "" - -#: skins/default/templates/user_moderate.html:8 -msgid "User status changed" -msgstr "" - -#: skins/default/templates/user_moderate.html:15 -msgid "Save" -msgstr "" - -#: skins/default/templates/user_moderate.html:21 -#, python-format -msgid "Your current reputation is %(reputation)s points" -msgstr "" - -#: skins/default/templates/user_moderate.html:23 -#, python-format -msgid "User's current reputation is %(reputation)s points" -msgstr "" - -#: skins/default/templates/user_moderate.html:27 -msgid "User reputation changed" -msgstr "" - -#: skins/default/templates/user_moderate.html:34 -msgid "Subtract" -msgstr "" - -#: skins/default/templates/user_moderate.html:39 -#, python-format -msgid "Send message to %(username)s" -msgstr "" - -#: skins/default/templates/user_moderate.html:40 -msgid "" -"An email will be sent to the user with 'reply-to' field set to your email " -"address. Please make sure that your address is entered correctly." -msgstr "" - -#: skins/default/templates/user_moderate.html:42 -msgid "Message sent" -msgstr "" - -#: skins/default/templates/user_moderate.html:60 -msgid "Send message" -msgstr "" - -#: skins/default/templates/user_reputation.html:7 -msgid "Your karma change log." -msgstr "" - -#: skins/default/templates/user_reputation.html:9 -#, python-format -msgid "%(user_name)s's karma change log" -msgstr "" - -#: skins/default/templates/user_stats.html:7 -#, python-format -msgid "%(counter)s Question" -msgid_plural "%(counter)s Questions" -msgstr[0] "" -msgstr[1] "" - -#: skins/default/templates/user_stats.html:12 -#, python-format -msgid "%(counter)s Answer" -msgid_plural "%(counter)s Answers" -msgstr[0] "" -msgstr[1] "" - -#: skins/default/templates/user_stats.html:20 -#, python-format -msgid "the answer has been voted for %(answer_score)s times" -msgstr "" - -#: skins/default/templates/user_stats.html:20 -msgid "this answer has been selected as correct" -msgstr "" - -#: skins/default/templates/user_stats.html:30 -#, python-format -msgid "(%(comment_count)s comment)" -msgid_plural "the answer has been commented %(comment_count)s times" -msgstr[0] "" -msgstr[1] "" - -#: skins/default/templates/user_stats.html:40 -#, python-format -msgid "%(cnt)s Vote" -msgid_plural "%(cnt)s Votes " -msgstr[0] "" -msgstr[1] "" - -#: skins/default/templates/user_stats.html:46 -msgid "thumb up" -msgstr "" - -#: skins/default/templates/user_stats.html:47 -msgid "user has voted up this many times" -msgstr "" - -#: skins/default/templates/user_stats.html:50 -msgid "thumb down" -msgstr "" - -#: skins/default/templates/user_stats.html:51 -msgid "user voted down this many times" -msgstr "" - -#: skins/default/templates/user_stats.html:59 -#, python-format -msgid "%(counter)s Tag" -msgid_plural "%(counter)s Tags" -msgstr[0] "" -msgstr[1] "" - -#: skins/default/templates/user_stats.html:67 -#, python-format -msgid "" -"see other questions with %(view_user)s's contributions tagged '%(tag_name)s' " -msgstr "" - -#: skins/default/templates/user_stats.html:81 -#, python-format -msgid "%(counter)s Badge" -msgid_plural "%(counter)s Badges" -msgstr[0] "" -msgstr[1] "" - -#: skins/default/templates/user_tabs.html:5 -msgid "User profile" -msgstr "" - -#: skins/default/templates/user_tabs.html:6 -msgid "overview" -msgstr "" - -#: skins/default/templates/user_tabs.html:9 views/users.py:729 -msgid "comments and answers to others questions" -msgstr "" - -#: skins/default/templates/user_tabs.html:10 -msgid "inbox" -msgstr "" - -#: skins/default/templates/user_tabs.html:13 -msgid "graph of user reputation" -msgstr "Graph of user karma" - -#: skins/default/templates/user_tabs.html:14 -msgid "reputation history" -msgstr "karma history" - -#: skins/default/templates/user_tabs.html:16 -msgid "questions that user selected as his/her favorite" -msgstr "" - -#: skins/default/templates/user_tabs.html:17 -msgid "favorites" -msgstr "" - -#: skins/default/templates/user_tabs.html:19 -msgid "recent activity" -msgstr "" - -#: skins/default/templates/user_tabs.html:20 -msgid "activity" -msgstr "" - -#: skins/default/templates/user_tabs.html:23 views/users.py:794 -msgid "user vote record" -msgstr "" - -#: skins/default/templates/user_tabs.html:24 -msgid "casted votes" -msgstr "votes" - -#: skins/default/templates/user_tabs.html:28 views/users.py:904 -msgid "email subscription settings" -msgstr "" - -#: skins/default/templates/user_tabs.html:29 -msgid "subscriptions" -msgstr "" - -#: skins/default/templates/user_tabs.html:33 views/users.py:216 -msgid "moderate this user" -msgstr "" - -#: skins/default/templates/user_tabs.html:34 -msgid "moderation" -msgstr "" - -#: skins/default/templates/users.html:4 skins/default/templates/users.html:7 -msgid "Users" -msgstr "People" - -#: skins/default/templates/users.html:19 skins/default/templates/users.html:20 -msgid "recent" -msgstr "" - -#: skins/default/templates/users.html:31 skins/default/templates/users.html:32 -msgid "by username" -msgstr "" - -#: skins/default/templates/users.html:38 -#, python-format -msgid "users matching query %(suser)s:" -msgstr "" - -#: skins/default/templates/users.html:41 -msgid "Nothing found." -msgstr "" - -#: skins/default/templates/users_questions.html:9 -#: skins/default/templates/users_questions.html:17 -#, python-format -msgid "this questions was selected as favorite %(cnt)s time" -msgid_plural "this questions was selected as favorite %(cnt)s times" -msgstr[0] "" -msgstr[1] "" - -#: skins/default/templates/users_questions.html:10 -msgid "thumb-up on" -msgstr "" - -#: skins/default/templates/users_questions.html:18 -msgid "thumb-up off" -msgstr "" - -#: skins/default/templates/authopenid/changeemail.html:2 -#: skins/default/templates/authopenid/changeemail.html:8 -#: skins/default/templates/authopenid/changeemail.html:36 -msgid "Change email" -msgstr "Change Email" - -#: skins/default/templates/authopenid/changeemail.html:10 -msgid "Save your email address" -msgstr "" - -#: skins/default/templates/authopenid/changeemail.html:15 -#, python-format -msgid "change %(email)s info" -msgstr "" -"Enter your new email into the box below if " -"you'd like to use another email for update subscriptions." -"
      Currently you are using %(email)s" - -#: skins/default/templates/authopenid/changeemail.html:17 -#, python-format -msgid "here is why email is required, see %(gravatar_faq_url)s" -msgstr "" -"Please enter your email address in the box below. Valid email address is required on this Q&A forum. If you like, " -"you can receive updates on interesting questions or entire " -"forum via email. Also, your email is used to create a unique gravatar image for your account. " -"Email addresses are never shown or otherwise shared with anybody else." - -#: skins/default/templates/authopenid/changeemail.html:29 -msgid "Your new Email" -msgstr "" -"Your new Email: (will not be shown to " -"anyone, must be valid)" - -#: skins/default/templates/authopenid/changeemail.html:29 -msgid "Your Email" -msgstr "" -"Your Email (must be valid, never shown to others)" - -#: skins/default/templates/authopenid/changeemail.html:36 -msgid "Save Email" -msgstr "" - -#: skins/default/templates/authopenid/changeemail.html:45 -msgid "Validate email" -msgstr "" - -#: skins/default/templates/authopenid/changeemail.html:48 -#, python-format -msgid "validate %(email)s info or go to %(change_email_url)s" -msgstr "" -"An email with a validation link has been sent to %" -"(email)s. Please follow the emailed link with your " -"web browser. Email validation is necessary to help insure the proper use of " -"email on Q&A. If you would like to use " -"another email, please change it again." - -#: skins/default/templates/authopenid/changeemail.html:52 -msgid "Email not changed" -msgstr "" - -#: skins/default/templates/authopenid/changeemail.html:55 -#, python-format -msgid "old %(email)s kept, if you like go to %(change_email_url)s" -msgstr "" -"Your email address %(email)s has not been changed." -" If you decide to change it later - you can always do it by editing " -"it in your user profile or by using the previous form again." - -#: skins/default/templates/authopenid/changeemail.html:59 -msgid "Email changed" -msgstr "" - -#: skins/default/templates/authopenid/changeemail.html:62 -#, python-format -msgid "your current %(email)s can be used for this" -msgstr "" -"Your email address is now set to %(email)s. " -"Updates on the questions that you like most will be sent to this address. " -"Email notifications are sent once a day or less frequently - only when there " -"are any news." - -#: skins/default/templates/authopenid/changeemail.html:66 -msgid "Email verified" -msgstr "" - -#: skins/default/templates/authopenid/changeemail.html:69 -msgid "thanks for verifying email" -msgstr "" -"Thank you for verifying your email! Now " -"you can ask and answer questions. Also if " -"you find a very interesting question you can subscribe for the " -"updates - then will be notified about changes once a day or less frequently." - -#: skins/default/templates/authopenid/changeemail.html:73 -msgid "email key not sent" -msgstr "Validation email not sent" - -#: skins/default/templates/authopenid/changeemail.html:76 -#, python-format -msgid "email key not sent %(email)s change email here %(change_link)s" -msgstr "" -"Your current email address %(email)s has been " -"validated before so the new key was not sent. You can change email used for update subscriptions if necessary." - -#: skins/default/templates/authopenid/complete.html:21 -#: skins/default/templates/authopenid/complete.html:24 -msgid "Registration" -msgstr "" - -#: skins/default/templates/authopenid/complete.html:29 -#, python-format -msgid "register new %(provider)s account info, see %(gravatar_faq_url)s" -msgstr "" -"

      You are here for the first time with your %" -"(provider)s login. Please create your screen name " -"and save your email address. Saved email address will let " -"you subscribe for the updates on the most interesting " -"questions and will be used to create and retrieve your unique avatar image - " -"gravatar.

      " - -#: skins/default/templates/authopenid/complete.html:32 -#, 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 "" -"

      Oops... looks like screen name %(username)s is " -"already used in another account.

      Please choose another screen " -"name to use with your %(provider)s login. Also, a valid email address is " -"required on the Q&A forum. Your email is " -"used to create a unique gravatar image for your account. If you like, you can receive " -"updates on the interesting questions or entire forum by email. " -"Email addresses are never shown or otherwise shared with anybody else.

      " - -#: skins/default/templates/authopenid/complete.html:36 -#, python-format -msgid "" -"register new external %(provider)s account info, see %(gravatar_faq_url)s" -msgstr "" -"

      You are here for the first time with your %" -"(provider)s login.

      You can either keep your screen " -"name the same as your %(provider)s login name or choose some other " -"nickname.

      Also, please save a valid email address. " -"With the email you can subscribe for the updates on the " -"most interesting questions. Email address is also used to create and " -"retrieve your unique avatar image - gravatar.

      " - -#: skins/default/templates/authopenid/complete.html:39 -#, python-format -msgid "register new Facebook connect account info, see %(gravatar_faq_url)s" -msgstr "" -"

      You are here for the first time with your " -"Facebook login. Please create your screen name and " -"save your email address. Saved email address will let you " -"subscribe for the updates on the most interesting questions " -"and will be used to create and retrieve your unique avatar image - gravatar.

      " - -#: skins/default/templates/authopenid/complete.html:42 -msgid "This account already exists, please use another." -msgstr "" - -#: skins/default/templates/authopenid/complete.html:61 -msgid "Screen name label" -msgstr "Screen Name (will be shown to others)" - -#: skins/default/templates/authopenid/complete.html:68 -msgid "Email address label" -msgstr "" -"Email Address (will not be shared with " -"anyone, must be valid)" - -#: skins/default/templates/authopenid/complete.html:74 -#: skins/default/templates/authopenid/signup_with_password.html:17 -msgid "receive updates motivational blurb" -msgstr "" -"Receive forum updates by email - this will help our " -"community grow and become more useful.
      By default Q&A forum sends up to one email digest per " -"week - only when there is anything new.
      If you like, please " -"adjust this now or any time later from your user account." - -#: skins/default/templates/authopenid/complete.html:78 -#: skins/default/templates/authopenid/signup_with_password.html:21 -msgid "please select one of the options above" -msgstr "" - -#: skins/default/templates/authopenid/complete.html:81 -msgid "Tag filter tool will be your right panel, once you log in." -msgstr "" - -#: skins/default/templates/authopenid/complete.html:82 -msgid "create account" -msgstr "Signup" - -#: skins/default/templates/authopenid/confirm_email.txt:1 -msgid "Thank you for registering at our Q&A forum!" -msgstr "" - -#: skins/default/templates/authopenid/confirm_email.txt:3 -msgid "Your account details are:" -msgstr "" - -#: skins/default/templates/authopenid/confirm_email.txt:5 -msgid "Username:" -msgstr "" - -#: skins/default/templates/authopenid/confirm_email.txt:6 -msgid "Password:" -msgstr "" - -#: skins/default/templates/authopenid/confirm_email.txt:8 -msgid "Please sign in here:" -msgstr "" - -#: skins/default/templates/authopenid/confirm_email.txt:11 -#: skins/default/templates/authopenid/email_validation.txt:13 -msgid "" -"Sincerely,\n" -"Forum Administrator" -msgstr "" -"Sincerely,\n" -"Q&A Forum Administrator" - -#: skins/default/templates/authopenid/email_validation.txt:1 -msgid "Greetings from the Q&A forum" -msgstr "" - -#: skins/default/templates/authopenid/email_validation.txt:3 -msgid "To make use of the Forum, please follow the link below:" -msgstr "" - -#: skins/default/templates/authopenid/email_validation.txt:7 -msgid "Following the link above will help us verify your email address." -msgstr "" - -#: skins/default/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" -"for any inconvenience" -msgstr "" - -#: skins/default/templates/authopenid/signin.html:3 -msgid "User login" -msgstr "User login" - -#: skins/default/templates/authopenid/signin.html:11 -#, python-format -msgid "" -"\n" -" Your answer to %(title)s %(summary)s will be posted once you log in\n" -" " -msgstr "" -"\n" -"Your answer to \"%(title)s %(summary)s...\" is saved and will be " -"posted once you log in." - -#: skins/default/templates/authopenid/signin.html:18 -#, python-format -msgid "" -"Your question \n" -" %(title)s %(summary)s will be posted once you log in\n" -" " -msgstr "" -"Your question \"%(title)s %(summary)s...\" is saved and will be " -"posted once you log in." - -#: skins/default/templates/authopenid/signin.html:25 -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 "" - -#: skins/default/templates/authopenid/signin.html:28 -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 "" - -#: skins/default/templates/authopenid/signin.html:30 -msgid "" -"Please add a more permanent login method by clicking one of the icons below, " -"to avoid logging in via email each time." -msgstr "" - -#: skins/default/templates/authopenid/signin.html:34 -msgid "" -"Click on one of the icons below to add a new login method or re-validate an " -"existing one." -msgstr "" - -#: skins/default/templates/authopenid/signin.html:36 -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 "" - -#: skins/default/templates/authopenid/signin.html:39 -msgid "" -"Please check your email and visit the enclosed link to re-connect to your " -"account" -msgstr "" - -#: skins/default/templates/authopenid/signin.html:86 -msgid "Please enter your user name, then sign in" -msgstr "" - -#: skins/default/templates/authopenid/signin.html:87 -#: skins/default/templates/authopenid/signin.html:109 -msgid "(or select another login method above)" -msgstr "" - -#: skins/default/templates/authopenid/signin.html:89 -msgid "Sign in" -msgstr "" - -#: skins/default/templates/authopenid/signin.html:107 -msgid "Please enter your user name and password, then sign in" -msgstr "" - -#: skins/default/templates/authopenid/signin.html:111 -msgid "Login failed, please try again" -msgstr "" - -#: skins/default/templates/authopenid/signin.html:114 -msgid "Login name" -msgstr "" - -#: skins/default/templates/authopenid/signin.html:118 -msgid "Password" -msgstr "" - -#: skins/default/templates/authopenid/signin.html:122 -msgid "Login" -msgstr "Sign in" - -#: skins/default/templates/authopenid/signin.html:129 -msgid "To change your password - please enter the new one twice, then submit" -msgstr "" - -#: skins/default/templates/authopenid/signin.html:132 -msgid "New password" -msgstr "" - -#: skins/default/templates/authopenid/signin.html:137 -msgid "Please, retype" -msgstr "" - -#: skins/default/templates/authopenid/signin.html:156 -msgid "Here are your current login methods" -msgstr "" - -#: skins/default/templates/authopenid/signin.html:160 -msgid "provider" -msgstr "" - -#: skins/default/templates/authopenid/signin.html:161 -msgid "last used" -msgstr "" - -#: skins/default/templates/authopenid/signin.html:162 -msgid "delete, if you like" -msgstr "" - -#: skins/default/templates/authopenid/signin.html:187 -msgid "Still have trouble signing in?" -msgstr "" - -#: skins/default/templates/authopenid/signin.html:192 -msgid "Please, enter your email address below and obtain a new key" -msgstr "" - -#: skins/default/templates/authopenid/signin.html:194 -msgid "Please, enter your email address below to recover your account" -msgstr "" - -#: skins/default/templates/authopenid/signin.html:197 -msgid "recover your account via email" -msgstr "" - -#: skins/default/templates/authopenid/signin.html:208 -msgid "Send a new recovery key" -msgstr "" - -#: skins/default/templates/authopenid/signin.html:210 -msgid "Recover your account via email" -msgstr "" - -#: skins/default/templates/authopenid/signin.html:221 -msgid "Why use OpenID?" -msgstr "" - -#: skins/default/templates/authopenid/signin.html:224 -msgid "with openid it is easier" -msgstr "With the OpenID you don't need to create new username and password." - -#: skins/default/templates/authopenid/signin.html:227 -msgid "reuse openid" -msgstr "You can safely re-use the same login for all OpenID-enabled websites." - -#: skins/default/templates/authopenid/signin.html:230 -msgid "openid is widely adopted" -msgstr "" -"There are > 160,000,000 OpenID account in use. Over 10,000 sites are OpenID-" -"enabled." - -#: skins/default/templates/authopenid/signin.html:233 -msgid "openid is supported open standard" -msgstr "OpenID is based on an open standard, supported by many organizations." - -#: skins/default/templates/authopenid/signin.html:237 -msgid "Find out more" -msgstr "" - -#: skins/default/templates/authopenid/signin.html:238 -msgid "Get OpenID" -msgstr "" - -#: skins/default/templates/authopenid/signup_with_password.html:3 -msgid "Signup" -msgstr "" - -#: skins/default/templates/authopenid/signup_with_password.html:6 -msgid "Create login name and password" -msgstr "" - -#: skins/default/templates/authopenid/signup_with_password.html:8 -msgid "Traditional signup info" -msgstr "" -"If you prefer, create your forum login name and " -"password here. However, please keep in mind that we also support " -"OpenID login method. With OpenID you can " -"simply reuse your external login (e.g. Gmail or AOL) without ever sharing " -"your login details with anyone and having to remember yet another password." - -#: skins/default/templates/authopenid/signup_with_password.html:24 -msgid "" -"Please read and type in the two words below to help us prevent automated " -"account creation." -msgstr "" - -#: skins/default/templates/authopenid/signup_with_password.html:26 -msgid "Create Account" -msgstr "" - -#: skins/default/templates/authopenid/signup_with_password.html:27 -msgid "or" -msgstr "" - -#: skins/default/templates/authopenid/signup_with_password.html:28 -msgid "return to OpenID login" -msgstr "" - -#: skins/default/templates/unused/email_base.html:8 -msgid "home" -msgstr "" - -#: skins/default/templates/unused/notarobot.html:3 -msgid "Please prove that you are a Human Being" -msgstr "" - -#: skins/default/templates/unused/notarobot.html:10 -msgid "I am a Human Being" -msgstr "" - -#: skins/default/templates/unused/question_counter_widget.html:78 -msgid "Please decide if you like this question or not by voting" -msgstr "" - -#: skins/default/templates/unused/question_counter_widget.html:84 -msgid "" -"\n" -" vote\n" -" " -msgid_plural "" -"\n" -" votes\n" -" " -msgstr[0] "" -msgstr[1] "" - -#: skins/default/templates/unused/question_counter_widget.html:93 -#: skins/default/templates/unused/question_list.html:23 -#: skins/default/templates/unused/questions_ajax.html:27 -msgid "this answer has been accepted to be correct" -msgstr "" - -#: skins/default/templates/unused/question_counter_widget.html:99 -msgid "" -"\n" -" answer \n" -" " -msgid_plural "" -"\n" -" answers \n" -" " -msgstr[0] "" -msgstr[1] "" - -#: skins/default/templates/unused/question_counter_widget.html:111 -msgid "" -"\n" -" view\n" -" " -msgid_plural "" -"\n" -" views\n" -" " -msgstr[0] "" -msgstr[1] "" - -#: skins/default/templates/unused/question_list.html:15 -msgid "" -"\n" -" vote\n" -" " -msgid_plural "" -"\n" -" votes\n" -" " -msgstr[0] "" -msgstr[1] "" - -#: skins/default/templates/unused/question_list.html:35 -msgid "" -"\n" -" answer \n" -" " -msgid_plural "" -"\n" -" answers \n" -" " -msgstr[0] "" -msgstr[1] "" - -#: skins/default/templates/unused/question_list.html:47 -msgid "" -"\n" -" view\n" -" " -msgid_plural "" -"\n" -" views\n" -" " -msgstr[0] "" -msgstr[1] "" - -#: skins/default/templates/unused/question_summary_list_roll.html:13 -msgid "answers" -msgstr "" - -#: skins/default/templates/unused/question_summary_list_roll.html:14 -msgid "votes" -msgstr "" - -#: skins/default/templates/unused/question_summary_list_roll.html:15 -msgid "views" -msgstr "" - -#: templatetags/extra_filters.py:168 templatetags/extra_filters_jinja.py:234 -msgid "no items in counter" -msgstr "no" - -#: utils/decorators.py:82 views/commands.py:132 views/commands.py:149 -msgid "Oops, apologies - there was some error" -msgstr "" - -#: utils/forms.py:32 -msgid "this field is required" -msgstr "" - -#: utils/forms.py:46 -msgid "choose a username" -msgstr "Choose screen name" - -#: utils/forms.py:52 -msgid "user name is required" -msgstr "" - -#: utils/forms.py:53 -msgid "sorry, this name is taken, please choose another" -msgstr "" - -#: utils/forms.py:54 -msgid "sorry, this name is not allowed, please choose another" -msgstr "" - -#: utils/forms.py:55 -msgid "sorry, there is no user with this name" -msgstr "" - -#: utils/forms.py:56 -msgid "sorry, we have a serious error - user name is taken by several users" -msgstr "" - -#: utils/forms.py:57 -msgid "user name can only consist of letters, empty space and underscore" -msgstr "" - -#: utils/forms.py:118 -msgid "your email address" -msgstr "Your email (never shared)" - -#: utils/forms.py:119 -msgid "email address is required" -msgstr "" - -#: utils/forms.py:120 -msgid "please enter a valid email address" -msgstr "" - -#: utils/forms.py:121 -msgid "this email is already used by someone else, please choose another" -msgstr "" - -#: utils/forms.py:149 -msgid "choose password" -msgstr "Password" - -#: utils/forms.py:150 -msgid "password is required" -msgstr "" - -#: utils/forms.py:153 -msgid "retype password" -msgstr "Password (please retype)" - -#: utils/forms.py:154 -msgid "please, retype your password" -msgstr "" - -#: utils/forms.py:155 -msgid "sorry, entered passwords did not match, please try again" -msgstr "" - -#: utils/functions.py:63 -#, python-format -msgid "on %(date)s" -msgstr "" - -#: utils/functions.py:67 -msgid "2 days ago" -msgstr "" - -#: utils/functions.py:69 -msgid "yesterday" -msgstr "" - -#: utils/functions.py:71 -#, python-format -msgid "%(hr)d hour ago" -msgid_plural "%(hr)d hours ago" -msgstr[0] "" -msgstr[1] "" - -#: utils/functions.py:73 -#, python-format -msgid "%(min)d min ago" -msgid_plural "%(min)d mins ago" -msgstr[0] "" -msgstr[1] "" - -#: views/commands.py:42 -msgid "anonymous users cannot vote" -msgstr "Sorry, anonymous users cannot vote" - -#: views/commands.py:62 -msgid "Sorry you ran out of votes for today" -msgstr "" - -#: views/commands.py:68 -#, python-format -msgid "You have %(votes_left)s votes left for today" -msgstr "" - -#: views/commands.py:139 -msgid "Sorry, but anonymous users cannot access the inbox" -msgstr "" - -#: views/commands.py:211 -msgid "Sorry, something is not right here..." -msgstr "" - -#: views/commands.py:226 -msgid "Sorry, but anonymous users cannot accept answers" -msgstr "" - -#: views/commands.py:307 -#, python-format -msgid "subscription saved, %(email)s needs validation, see %(details_url)s" -msgstr "" -"Your subscription is saved, but email address %(email)s needs to be " -"validated, please see more details here" - -#: views/commands.py:315 -msgid "email update frequency has been set to daily" -msgstr "" - -#: views/commands.py:373 -msgid "Bad request" -msgstr "" - -#: views/meta.py:59 -msgid "Q&A forum feedback" -msgstr "" - -#: views/meta.py:60 -msgid "Thanks for the feedback!" -msgstr "" - -#: views/meta.py:70 -msgid "We look forward to hearing your feedback! Please, give it next time :)" -msgstr "" - -#: 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:446 -msgid "" -"Sorry, the comment you are looking for has been deleted and is no longer " -"accessible" -msgstr "" - -#: views/users.py:217 -msgid "moderate user" -msgstr "" - -#: views/users.py:376 -msgid "user profile" -msgstr "" - -#: views/users.py:377 -msgid "user profile overview" -msgstr "" - -#: views/users.py:661 -msgid "recent user activity" -msgstr "" - -#: views/users.py:662 -msgid "profile - recent activity" -msgstr "" - -#: views/users.py:730 -msgid "profile - responses" -msgstr "" - -#: views/users.py:795 -msgid "profile - votes" -msgstr "" - -#: views/users.py:833 -msgid "user reputation in the community" -msgstr "user karma" - -#: views/users.py:834 -msgid "profile - user reputation" -msgstr "Profile - User's Karma" - -#: views/users.py:862 -msgid "users favorite questions" -msgstr "" - -#: views/users.py:863 -msgid "profile - favorite questions" -msgstr "" - -#: views/users.py:883 views/users.py:887 -msgid "changes saved" -msgstr "" - -#: views/users.py:893 -msgid "email updates canceled" -msgstr "" - -#: views/users.py:905 -msgid "profile - email subscriptions" -msgstr "" - -#: views/writers.py:56 -msgid "Sorry, anonymous users cannot upload files" -msgstr "" - -#: views/writers.py:65 -#, python-format -msgid "allowed file types are '%(file_types)s'" -msgstr "" - -#: views/writers.py:88 -#, python-format -msgid "maximum upload file size is %(file_size)sK" -msgstr "" - -#: views/writers.py:96 -msgid "Error uploading file. Please contact the site administrator. Thank you." -msgstr "" - -#: views/writers.py:452 -#, python-format -msgid "" -"Sorry, you appear to be logged out and cannot post comments. Please sign in." -msgstr "" - -#: views/writers.py:497 -msgid "Sorry, anonymous users cannot edit comments" -msgstr "" - -#: views/writers.py:505 -#, python-format -msgid "" -"Sorry, you appear to be logged out and cannot delete comments. Please sign in." -msgstr "" - -#: views/writers.py:526 -msgid "sorry, we seem to have some technical difficulties" -msgstr "" - -#~ msgid "reputation points" -#~ msgstr "karma" diff --git a/askbot/locale/pt_BR/LC_MESSAGES/django.mo b/askbot/locale/pt_BR/LC_MESSAGES/django.mo new file mode 100644 index 00000000..172807a7 Binary files /dev/null and b/askbot/locale/pt_BR/LC_MESSAGES/django.mo differ diff --git a/askbot/locale/pt_BR/LC_MESSAGES/django.po b/askbot/locale/pt_BR/LC_MESSAGES/django.po new file mode 100644 index 00000000..f5bd07bc --- /dev/null +++ b/askbot/locale/pt_BR/LC_MESSAGES/django.po @@ -0,0 +1,6133 @@ +# 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: +# Sandro , 2011. +msgid "" +msgstr "" +"Project-Id-Version: askbot\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-10-08 02:34-0500\n" +"PO-Revision-Date: 2011-06-30 21:57+0000\n" +"Last-Translator: sandrossv \n" +"Language-Team: Portuguese (Brazilian) (http://www.transifex.net/projects/p/" +"askbot/team/pt_BR/)\n" +"Language: pt_BR\n" +"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" + +#: exceptions.py:13 +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 +msgid " - " +msgstr "-" + +#: feed.py:26 +#, fuzzy +msgid "Individual question feed" +msgstr "Selecionados individualmente" + +#: feed.py:100 +msgid "latest questions" +msgstr "últimas perguntas" + +#: forms.py:74 +msgid "select country" +msgstr "selecionar país" + +#: forms.py:83 +msgid "Country" +msgstr "País" + +#: forms.py:91 +msgid "Country field is required" +msgstr "Campo País é necessário" + +#: forms.py:104 skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:38 +#: skins/default/templates/blocks/question_edit_tips.html:43 +msgid "title" +msgstr "título" + +#: forms.py:105 +msgid "please enter a descriptive title for your question" +msgstr "digite um título descritivo para sua pergunta" + +#: forms.py:110 +msgid "title must be > 10 characters" +msgstr "título deve ser > 10 caracteres" + +#: forms.py:119 +msgid "content" +msgstr "conteúdo" + +#: forms.py:125 +msgid "question content must be > 10 characters" +msgstr "conteúdo questão deve ser > 10 caracteres" + +#: forms.py:134 skins/default/templates/macros.html:660 +#: skins/default/templates/macros.html:672 +#: skins/default/templates/blocks/header.html:25 +msgid "tags" +msgstr "tags" + +#: forms.py:136 +msgid "" +"Tags are short keywords, with no spaces within. Up to five tags can be used." +msgstr "Tags são palavras-chave, sem espaços. Até cinco tags podem ser usadas." + +#: forms.py:164 skins/default/templates/question_retag.html:58 +msgid "tags are required" +msgstr "tags são necessárias" + +#: forms.py:173 +#, 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, use %(tag_count)d tags ou menos" +msgstr[1] "por favor, use %(tag_count)d tags ou menos" + +#: forms.py:181 +#, python-format +msgid "At least one of the following tags is required : %(tags)s" +msgstr "" + +#: forms.py:190 +#, 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:198 +msgid "use-these-chars-in-tags" +msgstr "use-estes-caracteres-nas-tags" + +#: forms.py:233 +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:234 +msgid "" +"if you choose community wiki option, the question and answer do not generate " +"points and name of author will not be shown" +msgstr "" +"se 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:250 +msgid "update summary:" +msgstr "atualizar resumo:" + +#: forms.py:251 +msgid "" +"enter a brief summary of your revision (e.g. fixed spelling, grammar, " +"improved style, this field is optional)" +msgstr "" +"insira um breve resumo de sua revisão (por exemplo, correção de ortografia, " +"gramática, melhorou estilo , este campo é opcional)" + +#: forms.py:327 +msgid "Enter number of points to add or subtract" +msgstr "Digite o número de pontos para adicionar ou subtrair" + +#: forms.py:341 const/__init__.py:245 +msgid "approved" +msgstr "aprovado" + +#: forms.py:342 const/__init__.py:246 +msgid "watched" +msgstr "assistido" + +#: forms.py:343 const/__init__.py:247 +msgid "suspended" +msgstr "suspenso" + +#: forms.py:344 const/__init__.py:248 +msgid "blocked" +msgstr "bloqueado" + +#: forms.py:346 +msgid "administrator" +msgstr "" + +#: forms.py:347 const/__init__.py:244 +msgid "moderator" +msgstr "moderador" + +#: forms.py:367 +msgid "Change status to" +msgstr "Mudar status para" + +#: forms.py:394 +msgid "which one?" +msgstr "qual?" + +#: forms.py:415 +msgid "Cannot change own status" +msgstr "Não pode alterar o próprio estado" + +#: forms.py:421 +msgid "Cannot turn other user to moderator" +msgstr "Não é possível tornar outro usuário moderador" + +#: forms.py:428 +msgid "Cannot change status of another moderator" +msgstr "Não é possível alterar o status de outro moderador" + +#: forms.py:434 +#, fuzzy +msgid "Cannot change status to admin" +msgstr "Não pode alterar o próprio estado" + +#: forms.py:440 +#, python-format +msgid "" +"If you wish to change %(username)s's status, please make a meaningful " +"selection." +msgstr "" +"Se você deseja mudar o status de %(username)s, por favor, faça uma seleção " +"significativa." + +#: forms.py:449 +msgid "Subject line" +msgstr "Linha de assunto" + +#: forms.py:456 +msgid "Message text" +msgstr "Texto da mensagem" + +#: forms.py:542 +msgid "Your name:" +msgstr "Seu nome:" + +#: forms.py:543 +msgid "Email (not shared with anyone):" +msgstr "E-mail (não compartilhado com ninguém):" + +#: forms.py:544 +msgid "Your message:" +msgstr "A sua mensagem:" + +#: forms.py:581 +msgid "ask anonymously" +msgstr "perguntar anonimamente" + +#: forms.py:583 +msgid "Check if you do not want to reveal your name when asking this question" +msgstr "Marque se você não quer revelar seu nome ao fazer esta pergunta" + +#: forms.py:743 +msgid "" +"You have asked this question anonymously, if you decide to reveal your " +"identity, please check this box." +msgstr "" +"Você fez essa pergunta de forma anônima, se você decidir revelar sua " +"identidade, por favor, marque esta caixa." + +#: forms.py:747 +msgid "reveal identity" +msgstr "revelar a identidade" + +#: forms.py:805 +msgid "" +"Sorry, only owner of the anonymous question can reveal his or her identity, " +"please uncheck the box" +msgstr "" +"Desculpe, apenas o proprietário da questão anônima pode revelar sua " +"identidade, por favor, desmarque a caixa" + +#: forms.py:818 +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 "" +"Desculpe, aparentemente mudaram as regras - não é mais possível perguntar de " +"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:856 +msgid "this email will be linked to gravatar" +msgstr "este e-mail será ligado ao gravatar" + +#: forms.py:863 +msgid "Real name" +msgstr "Nome real" + +#: forms.py:870 +msgid "Website" +msgstr "Site" + +#: forms.py:877 +msgid "City" +msgstr "Cidade" + +#: forms.py:886 +msgid "Show country" +msgstr "Mostrar país" + +#: forms.py:891 +msgid "Date of birth" +msgstr "Data de nascimento" + +#: forms.py:892 +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:898 +msgid "Profile" +msgstr "Perfil" + +#: forms.py:907 +msgid "Screen name" +msgstr "Apelido" + +#: forms.py:938 forms.py:939 +msgid "this email has already been registered, please use another one" +msgstr "este e-mail já foi registrado, por favor use outro" + +#: forms.py:946 +msgid "Choose email tag filter" +msgstr "" + +#: forms.py:993 +msgid "Asked by me" +msgstr "Perguntada(s) por mim" + +#: forms.py:996 +msgid "Answered by me" +msgstr "Respondida(s) por mim" + +#: forms.py:999 +msgid "Individually selected" +msgstr "Selecionados individualmente" + +#: forms.py:1002 +msgid "Entire forum (tag filtered)" +msgstr "Forum inteiro (filtrada por tag)" + +#: forms.py:1006 +msgid "Comments and posts mentioning me" +msgstr "Comentários e posts me mencionando" + +#: forms.py:1085 +msgid "okay, let's try!" +msgstr "ok, vamos tentar!" + +#: forms.py:1086 +msgid "no community email please, thanks" +msgstr "não envie e-mails, obrigado(a)" + +#: forms.py:1090 +msgid "please choose one of the options above" +msgstr "por favor, escolha uma das opções acima" + +#: urls.py:53 +msgid "about/" +msgstr "about /" + +#: urls.py:54 +msgid "faq/" +msgstr "faq /" + +#: urls.py:55 +msgid "privacy/" +msgstr "privacidade /" + +#: urls.py:57 urls.py:62 +msgid "answers/" +msgstr "respostas /" + +#: urls.py:57 urls.py:83 urls.py:198 +msgid "edit/" +msgstr "editar /" + +#: urls.py:62 urls.py:113 +msgid "revisions/" +msgstr "revisões /" + +#: urls.py:68 urls.py:78 urls.py:83 urls.py:88 urls.py:93 urls.py:98 +#: urls.py:103 urls.py:108 urls.py:113 urls.py:285 +#: skins/default/templates/question.html:508 +msgid "questions/" +msgstr "perguntas /" + +#: urls.py:78 +msgid "ask/" +msgstr "perguntar /" + +#: urls.py:88 +msgid "retag/" +msgstr "alterar tags/" + +#: urls.py:93 +msgid "close/" +msgstr "fechar /" + +#: urls.py:98 +msgid "reopen/" +msgstr "reabrir /" + +#: urls.py:103 +msgid "answer/" +msgstr "responder/" + +#: urls.py:108 skins/default/templates/question.html:508 +msgid "vote/" +msgstr "votar/" + +#: urls.py:144 +msgid "tags/" +msgstr "tags/" + +#: urls.py:187 +msgid "subscribe-for-tags/" +msgstr "inscrever-por-tags/" + +#: urls.py:192 urls.py:198 urls.py:204 urls.py:212 +#: skins/default/templates/main_page/javascript.html:23 +msgid "users/" +msgstr "usuários/" + +#: urls.py:205 +#, fuzzy +msgid "subscriptions/" +msgstr "perguntas /" + +#: urls.py:217 +msgid "users/update_has_custom_avatar/" +msgstr "" + +#: urls.py:222 urls.py:227 +msgid "badges/" +msgstr "insígnias/" + +#: urls.py:232 +msgid "messages/" +msgstr "mensagens/" + +#: urls.py:232 +msgid "markread/" +msgstr "marcar como lida/" + +#: urls.py:248 +msgid "upload/" +msgstr "upload/" + +#: urls.py:249 +msgid "feedback/" +msgstr "feedback/" + +#: urls.py:291 skins/default/templates/question.html:506 +#: skins/default/templates/main_page/javascript.html:22 +msgid "question/" +msgstr "perguntar/" + +#: urls.py:298 setup_templates/settings.py:202 +#: skins/default/templates/authopenid/providers_javascript.html:7 +msgid "account/" +msgstr "conta/" + +#: conf/badges.py:12 +msgid "Badge settings" +msgstr "Configurar insígnias/" + +#: conf/badges.py:21 +msgid "Disciplined: minimum upvotes for deleted post" +msgstr "Disciplinada: mínimo de votos positivos para apagar mensagem" + +#: conf/badges.py:30 +msgid "Peer Pressure: minimum downvotes for deleted post" +msgstr "Pressão do grupo: mínimo de votos negativos para apagar mensagem" + +#: conf/badges.py:39 +msgid "Teacher: minimum upvotes for the answer" +msgstr "Professor: mínimo de votos positivos para a resposta" + +#: conf/badges.py:48 +msgid "Nice Answer: minimum upvotes for the answer" +msgstr "Resposta Razoável: mínimo de votos positivos para a resposta" + +#: conf/badges.py:57 +msgid "Good Answer: minimum upvotes for the answer" +msgstr "Resposta Boa: mínimo de votos positivos para a resposta" + +#: conf/badges.py:66 +msgid "Great Answer: minimum upvotes for the answer" +msgstr "Resposta Ótima: mínimo de votos positivos para a resposta" + +#: conf/badges.py:75 +msgid "Nice Question: minimum upvotes for the question" +msgstr "Pergunta Razoável: mínimo de votos positivos para a questão" + +#: conf/badges.py:84 +msgid "Good Question: minimum upvotes for the question" +msgstr "Pergunta Boa: mínimo de votos positivos para a questão" + +#: conf/badges.py:93 +msgid "Great Question: minimum upvotes for the question" +msgstr "Pergunta Ótima: mínimo de votos positivos para a questão" + +#: conf/badges.py:102 +msgid "Popular Question: minimum views" +msgstr "Pergunta Popular: mínimo de visualizações" + +#: conf/badges.py:111 +msgid "Notable Question: minimum views" +msgstr "Pergunta Notável: mínimo de visualizações" + +#: conf/badges.py:120 +msgid "Famous Question: minimum views" +msgstr "Pergunta Famosa: mínimo de visualizações" + +#: conf/badges.py:129 +msgid "Self-Learner: minimum answer upvotes" +msgstr "Autodidata: mínimo de votos positivos para a resposta" + +#: conf/badges.py:138 +msgid "Civic Duty: minimum votes" +msgstr "" + +#: conf/badges.py:147 +msgid "Enlightened Duty: minimum upvotes" +msgstr "" + +#: conf/badges.py:156 +msgid "Guru: minimum upvotes" +msgstr "" + +#: conf/badges.py:165 +msgid "Necromancer: minimum upvotes" +msgstr "" + +#: conf/badges.py:174 +msgid "Necromancer: minimum delay in days" +msgstr "" + +#: conf/badges.py:183 +msgid "Associate Editor: minimum number of edits" +msgstr "" + +#: conf/badges.py:192 +msgid "Favorite Question: minimum stars" +msgstr "" + +#: conf/badges.py:201 +msgid "Stellar Question: minimum stars" +msgstr "" + +#: conf/badges.py:210 +msgid "Commentator: minimum comments" +msgstr "" + +#: conf/badges.py:219 +msgid "Taxonomist: minimum tag use count" +msgstr "" + +#: conf/badges.py:228 +msgid "Enthusiast: minimum days" +msgstr "" + +#: conf/email.py:14 +msgid "Email and email alert settings" +msgstr "" + +#: conf/email.py:22 +msgid "Prefix for the email subject line" +msgstr "" + +#: conf/email.py:24 +msgid "" +"This setting takes default from the django settingEMAIL_SUBJECT_PREFIX. A " +"value entered here will overridethe default." +msgstr "" + +#: conf/email.py:36 +msgid "Maximum number of news entries in an email alert" +msgstr "" + +#: conf/email.py:46 +msgid "Default news notification frequency" +msgstr "" + +#: conf/email.py:48 +msgid "" +"This option currently defines default frequency of emailed updates in the " +"following five categories: questions asked by user, answered by user, " +"individually selected, entire forum (per person tag filter applies) and " +"posts mentioning the user and comment responses" +msgstr "" + +#: conf/email.py:62 +msgid "Send periodic reminders about unanswered questions" +msgstr "" + +#: conf/email.py:64 +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) and an IMAP server with a dedicated inbox " +"must be configured " +msgstr "" + +#: conf/email.py:78 +msgid "Days before starting to send reminders about unanswered questions" +msgstr "" + +#: conf/email.py:89 +msgid "" +"How often to send unanswered question reminders (in days between the " +"reminders sent)." +msgstr "" + +#: conf/email.py:101 +msgid "Max. number of reminders to send about unanswered questions" +msgstr "" + +#: conf/email.py:113 +msgid "Require email verification before allowing to post" +msgstr "" + +#: conf/email.py:114 +msgid "" +"Active email verification is done by sending a verification key in email" +msgstr "" + +#: conf/email.py:123 +msgid "Allow only one account per email address" +msgstr "" + +#: conf/email.py:132 +msgid "Fake email for anonymous user" +msgstr "" + +#: conf/email.py:133 +msgid "Use this setting to control gravatar for email-less user" +msgstr "" + +#: conf/email.py:142 +msgid "Allow posting questions by email" +msgstr "" + +#: conf/email.py:144 +msgid "" +"Before enabling this setting - please fill out IMAP settings in the settings." +"py file" +msgstr "" + +#: conf/email.py:155 +msgid "Replace space in emailed tags with dash" +msgstr "" + +#: conf/email.py:157 +msgid "" +"This setting applies to tags written in the subject line of questions asked " +"by email" +msgstr "" + +#: conf/external_keys.py:10 +msgid "Keys to connect the site with external services like Facebook, etc." +msgstr "" + +#: conf/external_keys.py:18 +msgid "Google site verification key" +msgstr "" + +#: conf/external_keys.py:20 +#, python-format +msgid "" +"This key helps google index your site please obtain is at google webmasters tools site" +msgstr "" + +#: conf/external_keys.py:35 +msgid "Google Analytics key" +msgstr "" + +#: conf/external_keys.py:37 +#, python-format +msgid "" +"Obtain is at Google Analytics site, if you wish to " +"use Google Analytics to monitor your site" +msgstr "" + +#: conf/external_keys.py:50 +msgid "Enable recaptcha (keys below are required)" +msgstr "" + +#: conf/external_keys.py:59 +msgid "Recaptcha public key" +msgstr "" + +#: conf/external_keys.py:67 +msgid "Recaptcha private key" +msgstr "" + +#: conf/external_keys.py:69 +#, 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 %(url)s" +msgstr "" + +#: conf/external_keys.py:81 +msgid "Facebook public API key" +msgstr "" + +#: conf/external_keys.py:83 +#, python-format +msgid "" +"Facebook API key and Facebook secret allow to use Facebook Connect login " +"method at your site. Please obtain these keys at facebook create app site" +msgstr "" + +#: conf/external_keys.py:96 +msgid "Facebook secret key" +msgstr "" + +#: conf/external_keys.py:104 +msgid "Twitter consumer key" +msgstr "" + +#: conf/external_keys.py:106 +#, python-format +msgid "" +"Please register your forum at twitter applications site" +msgstr "" + +#: conf/external_keys.py:117 +msgid "Twitter consumer secret" +msgstr "" + +#: conf/external_keys.py:125 +msgid "LinkedIn consumer key" +msgstr "" + +#: conf/external_keys.py:127 +#, python-format +msgid "" +"Please register your forum at LinkedIn developer site" +msgstr "" + +#: conf/external_keys.py:138 +msgid "LinkedIn consumer secret" +msgstr "" + +#: conf/external_keys.py:146 +msgid "ident.ca consumer key" +msgstr "" + +#: conf/external_keys.py:148 +#, python-format +msgid "" +"Please register your forum at Identi.ca applications " +"site" +msgstr "" + +#: conf/external_keys.py:159 +msgid "ident.ca consumer secret" +msgstr "" + +#: conf/external_keys.py:167 +msgid "Use LDAP authentication for the password login" +msgstr "" + +#: conf/external_keys.py:176 +msgid "LDAP service provider name" +msgstr "" + +#: conf/external_keys.py:184 +msgid "URL for the LDAP service" +msgstr "" + +#: conf/external_keys.py:192 +msgid "Explain how to change LDAP password" +msgstr "" + +#: conf/flatpages.py:10 +msgid "Flatpages - about, privacy policy, etc." +msgstr "" + +#: conf/flatpages.py:17 +msgid "Text of the Q&A forum About page (html format)" +msgstr "" + +#: conf/flatpages.py:20 +msgid "" +"Save, then use HTML validator on " +"the \"about\" page to check your input." +msgstr "" + +#: conf/flatpages.py:30 +msgid "Text of the Q&A forum FAQ page (html format)" +msgstr "" + +#: conf/flatpages.py:33 +msgid "" +"Save, then use HTML validator on " +"the \"faq\" page to check your input." +msgstr "" + +#: conf/flatpages.py:44 +msgid "Text of the Q&A forum Privacy Policy (html format)" +msgstr "" + +#: conf/flatpages.py:47 +msgid "" +"Save, then use HTML validator on " +"the \"privacy\" page to check your input." +msgstr "" + +#: conf/forum_data_rules.py:11 +msgid "Data entry and display" +msgstr "" + +#: conf/forum_data_rules.py:20 +#, python-format +msgid "" +"Enable embedding videos. Note: please read read this first." +msgstr "" + +#: conf/forum_data_rules.py:31 +msgid "Check to enable community wiki feature" +msgstr "" + +#: conf/forum_data_rules.py:40 +msgid "Allow asking questions anonymously" +msgstr "" + +#: conf/forum_data_rules.py:42 +msgid "" +"Users do not accrue reputation for anonymous questions and their identity is " +"not revealed until they change their mind" +msgstr "" + +#: conf/forum_data_rules.py:54 +msgid "Allow posting before logging in" +msgstr "" + +#: conf/forum_data_rules.py:56 +msgid "" +"Check if you want to allow users start posting questions or answers before " +"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 "" + +#: conf/forum_data_rules.py:71 +msgid "Allow swapping answer with question" +msgstr "" + +#: conf/forum_data_rules.py:73 +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 "" + +#: conf/forum_data_rules.py:85 +msgid "Maximum length of tag (number of characters)" +msgstr "" + +#: conf/forum_data_rules.py:93 +msgid "Mandatory tags" +msgstr "" + +#: conf/forum_data_rules.py:96 +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:108 +msgid "Force lowercase the tags" +msgstr "" + +#: conf/forum_data_rules.py:110 +msgid "" +"Attention: after checking this, please back up the database, and run a " +"management command: python manage.py fix_question_tags to " +"globally rename the tags" +msgstr "" + +#: conf/forum_data_rules.py:124 +msgid "Format of tag list" +msgstr "" + +#: conf/forum_data_rules.py:126 +msgid "" +"Select the format to show tags in, either as a simple list, or as a tag cloud" +msgstr "" + +#: conf/forum_data_rules.py:138 +msgid "Use wildcard tags" +msgstr "" + +#: conf/forum_data_rules.py:140 +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:153 +msgid "Default max number of comments to display under posts" +msgstr "" + +#: conf/forum_data_rules.py:164 +#, python-format +msgid "Maximum comment length, must be < %(max_len)s" +msgstr "" + +#: conf/forum_data_rules.py:174 +msgid "Limit time to edit comments" +msgstr "" + +#: conf/forum_data_rules.py:176 +msgid "If unchecked, there will be no time limit to edit the comments" +msgstr "" + +#: conf/forum_data_rules.py:187 +msgid "Minutes allowed to edit a comment" +msgstr "" + +#: conf/forum_data_rules.py:188 +msgid "To enable this setting, check the previous one" +msgstr "" + +#: conf/forum_data_rules.py:197 +msgid "Save comment by pressing key" +msgstr "" + +#: conf/forum_data_rules.py:206 +msgid "Minimum length of search term for Ajax search" +msgstr "" + +#: conf/forum_data_rules.py:207 +msgid "Must match the corresponding database backend setting" +msgstr "" + +#: conf/forum_data_rules.py:216 +msgid "Do not make text query sticky in search" +msgstr "" + +#: conf/forum_data_rules.py:218 +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:231 +msgid "Maximum number of tags per question" +msgstr "" + +#: conf/forum_data_rules.py:243 +msgid "Number of questions to list by default" +msgstr "" + +#: conf/forum_data_rules.py:253 +msgid "What should \"unanswered question\" mean?" +msgstr "" + +#: conf/license.py:12 +#, fuzzy +msgid "License settings" +msgstr "Configurar insígnias/" + +#: conf/license.py:19 +msgid "Show license clause in the site footer" +msgstr "" + +#: conf/license.py:28 +msgid "Short name for the license" +msgstr "" + +#: conf/license.py:37 +msgid "Full name of the license" +msgstr "" + +#: conf/license.py:38 +msgid "Creative Commons Attribution Share Alike 3.0" +msgstr "" + +#: conf/license.py:46 +msgid "Add link to the license page" +msgstr "" + +#: conf/license.py:55 +msgid "License homepage" +msgstr "" + +#: conf/license.py:57 +msgid "URL of the official page with all the license legal clauses" +msgstr "" + +#: conf/license.py:67 +msgid "Use license logo" +msgstr "" + +#: conf/license.py:76 +msgid "License logo image" +msgstr "" + +#: conf/login_providers.py:12 +msgid "Login provider setings" +msgstr "" + +#: conf/login_providers.py:20 +msgid "" +"Show alternative login provider buttons on the password \"Sign Up\" page" +msgstr "" + +#: conf/login_providers.py:29 +msgid "Always display local login form and hide \"Askbot\" button." +msgstr "" + +#: conf/login_providers.py:38 +msgid "Activate to allow login with self-hosted wordpress site" +msgstr "" + +#: conf/login_providers.py:39 +msgid "" +"to activate this feature you must fill out the wordpress xml-rpc setting " +"bellow" +msgstr "" + +#: conf/login_providers.py:48 +msgid "" +"Fill it with the wordpress url to the xml-rpc, normally http://mysite.com/" +"xmlrpc.php" +msgstr "" + +#: conf/login_providers.py:49 +msgid "" +"To enable, go to Settings->Writing->Remote Publishing and check the box for " +"XML-RPC" +msgstr "" + +#: conf/login_providers.py:60 +msgid "Upload your icon" +msgstr "" + +#: conf/login_providers.py:90 +#, python-format +msgid "Activate %(provider)s login" +msgstr "" + +#: conf/login_providers.py:95 +#, python-format +msgid "" +"Note: to really enable %(provider)s login some additional parameters will " +"need to be set in the \"External keys\" section" +msgstr "" + +#: conf/markup.py:14 +msgid "Markup formatting" +msgstr "" + +#: conf/markup.py:39 +msgid "Enable code-friendly Markdown" +msgstr "" + +#: conf/markup.py:41 +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 " +"\"MathJax support\" implicitly turns this feature on, because underscores " +"are heavily used in LaTeX input." +msgstr "" + +#: conf/markup.py:56 +msgid "Mathjax support (rendering of LaTeX)" +msgstr "" + +#: conf/markup.py:58 +#, python-format +msgid "" +"If you enable this feature, mathjax must be " +"installed on your server in its own directory." +msgstr "" + +#: conf/markup.py:72 +msgid "Base url of MathJax deployment" +msgstr "" + +#: conf/markup.py:74 +msgid "" +"Note - MathJax is not included with askbot - 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 "" + +#: conf/markup.py:89 +msgid "Enable autolinking with specific patterns" +msgstr "" + +#: conf/markup.py:91 +msgid "" +"If you enable this feature, the application will be able to detect patterns " +"and auto link to URLs" +msgstr "" + +#: conf/markup.py:104 +msgid "Regexes to detect the link patterns" +msgstr "" + +#: conf/markup.py:106 +msgid "" +"Enter valid regular expressions for the patters, one per line. For example " +"to detect a bug pattern like #bug123, use the following regex: #bug(\\d+). " +"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 "" + +#: conf/markup.py:125 +msgid "URLs for autolinking" +msgstr "" + +#: conf/markup.py:127 +msgid "" +"Here, please enter url templates for the patterns entered in the previous " +"setting, also one entry per line. Make sure that number of lines in " +"this setting and the previous one are the same 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 "" + +#: conf/minimum_reputation.py:11 +msgid "Minimum reputation required to perform actions" +msgstr "" + +#: conf/minimum_reputation.py:20 +msgid "Upvote" +msgstr "" + +#: conf/minimum_reputation.py:29 +msgid "Downvote" +msgstr "" + +#: conf/minimum_reputation.py:38 +msgid "Answer own question immediately" +msgstr "" + +#: conf/minimum_reputation.py:47 +msgid "Accept own answer" +msgstr "" + +#: conf/minimum_reputation.py:56 +msgid "Flag offensive" +msgstr "" + +#: conf/minimum_reputation.py:65 +msgid "Leave comments" +msgstr "" + +#: conf/minimum_reputation.py:74 +msgid "Delete comments posted by others" +msgstr "" + +#: conf/minimum_reputation.py:83 +msgid "Delete questions and answers posted by others" +msgstr "" + +#: conf/minimum_reputation.py:92 +msgid "Upload files" +msgstr "" + +#: conf/minimum_reputation.py:101 +msgid "Close own questions" +msgstr "" + +#: conf/minimum_reputation.py:110 +msgid "Retag questions posted by other people" +msgstr "" + +#: conf/minimum_reputation.py:119 +msgid "Reopen own questions" +msgstr "" + +#: conf/minimum_reputation.py:128 +msgid "Edit community wiki posts" +msgstr "" + +#: conf/minimum_reputation.py:137 +msgid "Edit posts authored by other people" +msgstr "" + +#: conf/minimum_reputation.py:146 +msgid "View offensive flags" +msgstr "" + +#: conf/minimum_reputation.py:155 +msgid "Close questions asked by others" +msgstr "" + +#: conf/minimum_reputation.py:164 +msgid "Lock posts" +msgstr "" + +#: conf/minimum_reputation.py:173 +msgid "Remove rel=nofollow from own homepage" +msgstr "" + +#: conf/minimum_reputation.py:175 +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 "" + +#: conf/reputation_changes.py:12 +msgid "Reputation loss and gain rules" +msgstr "" + +#: conf/reputation_changes.py:21 +msgid "Maximum daily reputation gain per user" +msgstr "" + +#: conf/reputation_changes.py:30 +msgid "Gain for receiving an upvote" +msgstr "" + +#: conf/reputation_changes.py:39 +msgid "Gain for the author of accepted answer" +msgstr "" + +#: conf/reputation_changes.py:48 +msgid "Gain for accepting best answer" +msgstr "" + +#: conf/reputation_changes.py:57 +msgid "Gain for post owner on canceled downvote" +msgstr "" + +#: conf/reputation_changes.py:66 +msgid "Gain for voter on canceling downvote" +msgstr "" + +#: conf/reputation_changes.py:76 +msgid "Loss for voter for canceling of answer acceptance" +msgstr "" + +#: conf/reputation_changes.py:86 +msgid "Loss for author whose answer was \"un-accepted\"" +msgstr "" + +#: conf/reputation_changes.py:96 +msgid "Loss for giving a downvote" +msgstr "" + +#: conf/reputation_changes.py:106 +msgid "Loss for owner of post that was flagged offensive" +msgstr "" + +#: conf/reputation_changes.py:116 +msgid "Loss for owner of post that was downvoted" +msgstr "" + +#: conf/reputation_changes.py:126 +msgid "Loss for owner of post that was flagged 3 times per same revision" +msgstr "" + +#: conf/reputation_changes.py:136 +msgid "Loss for owner of post that was flagged 5 times per same revision" +msgstr "" + +#: conf/reputation_changes.py:146 +msgid "Loss for post owner when upvote is canceled" +msgstr "" + +#: conf/sidebar_main.py:11 +msgid "Sidebar widget settings - main page" +msgstr "" + +#: conf/sidebar_main.py:18 conf/sidebar_profile.py:18 +#: conf/sidebar_question.py:18 +msgid "Custom sidebar header" +msgstr "" + +#: conf/sidebar_main.py:21 conf/sidebar_profile.py:21 +#: conf/sidebar_question.py:21 +msgid "" +"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." +msgstr "" + +#: conf/sidebar_main.py:34 +msgid "Show avatar block in sidebar" +msgstr "" + +#: conf/sidebar_main.py:36 +msgid "Uncheck this if you want to hide the avatar block from the sidebar " +msgstr "" + +#: conf/sidebar_main.py:47 +msgid "Limit how many avatars will be displayed on the sidebar" +msgstr "" + +#: conf/sidebar_main.py:57 +msgid "Show tag selector in sidebar" +msgstr "" + +#: conf/sidebar_main.py:59 +msgid "" +"Uncheck this if you want to hide the options for choosing interesting and " +"ignored tags " +msgstr "" + +#: conf/sidebar_main.py:70 +msgid "Show tag list/cloud in sidebar" +msgstr "" + +#: conf/sidebar_main.py:72 +msgid "" +"Uncheck this if you want to hide the tag cloud or tag list from the sidebar " +msgstr "" + +#: conf/sidebar_main.py:83 conf/sidebar_profile.py:34 +#: conf/sidebar_question.py:74 +msgid "Custom sidebar footer" +msgstr "" + +#: conf/sidebar_main.py:86 conf/sidebar_profile.py:37 +#: conf/sidebar_question.py:77 +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 "" + +#: conf/sidebar_profile.py:11 +msgid "Sidebar widget settings - profile page" +msgstr "" + +#: conf/sidebar_question.py:11 +msgid "Sidebar widget settings - question page" +msgstr "" + +#: conf/sidebar_question.py:34 +msgid "Show tag list in sidebar" +msgstr "" + +#: conf/sidebar_question.py:36 +msgid "Uncheck this if you want to hide the tag list from the sidebar " +msgstr "" + +#: conf/sidebar_question.py:47 +msgid "Show meta information in sidebar" +msgstr "" + +#: conf/sidebar_question.py:49 +msgid "" +"Uncheck this if you want to hide the meta information about the question " +"(post date, views, last updated). " +msgstr "" + +#: conf/sidebar_question.py:61 +msgid "Show related questions in sidebar" +msgstr "" + +#: conf/sidebar_question.py:63 +msgid "Uncheck this if you want to hide the list of related questions. " +msgstr "" + +#: conf/site_modes.py:63 +msgid "Site modes" +msgstr "" + +#: conf/site_modes.py:72 +msgid "Activate a \"Bootstrap\" mode" +msgstr "" + +#: conf/site_modes.py:74 +msgid "" +"Bootstrap mode lowers reputation and certain badge thresholds, to values, " +"more suitable for the smaller communities, WARNING: your " +"current value for Minimum reputation, Bagde Settings and Vote Rules will be " +"changed after you modify this setting." +msgstr "" + +#: conf/site_settings.py:11 +msgid "Q&A forum website parameters and urls" +msgstr "" + +#: conf/site_settings.py:19 +msgid "Site title for the Q&A forum" +msgstr "" + +#: conf/site_settings.py:28 +msgid "Comma separated list of Q&A site keywords" +msgstr "" + +#: conf/site_settings.py:37 +msgid "Copyright message to show in the footer" +msgstr "" + +#: conf/site_settings.py:47 +msgid "Site description for the search engines" +msgstr "" + +#: conf/site_settings.py:56 +msgid "Short name for your Q&A forum" +msgstr "" + +#: conf/site_settings.py:66 +msgid "Base URL for your Q&A forum, must start with http or https" +msgstr "" + +#: conf/site_settings.py:77 +msgid "Check to enable greeting for anonymous user" +msgstr "" + +#: conf/site_settings.py:88 +msgid "Text shown in the greeting message shown to the anonymous user" +msgstr "" + +#: conf/site_settings.py:92 +msgid "Use HTML to format the message " +msgstr "" + +#: conf/site_settings.py:101 +msgid "Feedback site URL" +msgstr "" + +#: conf/site_settings.py:103 +msgid "If left empty, a simple internal feedback form will be used instead" +msgstr "" + +#: conf/skin_counter_settings.py:11 +msgid "Skin: view, vote and answer counters" +msgstr "" + +#: conf/skin_counter_settings.py:19 +msgid "Vote counter value to give \"full color\"" +msgstr "" + +#: conf/skin_counter_settings.py:29 +msgid "Background color for votes = 0" +msgstr "" + +#: conf/skin_counter_settings.py:30 conf/skin_counter_settings.py:41 +#: conf/skin_counter_settings.py:52 conf/skin_counter_settings.py:62 +#: conf/skin_counter_settings.py:72 conf/skin_counter_settings.py:85 +#: conf/skin_counter_settings.py:106 conf/skin_counter_settings.py:117 +#: conf/skin_counter_settings.py:128 conf/skin_counter_settings.py:138 +#: conf/skin_counter_settings.py:148 conf/skin_counter_settings.py:163 +#: conf/skin_counter_settings.py:186 conf/skin_counter_settings.py:196 +#: conf/skin_counter_settings.py:206 conf/skin_counter_settings.py:216 +#: conf/skin_counter_settings.py:228 conf/skin_counter_settings.py:239 +#: conf/skin_counter_settings.py:252 conf/skin_counter_settings.py:262 +msgid "HTML color name or hex value" +msgstr "" + +#: conf/skin_counter_settings.py:40 +msgid "Foreground color for votes = 0" +msgstr "" + +#: conf/skin_counter_settings.py:51 +msgid "Background color for votes" +msgstr "" + +#: conf/skin_counter_settings.py:61 +msgid "Foreground color for votes" +msgstr "" + +#: conf/skin_counter_settings.py:71 +msgid "Background color for votes = MAX" +msgstr "" + +#: conf/skin_counter_settings.py:84 +msgid "Foreground color for votes = MAX" +msgstr "" + +#: conf/skin_counter_settings.py:95 +msgid "View counter value to give \"full color\"" +msgstr "" + +#: conf/skin_counter_settings.py:105 +msgid "Background color for views = 0" +msgstr "" + +#: conf/skin_counter_settings.py:116 +msgid "Foreground color for views = 0" +msgstr "" + +#: conf/skin_counter_settings.py:127 +msgid "Background color for views" +msgstr "" + +#: conf/skin_counter_settings.py:137 +msgid "Foreground color for views" +msgstr "" + +#: conf/skin_counter_settings.py:147 +msgid "Background color for views = MAX" +msgstr "" + +#: conf/skin_counter_settings.py:162 +msgid "Foreground color for views = MAX" +msgstr "" + +#: conf/skin_counter_settings.py:173 +msgid "Answer counter value to give \"full color\"" +msgstr "" + +#: conf/skin_counter_settings.py:185 +msgid "Background color for answers = 0" +msgstr "" + +#: conf/skin_counter_settings.py:195 +msgid "Foreground color for answers = 0" +msgstr "" + +#: conf/skin_counter_settings.py:205 +msgid "Background color for answers" +msgstr "" + +#: conf/skin_counter_settings.py:215 +msgid "Foreground color for answers" +msgstr "" + +#: conf/skin_counter_settings.py:227 +msgid "Background color for answers = MAX" +msgstr "" + +#: conf/skin_counter_settings.py:238 +msgid "Foreground color for answers = MAX" +msgstr "" + +#: conf/skin_counter_settings.py:251 +msgid "Background color for accepted" +msgstr "" + +#: conf/skin_counter_settings.py:261 +msgid "Foreground color for accepted answer" +msgstr "" + +#: conf/skin_general_settings.py:14 +msgid "Skin and User Interface settings" +msgstr "" + +#: conf/skin_general_settings.py:21 +msgid "Q&A site logo" +msgstr "" + +#: conf/skin_general_settings.py:23 +msgid "To change the logo, select new file, then submit this whole form." +msgstr "" + +#: conf/skin_general_settings.py:37 +msgid "Show logo" +msgstr "" + +#: 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 +msgid "Site favicon" +msgstr "" + +#: 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 this page." +msgstr "" + +#: conf/skin_general_settings.py:71 +msgid "Password login button" +msgstr "" + +#: conf/skin_general_settings.py:73 +msgid "" +"An 88x38 pixel image that is used on the login screen for the password login " +"button." +msgstr "" + +#: conf/skin_general_settings.py:88 +msgid "Show all UI functions to all users" +msgstr "" + +#: conf/skin_general_settings.py:90 +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:105 +msgid "Select skin" +msgstr "" + +#: conf/skin_general_settings.py:116 +msgid "Customize HTML " +msgstr "" + +#: conf/skin_general_settings.py:125 +msgid "Custom portion of the HTML " +msgstr "" + +#: conf/skin_general_settings.py:127 +msgid "" +"To use this option, check \"Customize HTML <HEAD>\" " +"above. Contents of this box will be inserted into the <HEAD> portion " +"of the HTML output, where elements such as <script>, <link>, <" +"meta> may be added. Please, keep in mind that adding external javascript " +"to the <HEAD> 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. Note: if you do use this setting, " +"please test the site with the W3C HTML validator service." +msgstr "" + +#: conf/skin_general_settings.py:149 +msgid "Custom header additions" +msgstr "" + +#: conf/skin_general_settings.py:151 +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 " +"headerin the HTML format. When customizing the site header (as well as " +"footer and the HTML <HEAD>), use the HTML validation service to make " +"sure that your input is valid and works well in all browsers." +msgstr "" + +#: conf/skin_general_settings.py:166 +msgid "Site footer mode" +msgstr "" + +#: conf/skin_general_settings.py:168 +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:185 +msgid "Custom footer (HTML format)" +msgstr "" + +#: conf/skin_general_settings.py:187 +msgid "" +"To enable this function, please select option 'customize' " +"in the \"Site footer mode\" above. Use this area to enter contents of the " +"footer in the HTML format. When customizing the site footer (as well as the " +"header and HTML <HEAD>), use the HTML validation service to make sure " +"that your input is valid and works well in all browsers." +msgstr "" + +#: conf/skin_general_settings.py:202 +msgid "Apply custom style sheet (CSS)" +msgstr "" + +#: conf/skin_general_settings.py:204 +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:216 +msgid "Custom style sheet (CSS)" +msgstr "" + +#: conf/skin_general_settings.py:218 +msgid "" +"To use this function, 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 \"<forum url>/custom.css\", where the \"<forum url> part " +"depends (default is empty string) on the url configuration in your urls.py." +msgstr "" + +#: conf/skin_general_settings.py:234 +msgid "Add custom javascript" +msgstr "" + +#: conf/skin_general_settings.py:237 +msgid "Check to enable javascript that you can enter in the next field" +msgstr "" + +#: conf/skin_general_settings.py:247 +msgid "Custom javascript" +msgstr "" + +#: conf/skin_general_settings.py:249 +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 \"<forum url>/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 (to " +"enable your custom code, check \"Add custom javascript\" option " +"above)." +msgstr "" + +#: conf/skin_general_settings.py:267 +msgid "Skin media revision number" +msgstr "" + +#: conf/skin_general_settings.py:269 +msgid "Will be set automatically but you can modify it if necessary." +msgstr "" + +#: conf/skin_general_settings.py:280 +msgid "Hash to update the media revision number automatically." +msgstr "" + +#: conf/skin_general_settings.py:284 +msgid "Will be set automatically, it is not necesary to modify manually." +msgstr "" + +#: conf/social_sharing.py:10 +msgid "Sharing content on social networks" +msgstr "" + +#: conf/social_sharing.py:18 +msgid "Check to enable sharing of questions on Twitter" +msgstr "" + +#: conf/social_sharing.py:27 +msgid "Check to enable sharing of questions on Facebook" +msgstr "" + +#: conf/social_sharing.py:36 +msgid "Check to enable sharing of questions on LinkedIn" +msgstr "" + +#: conf/social_sharing.py:45 +msgid "Check to enable sharing of questions on Identi.ca" +msgstr "" + +#: conf/social_sharing.py:54 +msgid "Check to enable sharing of questions on Google+" +msgstr "" + +#: conf/spam_and_moderation.py:9 +msgid "Spam control and content moderation" +msgstr "" + +#: conf/spam_and_moderation.py:16 +msgid "Enable Akismet spam detection(keys below are required)" +msgstr "" + +#: conf/spam_and_moderation.py:19 +#, python-format +msgid "To get an Akismet key please visit Akismet site" +msgstr "" + +#: conf/spam_and_moderation.py:29 +msgid "Akismet key for spam detection" +msgstr "" + +#: conf/user_settings.py:11 +#, fuzzy +msgid "User settings" +msgstr "Configurar insígnias/" + +#: conf/user_settings.py:19 +msgid "Allow editing user screen name" +msgstr "" + +#: conf/user_settings.py:28 +msgid "Allow account recovery by email" +msgstr "" + +#: conf/user_settings.py:37 +msgid "Allow adding and removing login methods" +msgstr "" + +#: conf/user_settings.py:47 +msgid "Minimum allowed length for screen name" +msgstr "" + +#: conf/user_settings.py:57 +msgid "Default Gravatar icon type" +msgstr "" + +#: conf/user_settings.py:59 +msgid "" +"This option allows you to set the default avatar type for email addresses " +"without associated gravatar images. For more information, please visit this page." +msgstr "" + +#: conf/user_settings.py:69 +msgid "Name for the Anonymous user" +msgstr "" + +#: conf/vote_rules.py:13 +msgid "Limits applicable to votes and moderation flags" +msgstr "" + +#: conf/vote_rules.py:22 +msgid "Number of votes a user can cast per day" +msgstr "" + +#: conf/vote_rules.py:31 +msgid "Maximum number of flags per user per day" +msgstr "" + +#: conf/vote_rules.py:40 +msgid "Threshold for warning about remaining daily votes" +msgstr "" + +#: conf/vote_rules.py:49 +msgid "Number of days to allow canceling votes" +msgstr "" + +#: conf/vote_rules.py:58 +msgid "Number of days required before answering own question" +msgstr "" + +#: conf/vote_rules.py:67 +msgid "Number of flags required to automatically hide posts" +msgstr "" + +#: conf/vote_rules.py:76 +msgid "Number of flags required to automatically delete posts" +msgstr "" + +#: const/__init__.py:10 +msgid "duplicate question" +msgstr "" + +#: const/__init__.py:11 +msgid "question is off-topic or not relevant" +msgstr "" + +#: const/__init__.py:12 +msgid "too subjective and argumentative" +msgstr "" + +#: const/__init__.py:13 +msgid "not a real question" +msgstr "" + +#: const/__init__.py:14 +msgid "the question is answered, right answer was accepted" +msgstr "" + +#: const/__init__.py:15 +msgid "question is not relevant or outdated" +msgstr "" + +#: const/__init__.py:16 +msgid "question contains offensive or malicious remarks" +msgstr "" + +#: const/__init__.py:17 +msgid "spam or advertising" +msgstr "" + +#: const/__init__.py:18 +msgid "too localized" +msgstr "" + +#: const/__init__.py:41 +msgid "newest" +msgstr "" + +#: const/__init__.py:42 skins/default/templates/users.html:26 +msgid "oldest" +msgstr "" + +#: const/__init__.py:43 +msgid "active" +msgstr "" + +#: const/__init__.py:44 +msgid "inactive" +msgstr "" + +#: const/__init__.py:45 +msgid "hottest" +msgstr "" + +#: const/__init__.py:46 +msgid "coldest" +msgstr "" + +#: const/__init__.py:47 +msgid "most voted" +msgstr "" + +#: const/__init__.py:48 +msgid "least voted" +msgstr "" + +#: const/__init__.py:49 +msgid "relevance" +msgstr "" + +#: const/__init__.py:57 skins/default/templates/main_page/tab_bar.html:10 +#: skins/default/templates/user_profile/user_inbox.html:50 +msgid "all" +msgstr "" + +#: const/__init__.py:58 skins/default/templates/main_page/tab_bar.html:15 +msgid "unanswered" +msgstr "" + +#: const/__init__.py:59 +msgid "favorite" +msgstr "" + +#: const/__init__.py:64 +msgid "list" +msgstr "" + +#: const/__init__.py:65 +msgid "cloud" +msgstr "" + +#: const/__init__.py:78 +msgid "Question has no answers" +msgstr "" + +#: const/__init__.py:79 +msgid "Question has no accepted answers" +msgstr "" + +#: const/__init__.py:121 +msgid "asked a question" +msgstr "" + +#: const/__init__.py:122 +msgid "answered a question" +msgstr "" + +#: const/__init__.py:123 +msgid "commented question" +msgstr "" + +#: const/__init__.py:124 +msgid "commented answer" +msgstr "" + +#: const/__init__.py:125 +msgid "edited question" +msgstr "" + +#: const/__init__.py:126 +msgid "edited answer" +msgstr "" + +#: const/__init__.py:127 +msgid "received award" +msgstr "" + +#: const/__init__.py:128 +msgid "marked best answer" +msgstr "" + +#: const/__init__.py:129 +msgid "upvoted" +msgstr "" + +#: const/__init__.py:130 +msgid "downvoted" +msgstr "" + +#: const/__init__.py:131 +msgid "canceled vote" +msgstr "" + +#: const/__init__.py:132 +msgid "deleted question" +msgstr "" + +#: const/__init__.py:133 +msgid "deleted answer" +msgstr "" + +#: const/__init__.py:134 +msgid "marked offensive" +msgstr "" + +#: const/__init__.py:135 +msgid "updated tags" +msgstr "" + +#: const/__init__.py:136 +msgid "selected favorite" +msgstr "" + +#: const/__init__.py:137 +msgid "completed user profile" +msgstr "" + +#: const/__init__.py:138 +msgid "email update sent to user" +msgstr "" + +#: const/__init__.py:141 +msgid "reminder about unanswered questions sent" +msgstr "" + +#: const/__init__.py:143 +msgid "mentioned in the post" +msgstr "" + +#: const/__init__.py:194 +msgid "question_answered" +msgstr "" + +#: const/__init__.py:195 +msgid "question_commented" +msgstr "" + +#: const/__init__.py:196 +msgid "answer_commented" +msgstr "" + +#: const/__init__.py:197 +msgid "answer_accepted" +msgstr "" + +#: const/__init__.py:201 +msgid "[closed]" +msgstr "" + +#: const/__init__.py:202 +msgid "[deleted]" +msgstr "" + +#: const/__init__.py:203 views/readers.py:614 +msgid "initial version" +msgstr "" + +#: const/__init__.py:204 +msgid "retagged" +msgstr "" + +#: const/__init__.py:212 +msgid "off" +msgstr "" + +#: const/__init__.py:213 +msgid "exclude ignored" +msgstr "" + +#: const/__init__.py:214 +msgid "only selected" +msgstr "" + +#: const/__init__.py:218 +msgid "instantly" +msgstr "" + +#: const/__init__.py:219 +msgid "daily" +msgstr "" + +#: const/__init__.py:220 +msgid "weekly" +msgstr "" + +#: const/__init__.py:221 +msgid "no email" +msgstr "" + +#: const/__init__.py:228 +msgid "identicon" +msgstr "" + +#: const/__init__.py:229 +msgid "mystery-man" +msgstr "" + +#: const/__init__.py:230 +msgid "monsterid" +msgstr "" + +#: const/__init__.py:231 +msgid "wavatar" +msgstr "" + +#: const/__init__.py:232 +msgid "retro" +msgstr "" + +#: const/__init__.py:279 skins/default/templates/badges.html:37 +msgid "gold" +msgstr "" + +#: const/__init__.py:280 skins/default/templates/badges.html:46 +msgid "silver" +msgstr "" + +#: const/__init__.py:281 skins/default/templates/badges.html:53 +msgid "bronze" +msgstr "" + +#: const/__init__.py:293 +msgid "None" +msgstr "" + +#: const/__init__.py:294 +msgid "Gravatar" +msgstr "" + +#: const/__init__.py:295 +msgid "Uploaded Avatar" +msgstr "" + +#: const/message_keys.py:15 +msgid "most relevant questions" +msgstr "" + +#: const/message_keys.py:16 +msgid "click to see most relevant questions" +msgstr "" + +#: const/message_keys.py:17 +msgid "by relevance" +msgstr "" + +#: const/message_keys.py:18 +msgid "click to see the oldest questions" +msgstr "" + +#: const/message_keys.py:19 +msgid "by date" +msgstr "" + +#: const/message_keys.py:20 +msgid "click to see the newest questions" +msgstr "" + +#: const/message_keys.py:21 +msgid "click to see the least recently updated questions" +msgstr "" + +#: const/message_keys.py:22 +msgid "by activity" +msgstr "" + +#: const/message_keys.py:23 +msgid "click to see the most recently updated questions" +msgstr "" + +#: const/message_keys.py:24 +msgid "click to see the least answered questions" +msgstr "" + +#: const/message_keys.py:25 +msgid "by answers" +msgstr "" + +#: const/message_keys.py:26 +msgid "click to see the most answered questions" +msgstr "" + +#: const/message_keys.py:27 +msgid "click to see least voted questions" +msgstr "" + +#: const/message_keys.py:28 +msgid "by votes" +msgstr "" + +#: const/message_keys.py:29 +msgid "click to see most voted questions" +msgstr "" + +#: deps/django_authopenid/backends.py:88 +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 +msgid "i-names are not supported" +msgstr "" + +#: deps/django_authopenid/forms.py:233 +#, python-format +msgid "Please enter your %(username_token)s" +msgstr "" + +#: deps/django_authopenid/forms.py:259 +msgid "Please, enter your user name" +msgstr "" + +#: deps/django_authopenid/forms.py:263 +msgid "Please, enter your password" +msgstr "" + +#: deps/django_authopenid/forms.py:270 deps/django_authopenid/forms.py:274 +msgid "Please, enter your new password" +msgstr "" + +#: deps/django_authopenid/forms.py:285 +msgid "Passwords did not match" +msgstr "" + +#: deps/django_authopenid/forms.py:297 +#, python-format +msgid "Please choose password > %(len)s characters" +msgstr "" + +#: deps/django_authopenid/forms.py:335 +msgid "Current password" +msgstr "" + +#: deps/django_authopenid/forms.py:346 +msgid "" +"Old password is incorrect. Please enter the correct " +"password." +msgstr "" + +#: deps/django_authopenid/forms.py:399 +msgid "Sorry, we don't have this email address in the database" +msgstr "" + +#: deps/django_authopenid/forms.py:435 +msgid "Your user name (required)" +msgstr "" + +#: deps/django_authopenid/forms.py:450 +msgid "Incorrect username." +msgstr "" + +#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12 +#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:202 +msgid "signin/" +msgstr "" + +#: deps/django_authopenid/urls.py:10 +msgid "signout/" +msgstr "" + +#: deps/django_authopenid/urls.py:12 +msgid "complete/" +msgstr "" + +#: deps/django_authopenid/urls.py:15 +msgid "complete-oauth/" +msgstr "" + +#: deps/django_authopenid/urls.py:19 +msgid "register/" +msgstr "" + +#: deps/django_authopenid/urls.py:21 +msgid "signup/" +msgstr "" + +#: deps/django_authopenid/urls.py:25 +msgid "logout/" +msgstr "sair /" + +#: deps/django_authopenid/urls.py:30 +msgid "recover/" +msgstr "" + +#: deps/django_authopenid/util.py:378 +#, python-format +msgid "%(site)s user name and password" +msgstr "" + +#: deps/django_authopenid/util.py:384 +#: skins/default/templates/authopenid/signin.html:108 +msgid "Create a password-protected account" +msgstr "" + +#: deps/django_authopenid/util.py:385 +msgid "Change your password" +msgstr "" + +#: deps/django_authopenid/util.py:473 +msgid "Sign in with Yahoo" +msgstr "" + +#: deps/django_authopenid/util.py:480 +msgid "AOL screen name" +msgstr "" + +#: deps/django_authopenid/util.py:488 +msgid "OpenID url" +msgstr "" + +#: deps/django_authopenid/util.py:517 +msgid "Flickr user name" +msgstr "" + +#: deps/django_authopenid/util.py:525 +msgid "Technorati user name" +msgstr "" + +#: deps/django_authopenid/util.py:533 +msgid "WordPress blog name" +msgstr "" + +#: deps/django_authopenid/util.py:541 +msgid "Blogger blog name" +msgstr "" + +#: deps/django_authopenid/util.py:549 +msgid "LiveJournal blog name" +msgstr "" + +#: deps/django_authopenid/util.py:557 +msgid "ClaimID user name" +msgstr "" + +#: deps/django_authopenid/util.py:565 +msgid "Vidoop user name" +msgstr "" + +#: deps/django_authopenid/util.py:573 +msgid "Verisign user name" +msgstr "" + +#: deps/django_authopenid/util.py:608 +#, python-format +msgid "Change your %(provider)s password" +msgstr "" + +#: deps/django_authopenid/util.py:612 +#, python-format +msgid "Click to see if your %(provider)s signin still works for %(site_name)s" +msgstr "" + +#: deps/django_authopenid/util.py:621 +#, python-format +msgid "Create password for %(provider)s" +msgstr "" + +#: deps/django_authopenid/util.py:625 +#, python-format +msgid "Connect your %(provider)s account to %(site_name)s" +msgstr "" + +#: deps/django_authopenid/util.py:634 +#, python-format +msgid "Signin with %(provider)s user name and password" +msgstr "" + +#: deps/django_authopenid/util.py:641 +#, python-format +msgid "Sign in with your %(provider)s account" +msgstr "" + +#: deps/django_authopenid/views.py:158 +#, python-format +msgid "OpenID %(openid_url)s is invalid" +msgstr "" + +#: deps/django_authopenid/views.py:270 deps/django_authopenid/views.py:415 +#: deps/django_authopenid/views.py:443 +#, 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:365 +msgid "Your new password saved" +msgstr "" + +#: deps/django_authopenid/views.py:469 +msgid "The login password combination was not correct" +msgstr "" + +#: deps/django_authopenid/views.py:573 +msgid "Please click any of the icons below to sign in" +msgstr "" + +#: deps/django_authopenid/views.py:575 +msgid "Account recovery email sent" +msgstr "" + +#: deps/django_authopenid/views.py:578 +msgid "Please add one or more login methods." +msgstr "" + +#: deps/django_authopenid/views.py:580 +msgid "If you wish, please add, remove or re-validate your login methods" +msgstr "" + +#: deps/django_authopenid/views.py:582 +msgid "Please wait a second! Your account is recovered, but ..." +msgstr "" + +#: deps/django_authopenid/views.py:584 +msgid "Sorry, this account recovery key has expired or is invalid" +msgstr "" + +#: deps/django_authopenid/views.py:657 +#, python-format +msgid "Login method %(provider_name)s does not exist" +msgstr "" + +#: deps/django_authopenid/views.py:663 +msgid "Oops, sorry - there was some error - please try again" +msgstr "" + +#: deps/django_authopenid/views.py:754 +#, python-format +msgid "Your %(provider)s login works fine" +msgstr "" + +#: deps/django_authopenid/views.py:1065 deps/django_authopenid/views.py:1071 +#, python-format +msgid "your email needs to be validated see %(details_url)s" +msgstr "" + +#: deps/django_authopenid/views.py:1092 +#, python-format +msgid "Recover your %(site)s account" +msgstr "" + +#: deps/django_authopenid/views.py:1162 +msgid "Please check your email and visit the enclosed link." +msgstr "" + +#: deps/livesettings/models.py:101 deps/livesettings/models.py:140 +msgid "Site" +msgstr "" + +#: deps/livesettings/values.py:106 +msgid "Base Settings" +msgstr "" + +#: deps/livesettings/values.py:213 +msgid "Default value: \"\"" +msgstr "" + +#: deps/livesettings/values.py:220 +msgid "Default value: " +msgstr "" + +#: deps/livesettings/values.py:223 +#, python-format +msgid "Default value: %s" +msgstr "" + +#: deps/livesettings/values.py:601 +#, python-format +msgid "Allowed image file types are %(types)s" +msgstr "" + +#: deps/livesettings/templates/livesettings/_admin_site_views.html:4 +msgid "Sites" +msgstr "" + +#: deps/livesettings/templates/livesettings/group_settings.html:11 +#: deps/livesettings/templates/livesettings/site_settings.html:23 +msgid "Documentation" +msgstr "" + +#: deps/livesettings/templates/livesettings/group_settings.html:11 +#: deps/livesettings/templates/livesettings/site_settings.html:23 +#: skins/default/templates/authopenid/signin.html:132 +msgid "Change password" +msgstr "" + +#: deps/livesettings/templates/livesettings/group_settings.html:11 +#: deps/livesettings/templates/livesettings/site_settings.html:23 +msgid "Log out" +msgstr "" + +#: deps/livesettings/templates/livesettings/group_settings.html:14 +#: deps/livesettings/templates/livesettings/site_settings.html:26 +msgid "Home" +msgstr "" + +#: deps/livesettings/templates/livesettings/group_settings.html:15 +msgid "Edit Group Settings" +msgstr "" + +#: deps/livesettings/templates/livesettings/group_settings.html:22 +#: deps/livesettings/templates/livesettings/site_settings.html:50 +msgid "Please correct the error below." +msgid_plural "Please correct the errors below." +msgstr[0] "" +msgstr[1] "" + +#: deps/livesettings/templates/livesettings/group_settings.html:28 +#, python-format +msgid "Settings included in %(name)s." +msgstr "" + +#: deps/livesettings/templates/livesettings/group_settings.html:62 +#: deps/livesettings/templates/livesettings/site_settings.html:97 +msgid "You don't have permission to edit values." +msgstr "" + +#: deps/livesettings/templates/livesettings/group_settings.html:68 +msgid "Setting groups" +msgstr "" + +#: deps/livesettings/templates/livesettings/site_settings.html:27 +msgid "Edit Site Settings" +msgstr "" + +#: deps/livesettings/templates/livesettings/site_settings.html:43 +msgid "Livesettings are disabled for this site." +msgstr "" + +#: deps/livesettings/templates/livesettings/site_settings.html:44 +msgid "All configuration options must be edited in the site settings.py file" +msgstr "" + +#: deps/livesettings/templates/livesettings/site_settings.html:66 +#, python-format +msgid "Group settings: %(name)s" +msgstr "" + +#: deps/livesettings/templates/livesettings/site_settings.html:93 +msgid "Uncollapse all" +msgstr "" + +#: importers/stackexchange/management/commands/load_stackexchange.py:141 +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 "" +"

      To ask by email, please:

      \n" +"
        \n" +"
      • Format the subject line as: [Tag1; Tag2] Question title
      • \n" +"
      • Type details of your question into the email body
      • \n" +"
      \n" +"

      Note that tags may consist of more than one word, and tags\n" +"may be separated by a semicolon or a comma

      \n" +msgstr "" + +#: management/commands/post_emailed_questions.py:55 +#, python-format +msgid "" +"

      Sorry, there was an error posting your question please contact the " +"%(site)s administrator

      " +msgstr "" + +#: management/commands/post_emailed_questions.py:61 +#, python-format +msgid "" +"

      Sorry, in order to post questions on %(site)s by email, please register first

      " +msgstr "" + +#: management/commands/post_emailed_questions.py:69 +msgid "" +"

      Sorry, your question could not be posted due to insufficient privileges " +"of your user account

      " +msgstr "" + +#: management/commands/send_email_alerts.py:411 +#, 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 +#, 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] "" +msgstr[1] "" + +#: management/commands/send_email_alerts.py:438 +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 +#, python-format +msgid "" +"go to %(email_settings_link)s to change frequency of email updates or " +"%(admin_email)s administrator" +msgstr "" + +#: management/commands/send_unanswered_question_reminders.py:80 +#, python-format +msgid "%(question_count)d unanswered question about %(topics)s" +msgid_plural "%(question_count)d unanswered questions about %(topics)s" +msgstr[0] "" +msgstr[1] "" + +#: models/__init__.py:316 +msgid "" +"Sorry, you cannot accept or unaccept best answers because your account is " +"blocked" +msgstr "" + +#: models/__init__.py:320 +msgid "" +"Sorry, you cannot accept or unaccept best answers because your account is " +"suspended" +msgstr "" + +#: models/__init__.py:333 +#, python-format +msgid "" +">%(points)s points required to accept or unaccept your own answer to your " +"own question" +msgstr "" + +#: models/__init__.py:347 +#, python-format +msgid "" +"Sorry, only original author of the question - %(username)s - can accept or " +"unaccept the best answer" +msgstr "" + +#: models/__init__.py:375 +msgid "cannot vote for own posts" +msgstr "" + +#: models/__init__.py:378 +msgid "Sorry your account appears to be blocked " +msgstr "" + +#: models/__init__.py:383 +msgid "Sorry your account appears to be suspended " +msgstr "" + +#: models/__init__.py:393 +#, python-format +msgid ">%(points)s points required to upvote" +msgstr "" + +#: models/__init__.py:399 +#, python-format +msgid ">%(points)s points required to downvote" +msgstr "" + +#: models/__init__.py:414 +msgid "Sorry, blocked users cannot upload files" +msgstr "" + +#: models/__init__.py:415 +msgid "Sorry, suspended users cannot upload files" +msgstr "" + +#: models/__init__.py:417 +#, python-format +msgid "" +"uploading images is limited to users with >%(min_rep)s reputation points" +msgstr "" + +#: models/__init__.py:436 models/__init__.py:503 models/__init__.py:918 +msgid "blocked users cannot post" +msgstr "" + +#: models/__init__.py:437 models/__init__.py:921 +msgid "suspended users cannot post" +msgstr "" + +#: models/__init__.py:464 +#, python-format +msgid "" +"Sorry, comments (except the last one) are editable only within %(minutes)s " +"minute from posting" +msgid_plural "" +"Sorry, comments (except the last one) are editable only within %(minutes)s " +"minutes from posting" +msgstr[0] "" +msgstr[1] "" + +#: models/__init__.py:476 +msgid "Sorry, but only post owners or moderators can edit comments" +msgstr "" + +#: models/__init__.py:489 +msgid "" +"Sorry, since your account is suspended you can comment only your own posts" +msgstr "" + +#: models/__init__.py:493 +#, 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:521 +msgid "" +"This post has been deleted and can be seen only by post owners, site " +"administrators and moderators" +msgstr "" + +#: models/__init__.py:538 +msgid "" +"Sorry, only moderators, site administrators and post owners can edit deleted " +"posts" +msgstr "" + +#: models/__init__.py:553 +msgid "Sorry, since your account is blocked you cannot edit posts" +msgstr "" + +#: models/__init__.py:557 +msgid "Sorry, since your account is suspended you can edit only your own posts" +msgstr "" + +#: models/__init__.py:562 +#, python-format +msgid "" +"Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required" +msgstr "" + +#: models/__init__.py:569 +#, python-format +msgid "" +"Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is " +"required" +msgstr "" + +#: models/__init__.py:632 +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] "" +msgstr[1] "" + +#: models/__init__.py:647 +msgid "Sorry, since your account is blocked you cannot delete posts" +msgstr "" + +#: models/__init__.py:651 +msgid "" +"Sorry, since your account is suspended you can delete only your own posts" +msgstr "" + +#: models/__init__.py:655 +#, python-format +msgid "" +"Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s " +"is required" +msgstr "" + +#: models/__init__.py:675 +msgid "Sorry, since your account is blocked you cannot close questions" +msgstr "" + +#: models/__init__.py:679 +msgid "Sorry, since your account is suspended you cannot close questions" +msgstr "" + +#: models/__init__.py:683 +#, python-format +msgid "" +"Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is " +"required" +msgstr "" + +#: models/__init__.py:692 +#, python-format +msgid "" +"Sorry, to close own question a minimum reputation of %(min_rep)s is required" +msgstr "" + +#: models/__init__.py:716 +#, python-format +msgid "" +"Sorry, only administrators, moderators or post owners with reputation > " +"%(min_rep)s can reopen questions." +msgstr "" + +#: models/__init__.py:722 +#, python-format +msgid "" +"Sorry, to reopen own question a minimum reputation of %(min_rep)s is required" +msgstr "" + +#: models/__init__.py:742 +msgid "cannot flag message as offensive twice" +msgstr "" + +#: models/__init__.py:747 +msgid "blocked users cannot flag posts" +msgstr "" + +#: models/__init__.py:749 +msgid "suspended users cannot flag posts" +msgstr "" + +#: models/__init__.py:751 +#, python-format +msgid "need > %(min_rep)s points to flag spam" +msgstr "" + +#: models/__init__.py:770 +#, python-format +msgid "%(max_flags_per_day)s exceeded" +msgstr "" + +#: models/__init__.py:785 +msgid "" +"Sorry, only question owners, site administrators and moderators can retag " +"deleted questions" +msgstr "" + +#: models/__init__.py:792 +msgid "Sorry, since your account is blocked you cannot retag questions" +msgstr "" + +#: models/__init__.py:796 +msgid "" +"Sorry, since your account is suspended you can retag only your own questions" +msgstr "" + +#: models/__init__.py:800 +#, python-format +msgid "" +"Sorry, to retag questions a minimum reputation of %(min_rep)s is required" +msgstr "" + +#: models/__init__.py:819 +msgid "Sorry, since your account is blocked you cannot delete comment" +msgstr "" + +#: models/__init__.py:823 +msgid "" +"Sorry, since your account is suspended you can delete only your own comments" +msgstr "" + +#: models/__init__.py:827 +#, python-format +msgid "Sorry, to delete comments reputation of %(min_rep)s is required" +msgstr "" + +#: models/__init__.py:850 +msgid "cannot revoke old vote" +msgstr "" + +#: models/__init__.py:1325 utils/functions.py:70 +#, python-format +msgid "on %(date)s" +msgstr "" + +#: models/__init__.py:1327 +msgid "in two days" +msgstr "" + +#: models/__init__.py:1329 +msgid "tomorrow" +msgstr "" + +#: models/__init__.py:1331 +#, python-format +msgid "in %(hr)d hour" +msgid_plural "in %(hr)d hours" +msgstr[0] "" +msgstr[1] "" + +#: models/__init__.py:1333 +#, python-format +msgid "in %(min)d min" +msgid_plural "in %(min)d mins" +msgstr[0] "" +msgstr[1] "" + +#: models/__init__.py:1334 +#, python-format +msgid "%(days)d day" +msgid_plural "%(days)d days" +msgstr[0] "" +msgstr[1] "" + +#: models/__init__.py:1336 +#, 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:1501 skins/default/templates/feedback_email.txt:9 +msgid "Anonymous" +msgstr "" + +#: models/__init__.py:1597 views/users.py:365 +msgid "Site Adminstrator" +msgstr "" + +#: models/__init__.py:1599 views/users.py:367 +msgid "Forum Moderator" +msgstr "" + +#: models/__init__.py:1601 views/users.py:369 +msgid "Suspended User" +msgstr "" + +#: models/__init__.py:1603 views/users.py:371 +msgid "Blocked User" +msgstr "" + +#: models/__init__.py:1605 views/users.py:373 +msgid "Registered User" +msgstr "" + +#: models/__init__.py:1607 +msgid "Watched User" +msgstr "" + +#: models/__init__.py:1609 +msgid "Approved User" +msgstr "" + +#: models/__init__.py:1718 +#, python-format +msgid "%(username)s karma is %(reputation)s" +msgstr "" + +#: models/__init__.py:1728 +#, python-format +msgid "one gold badge" +msgid_plural "%(count)d gold badges" +msgstr[0] "" +msgstr[1] "" + +#: models/__init__.py:1735 +#, python-format +msgid "one silver badge" +msgid_plural "%(count)d silver badges" +msgstr[0] "" +msgstr[1] "" + +#: models/__init__.py:1742 +#, python-format +msgid "one bronze badge" +msgid_plural "%(count)d bronze badges" +msgstr[0] "" +msgstr[1] "" + +#: models/__init__.py:1753 +#, python-format +msgid "%(item1)s and %(item2)s" +msgstr "" + +#: models/__init__.py:1757 +#, python-format +msgid "%(user)s has %(badges)s" +msgstr "" + +#: models/__init__.py:2164 models/__init__.py:2170 models/__init__.py:2175 +#: models/__init__.py:2180 +#, python-format +msgid "Re: \"%(title)s\"" +msgstr "" + +#: models/__init__.py:2185 models/__init__.py:2190 +#, python-format +msgid "Question: \"%(title)s\"" +msgstr "" + +#: models/__init__.py:2371 +#, python-format +msgid "" +"Congratulations, you have received a badge '%(badge_name)s'. Check out your profile." +msgstr "" + +#: models/__init__.py:2550 views/commands.py:396 +msgid "Your tag subscription was saved, thanks!" +msgstr "" + +#: models/answer.py:105 +msgid "" +"Sorry, the answer you are looking for is no longer available, because the " +"parent question has been removed" +msgstr "" + +#: models/answer.py:112 +msgid "Sorry, this answer has been removed and is no longer accessible" +msgstr "" + +#: models/badges.py:129 +#, python-format +msgid "Deleted own post with %(votes)s or more upvotes" +msgstr "" + +#: models/badges.py:133 +msgid "Disciplined" +msgstr "" + +#: models/badges.py:151 +#, python-format +msgid "Deleted own post with %(votes)s or more downvotes" +msgstr "" + +#: models/badges.py:155 +msgid "Peer Pressure" +msgstr "" + +#: models/badges.py:174 +#, python-format +msgid "Received at least %(votes)s upvote for an answer for the first time" +msgstr "" + +#: models/badges.py:178 +msgid "Teacher" +msgstr "" + +#: models/badges.py:218 +msgid "Supporter" +msgstr "" + +#: models/badges.py:219 +msgid "First upvote" +msgstr "" + +#: models/badges.py:227 +msgid "Critic" +msgstr "" + +#: models/badges.py:228 +msgid "First downvote" +msgstr "" + +#: models/badges.py:237 +msgid "Civic Duty" +msgstr "" + +#: models/badges.py:238 +#, python-format +msgid "Voted %(num)s times" +msgstr "" + +#: models/badges.py:252 +#, python-format +msgid "Answered own question with at least %(num)s up votes" +msgstr "" + +#: models/badges.py:256 +msgid "Self-Learner" +msgstr "" + +#: models/badges.py:304 +msgid "Nice Answer" +msgstr "" + +#: models/badges.py:309 models/badges.py:321 models/badges.py:333 +#, python-format +msgid "Answer voted up %(num)s times" +msgstr "" + +#: models/badges.py:316 +msgid "Good Answer" +msgstr "" + +#: models/badges.py:328 +msgid "Great Answer" +msgstr "" + +#: models/badges.py:340 +msgid "Nice Question" +msgstr "" + +#: models/badges.py:345 models/badges.py:357 models/badges.py:369 +#, python-format +msgid "Question voted up %(num)s times" +msgstr "" + +#: models/badges.py:352 +msgid "Good Question" +msgstr "" + +#: models/badges.py:364 +msgid "Great Question" +msgstr "" + +#: models/badges.py:376 +msgid "Student" +msgstr "" + +#: models/badges.py:381 +msgid "Asked first question with at least one up vote" +msgstr "" + +#: models/badges.py:414 +msgid "Popular Question" +msgstr "" + +#: models/badges.py:418 models/badges.py:429 models/badges.py:441 +#, python-format +msgid "Asked a question with %(views)s views" +msgstr "" + +#: models/badges.py:425 +msgid "Notable Question" +msgstr "" + +#: models/badges.py:436 +msgid "Famous Question" +msgstr "" + +#: models/badges.py:450 +msgid "Asked a question and accepted an answer" +msgstr "" + +#: models/badges.py:453 +msgid "Scholar" +msgstr "" + +#: models/badges.py:495 +msgid "Enlightened" +msgstr "" + +#: models/badges.py:499 +#, python-format +msgid "First answer was accepted with %(num)s or more votes" +msgstr "" + +#: models/badges.py:507 +msgid "Guru" +msgstr "" + +#: models/badges.py:510 +#, python-format +msgid "Answer accepted with %(num)s or more votes" +msgstr "" + +#: models/badges.py:518 +#, python-format +msgid "" +"Answered a question more than %(days)s days later with at least %(votes)s " +"votes" +msgstr "" + +#: models/badges.py:525 +msgid "Necromancer" +msgstr "" + +#: models/badges.py:548 +msgid "Citizen Patrol" +msgstr "" + +#: models/badges.py:551 +msgid "First flagged post" +msgstr "" + +#: models/badges.py:563 +msgid "Cleanup" +msgstr "" + +#: models/badges.py:566 +msgid "First rollback" +msgstr "" + +#: models/badges.py:577 +msgid "Pundit" +msgstr "" + +#: models/badges.py:580 +msgid "Left 10 comments with score of 10 or more" +msgstr "" + +#: models/badges.py:612 +msgid "Editor" +msgstr "" + +#: models/badges.py:615 +msgid "First edit" +msgstr "" + +#: models/badges.py:623 +msgid "Associate Editor" +msgstr "" + +#: models/badges.py:627 +#, python-format +msgid "Edited %(num)s entries" +msgstr "" + +#: models/badges.py:634 +msgid "Organizer" +msgstr "" + +#: models/badges.py:637 +msgid "First retag" +msgstr "" + +#: models/badges.py:644 +msgid "Autobiographer" +msgstr "" + +#: models/badges.py:647 +msgid "Completed all user profile fields" +msgstr "" + +#: models/badges.py:663 +#, python-format +msgid "Question favorited by %(num)s users" +msgstr "" + +#: models/badges.py:689 +msgid "Stellar Question" +msgstr "" + +#: models/badges.py:698 +msgid "Favorite Question" +msgstr "" + +#: models/badges.py:710 +msgid "Enthusiast" +msgstr "" + +#: models/badges.py:714 +#, python-format +msgid "Visited site every day for %(num)s days in a row" +msgstr "" + +#: models/badges.py:732 +msgid "Commentator" +msgstr "" + +#: models/badges.py:736 +#, python-format +msgid "Posted %(num_comments)s comments" +msgstr "" + +#: models/badges.py:752 +msgid "Taxonomist" +msgstr "" + +#: models/badges.py:756 +#, python-format +msgid "Created a tag used by %(num)s questions" +msgstr "" + +#: models/badges.py:776 +msgid "Expert" +msgstr "" + +#: models/badges.py:779 +msgid "Very active in one tag" +msgstr "" + +#: models/meta.py:112 +msgid "" +"Sorry, the comment you are looking for is no longer accessible, because the " +"parent question has been removed" +msgstr "" + +#: models/meta.py:119 +msgid "" +"Sorry, the comment you are looking for is no longer accessible, because the " +"parent answer has been removed" +msgstr "" + +#: models/question.py:72 +#, python-format +msgid "\" and \"%s\"" +msgstr "" + +#: models/question.py:75 +msgid "\" and more" +msgstr "" + +#: models/question.py:452 +msgid "Sorry, this question has been deleted and is no longer accessible" +msgstr "" + +#: models/question.py:908 +#, python-format +msgid "%(author)s modified the question" +msgstr "" + +#: models/question.py:912 +#, python-format +msgid "%(people)s posted %(new_answer_count)s new answers" +msgstr "" + +#: models/question.py:917 +#, python-format +msgid "%(people)s commented the question" +msgstr "" + +#: models/question.py:922 +#, python-format +msgid "%(people)s commented answers" +msgstr "" + +#: models/question.py:924 +#, python-format +msgid "%(people)s commented an answer" +msgstr "" + +#: models/repute.py:142 +#, python-format +msgid "Changed by moderator. Reason: %(reason)s" +msgstr "" + +#: models/repute.py:153 +#, python-format +msgid "" +"%(points)s points were added for %(username)s's contribution to question " +"%(question_title)s" +msgstr "" + +#: models/repute.py:158 +#, python-format +msgid "" +"%(points)s points were subtracted for %(username)s's contribution to " +"question %(question_title)s" +msgstr "" + +#: models/tag.py:151 +msgid "interesting" +msgstr "" + +#: models/tag.py:151 +msgid "ignored" +msgstr "" + +#: models/user.py:264 +msgid "Entire forum" +msgstr "" + +#: models/user.py:265 +msgid "Questions that I asked" +msgstr "" + +#: models/user.py:266 +msgid "Questions that I answered" +msgstr "" + +#: models/user.py:267 +msgid "Individually selected questions" +msgstr "" + +#: models/user.py:268 +msgid "Mentions and comment responses" +msgstr "" + +#: models/user.py:271 +msgid "Instantly" +msgstr "" + +#: models/user.py:272 +msgid "Daily" +msgstr "" + +#: models/user.py:273 +msgid "Weekly" +msgstr "" + +#: models/user.py:274 +msgid "No email" +msgstr "" + +#: skins/default/templates/404.jinja.html:3 +#: skins/default/templates/404.jinja.html:10 +msgid "Page not found" +msgstr "" + +#: skins/default/templates/404.jinja.html:13 +msgid "Sorry, could not find the page you requested." +msgstr "" + +#: skins/default/templates/404.jinja.html:15 +msgid "This might have happened for the following reasons:" +msgstr "" + +#: skins/default/templates/404.jinja.html:17 +msgid "this question or answer has been deleted;" +msgstr "" + +#: skins/default/templates/404.jinja.html:18 +msgid "url has error - please check it;" +msgstr "" + +#: skins/default/templates/404.jinja.html:19 +msgid "" +"the page you tried to visit is protected or you don't have sufficient " +"points, see" +msgstr "" + +#: skins/default/templates/404.jinja.html:19 +#: skins/default/templates/blocks/footer.html:5 +#: skins/default/templates/blocks/header_meta_links.html:13 +#: skins/default/templates/blocks/question_edit_tips.html:15 +msgid "faq" +msgstr "" + +#: skins/default/templates/404.jinja.html:20 +msgid "if you believe this error 404 should not have occured, please" +msgstr "" + +#: skins/default/templates/404.jinja.html:21 +msgid "report this problem" +msgstr "" + +#: skins/default/templates/404.jinja.html:30 +#: skins/default/templates/500.jinja.html:11 +msgid "back to previous page" +msgstr "" + +#: skins/default/templates/404.jinja.html:31 +#: skins/default/templates/main_page/tab_bar.html:9 +msgid "see all questions" +msgstr "" + +#: skins/default/templates/404.jinja.html:32 +msgid "see all tags" +msgstr "" + +#: skins/default/templates/500.jinja.html:3 +#: skins/default/templates/500.jinja.html:5 +msgid "Internal server error" +msgstr "" + +#: skins/default/templates/500.jinja.html:8 +msgid "system error log is recorded, error will be fixed as soon as possible" +msgstr "" + +#: skins/default/templates/500.jinja.html:9 +msgid "please report the error to the site administrators if you wish" +msgstr "" + +#: skins/default/templates/500.jinja.html:12 +msgid "see latest questions" +msgstr "" + +#: skins/default/templates/500.jinja.html:13 +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" +msgstr "" + +#: skins/default/templates/answer_edit.html:10 +#: skins/default/templates/question_edit.html:9 +#: skins/default/templates/question_retag.html:5 +#: skins/default/templates/revisions.html:7 +msgid "back" +msgstr "" + +#: skins/default/templates/answer_edit.html:14 +msgid "revision" +msgstr "" + +#: skins/default/templates/answer_edit.html:17 +#: skins/default/templates/question_edit.html:16 +msgid "select revision" +msgstr "" + +#: skins/default/templates/answer_edit.html:21 +#: skins/default/templates/question_edit.html:27 +msgid "Save edit" +msgstr "" + +#: skins/default/templates/answer_edit.html:22 +#: skins/default/templates/close.html:16 +#: skins/default/templates/feedback.html:42 +#: skins/default/templates/question_edit.html:28 +#: skins/default/templates/question_retag.html:22 +#: skins/default/templates/reopen.html:27 +#: skins/default/templates/subscribe_for_tags.html:16 +#: skins/default/templates/authopenid/changeemail.html:38 +#: skins/default/templates/user_profile/user_edit.html:84 +msgid "Cancel" +msgstr "" + +#: skins/default/templates/answer_edit.html:60 +#: skins/default/templates/answer_edit.html:63 +#: skins/default/templates/ask.html:46 skins/default/templates/ask.html:49 +#: skins/default/templates/macros.html:698 +#: skins/default/templates/question.html:562 +#: skins/default/templates/question.html:565 +#: skins/default/templates/question_edit.html:72 +#: skins/default/templates/question_edit.html:75 +msgid "hide preview" +msgstr "" + +#: skins/default/templates/answer_edit.html:63 +#: skins/default/templates/ask.html:49 +#: skins/default/templates/question.html:565 +#: skins/default/templates/question_edit.html:75 +msgid "show preview" +msgstr "" + +#: skins/default/templates/ask.html:4 +msgid "Ask a question" +msgstr "" + +#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:8 +#: skins/default/templates/user_profile/user_recent.html:16 +#: skins/default/templates/user_profile/user_stats.html:110 +#, python-format +msgid "%(name)s" +msgstr "" + +#: skins/default/templates/badge.html:4 +msgid "Badge" +msgstr "" + +#: skins/default/templates/badge.html:6 +#, python-format +msgid "Badge \"%(name)s\"" +msgstr "" + +#: skins/default/templates/badge.html:8 +#: skins/default/templates/user_profile/user_recent.html:16 +#: skins/default/templates/user_profile/user_stats.html:108 +#, python-format +msgid "%(description)s" +msgstr "" + +#: skins/default/templates/badge.html:13 +msgid "user received this badge:" +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 +msgid "Badges" +msgstr "" + +#: skins/default/templates/badges.html:7 +msgid "Community gives you awards for your questions, answers and votes." +msgstr "" + +#: skins/default/templates/badges.html:8 +#, 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 "" + +#: skins/default/templates/badges.html:35 +msgid "Community badges" +msgstr "" + +#: skins/default/templates/badges.html:37 +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:45 +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:52 +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 "" + +#: skins/default/templates/close.html:6 +msgid "Close the question" +msgstr "" + +#: skins/default/templates/close.html:11 +msgid "Reasons" +msgstr "" + +#: skins/default/templates/close.html:15 +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 +msgid "FAQ" +msgstr "" + +#: skins/default/templates/faq_static.html:5 +msgid "Frequently Asked Questions " +msgstr "" + +#: skins/default/templates/faq_static.html:6 +msgid "What kinds of questions can I ask here?" +msgstr "" + +#: skins/default/templates/faq_static.html:7 +msgid "" +"Most importanly - questions should be relevant to this " +"community." +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." +msgstr "" + +#: skins/default/templates/faq_static.html:10 +msgid "What questions should I avoid asking?" +msgstr "" + +#: skins/default/templates/faq_static.html:11 +msgid "" +"Please avoid asking questions that are not relevant to this community, too " +"subjective and argumentative." +msgstr "" + +#: skins/default/templates/faq_static.html:13 +msgid "What should I avoid in my answers?" +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 "" + +#: skins/default/templates/faq_static.html:15 +msgid "Who moderates this community?" +msgstr "" + +#: skins/default/templates/faq_static.html:16 +msgid "The short answer is: you." +msgstr "" + +#: skins/default/templates/faq_static.html:17 +msgid "This website is moderated by the users." +msgstr "" + +#: skins/default/templates/faq_static.html:18 +msgid "" +"The reputation system allows users earn the authorization to perform a " +"variety of moderation tasks." +msgstr "" + +#: skins/default/templates/faq_static.html:20 +msgid "How does reputation system work?" +msgstr "" + +#: skins/default/templates/faq_static.html:21 +msgid "Rep system summary" +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 " +"%(REP_GAIN_FOR_RECEIVING_UPVOTE)s points, each vote against will " +"subtract %(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s points. There " +"is a limit of %(MAX_REP_GAIN_PER_USER_PER_DAY)s 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 "" + +#: skins/default/templates/faq_static.html:32 +#: skins/default/templates/user_profile/user_votes.html:13 +msgid "upvote" +msgstr "" + +#: skins/default/templates/faq_static.html:37 +msgid "use tags" +msgstr "" + +#: skins/default/templates/faq_static.html:42 +msgid "add comments" +msgstr "" + +#: skins/default/templates/faq_static.html:46 +#: skins/default/templates/user_profile/user_votes.html:15 +msgid "downvote" +msgstr "" + +#: skins/default/templates/faq_static.html:49 +msgid " accept own answer to own questions" +msgstr "" + +#: skins/default/templates/faq_static.html:53 +msgid "open and close own questions" +msgstr "" + +#: skins/default/templates/faq_static.html:57 +msgid "retag other's questions" +msgstr "" + +#: skins/default/templates/faq_static.html:62 +msgid "edit community wiki questions" +msgstr "" + +#: skins/default/templates/faq_static.html:67 +msgid "\"edit any answer" +msgstr "" + +#: skins/default/templates/faq_static.html:71 +msgid "\"delete any comment" +msgstr "" + +#: skins/default/templates/faq_static.html:74 +msgid "what is gravatar" +msgstr "" + +#: skins/default/templates/faq_static.html:75 +msgid "gravatar faq info" +msgstr "" + +#: skins/default/templates/faq_static.html:76 +msgid "To register, do I need to create new password?" +msgstr "" + +#: skins/default/templates/faq_static.html:77 +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 +msgid "\"Login now!\"" +msgstr "" + +#: skins/default/templates/faq_static.html:80 +msgid "Why other people can edit my questions/answers?" +msgstr "" + +#: skins/default/templates/faq_static.html:81 +msgid "Goal of this site is..." +msgstr "" + +#: skins/default/templates/faq_static.html:81 +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 +msgid "If this approach is not for you, we respect your choice." +msgstr "" + +#: skins/default/templates/faq_static.html:84 +msgid "Still have questions?" +msgstr "" + +#: skins/default/templates/faq_static.html:85 +#, python-format +msgid "" +"Please ask your question at %(ask_question_url)s, help make our community " +"better!" +msgstr "" + +#: skins/default/templates/feedback.html:3 +msgid "Feedback" +msgstr "" + +#: skins/default/templates/feedback.html:5 +msgid "Give us your feedback!" +msgstr "" + +#: skins/default/templates/feedback.html:9 +#, python-format +msgid "" +"\n" +" Dear %(user_name)s, we look forward " +"to hearing your feedback. \n" +" Please type and send us your message below.\n" +" " +msgstr "" + +#: skins/default/templates/feedback.html:16 +msgid "" +"\n" +" Dear visitor, we look forward to " +"hearing your feedback.\n" +" Please type and send us your message below.\n" +" " +msgstr "" + +#: skins/default/templates/feedback.html:25 +msgid "(please enter a valid email)" +msgstr "" + +#: skins/default/templates/feedback.html:33 +msgid "(this field is required)" +msgstr "" + +#: skins/default/templates/feedback.html:41 +msgid "Send Feedback" +msgstr "" + +#: skins/default/templates/feedback_email.txt:2 +#, python-format +msgid "" +"\n" +"Hello, this is a %(site_title)s forum feedback message.\n" +msgstr "" + +#: skins/default/templates/import_data.html:2 +#: skins/default/templates/import_data.html:4 +msgid "Import StackExchange data" +msgstr "" + +#: skins/default/templates/import_data.html:13 +msgid "" +"Warning: if your database is not empty, please back it up\n" +" before attempting this operation." +msgstr "" + +#: skins/default/templates/import_data.html:16 +msgid "" +"Upload your stackexchange dump .zip file, then wait until\n" +" the data import completes. This process may take several minutes.\n" +" Please note that feedback will be printed in plain text.\n" +" " +msgstr "" + +#: skins/default/templates/import_data.html:25 +msgid "Import data" +msgstr "" + +#: 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: python manage." +"py load_stackexchange path/to/your-data.zip" +msgstr "" + +#: skins/default/templates/instant_notification.html:1 +#, python-format +msgid "

      Dear %(receiving_user_name)s,

      " +msgstr "" + +#: skins/default/templates/instant_notification.html:3 +#, python-format +msgid "" +"\n" +"

      %(update_author_name)s left a new comment:\n" +msgstr "" + +#: skins/default/templates/instant_notification.html:8 +#, python-format +msgid "" +"\n" +"

      %(update_author_name)s left a new comment\n" +msgstr "" + +#: skins/default/templates/instant_notification.html:13 +#, python-format +msgid "" +"\n" +"

      %(update_author_name)s answered a question \n" +"%(origin_post_title)s

      \n" +msgstr "" + +#: skins/default/templates/instant_notification.html:19 +#, python-format +msgid "" +"\n" +"

      %(update_author_name)s posted a new question \n" +"%(origin_post_title)s

      \n" +msgstr "" + +#: skins/default/templates/instant_notification.html:25 +#, python-format +msgid "" +"\n" +"

      %(update_author_name)s updated an answer to the question\n" +"%(origin_post_title)s

      \n" +msgstr "" + +#: skins/default/templates/instant_notification.html:31 +#, python-format +msgid "" +"\n" +"

      %(update_author_name)s updated a question \n" +"%(origin_post_title)s

      \n" +msgstr "" + +#: skins/default/templates/instant_notification.html:37 +#, python-format +msgid "" +"\n" +"
      %(content_preview)s
      \n" +"

      Please note - you can easily change\n" +"how often you receive these notifications or unsubscribe. Thank you for your " +"interest in our forum!

      \n" +msgstr "" + +#: skins/default/templates/instant_notification.html:42 +msgid "

      Sincerely,
      Forum Administrator

      " +msgstr "" + +#: skins/default/templates/macros.html:25 +#, python-format +msgid "Share this question on %(site)s" +msgstr "" + +#: skins/default/templates/macros.html:36 +#, python-format +msgid "follow %(alias)s" +msgstr "" + +#: skins/default/templates/macros.html:39 +#, python-format +msgid "unfollow %(alias)s" +msgstr "" + +#: skins/default/templates/macros.html:40 +#, python-format +msgid "following %(alias)s" +msgstr "" + +#: skins/default/templates/macros.html:63 +msgid "karma:" +msgstr "" + +#: skins/default/templates/macros.html:67 +msgid "badges:" +msgstr "" + +#: skins/default/templates/macros.html:143 +#: skins/default/templates/macros.html:144 +msgid "previous" +msgstr "" + +#: skins/default/templates/macros.html:155 +msgid "current page" +msgstr "" + +#: skins/default/templates/macros.html:157 +#: skins/default/templates/macros.html:164 +#, python-format +msgid "page number %(num)s" +msgstr "" + +#: skins/default/templates/macros.html:168 +msgid "next page" +msgstr "" + +#: skins/default/templates/macros.html:179 +msgid "posts per page" +msgstr "" + +#: skins/default/templates/macros.html:211 templatetags/extra_tags.py:43 +#, python-format +msgid "%(username)s gravatar image" +msgstr "" + +#: skins/default/templates/macros.html:220 +#, python-format +msgid "%(username)s's website is %(url)s" +msgstr "" + +#: skins/default/templates/macros.html:232 +msgid "anonymous user" +msgstr "" + +#: skins/default/templates/macros.html:260 +msgid "this post is marked as community wiki" +msgstr "" + +#: skins/default/templates/macros.html:263 +#, python-format +msgid "" +"This post is a wiki.\n" +" Anyone with karma >%(wiki_min_rep)s is welcome to improve it." +msgstr "" + +#: skins/default/templates/macros.html:269 +msgid "asked" +msgstr "" + +#: skins/default/templates/macros.html:271 +msgid "answered" +msgstr "" + +#: skins/default/templates/macros.html:273 +msgid "posted" +msgstr "" + +#: skins/default/templates/macros.html:303 +msgid "updated" +msgstr "" + +#: skins/default/templates/macros.html:379 +#, python-format +msgid "see questions tagged '%(tag)s'" +msgstr "" + +#: skins/default/templates/macros.html:424 views/readers.py:239 +msgid "view" +msgid_plural "views" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/templates/macros.html:441 views/readers.py:236 +msgid "answer" +msgid_plural "answers" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/templates/macros.html:452 views/readers.py:233 +msgid "vote" +msgid_plural "votes" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/templates/macros.html:491 +msgid "delete this comment" +msgstr "" + +#: skins/default/templates/macros.html:502 +#: skins/default/templates/question.html:79 +#: skins/default/templates/question.html:235 +#: skins/default/templates/revisions.html:37 +msgid "edit" +msgstr "" + +#: skins/default/templates/macros.html:520 +#: skins/default/templates/macros.html:528 +#: skins/default/templates/question.html:511 +msgid "add comment" +msgstr "" + +#: skins/default/templates/macros.html:521 +#, python-format +msgid "see %(counter)s more" +msgid_plural "see %(counter)s more" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/templates/macros.html:523 +#, python-format +msgid "see %(counter)s more comment" +msgid_plural "" +"see %(counter)s more comments\n" +" " +msgstr[0] "" +msgstr[1] "" + +#: skins/default/templates/macros.html:661 +#, fuzzy +msgid "one of these is required" +msgstr "Campo País é necessário" + +#: skins/default/templates/macros.html:673 +msgid "(required)" +msgstr "" + +#: skins/default/templates/macros.html:696 +msgid "Toggle the real time Markdown editor preview" +msgstr "" + +#: skins/default/templates/macros.html:708 +#, python-format +msgid "responses for %(username)s" +msgstr "" + +#: skins/default/templates/macros.html:711 +#, python-format +msgid "you have a new response" +msgid_plural "you have %(response_count)s new responses" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/templates/macros.html:714 +msgid "no new responses yet" +msgstr "" + +#: skins/default/templates/macros.html:729 +#: skins/default/templates/macros.html:730 +#, python-format +msgid "%(new)s new flagged posts and %(seen)s previous" +msgstr "" + +#: skins/default/templates/macros.html:732 +#: skins/default/templates/macros.html:733 +#, python-format +msgid "%(new)s new flagged posts" +msgstr "" + +#: skins/default/templates/macros.html:738 +#: skins/default/templates/macros.html:739 +#, python-format +msgid "%(seen)s flagged posts" +msgstr "" + +#: skins/default/templates/main_page.html:11 +msgid "Questions" +msgstr "" + +#: skins/default/templates/privacy.html:3 +#: skins/default/templates/privacy.html:5 +msgid "Privacy policy" +msgstr "" + +#: skins/default/templates/question.html:26 +#: skins/default/templates/question.html:27 +#: skins/default/templates/question.html:42 +#: skins/default/templates/question.html:44 +msgid "i like this post (click again to cancel)" +msgstr "" + +#: skins/default/templates/question.html:29 +#: skins/default/templates/question.html:46 +#: skins/default/templates/question.html:186 +msgid "current number of votes" +msgstr "" + +#: skins/default/templates/question.html:38 +#: skins/default/templates/question.html:39 +#: skins/default/templates/question.html:51 +#: skins/default/templates/question.html:52 +msgid "i dont like this post (click again to cancel)" +msgstr "" + +#: skins/default/templates/question.html:82 +msgid "retag" +msgstr "" + +#: skins/default/templates/question.html:89 +msgid "reopen" +msgstr "" + +#: skins/default/templates/question.html:93 +msgid "close" +msgstr "" + +#: skins/default/templates/question.html:98 +#: skins/default/templates/question.html:239 +msgid "" +"report as offensive (i.e containing spam, advertising, malicious text, etc.)" +msgstr "" + +#: skins/default/templates/question.html:99 +#: skins/default/templates/question.html:240 +msgid "flag offensive" +msgstr "" + +#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:250 +msgid "undelete" +msgstr "" + +#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:250 +#: skins/default/templates/authopenid/signin.html:166 +msgid "delete" +msgstr "" + +#: skins/default/templates/question.html:143 +#, python-format +msgid "" +"The question has been closed for the following reason \"%(close_reason)s\" by" +msgstr "" + +#: skins/default/templates/question.html:145 +#, python-format +msgid "close date %(closed_at)s" +msgstr "" + +#: skins/default/templates/question.html:151 +#, python-format +msgid "" +"\n" +" %(counter)s Answer:\n" +" " +msgid_plural "" +"\n" +" %(counter)s Answers:\n" +" " +msgstr[0] "" +msgstr[1] "" + +#: skins/default/templates/question.html:159 +msgid "oldest answers will be shown first" +msgstr "" + +#: skins/default/templates/question.html:160 +msgid "oldest answers" +msgstr "" + +#: skins/default/templates/question.html:162 +msgid "newest answers will be shown first" +msgstr "" + +#: skins/default/templates/question.html:163 +msgid "newest answers" +msgstr "" + +#: skins/default/templates/question.html:165 +msgid "most voted answers will be shown first" +msgstr "" + +#: skins/default/templates/question.html:166 +msgid "popular answers" +msgstr "" + +#: skins/default/templates/question.html:184 +#: skins/default/templates/question.html:185 +msgid "i like this answer (click again to cancel)" +msgstr "" + +#: skins/default/templates/question.html:195 +#: skins/default/templates/question.html:196 +msgid "i dont like this answer (click again to cancel)" +msgstr "" + +#: skins/default/templates/question.html:204 +#: skins/default/templates/question.html:205 +msgid "mark this answer as favorite (click again to undo)" +msgstr "" + +#: skins/default/templates/question.html:214 +#: skins/default/templates/question.html:215 +#, python-format +msgid "%(question_author)s has selected this answer as correct" +msgstr "" + +#: skins/default/templates/question.html:230 +msgid "answer permanent link" +msgstr "" + +#: skins/default/templates/question.html:231 +msgid "permanent link" +msgstr "" + +#: skins/default/templates/question.html:256 +#, fuzzy +msgid "swap with question" +msgstr "últimas perguntas" + +#: skins/default/templates/question.html:297 +#, python-format +msgid "" +"Know someone who can answer? Share a link " +"to this question via" +msgstr "" + +#: skins/default/templates/question.html:303 +msgid " or" +msgstr "" + +#: skins/default/templates/question.html:305 +msgid "email" +msgstr "" + +#: skins/default/templates/question.html:320 +#: skins/default/templates/question.html:322 +msgid "Notify me once a day when there are any new answers" +msgstr "" + +#: skins/default/templates/question.html:324 +msgid "Notify me weekly when there are any new answers" +msgstr "" + +#: skins/default/templates/question.html:326 +msgid "Notify me immediately when there are any new answers" +msgstr "" + +#: skins/default/templates/question.html:329 +#, python-format +msgid "" +"You can always adjust frequency of email updates from your %(profile_url)s" +msgstr "" + +#: skins/default/templates/question.html:334 +msgid "once you sign in you will be able to subscribe for any updates here" +msgstr "" + +#: skins/default/templates/question.html:344 +msgid "Login/Signup to Answer" +msgstr "" + +#: skins/default/templates/question.html:352 +msgid "Your answer" +msgstr "" + +#: skins/default/templates/question.html:354 +msgid "Be the first one to answer this question!" +msgstr "" + +#: skins/default/templates/question.html:360 +msgid "you can answer anonymously and then login" +msgstr "" + +#: skins/default/templates/question.html:364 +msgid "answer your own question only to give an answer" +msgstr "" + +#: skins/default/templates/question.html:366 +msgid "please only give an answer, no discussions" +msgstr "" + +#: skins/default/templates/question.html:373 +msgid "Login/Signup to Post Your Answer" +msgstr "" + +#: skins/default/templates/question.html:376 +#: skins/default/templates/question.html:389 +msgid "Answer Your Own Question" +msgstr "" + +#: skins/default/templates/question.html:378 +msgid "Answer the question" +msgstr "" + +#: skins/default/templates/question.html:397 +#, fuzzy +msgid "Question tools" +msgstr "perguntas /" + +#: skins/default/templates/question.html:400 +msgid "click to unfollow this question" +msgstr "" + +#: skins/default/templates/question.html:401 +msgid "Following" +msgstr "" + +#: skins/default/templates/question.html:402 +msgid "Unfollow" +msgstr "" + +#: skins/default/templates/question.html:406 +msgid "click to follow this question" +msgstr "" + +#: skins/default/templates/question.html:407 +msgid "Follow" +msgstr "" + +#: skins/default/templates/question.html:414 +#, python-format +msgid "%(count)s follower" +msgid_plural "%(count)s followers" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/templates/question.html:420 +msgid "email the updates" +msgstr "" + +#: skins/default/templates/question.html:423 +msgid "" +"Here (once you log in) you will be able to sign up for the " +"periodic email updates about this question." +msgstr "" + +#: skins/default/templates/question.html:428 +msgid "subscribe to this question rss feed" +msgstr "" + +#: skins/default/templates/question.html:429 +msgid "subsribe to rss feed" +msgstr "" + +#: skins/default/templates/question.html:438 +msgid "Question tags" +msgstr "" + +#: skins/default/templates/question.html:460 +msgid "Stats:" +msgstr "" + +#: skins/default/templates/question.html:462 +msgid "question asked" +msgstr "" + +#: skins/default/templates/question.html:465 +msgid "question was seen" +msgstr "" + +#: skins/default/templates/question.html:465 +msgid "times" +msgstr "" + +#: skins/default/templates/question.html:468 +msgid "last updated" +msgstr "" + +#: skins/default/templates/question.html:477 +msgid "Related questions" +msgstr "" + +#: skins/default/templates/question_edit.html:4 +#: skins/default/templates/question_edit.html:9 +msgid "Edit question" +msgstr "" + +#: skins/default/templates/question_retag.html:3 +#: skins/default/templates/question_retag.html:5 +msgid "Change tags" +msgstr "" + +#: skins/default/templates/question_retag.html:21 +msgid "Retag" +msgstr "" + +#: skins/default/templates/question_retag.html:28 +msgid "Why use and modify tags?" +msgstr "" + +#: skins/default/templates/question_retag.html:30 +msgid "Tags help to keep the content better organized and searchable" +msgstr "" + +#: skins/default/templates/question_retag.html:32 +msgid "tag editors receive special awards from the community" +msgstr "" + +#: skins/default/templates/question_retag.html:59 +msgid "up to 5 tags, less than 20 characters each" +msgstr "" + +#: skins/default/templates/reopen.html:3 skins/default/templates/reopen.html:5 +msgid "Reopen question" +msgstr "" + +#: skins/default/templates/reopen.html:6 +msgid "Title" +msgstr "" + +#: skins/default/templates/reopen.html:11 +#, python-format +msgid "" +"This question has been closed by \n" +" %(closed_by_username)s\n" +msgstr "" + +#: skins/default/templates/reopen.html:16 +msgid "Close reason:" +msgstr "" + +#: skins/default/templates/reopen.html:19 +msgid "When:" +msgstr "" + +#: skins/default/templates/reopen.html:22 +msgid "Reopen this question?" +msgstr "" + +#: skins/default/templates/reopen.html:26 +msgid "Reopen this question" +msgstr "" + +#: skins/default/templates/revisions.html:4 +#: skins/default/templates/revisions.html:7 +msgid "Revision history" +msgstr "" + +#: skins/default/templates/revisions.html:23 +msgid "click to hide/show revision" +msgstr "" + +#: skins/default/templates/revisions.html:29 +#, python-format +msgid "revision %(number)s" +msgstr "" + +#: skins/default/templates/subscribe_for_tags.html:3 +#: skins/default/templates/subscribe_for_tags.html:5 +msgid "Subscribe for tags" +msgstr "" + +#: skins/default/templates/subscribe_for_tags.html:6 +msgid "Please, subscribe for the following tags:" +msgstr "" + +#: skins/default/templates/subscribe_for_tags.html:15 +msgid "Subscribe" +msgstr "" + +#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:11 +msgid "Tag list" +msgstr "" + +#: skins/default/templates/tags.html:9 +#, python-format +msgid "Tags, matching \"%(stag)s\"" +msgstr "" + +#: skins/default/templates/tags.html:19 +msgid "sorted alphabetically" +msgstr "" + +#: skins/default/templates/tags.html:20 +msgid "by name" +msgstr "" + +#: skins/default/templates/tags.html:25 +msgid "sorted by frequency of tag use" +msgstr "" + +#: skins/default/templates/tags.html:26 +msgid "by popularity" +msgstr "" + +#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:56 +msgid "Nothing found" +msgstr "" + +#: skins/default/templates/users.html:4 skins/default/templates/users.html:7 +msgid "Users" +msgstr "" + +#: skins/default/templates/users.html:13 +msgid "see people with the highest reputation" +msgstr "" + +#: skins/default/templates/users.html:14 +#: skins/default/templates/user_profile/user_info.html:25 +msgid "reputation" +msgstr "" + +#: skins/default/templates/users.html:19 +msgid "see people who joined most recently" +msgstr "" + +#: skins/default/templates/users.html:20 +msgid "recent" +msgstr "" + +#: skins/default/templates/users.html:25 +msgid "see people who joined the site first" +msgstr "" + +#: skins/default/templates/users.html:31 +msgid "see people sorted by name" +msgstr "" + +#: skins/default/templates/users.html:32 +msgid "by username" +msgstr "" + +#: skins/default/templates/users.html:37 +#, python-format +msgid "users matching query %(suser)s:" +msgstr "" + +#: skins/default/templates/users.html:40 +msgid "Nothing found." +msgstr "" + +#: skins/default/templates/authopenid/changeemail.html:2 +#: skins/default/templates/authopenid/changeemail.html:8 +#: skins/default/templates/authopenid/changeemail.html:36 +msgid "Change email" +msgstr "" + +#: skins/default/templates/authopenid/changeemail.html:10 +msgid "Save your email address" +msgstr "" + +#: skins/default/templates/authopenid/changeemail.html:15 +#, python-format +msgid "change %(email)s info" +msgstr "" + +#: skins/default/templates/authopenid/changeemail.html:17 +#, python-format +msgid "here is why email is required, see %(gravatar_faq_url)s" +msgstr "" + +#: skins/default/templates/authopenid/changeemail.html:29 +msgid "Your new Email" +msgstr "" + +#: skins/default/templates/authopenid/changeemail.html:29 +msgid "Your Email" +msgstr "" + +#: skins/default/templates/authopenid/changeemail.html:36 +msgid "Save Email" +msgstr "" + +#: skins/default/templates/authopenid/changeemail.html:45 +msgid "Validate email" +msgstr "" + +#: skins/default/templates/authopenid/changeemail.html:48 +#, python-format +msgid "validate %(email)s info or go to %(change_email_url)s" +msgstr "" + +#: skins/default/templates/authopenid/changeemail.html:52 +msgid "Email not changed" +msgstr "" + +#: skins/default/templates/authopenid/changeemail.html:55 +#, python-format +msgid "old %(email)s kept, if you like go to %(change_email_url)s" +msgstr "" + +#: skins/default/templates/authopenid/changeemail.html:59 +msgid "Email changed" +msgstr "" + +#: skins/default/templates/authopenid/changeemail.html:62 +#, python-format +msgid "your current %(email)s can be used for this" +msgstr "" + +#: skins/default/templates/authopenid/changeemail.html:66 +msgid "Email verified" +msgstr "" + +#: skins/default/templates/authopenid/changeemail.html:69 +msgid "thanks for verifying email" +msgstr "" + +#: skins/default/templates/authopenid/changeemail.html:73 +msgid "email key not sent" +msgstr "" + +#: skins/default/templates/authopenid/changeemail.html:76 +#, python-format +msgid "email key not sent %(email)s change email here %(change_link)s" +msgstr "" + +#: skins/default/templates/authopenid/complete.html:21 +#: skins/default/templates/authopenid/complete.html:23 +msgid "Registration" +msgstr "" + +#: skins/default/templates/authopenid/complete.html:27 +#, python-format +msgid "register new %(provider)s account info, see %(gravatar_faq_url)s" +msgstr "" + +#: skins/default/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/default/templates/authopenid/complete.html:34 +#, python-format +msgid "" +"register new external %(provider)s account info, see %(gravatar_faq_url)s" +msgstr "" + +#: skins/default/templates/authopenid/complete.html:37 +#, python-format +msgid "register new Facebook connect account info, see %(gravatar_faq_url)s" +msgstr "" + +#: skins/default/templates/authopenid/complete.html:40 +msgid "This account already exists, please use another." +msgstr "" + +#: skins/default/templates/authopenid/complete.html:59 +msgid "Screen name label" +msgstr "" + +#: skins/default/templates/authopenid/complete.html:66 +msgid "Email address label" +msgstr "" + +#: skins/default/templates/authopenid/complete.html:72 +#: skins/default/templates/authopenid/signup_with_password.html:36 +msgid "receive updates motivational blurb" +msgstr "" + +#: skins/default/templates/authopenid/complete.html:76 +#: skins/default/templates/authopenid/signup_with_password.html:40 +msgid "please select one of the options above" +msgstr "" + +#: skins/default/templates/authopenid/complete.html:79 +msgid "Tag filter tool will be your right panel, once you log in." +msgstr "" + +#: skins/default/templates/authopenid/complete.html:80 +msgid "create account" +msgstr "" + +#: skins/default/templates/authopenid/confirm_email.txt:1 +msgid "Thank you for registering at our Q&A forum!" +msgstr "" + +#: skins/default/templates/authopenid/confirm_email.txt:3 +msgid "Your account details are:" +msgstr "" + +#: skins/default/templates/authopenid/confirm_email.txt:5 +msgid "Username:" +msgstr "" + +#: skins/default/templates/authopenid/confirm_email.txt:6 +msgid "Password:" +msgstr "" + +#: skins/default/templates/authopenid/confirm_email.txt:8 +msgid "Please sign in here:" +msgstr "" + +#: skins/default/templates/authopenid/confirm_email.txt:11 +#: skins/default/templates/authopenid/email_validation.txt:13 +msgid "" +"Sincerely,\n" +"Forum Administrator" +msgstr "" + +#: skins/default/templates/authopenid/email_validation.txt:1 +msgid "Greetings from the Q&A forum" +msgstr "" + +#: skins/default/templates/authopenid/email_validation.txt:3 +msgid "To make use of the Forum, please follow the link below:" +msgstr "" + +#: skins/default/templates/authopenid/email_validation.txt:7 +msgid "Following the link above will help us verify your email address." +msgstr "" + +#: skins/default/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" +"for any inconvenience" +msgstr "" + +#: skins/default/templates/authopenid/logout.html:3 +msgid "Logout" +msgstr "" + +#: skins/default/templates/authopenid/logout.html:5 +msgid "You have successfully logged out" +msgstr "" + +#: skins/default/templates/authopenid/logout.html: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 "" + +#: skins/default/templates/authopenid/macros.html:53 +msgid "Please enter your user name, then sign in" +msgstr "" + +#: skins/default/templates/authopenid/macros.html:54 +#: skins/default/templates/authopenid/signin.html:90 +msgid "(or select another login method above)" +msgstr "" + +#: skins/default/templates/authopenid/macros.html:56 +msgid "Sign in" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:4 +msgid "User login" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:14 +#, python-format +msgid "" +"\n" +" Your answer to %(title)s %(summary)s will be posted once you log in\n" +" " +msgstr "" + +#: skins/default/templates/authopenid/signin.html:21 +#, python-format +msgid "" +"Your question \n" +" %(title)s %(summary)s will be posted once you log in\n" +" " +msgstr "" + +#: skins/default/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." +msgstr "" + +#: skins/default/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 "" + +#: skins/default/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 "" + +#: skins/default/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 "" + +#: skins/default/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 "" + +#: skins/default/templates/authopenid/signin.html:42 +msgid "" +"Please check your email and visit the enclosed link to re-connect to your " +"account" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:87 +msgid "Please enter your user name and password, then sign in" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:93 +msgid "Login failed, please try again" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:97 +msgid "Login or email" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:101 +msgid "Password" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:106 +msgid "Login" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:113 +msgid "To change your password - please enter the new one twice, then submit" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:117 +msgid "New password" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:124 +msgid "Please, retype" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:146 +msgid "Here are your current login methods" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:150 +msgid "provider" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:151 +msgid "last used" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:152 +msgid "delete, if you like" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:168 +msgid "cannot be deleted" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:181 +msgid "Still have trouble signing in?" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:186 +msgid "Please, enter your email address below and obtain a new key" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:188 +msgid "Please, enter your email address below to recover your account" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:191 +msgid "recover your account via email" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:202 +msgid "Send a new recovery key" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:204 +msgid "Recover your account via email" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:216 +msgid "Why use OpenID?" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:219 +msgid "with openid it is easier" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:222 +msgid "reuse openid" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:225 +msgid "openid is widely adopted" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:228 +msgid "openid is supported open standard" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:232 +msgid "Find out more" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:233 +msgid "Get OpenID" +msgstr "" + +#: skins/default/templates/authopenid/signup_with_password.html:4 +msgid "Signup" +msgstr "" + +#: skins/default/templates/authopenid/signup_with_password.html:10 +msgid "Please register by clicking on any of the icons below" +msgstr "" + +#: skins/default/templates/authopenid/signup_with_password.html:23 +msgid "or create a new user name and password here" +msgstr "" + +#: skins/default/templates/authopenid/signup_with_password.html:25 +msgid "Create login name and password" +msgstr "" + +#: skins/default/templates/authopenid/signup_with_password.html:26 +msgid "Traditional signup info" +msgstr "" + +#: skins/default/templates/authopenid/signup_with_password.html:44 +msgid "" +"Please read and type in the two words below to help us prevent automated " +"account creation." +msgstr "" + +#: skins/default/templates/authopenid/signup_with_password.html:47 +msgid "Create Account" +msgstr "" + +#: skins/default/templates/authopenid/signup_with_password.html:49 +msgid "or" +msgstr "" + +#: skins/default/templates/authopenid/signup_with_password.html:50 +msgid "return to OpenID login" +msgstr "" + +#: skins/default/templates/avatar/add.html:3 +msgid "add avatar" +msgstr "" + +#: skins/default/templates/avatar/add.html:5 +msgid "Change avatar" +msgstr "" + +#: skins/default/templates/avatar/add.html:6 +#: skins/default/templates/avatar/change.html:7 +msgid "Your current avatar: " +msgstr "" + +#: skins/default/templates/avatar/add.html:9 +#: skins/default/templates/avatar/change.html:11 +msgid "You haven't uploaded an avatar yet. Please upload one now." +msgstr "" + +#: skins/default/templates/avatar/add.html:13 +msgid "Upload New Image" +msgstr "" + +#: skins/default/templates/avatar/change.html:4 +msgid "change avatar" +msgstr "" + +#: skins/default/templates/avatar/change.html:17 +msgid "Choose new Default" +msgstr "" + +#: skins/default/templates/avatar/change.html:22 +msgid "Upload" +msgstr "" + +#: skins/default/templates/avatar/confirm_delete.html:3 +msgid "delete avatar" +msgstr "" + +#: skins/default/templates/avatar/confirm_delete.html:5 +msgid "Please select the avatars that you would like to delete." +msgstr "" + +#: skins/default/templates/avatar/confirm_delete.html:7 +#, python-format +msgid "" +"You have no avatars to delete. Please upload one now." +msgstr "" + +#: skins/default/templates/avatar/confirm_delete.html:13 +msgid "Delete These" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:3 +msgid "answer tips" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:6 +msgid "please make your answer relevant to this community" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:9 +msgid "try to give an answer, rather than engage into a discussion" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:12 +msgid "please try to provide details" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:15 +#: skins/default/templates/blocks/question_edit_tips.html:11 +msgid "be clear and concise" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:19 +#: skins/default/templates/blocks/question_edit_tips.html:15 +msgid "see frequently asked questions" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:25 +#: skins/default/templates/blocks/question_edit_tips.html:20 +msgid "Markdown tips" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:29 +#: skins/default/templates/blocks/question_edit_tips.html:24 +msgid "*italic*" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:32 +#: skins/default/templates/blocks/question_edit_tips.html:27 +msgid "**bold**" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:36 +#: skins/default/templates/blocks/question_edit_tips.html:31 +msgid "*italic* or _italic_" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:39 +#: skins/default/templates/blocks/question_edit_tips.html:34 +msgid "**bold** or __bold__" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/question_edit_tips.html:38 +msgid "link" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:38 +#: skins/default/templates/blocks/question_edit_tips.html:43 +msgid "text" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:43 +msgid "image" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:51 +#: skins/default/templates/blocks/question_edit_tips.html:47 +msgid "numbered list:" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:56 +#: skins/default/templates/blocks/question_edit_tips.html:52 +msgid "basic HTML tags are also supported" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:60 +#: skins/default/templates/blocks/question_edit_tips.html:56 +msgid "learn more about Markdown" +msgstr "" + +#: skins/default/templates/blocks/ask_form.html:6 +msgid "login to post question info" +msgstr "" + +#: skins/default/templates/blocks/ask_form.html:10 +#, python-format +msgid "" +"must have valid %(email)s to post, \n" +" see %(email_validation_faq_url)s\n" +" " +msgstr "" + +#: skins/default/templates/blocks/ask_form.html:34 +msgid "Login/signup to post your question" +msgstr "" + +#: skins/default/templates/blocks/ask_form.html:36 +msgid "Ask your question" +msgstr "" + +#: skins/default/templates/blocks/bottom_scripts.html:7 +#, python-format +msgid "" +"Please note: %(app_name)s requires javascript to work properly, please " +"enable javascript in your browser, here is how" +msgstr "" + +#: skins/default/templates/blocks/editor_data.html:5 +#, 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/blocks/editor_data.html:7 +#, 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/blocks/editor_data.html:8 +#, python-format +msgid "" +"please use up to %(tag_count)s tags, less than %(max_chars)s characters each" +msgstr "" + +#: skins/default/templates/blocks/footer.html:4 +#: skins/default/templates/blocks/header_meta_links.html:12 +msgid "about" +msgstr "" + +#: skins/default/templates/blocks/footer.html:6 +msgid "privacy policy" +msgstr "" + +#: skins/default/templates/blocks/footer.html:15 +msgid "give feedback" +msgstr "" + +#: skins/default/templates/blocks/footer.html:41 +#, python-format +msgid "Content on this site is licensed under a %(license)s" +msgstr "" + +#: skins/default/templates/blocks/header.html:8 +msgid "back to home page" +msgstr "" + +#: skins/default/templates/blocks/header.html:9 +#, python-format +msgid "%(site)s logo" +msgstr "" + +#: skins/default/templates/blocks/header.html:20 +msgid "questions" +msgstr "" + +#: skins/default/templates/blocks/header.html:30 +msgid "users" +msgstr "" + +#: skins/default/templates/blocks/header.html:35 +msgid "badges" +msgstr "" + +#: skins/default/templates/blocks/header.html:40 +msgid "ask a question" +msgstr "" + +#: skins/default/templates/blocks/header_meta_links.html:8 +msgid "logout" +msgstr "" + +#: skins/default/templates/blocks/header_meta_links.html:10 +msgid "login" +msgstr "" + +#: skins/default/templates/blocks/header_meta_links.html:15 +msgid "settings" +msgstr "" + +#: skins/default/templates/blocks/input_bar.html:34 +msgid "search" +msgstr "" + +#: skins/default/templates/blocks/question_edit_tips.html:3 +msgid "question tips" +msgstr "" + +#: skins/default/templates/blocks/question_edit_tips.html:5 +msgid "please ask a relevant question" +msgstr "" + +#: skins/default/templates/blocks/question_edit_tips.html:8 +msgid "please try provide enough details" +msgstr "" + +#: skins/default/templates/blocks/tag_selector.html:4 +msgid "Interesting tags" +msgstr "" + +#: skins/default/templates/blocks/tag_selector.html:18 +#: skins/default/templates/blocks/tag_selector.html:34 +#: skins/default/templates/user_profile/user_moderate.html:40 +msgid "Add" +msgstr "" + +#: skins/default/templates/blocks/tag_selector.html:20 +msgid "Ignored tags" +msgstr "" + +#: skins/default/templates/blocks/tag_selector.html:36 +msgid "Display tag filter" +msgstr "" + +#: skins/default/templates/main_page/content.html:13 +msgid "Did not find what you were looking for?" +msgstr "" + +#: skins/default/templates/main_page/content.html:14 +msgid "Please, post your question!" +msgstr "" + +#: skins/default/templates/main_page/headline.html:7 +msgid "subscribe to the questions feed" +msgstr "" + +#: skins/default/templates/main_page/headline.html:8 +msgid "rss feed" +msgstr "" + +#: skins/default/templates/main_page/headline.html:12 views/readers.py:131 +#, python-format +msgid "%(q_num)s question, tagged" +msgid_plural "%(q_num)s questions, tagged" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/templates/main_page/headline.html:14 views/readers.py:139 +#, python-format +msgid "%(q_num)s question" +msgid_plural "%(q_num)s questions" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/templates/main_page/headline.html:17 +#, python-format +msgid "with %(author_name)s's contributions" +msgstr "" + +#: skins/default/templates/main_page/headline.html:28 +msgid "Search tips:" +msgstr "" + +#: skins/default/templates/main_page/headline.html:31 +msgid "reset author" +msgstr "" + +#: skins/default/templates/main_page/headline.html:33 +#: skins/default/templates/main_page/headline.html:36 +#: 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:34 +msgid "reset tags" +msgstr "" + +#: skins/default/templates/main_page/headline.html:37 +#: skins/default/templates/main_page/headline.html:40 +msgid "start over" +msgstr "" + +#: skins/default/templates/main_page/headline.html:42 +msgid " - to expand, or dig in by adding more tags and revising the query." +msgstr "" + +#: skins/default/templates/main_page/headline.html:45 +msgid "Search tip:" +msgstr "" + +#: skins/default/templates/main_page/headline.html:45 +msgid "add tags and a query to focus your search" +msgstr "" + +#: skins/default/templates/main_page/nothing_found.html:4 +msgid "There are no unanswered questions here" +msgstr "" + +#: skins/default/templates/main_page/nothing_found.html:7 +#, fuzzy +msgid "No questions here. " +msgstr "perguntas /" + +#: skins/default/templates/main_page/nothing_found.html:8 +msgid "Please star (bookmark) some questions or follow some users." +msgstr "" + +#: skins/default/templates/main_page/nothing_found.html:13 +msgid "You can expand your search by " +msgstr "" + +#: skins/default/templates/main_page/nothing_found.html:16 +msgid "resetting author" +msgstr "" + +#: skins/default/templates/main_page/nothing_found.html:19 +msgid "resetting tags" +msgstr "" + +#: skins/default/templates/main_page/nothing_found.html:22 +#: skins/default/templates/main_page/nothing_found.html:25 +msgid "starting over" +msgstr "" + +#: skins/default/templates/main_page/nothing_found.html:30 +msgid "Please always feel free to ask your question!" +msgstr "" + +#: skins/default/templates/main_page/sidebar.html:8 +msgid "Contributors" +msgstr "" + +#: skins/default/templates/main_page/sidebar.html:25 +msgid "Related tags" +msgstr "" + +#: skins/default/templates/main_page/tab_bar.html:5 +msgid "In:" +msgstr "" + +#: skins/default/templates/main_page/tab_bar.html:14 +msgid "see unanswered questions" +msgstr "" + +#: skins/default/templates/main_page/tab_bar.html:20 +msgid "see your followed questions" +msgstr "" + +#: skins/default/templates/main_page/tab_bar.html:21 +msgid "followed" +msgstr "" + +#: skins/default/templates/main_page/tab_bar.html:25 +msgid "Sort by:" +msgstr "" + +#: skins/default/templates/user_profile/user.html:13 +#, python-format +msgid "%(username)s's profile" +msgstr "" + +#: skins/default/templates/user_profile/user_edit.html:4 +msgid "Edit user profile" +msgstr "" + +#: skins/default/templates/user_profile/user_edit.html:7 +msgid "edit profile" +msgstr "" + +#: skins/default/templates/user_profile/user_edit.html:17 +#: skins/default/templates/user_profile/user_info.html:15 +msgid "change picture" +msgstr "" + +#: skins/default/templates/user_profile/user_edit.html:20 +msgid "Registered user" +msgstr "" + +#: skins/default/templates/user_profile/user_edit.html:27 +msgid "Screen Name" +msgstr "" + +#: skins/default/templates/user_profile/user_edit.html:83 +#: skins/default/templates/user_profile/user_email_subscriptions.html:21 +msgid "Update" +msgstr "" + +#: skins/default/templates/user_profile/user_email_subscriptions.html:4 +#: skins/default/templates/user_profile/user_tabs.html:42 +msgid "subscriptions" +msgstr "" + +#: skins/default/templates/user_profile/user_email_subscriptions.html:7 +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:22 +msgid "Stop sending email" +msgstr "" + +#: skins/default/templates/user_profile/user_favorites.html:4 +#: skins/default/templates/user_profile/user_tabs.html:27 +#, fuzzy +msgid "followed questions" +msgstr "últimas perguntas" + +#: skins/default/templates/user_profile/user_inbox.html:18 +#: skins/default/templates/user_profile/user_tabs.html:12 +msgid "inbox" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:34 +msgid "Sections:" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:38 +#, python-format +msgid "forum responses (%(re_count)s)" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:43 +#, python-format +msgid "flagged items (%(flag_count)s)" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:49 +msgid "select:" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:51 +msgid "seen" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:52 +msgid "new" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:53 +msgid "none" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:54 +msgid "mark as seen" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:55 +msgid "mark as new" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:56 +msgid "dismiss" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:19 +msgid "remove" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:36 +msgid "update profile" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:40 +msgid "manage login methods" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:53 +msgid "real name" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:58 +msgid "member for" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:63 +msgid "last seen" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:69 +msgid "user website" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:75 +msgid "location" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:82 +msgid "age" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:83 +msgid "age unit" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:90 +msgid "todays unused votes" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:91 +msgid "votes left" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:4 +#: skins/default/templates/user_profile/user_tabs.html:48 +msgid "moderation" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:8 +#, python-format +msgid "%(username)s's current status is \"%(status)s\"" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:11 +msgid "User status changed" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:20 +msgid "Save" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:26 +#, python-format +msgid "Your current reputation is %(reputation)s points" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:28 +#, python-format +msgid "User's current reputation is %(reputation)s points" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:32 +msgid "User reputation changed" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:39 +msgid "Subtract" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:44 +#, python-format +msgid "Send message to %(username)s" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:45 +msgid "" +"An email will be sent to the user with 'reply-to' field set to your email " +"address. Please make sure that your address is entered correctly." +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:47 +msgid "Message sent" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:65 +msgid "Send message" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:75 +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 "" + +#: skins/default/templates/user_profile/user_moderate.html:78 +msgid "" +"Moderators have the same privileges as administrators, but cannot add or " +"remove user status of 'moderator' or 'administrator'." +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:81 +msgid "'Approved' status means the same as regular user." +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:84 +msgid "Suspended users can only edit or delete their own posts." +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:87 +msgid "" +"Blocked users can only login and send feedback to the site administrators." +msgstr "" + +#: skins/default/templates/user_profile/user_network.html:5 +#: skins/default/templates/user_profile/user_tabs.html:18 +msgid "network" +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[1] "" + +#: 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[1] "" + +#: skins/default/templates/user_profile/user_network.html:19 +msgid "" +"Your network is empty. Would you like to follow someone? - Just visit their " +"profiles and click \"follow\"" +msgstr "" + +#: skins/default/templates/user_profile/user_network.html:21 +#, python-format +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:31 +msgid "activity" +msgstr "" + +#: skins/default/templates/user_profile/user_recent.html:21 +#: 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 "" + +#: skins/default/templates/user_profile/user_reputation.html:13 +#, python-format +msgid "%(user_name)s's karma change log" +msgstr "" + +#: skins/default/templates/user_profile/user_stats.html:5 +#: skins/default/templates/user_profile/user_tabs.html:7 +msgid "overview" +msgstr "" + +#: skins/default/templates/user_profile/user_stats.html:11 +#, python-format +msgid "%(counter)s Question" +msgid_plural "%(counter)s Questions" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/templates/user_profile/user_stats.html:16 +#, python-format +msgid "%(counter)s Answer" +msgid_plural "%(counter)s Answers" +msgstr[0] "" +msgstr[1] "" + +#: 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)" +msgid_plural "the answer has been commented %(comment_count)s times" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/templates/user_profile/user_stats.html:44 +#, python-format +msgid "%(cnt)s Vote" +msgid_plural "%(cnt)s Votes " +msgstr[0] "" +msgstr[1] "" + +#: skins/default/templates/user_profile/user_stats.html:50 +msgid "thumb up" +msgstr "" + +#: skins/default/templates/user_profile/user_stats.html:51 +msgid "user has voted up this many times" +msgstr "" + +#: skins/default/templates/user_profile/user_stats.html:54 +msgid "thumb down" +msgstr "" + +#: skins/default/templates/user_profile/user_stats.html:55 +msgid "user voted down this many times" +msgstr "" + +#: skins/default/templates/user_profile/user_stats.html:63 +#, python-format +msgid "%(counter)s Tag" +msgid_plural "%(counter)s Tags" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/templates/user_profile/user_stats.html:99 +#, python-format +msgid "%(counter)s Badge" +msgid_plural "%(counter)s Badges" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/templates/user_profile/user_stats.html:122 +msgid "Answer to:" +msgstr "" + +#: skins/default/templates/user_profile/user_tabs.html:5 +msgid "User profile" +msgstr "" + +#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:772 +msgid "comments and answers to others questions" +msgstr "" + +#: skins/default/templates/user_profile/user_tabs.html:16 +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" +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:847 +msgid "user vote record" +msgstr "" + +#: skins/default/templates/user_profile/user_tabs.html:36 +msgid "casted votes" +msgstr "" + +#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:960 +msgid "email subscription settings" +msgstr "" + +#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:224 +msgid "moderate this user" +msgstr "" + +#: skins/default/templates/user_profile/user_votes.html:4 +msgid "votes" +msgstr "" + +#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:240 +msgid "no items in counter" +msgstr "" + +#: utils/decorators.py:90 views/commands.py:112 views/commands.py:132 +msgid "Oops, apologies - there was some error" +msgstr "" + +#: utils/decorators.py:109 +msgid "Please login to post" +msgstr "" + +#: utils/decorators.py:205 +msgid "Spam was detected on your post, sorry for if this is a mistake" +msgstr "" + +#: utils/forms.py:32 +msgid "this field is required" +msgstr "" + +#: utils/forms.py:46 +msgid "choose a username" +msgstr "" + +#: utils/forms.py:52 +msgid "user name is required" +msgstr "" + +#: utils/forms.py:53 +msgid "sorry, this name is taken, please choose another" +msgstr "" + +#: utils/forms.py:54 +msgid "sorry, this name is not allowed, please choose another" +msgstr "" + +#: utils/forms.py:55 +msgid "sorry, there is no user with this name" +msgstr "" + +#: utils/forms.py:56 +msgid "sorry, we have a serious error - user name is taken by several users" +msgstr "" + +#: utils/forms.py:57 +msgid "user name can only consist of letters, empty space and underscore" +msgstr "" + +#: utils/forms.py:118 +msgid "your email address" +msgstr "" + +#: utils/forms.py:119 +msgid "email address is required" +msgstr "" + +#: utils/forms.py:120 +msgid "please enter a valid email address" +msgstr "" + +#: utils/forms.py:121 +msgid "this email is already used by someone else, please choose another" +msgstr "" + +#: utils/forms.py:149 +msgid "choose password" +msgstr "" + +#: utils/forms.py:150 +msgid "password is required" +msgstr "" + +#: utils/forms.py:153 +msgid "retype password" +msgstr "" + +#: utils/forms.py:154 +msgid "please, retype your password" +msgstr "" + +#: utils/forms.py:155 +msgid "sorry, entered passwords did not match, please try again" +msgstr "" + +#: utils/functions.py:74 +msgid "2 days ago" +msgstr "" + +#: utils/functions.py:76 +msgid "yesterday" +msgstr "" + +#: utils/functions.py:79 +#, python-format +msgid "%(hr)d hour ago" +msgid_plural "%(hr)d hours ago" +msgstr[0] "" +msgstr[1] "" + +#: utils/functions.py:85 +#, python-format +msgid "%(min)d min ago" +msgid_plural "%(min)d mins ago" +msgstr[0] "" +msgstr[1] "" + +#: views/avatar_views.py:99 +msgid "Successfully uploaded a new avatar." +msgstr "" + +#: views/avatar_views.py:140 +msgid "Successfully updated your avatar." +msgstr "" + +#: views/avatar_views.py:180 +msgid "Successfully deleted the requested avatars." +msgstr "" + +#: views/commands.py:39 +msgid "anonymous users cannot vote" +msgstr "" + +#: views/commands.py:59 +msgid "Sorry you ran out of votes for today" +msgstr "" + +#: views/commands.py:65 +#, python-format +msgid "You have %(votes_left)s votes left for today" +msgstr "" + +#: views/commands.py:122 +msgid "Sorry, but anonymous users cannot access the inbox" +msgstr "" + +#: views/commands.py:192 +msgid "Sorry, something is not right here..." +msgstr "" + +#: views/commands.py:207 +msgid "Sorry, but anonymous users cannot accept answers" +msgstr "" + +#: views/commands.py:288 +#, python-format +msgid "subscription saved, %(email)s needs validation, see %(details_url)s" +msgstr "" + +#: views/commands.py:295 +msgid "email update frequency has been set to daily" +msgstr "" + +#: views/commands.py:400 +#, python-format +msgid "Tag subscription was canceled (undo)." +msgstr "" + +#: views/commands.py:409 +#, python-format +msgid "Please sign in to subscribe for: %(tags)s" +msgstr "" + +#: views/commands.py:542 +msgid "Please sign in to vote" +msgstr "" + +#: views/meta.py:83 +msgid "Q&A forum feedback" +msgstr "" + +#: views/meta.py:84 +msgid "Thanks for the feedback!" +msgstr "" + +#: views/meta.py:92 +msgid "We look forward to hearing your feedback! Please, give it next time :)" +msgstr "" + +#: views/readers.py:177 +#, 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:441 +msgid "" +"Sorry, the comment you are looking for has been deleted and is no longer " +"accessible" +msgstr "" + +#: views/users.py:225 +msgid "moderate user" +msgstr "" + +#: views/users.py:380 +msgid "user profile" +msgstr "" + +#: views/users.py:381 +msgid "user profile overview" +msgstr "" + +#: views/users.py:685 +msgid "recent user activity" +msgstr "" + +#: views/users.py:686 +msgid "profile - recent activity" +msgstr "" + +#: views/users.py:773 +msgid "profile - responses" +msgstr "" + +#: views/users.py:848 +msgid "profile - votes" +msgstr "" + +#: views/users.py:883 +msgid "user reputation in the community" +msgstr "" + +#: views/users.py:884 +msgid "profile - user reputation" +msgstr "" + +#: views/users.py:911 +msgid "users favorite questions" +msgstr "" + +#: views/users.py:912 +msgid "profile - favorite questions" +msgstr "" + +#: views/users.py:932 views/users.py:936 +msgid "changes saved" +msgstr "" + +#: views/users.py:942 +msgid "email updates canceled" +msgstr "" + +#: views/users.py:961 +msgid "profile - email subscriptions" +msgstr "" + +#: views/writers.py:58 +msgid "Sorry, anonymous users cannot upload files" +msgstr "" + +#: views/writers.py:68 +#, python-format +msgid "allowed file types are '%(file_types)s'" +msgstr "" + +#: views/writers.py:91 +#, python-format +msgid "maximum upload file size is %(file_size)sK" +msgstr "" + +#: views/writers.py:99 +msgid "Error uploading file. Please contact the site administrator. Thank you." +msgstr "" + +#: views/writers.py:191 +#, fuzzy +msgid "Please log in to ask questions" +msgstr "últimas perguntas" + +#: views/writers.py:492 +msgid "Please log in to answer questions" +msgstr "" + +#: views/writers.py:598 +#, python-format +msgid "" +"Sorry, you appear to be logged out and cannot post comments. Please sign in." +msgstr "" + +#: views/writers.py:646 +msgid "Sorry, anonymous users cannot edit comments" +msgstr "" + +#: views/writers.py:654 +#, python-format +msgid "" +"Sorry, you appear to be logged out and cannot delete comments. Please sign in." +msgstr "" + +#: views/writers.py:675 +msgid "sorry, we seem to have some technical difficulties" +msgstr "" + +#~ msgid "Email verification subject line" +#~ msgstr "Verification Email from Q&A forum" + +#~ msgid "how to validate email title" +#~ msgstr "How to validate email and why?" + +#~ msgid "" +#~ "how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)" +#~ "s" +#~ msgstr "" +#~ "

      How? If you have just set or " +#~ "changed your email address - check your email and click the " +#~ "included link.
      The link contains a key generated specifically " +#~ "for you. You can also and check your " +#~ "email again.

      Why? Email " +#~ "validation is required to make sure that only you can post " +#~ "messages on your behalf and to minimize spam " +#~ "posts.
      With email you can subscribe for updates on " +#~ "the most interesting questions. Also, when you sign up for the first time " +#~ "- create a unique gravatar personal image.

      " + +#~ msgid "more answers" +#~ msgstr "oldest" + +#~ msgid "popular" +#~ msgstr "most voted" + +#~ msgid "reputation points" +#~ msgstr "karma" diff --git a/askbot/locale/pt_BR/LC_MESSAGES/djangojs.mo b/askbot/locale/pt_BR/LC_MESSAGES/djangojs.mo new file mode 100644 index 00000000..1b7fa761 Binary files /dev/null and b/askbot/locale/pt_BR/LC_MESSAGES/djangojs.mo differ diff --git a/askbot/locale/pt_BR/LC_MESSAGES/djangojs.po b/askbot/locale/pt_BR/LC_MESSAGES/djangojs.po new file mode 100644 index 00000000..eb07cced --- /dev/null +++ b/askbot/locale/pt_BR/LC_MESSAGES/djangojs.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: 0.7\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-10-08 02:35-0500\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"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" + +#: skins/default/media/js/post.js:532 +msgid "Follow" +msgstr "" + +#: skins/default/media/js/post.js:541 skins/default/media/js/post.js.py:550 +#, perl-format +msgid "%s follower" +msgid_plural "%s followers" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/media/js/post.js:546 +msgid "
      Following
      Unfollow
      " +msgstr "" + +#: skins/default/media/js/post.js:1613 +msgid "Please enter question title (>10 characters)" +msgstr "" + +#: skins/default/media/js/tag_selector.js:15 +msgid "Tag \"\" matches:" +msgstr "" + +#: skins/default/media/js/tag_selector.js:84 +#, perl-format +msgid "and %s more, not shown..." +msgstr "" + +#: skins/default/media/js/user.js:129 +msgid "Please signin to follow %(username)s" +msgstr "" + +#: skins/default/media/js/user.js:161 +#, perl-format +msgid "unfollow %s" +msgstr "" + +#: skins/default/media/js/user.js:164 +#, perl-format +msgid "following %s" +msgstr "" + +#: skins/default/media/js/user.js:170 +#, perl-format +msgid "follow %s" +msgstr "" diff --git a/askbot/locale/ro/LC_MESSAGES/django.mo b/askbot/locale/ro/LC_MESSAGES/django.mo index 1f9109d8..7b66727a 100644 Binary files a/askbot/locale/ro/LC_MESSAGES/django.mo and b/askbot/locale/ro/LC_MESSAGES/django.mo differ diff --git a/askbot/locale/ro/LC_MESSAGES/django.po b/askbot/locale/ro/LC_MESSAGES/django.po index abd8f70f..06da0fa4 100644 --- a/askbot/locale/ro/LC_MESSAGES/django.po +++ b/askbot/locale/ro/LC_MESSAGES/django.po @@ -6,11 +6,12 @@ msgid "" msgstr "" "Project-Id-Version: ubuntu-ro\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-03-23 15:57-0500\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-10-08 02:29-0500\n" "PO-Revision-Date: 2011-04-10 19:43+0000\n" "Last-Translator: Adi Roiban \n" "Language-Team: Romanian \n" +"Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -19,69 +20,76 @@ msgstr "" "X-Launchpad-Export-Date: 2011-04-10 19:44+0000\n" "X-Generator: Launchpad (build 12757)\n" -#: exceptions.py:9 +#: exceptions.py:13 msgid "Sorry, but anonymous visitors cannot access this function" msgstr "Vizitatorii anonimi nu pot accesa această funcție" -#: feed.py:22 +#: feed.py:26 feed.py:100 msgid " - " msgstr " - " -#: feed.py:22 +#: feed.py:26 +#, fuzzy +msgid "Individual question feed" +msgstr "Întrebări selectate individual" + +#: feed.py:100 msgid "latest questions" msgstr "ultimele întrebări" -#: forms.py:72 +#: forms.py:74 msgid "select country" msgstr "alegeți o țară" -#: forms.py:81 +#: forms.py:83 msgid "Country" msgstr "Țară" -#: forms.py:89 +#: forms.py:91 msgid "Country field is required" msgstr "Câmpul cu țara este obligatoriu" -#: forms.py:102 skins/default/templates/blocks/answer_edit_tips.html:43 +#: forms.py:104 skins/default/templates/blocks/answer_edit_tips.html:43 #: skins/default/templates/blocks/answer_edit_tips.html:47 #: skins/default/templates/blocks/question_edit_tips.html:38 #: skins/default/templates/blocks/question_edit_tips.html:43 msgid "title" msgstr "titlu" -#: forms.py:103 +#: forms.py:105 msgid "please enter a descriptive title for your question" msgstr "introduceți un titlu descriptiv pentru întrebare" -#: forms.py:108 +#: forms.py:110 msgid "title must be > 10 characters" msgstr "titlul trebuie să fie mai lung decât 10 caractere" -#: forms.py:117 +#: forms.py:119 msgid "content" msgstr "conținut" -#: forms.py:123 +#: forms.py:125 msgid "question content must be > 10 characters" msgstr "conținutul întrebării trebuie să fie mai lung decât 10 caractere" -#: forms.py:132 skins/default/templates/blocks/header.html:22 +#: forms.py:134 skins/default/templates/macros.html:660 +#: skins/default/templates/macros.html:672 +#: skins/default/templates/blocks/header.html:25 msgid "tags" msgstr "etichete" -#: forms.py:134 +#: forms.py:136 msgid "" "Tags are short keywords, with no spaces within. Up to five tags can be used." msgstr "" "Etichetele sunt cuvinte cheie scurte, fără spații. Pot fi folosite până la " "cinci etichete." -#: forms.py:141 skins/default/templates/question_retag.html:74 +#: forms.py:164 skins/default/templates/question_retag.html:58 msgid "tags are required" msgstr "etichetele sunt obligatorii" -#: forms.py:150 +#: forms.py:173 #, python-format msgid "please use %(tag_count)d tag or less" msgid_plural "please use %(tag_count)d tags or less" @@ -89,7 +97,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:159 +#: forms.py:181 +#, python-format +msgid "At least one of the following tags is required : %(tags)s" +msgstr "" + +#: forms.py:190 #, 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" @@ -100,18 +113,17 @@ msgstr[1] "" msgstr[2] "" "fiecare etichetă trebuie să fie mai scurtă de %(max_chars)d de caractere" -#: forms.py:167 +#: forms.py:198 msgid "use-these-chars-in-tags" msgstr "folositi-aceste-caractere-in-etichete" -#: forms.py:202 -msgid "" -"community wiki (karma is not awarded & many others can edit wiki post)" +#: forms.py:233 +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:203 +#: forms.py:234 msgid "" "if you choose community wiki option, the question and answer do not generate " "points and name of author will not be shown" @@ -119,11 +131,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:219 +#: forms.py:250 msgid "update summary:" msgstr "sumar actualizare:" -#: forms.py:220 +#: forms.py:251 msgid "" "enter a brief summary of your revision (e.g. fixed spelling, grammar, " "improved style, this field is optional)" @@ -131,90 +143,98 @@ msgstr "" "introduceți o descriere scurtă a reviziei (de ex. corectare ortografică, " "gramaticală, stil îmbunătățit, câmp opțional)" -#: forms.py:283 +#: forms.py:327 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:297 const/__init__.py:224 +#: forms.py:341 const/__init__.py:245 msgid "approved" msgstr "aprobat" -#: forms.py:298 const/__init__.py:225 +#: forms.py:342 const/__init__.py:246 msgid "watched" msgstr "urmărit" -#: forms.py:299 const/__init__.py:226 +#: forms.py:343 const/__init__.py:247 msgid "suspended" msgstr "suspendat" -#: forms.py:300 const/__init__.py:227 +#: forms.py:344 const/__init__.py:248 msgid "blocked" msgstr "blocat" -#: forms.py:302 const/__init__.py:223 +#: forms.py:346 +#, fuzzy +msgid "administrator" +msgstr "Administrator" + +#: forms.py:347 const/__init__.py:244 msgid "moderator" msgstr "moderator" -#: forms.py:322 +#: forms.py:367 msgid "Change status to" msgstr "Schimbă starea în" -#: forms.py:349 +#: forms.py:394 msgid "which one?" msgstr "care?" -#: forms.py:370 +#: forms.py:415 msgid "Cannot change own status" msgstr "Nu se poate schimba propria stare" -#: forms.py:376 +#: forms.py:421 msgid "Cannot turn other user to moderator" msgstr "Nu s-a putut schimba alt utilizator în moderator" -#: forms.py:383 +#: forms.py:428 msgid "Cannot change status of another moderator" msgstr "Nu se poate schimba starea altui utilizator" -#: forms.py:389 +#: forms.py:434 +#, fuzzy +msgid "Cannot change status to admin" +msgstr "Nu se poate schimba propria stare" + +#: forms.py:440 #, 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." +msgstr "Dacă doriți să modificați statusul %(username)s alegeți ceva expresiv." -#: forms.py:398 +#: forms.py:449 msgid "Subject line" msgstr "Linie subiect" -#: forms.py:405 +#: forms.py:456 msgid "Message text" msgstr "Text mesaj" -#: forms.py:488 +#: forms.py:542 msgid "Your name:" msgstr "Nume:" -#: forms.py:489 +#: forms.py:543 msgid "Email (not shared with anyone):" msgstr "Email (nu este dezvăluit altor părți):" -#: forms.py:490 +#: forms.py:544 msgid "Your message:" msgstr "Mesaj:" -#: forms.py:527 +#: forms.py:581 msgid "ask anonymously" msgstr "întreabă anonim" -#: forms.py:529 -msgid "" -"Check if you do not want to reveal your name when asking this question" +#: forms.py:583 +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:604 +#: forms.py:743 msgid "" "You have asked this question anonymously, if you decide to reveal your " "identity, please check this box." @@ -222,11 +242,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:608 +#: forms.py:747 msgid "reveal identity" msgstr "arată identitatea" -#: forms.py:666 +#: forms.py:805 msgid "" "Sorry, only owner of the anonymous question can reveal his or her identity, " "please uncheck the box" @@ -234,7 +254,7 @@ msgstr "" "Doar cel care a pus întrebarea anonimă poate dezvălui identitatea, debifați " "căsuța" -#: forms.py:679 +#: forms.py:818 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 " @@ -244,181 +264,186 @@ 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:717 +#: forms.py:856 msgid "this email will be linked to gravatar" msgstr "această adresă de email va fi conectată cu gravatarul" -#: forms.py:724 +#: forms.py:863 msgid "Real name" msgstr "Nume real" -#: forms.py:731 +#: forms.py:870 msgid "Website" msgstr "Pagină web" -#: forms.py:738 +#: forms.py:877 msgid "City" msgstr "Oraș" -#: forms.py:747 +#: forms.py:886 msgid "Show country" msgstr "Arată țara" -#: forms.py:752 +#: forms.py:891 msgid "Date of birth" msgstr "Data nașterii" -#: forms.py:753 +#: forms.py:892 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:759 +#: forms.py:898 msgid "Profile" msgstr "Profil" -#: forms.py:768 +#: forms.py:907 msgid "Screen name" msgstr "Nume afișat" -#: forms.py:799 forms.py:800 +#: forms.py:938 forms.py:939 msgid "this email has already been registered, please use another one" msgstr "acest email este deja înregistrat, utilizați altul" -#: forms.py:807 +#: forms.py:946 msgid "Choose email tag filter" msgstr "Alegeți filtru email etichete" -#: forms.py:847 +#: forms.py:993 msgid "Asked by me" msgstr "Întrebate de mine" -#: forms.py:850 +#: forms.py:996 msgid "Answered by me" msgstr "Răspunse de mine" -#: forms.py:853 +#: forms.py:999 msgid "Individually selected" msgstr "Alese individual" -#: forms.py:856 +#: forms.py:1002 msgid "Entire forum (tag filtered)" msgstr "Toate întrebările (filtrate pe tag)" -#: forms.py:860 +#: forms.py:1006 msgid "Comments and posts mentioning me" msgstr "Comentarii și răspunsuri în care sunt menționat eu" -#: forms.py:930 +#: forms.py:1085 msgid "okay, let's try!" msgstr "Bine, să încercăm!" -#: forms.py:931 +#: forms.py:1086 msgid "no community email please, thanks" msgstr "fără emailuri de la comunitate, mulțumesc" -#: forms.py:935 +#: forms.py:1090 msgid "please choose one of the options above" msgstr "alegeți una dintre opțiunile de mai sus" -#: urls.py:44 +#: urls.py:53 msgid "about/" msgstr "despre/" -#: urls.py:45 conf/site_settings.py:79 +#: urls.py:54 msgid "faq/" msgstr "intrebari-frecvente/" -#: urls.py:46 +#: urls.py:55 msgid "privacy/" msgstr "confidentialitate/" -#: urls.py:47 -msgid "logout/" -msgstr "logout/" - -#: urls.py:49 urls.py:54 +#: urls.py:57 urls.py:62 msgid "answers/" msgstr "raspunsuri/" -#: urls.py:49 urls.py:75 urls.py:181 +#: urls.py:57 urls.py:83 urls.py:198 msgid "edit/" msgstr "edit/" -#: urls.py:54 urls.py:105 +#: urls.py:62 urls.py:113 msgid "revisions/" msgstr "revizii/" -#: urls.py:60 urls.py:70 urls.py:75 urls.py:80 urls.py:85 urls.py:90 -#: urls.py:95 urls.py:100 urls.py:105 -#: skins/default/templates/question.html:438 +#: urls.py:68 urls.py:78 urls.py:83 urls.py:88 urls.py:93 urls.py:98 +#: urls.py:103 urls.py:108 urls.py:113 urls.py:285 +#: skins/default/templates/question.html:508 msgid "questions/" msgstr "intrebari/" -#: urls.py:70 +#: urls.py:78 msgid "ask/" msgstr "intreaba/" -#: urls.py:80 +#: urls.py:88 msgid "retag/" msgstr "retag/" -#: urls.py:85 +#: urls.py:93 msgid "close/" msgstr "inchide/" -#: urls.py:90 +#: urls.py:98 msgid "reopen/" msgstr "redeschide/" -#: urls.py:95 +#: urls.py:103 msgid "answer/" msgstr "raspuns/" -#: urls.py:100 skins/default/templates/question.html:438 +#: urls.py:108 skins/default/templates/question.html:508 msgid "vote/" msgstr "vot/" -#: urls.py:132 skins/default/templates/question.html:436 -#: skins/default/templates/main_page/javascript.html:21 -msgid "question/" -msgstr "intrebare/" - -#: urls.py:137 +#: urls.py:144 msgid "tags/" msgstr "etichete/" -#: urls.py:170 +#: urls.py:187 msgid "subscribe-for-tags/" msgstr "abonare-etichete/" -#: urls.py:175 urls.py:181 urls.py:186 -#: skins/default/templates/main_page/javascript.html:22 +#: urls.py:192 urls.py:198 urls.py:204 urls.py:212 +#: skins/default/templates/main_page/javascript.html:23 msgid "users/" msgstr "utilizatori/" -#: urls.py:191 urls.py:196 +#: urls.py:205 +#, fuzzy +msgid "subscriptions/" +msgstr "abonamente" + +#: urls.py:217 +msgid "users/update_has_custom_avatar/" +msgstr "" + +#: urls.py:222 urls.py:227 msgid "badges/" msgstr "insigne/" -#: urls.py:201 +#: urls.py:232 msgid "messages/" msgstr "mesaje/" -#: urls.py:201 +#: urls.py:232 msgid "markread/" msgstr "macheaza-citit/" -#: urls.py:217 +#: urls.py:248 msgid "upload/" msgstr "incarca/" -#: urls.py:218 +#: urls.py:249 msgid "feedback/" msgstr "sugestii/" -#: urls.py:219 setup_templates/settings.py:188 +#: urls.py:291 skins/default/templates/question.html:506 +#: skins/default/templates/main_page/javascript.html:22 +msgid "question/" +msgstr "intrebare/" + +#: urls.py:298 setup_templates/settings.py:202 #: skins/default/templates/authopenid/providers_javascript.html:7 msgid "account/" msgstr "cont/" @@ -553,28 +578,77 @@ msgid "" "posts mentioning the user and comment responses" msgstr "" -#: conf/email.py:63 +#: conf/email.py:62 +#, fuzzy +msgid "Send periodic reminders about unanswered questions" +msgstr "vezi întrebările fără răspuns" + +#: conf/email.py:64 +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) and an IMAP server with a dedicated inbox " +"must be configured " +msgstr "" + +#: conf/email.py:78 +msgid "Days before starting to send reminders about unanswered questions" +msgstr "" + +#: conf/email.py:89 +msgid "" +"How often to send unanswered question reminders (in days between the " +"reminders sent)." +msgstr "" + +#: conf/email.py:101 +#, 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:113 msgid "Require email verification before allowing to post" msgstr "" -#: conf/email.py:64 +#: conf/email.py:114 msgid "" "Active email verification is done by sending a verification key in email" msgstr "" -#: conf/email.py:73 +#: conf/email.py:123 msgid "Allow only one account per email address" msgstr "" -#: conf/email.py:82 +#: conf/email.py:132 msgid "Fake email for anonymous user" msgstr "" -#: conf/email.py:83 +#: conf/email.py:133 msgid "Use this setting to control gravatar for email-less user" msgstr "" -#: conf/external_keys.py:11 +#: conf/email.py:142 +#, fuzzy +msgid "Allow posting questions by email" +msgstr "autentificați-vă pentru a pune o întrebare" + +#: conf/email.py:144 +msgid "" +"Before enabling this setting - please fill out IMAP settings in the settings." +"py file" +msgstr "" + +#: conf/email.py:155 +msgid "Replace space in emailed tags with dash" +msgstr "" + +#: conf/email.py:157 +msgid "" +"This setting applies to tags written in the subject line of questions asked " +"by email" +msgstr "" + +#: conf/external_keys.py:10 msgid "Keys to connect the site with external services like Facebook, etc." msgstr "" @@ -585,91 +659,114 @@ msgstr "" #: conf/external_keys.py:20 #, python-format msgid "" -"This key helps google index your site please obtain is at google webmasters tools site" +"This key helps google index your site please obtain is at google webmasters tools site" msgstr "" -#: conf/external_keys.py:34 +#: conf/external_keys.py:35 msgid "Google Analytics key" msgstr "" -#: conf/external_keys.py:36 +#: conf/external_keys.py:37 #, python-format msgid "" -"Obtain is at Google Analytics site, if you wish " -"to use Google Analytics to monitor your site" +"Obtain is at Google Analytics site, if you wish to " +"use Google Analytics to monitor your site" msgstr "" -#: conf/external_keys.py:49 +#: conf/external_keys.py:50 msgid "Enable recaptcha (keys below are required)" msgstr "" -#: conf/external_keys.py:58 +#: conf/external_keys.py:59 msgid "Recaptcha public key" msgstr "" -#: conf/external_keys.py:66 +#: conf/external_keys.py:67 msgid "Recaptcha private key" msgstr "" -#: conf/external_keys.py:68 +#: conf/external_keys.py:69 +#, 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 recaptcha.net" +"robots. Please get this and a public key at the %(url)s" msgstr "" -#: conf/external_keys.py:80 +#: conf/external_keys.py:81 msgid "Facebook public API key" msgstr "" -#: conf/external_keys.py:82 +#: conf/external_keys.py:83 +#, python-format msgid "" "Facebook API key and Facebook secret allow to use Facebook Connect login " -"method at your site. Please obtain these keys at facebook create " -"app site" +"method at your site. Please obtain these keys at facebook create app site" msgstr "" -#: conf/external_keys.py:95 +#: conf/external_keys.py:96 msgid "Facebook secret key" msgstr "" -#: conf/external_keys.py:103 +#: conf/external_keys.py:104 msgid "Twitter consumer key" msgstr "" -#: conf/external_keys.py:105 conf/external_keys.py:126 +#: conf/external_keys.py:106 +#, python-format msgid "" -"Please register your forum at twitter applications site" +"Please register your forum at twitter applications site" msgstr "" -#: conf/external_keys.py:116 +#: conf/external_keys.py:117 msgid "Twitter consumer secret" msgstr "" -#: conf/external_keys.py:124 +#: conf/external_keys.py:125 msgid "LinkedIn consumer key" msgstr "" -#: conf/external_keys.py:137 +#: conf/external_keys.py:127 +#, python-format +msgid "" +"Please register your forum at LinkedIn developer site" +msgstr "" + +#: conf/external_keys.py:138 msgid "LinkedIn consumer secret" msgstr "" -#: conf/external_keys.py:145 +#: conf/external_keys.py:146 +msgid "ident.ca consumer key" +msgstr "" + +#: conf/external_keys.py:148 +#, python-format +msgid "" +"Please register your forum at Identi.ca applications " +"site" +msgstr "" + +#: conf/external_keys.py:159 +msgid "ident.ca consumer secret" +msgstr "" + +#: conf/external_keys.py:167 msgid "Use LDAP authentication for the password login" msgstr "" -#: conf/external_keys.py:154 +#: conf/external_keys.py:176 msgid "LDAP service provider name" msgstr "" -#: conf/external_keys.py:162 +#: conf/external_keys.py:184 msgid "URL for the LDAP service" msgstr "" -#: conf/external_keys.py:170 +#: conf/external_keys.py:192 msgid "Explain how to change LDAP password" msgstr "" @@ -688,152 +785,282 @@ msgid "" msgstr "" #: conf/flatpages.py:30 -msgid "Text of the Q&A forum Privacy Policy (html format)" +#, fuzzy +msgid "Text of the Q&A forum FAQ page (html format)" msgstr "Textul pentru pagina politicii de confidențialitate (format html)" #: conf/flatpages.py:33 msgid "" "Save, then use HTML validator on " +"the \"faq\" page to check your input." +msgstr "" + +#: conf/flatpages.py:44 +msgid "Text of the Q&A forum Privacy Policy (html format)" +msgstr "Textul pentru pagina politicii de confidențialitate (format html)" + +#: conf/flatpages.py:47 +msgid "" +"Save, then use HTML validator on " "the \"privacy\" page to check your input." msgstr "" #: conf/forum_data_rules.py:11 -msgid "Settings for askbot data entry and display" +msgid "Data entry and display" +msgstr "" + +#: conf/forum_data_rules.py:20 +#, python-format +msgid "" +"Enable embedding videos. Note: please read read this first." msgstr "" -#: conf/forum_data_rules.py:19 +#: conf/forum_data_rules.py:31 msgid "Check to enable community wiki feature" msgstr "" -#: conf/forum_data_rules.py:28 +#: conf/forum_data_rules.py:40 msgid "Allow asking questions anonymously" msgstr "" -#: conf/forum_data_rules.py:30 +#: conf/forum_data_rules.py:42 msgid "" "Users do not accrue reputation for anonymous questions and their identity is " "not revealed until they change their mind" msgstr "" -#: conf/forum_data_rules.py:42 +#: conf/forum_data_rules.py:54 +msgid "Allow posting before logging in" +msgstr "" + +#: conf/forum_data_rules.py:56 +msgid "" +"Check if you want to allow users start posting questions or answers before " +"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 "" + +#: conf/forum_data_rules.py:71 +#, fuzzy +msgid "Allow swapping answer with question" +msgstr "Răspunde întrebării" + +#: conf/forum_data_rules.py:73 +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 "" + +#: conf/forum_data_rules.py:85 msgid "Maximum length of tag (number of characters)" msgstr "" -#: conf/forum_data_rules.py:51 +#: conf/forum_data_rules.py:93 +#, fuzzy +msgid "Mandatory tags" +msgstr "etichete actualizate" + +#: conf/forum_data_rules.py:96 +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:108 msgid "Force lowercase the tags" msgstr "" -#: conf/forum_data_rules.py:53 +#: conf/forum_data_rules.py:110 msgid "" "Attention: after checking this, please back up the database, and run a " "management command: python manage.py fix_question_tags to " "globally rename the tags" msgstr "" -#: conf/forum_data_rules.py:66 +#: conf/forum_data_rules.py:124 +msgid "Format of tag list" +msgstr "" + +#: conf/forum_data_rules.py:126 +msgid "" +"Select the format to show tags in, either as a simple list, or as a tag cloud" +msgstr "" + +#: conf/forum_data_rules.py:138 msgid "Use wildcard tags" msgstr "" -#: conf/forum_data_rules.py:68 +#: conf/forum_data_rules.py:140 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:81 +#: conf/forum_data_rules.py:153 msgid "Default max number of comments to display under posts" msgstr "" -#: conf/forum_data_rules.py:92 +#: conf/forum_data_rules.py:164 #, python-format msgid "Maximum comment length, must be < %(max_len)s" msgstr "" -#: conf/forum_data_rules.py:102 +#: conf/forum_data_rules.py:174 msgid "Limit time to edit comments" msgstr "" -#: conf/forum_data_rules.py:104 +#: conf/forum_data_rules.py:176 msgid "If unchecked, there will be no time limit to edit the comments" msgstr "" -#: conf/forum_data_rules.py:115 +#: conf/forum_data_rules.py:187 msgid "Minutes allowed to edit a comment" msgstr "" -#: conf/forum_data_rules.py:116 +#: conf/forum_data_rules.py:188 msgid "To enable this setting, check the previous one" msgstr "" -#: conf/forum_data_rules.py:125 +#: conf/forum_data_rules.py:197 msgid "Save comment by pressing key" msgstr "" -#: conf/forum_data_rules.py:134 +#: conf/forum_data_rules.py:206 msgid "Minimum length of search term for Ajax search" msgstr "" -#: conf/forum_data_rules.py:135 +#: conf/forum_data_rules.py:207 msgid "Must match the corresponding database backend setting" msgstr "" -#: conf/forum_data_rules.py:144 +#: conf/forum_data_rules.py:216 msgid "Do not make text query sticky in search" msgstr "" -#: conf/forum_data_rules.py:146 +#: conf/forum_data_rules.py:218 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:159 +#: conf/forum_data_rules.py:231 msgid "Maximum number of tags per question" msgstr "" -#: conf/forum_data_rules.py:171 +#: conf/forum_data_rules.py:243 msgid "Number of questions to list by default" msgstr "" -#: conf/forum_data_rules.py:181 +#: conf/forum_data_rules.py:253 msgid "What should \"unanswered question\" mean?" msgstr "" -#: conf/login_providers.py:11 +#: conf/license.py:12 +#, fuzzy +msgid "License settings" +msgstr "Configurări de bază" + +#: conf/license.py:19 +msgid "Show license clause in the site footer" +msgstr "" + +#: conf/license.py:28 +msgid "Short name for the license" +msgstr "" + +#: conf/license.py:37 +msgid "Full name of the license" +msgstr "" + +#: conf/license.py:38 +msgid "Creative Commons Attribution Share Alike 3.0" +msgstr "" + +#: conf/license.py:46 +msgid "Add link to the license page" +msgstr "" + +#: conf/license.py:55 +#, fuzzy +msgid "License homepage" +msgstr "înapoi la pagina de start" + +#: conf/license.py:57 +msgid "URL of the official page with all the license legal clauses" +msgstr "" + +#: conf/license.py:67 +#, fuzzy +msgid "Use license logo" +msgstr "siglă %(site)s" + +#: conf/license.py:76 +msgid "License logo image" +msgstr "" + +#: conf/login_providers.py:12 msgid "Login provider setings" msgstr "" -#: conf/login_providers.py:19 +#: conf/login_providers.py:20 msgid "" "Show alternative login provider buttons on the password \"Sign Up\" page" msgstr "" -#: conf/login_providers.py:28 +#: conf/login_providers.py:29 msgid "Always display local login form and hide \"Askbot\" button." msgstr "" -#: conf/login_providers.py:55 +#: conf/login_providers.py:38 +msgid "Activate to allow login with self-hosted wordpress site" +msgstr "" + +#: conf/login_providers.py:39 +msgid "" +"to activate this feature you must fill out the wordpress xml-rpc setting " +"bellow" +msgstr "" + +#: conf/login_providers.py:48 +msgid "" +"Fill it with the wordpress url to the xml-rpc, normally http://mysite.com/" +"xmlrpc.php" +msgstr "" + +#: conf/login_providers.py:49 +msgid "" +"To enable, go to Settings->Writing->Remote Publishing and check the box for " +"XML-RPC" +msgstr "" + +#: conf/login_providers.py:60 +msgid "Upload your icon" +msgstr "" + +#: conf/login_providers.py:90 #, python-format msgid "Activate %(provider)s login" msgstr "" -#: conf/login_providers.py:60 +#: conf/login_providers.py:95 #, python-format msgid "" "Note: to really enable %(provider)s login some additional parameters will " "need to be set in the \"External keys\" section" msgstr "" -#: conf/markup.py:15 +#: conf/markup.py:14 msgid "Markup formatting" msgstr "" -#: conf/markup.py:22 +#: conf/markup.py:39 msgid "Enable code-friendly Markdown" msgstr "" -#: conf/markup.py:24 +#: conf/markup.py:41 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 " @@ -841,28 +1068,65 @@ msgid "" "are heavily used in LaTeX input." msgstr "" -#: conf/markup.py:39 +#: conf/markup.py:56 msgid "Mathjax support (rendering of LaTeX)" msgstr "" -#: conf/markup.py:41 +#: conf/markup.py:58 #, python-format msgid "" "If you enable this feature, mathjax must be " "installed on your server in its own directory." msgstr "" -#: conf/markup.py:55 +#: conf/markup.py:72 msgid "Base url of MathJax deployment" msgstr "" -#: conf/markup.py:57 +#: conf/markup.py:74 msgid "" "Note - MathJax is not included with askbot - 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 "" +#: conf/markup.py:89 +msgid "Enable autolinking with specific patterns" +msgstr "" + +#: conf/markup.py:91 +msgid "" +"If you enable this feature, the application will be able to detect patterns " +"and auto link to URLs" +msgstr "" + +#: conf/markup.py:104 +msgid "Regexes to detect the link patterns" +msgstr "" + +#: conf/markup.py:106 +msgid "" +"Enter valid regular expressions for the patters, one per line. For example " +"to detect a bug pattern like #bug123, use the following regex: #bug(\\d+). " +"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 "" + +#: conf/markup.py:125 +msgid "URLs for autolinking" +msgstr "" + +#: conf/markup.py:127 +msgid "" +"Here, please enter url templates for the patterns entered in the previous " +"setting, also one entry per line. Make sure that number of lines in " +"this setting and the previous one are the same 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 "" + #: conf/minimum_reputation.py:11 msgid "Minimum reputation required to perform actions" msgstr "" @@ -876,62 +1140,72 @@ msgid "Downvote" msgstr "" #: conf/minimum_reputation.py:38 +#, fuzzy +msgid "Answer own question immediately" +msgstr "Răspunde propriei întrebări" + +#: conf/minimum_reputation.py:47 +#, fuzzy +msgid "Accept own answer" +msgstr "\"modifică orice răspuns" + +#: conf/minimum_reputation.py:56 msgid "Flag offensive" msgstr "Marchează ofensiv" -#: conf/minimum_reputation.py:47 +#: conf/minimum_reputation.py:65 msgid "Leave comments" msgstr "" -#: conf/minimum_reputation.py:56 +#: conf/minimum_reputation.py:74 msgid "Delete comments posted by others" msgstr "" -#: conf/minimum_reputation.py:65 +#: conf/minimum_reputation.py:83 msgid "Delete questions and answers posted by others" msgstr "" -#: conf/minimum_reputation.py:74 +#: conf/minimum_reputation.py:92 msgid "Upload files" msgstr "" -#: conf/minimum_reputation.py:83 +#: conf/minimum_reputation.py:101 msgid "Close own questions" msgstr "" -#: conf/minimum_reputation.py:92 +#: conf/minimum_reputation.py:110 msgid "Retag questions posted by other people" msgstr "" -#: conf/minimum_reputation.py:101 +#: conf/minimum_reputation.py:119 msgid "Reopen own questions" msgstr "" -#: conf/minimum_reputation.py:110 +#: conf/minimum_reputation.py:128 msgid "Edit community wiki posts" msgstr "" -#: conf/minimum_reputation.py:119 +#: conf/minimum_reputation.py:137 msgid "Edit posts authored by other people" msgstr "" -#: conf/minimum_reputation.py:128 +#: conf/minimum_reputation.py:146 msgid "View offensive flags" msgstr "" -#: conf/minimum_reputation.py:137 +#: conf/minimum_reputation.py:155 msgid "Close questions asked by others" msgstr "" -#: conf/minimum_reputation.py:146 +#: conf/minimum_reputation.py:164 msgid "Lock posts" msgstr "" -#: conf/minimum_reputation.py:155 +#: conf/minimum_reputation.py:173 msgid "Remove rel=nofollow from own homepage" msgstr "" -#: conf/minimum_reputation.py:157 +#: conf/minimum_reputation.py:175 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." @@ -997,49 +1271,167 @@ msgstr "" msgid "Loss for post owner when upvote is canceled" msgstr "" -#: conf/site_settings.py:13 +#: conf/sidebar_main.py:11 +msgid "Sidebar widget settings - main page" +msgstr "" + +#: conf/sidebar_main.py:18 conf/sidebar_profile.py:18 +#: conf/sidebar_question.py:18 +msgid "Custom sidebar header" +msgstr "" + +#: conf/sidebar_main.py:21 conf/sidebar_profile.py:21 +#: conf/sidebar_question.py:21 +msgid "" +"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." +msgstr "" + +#: conf/sidebar_main.py:34 +msgid "Show avatar block in sidebar" +msgstr "" + +#: conf/sidebar_main.py:36 +msgid "Uncheck this if you want to hide the avatar block from the sidebar " +msgstr "" + +#: conf/sidebar_main.py:47 +msgid "Limit how many avatars will be displayed on the sidebar" +msgstr "" + +#: conf/sidebar_main.py:57 +msgid "Show tag selector in sidebar" +msgstr "" + +#: conf/sidebar_main.py:59 +msgid "" +"Uncheck this if you want to hide the options for choosing interesting and " +"ignored tags " +msgstr "" + +#: conf/sidebar_main.py:70 +msgid "Show tag list/cloud in sidebar" +msgstr "" + +#: conf/sidebar_main.py:72 +msgid "" +"Uncheck this if you want to hide the tag cloud or tag list from the sidebar " +msgstr "" + +#: conf/sidebar_main.py:83 conf/sidebar_profile.py:34 +#: conf/sidebar_question.py:74 +msgid "Custom sidebar footer" +msgstr "" + +#: conf/sidebar_main.py:86 conf/sidebar_profile.py:37 +#: conf/sidebar_question.py:77 +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 "" + +#: conf/sidebar_profile.py:11 +msgid "Sidebar widget settings - profile page" +msgstr "" + +#: conf/sidebar_question.py:11 +msgid "Sidebar widget settings - question page" +msgstr "" + +#: conf/sidebar_question.py:34 +msgid "Show tag list in sidebar" +msgstr "" + +#: conf/sidebar_question.py:36 +msgid "Uncheck this if you want to hide the tag list from the sidebar " +msgstr "" + +#: conf/sidebar_question.py:47 +msgid "Show meta information in sidebar" +msgstr "" + +#: conf/sidebar_question.py:49 +msgid "" +"Uncheck this if you want to hide the meta information about the question " +"(post date, views, last updated). " +msgstr "" + +#: conf/sidebar_question.py:61 +#, fuzzy +msgid "Show related questions in sidebar" +msgstr "Întrebări similare" + +#: conf/sidebar_question.py:63 +#, fuzzy +msgid "Uncheck this if you want to hide the list of related questions. " +msgstr "clic pentru a vedea cel mai puțin recent actualizate întrebări" + +#: conf/site_modes.py:63 +#, fuzzy +msgid "Site modes" +msgstr "Pagini web" + +#: conf/site_modes.py:72 +msgid "Activate a \"Bootstrap\" mode" +msgstr "" + +#: conf/site_modes.py:74 +msgid "" +"Bootstrap mode lowers reputation and certain badge thresholds, to values, " +"more suitable for the smaller communities, WARNING: your " +"current value for Minimum reputation, Bagde Settings and Vote Rules will be " +"changed after you modify this setting." +msgstr "" + +#: conf/site_settings.py:11 msgid "Q&A forum website parameters and urls" msgstr "" -#: conf/site_settings.py:21 +#: conf/site_settings.py:19 msgid "Site title for the Q&A forum" msgstr "" -#: conf/site_settings.py:30 +#: conf/site_settings.py:28 msgid "Comma separated list of Q&A site keywords" msgstr "Listă separată de virgule pentru cuvintele cheie ale siteului" -#: conf/site_settings.py:40 +#: conf/site_settings.py:37 msgid "Copyright message to show in the footer" msgstr "" -#: conf/site_settings.py:50 +#: conf/site_settings.py:47 msgid "Site description for the search engines" msgstr "" -#: conf/site_settings.py:59 +#: conf/site_settings.py:56 msgid "Short name for your Q&A forum" msgstr "" -#: conf/site_settings.py:69 +#: conf/site_settings.py:66 msgid "Base URL for your Q&A forum, must start with http or https" msgstr "" -#: conf/site_settings.py:82 -msgid "Link shown in the greeting message shown to the anonymous user" +#: conf/site_settings.py:77 +msgid "Check to enable greeting for anonymous user" msgstr "" -#: conf/site_settings.py:85 -msgid "" -"If you change this url from the default - then you will also probably want " -"to adjust translation of the following string: " +#: conf/site_settings.py:88 +msgid "Text shown in the greeting message shown to the anonymous user" msgstr "" -#: conf/site_settings.py:98 +#: conf/site_settings.py:92 +msgid "Use HTML to format the message " +msgstr "" + +#: conf/site_settings.py:101 msgid "Feedback site URL" msgstr "URL site pentru feedback" -#: conf/site_settings.py:100 +#: conf/site_settings.py:103 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" @@ -1186,99 +1578,102 @@ msgid "" "href=\"%(favicon_info_url)s\">this page." msgstr "" -#: conf/skin_general_settings.py:70 +#: conf/skin_general_settings.py:71 msgid "Password login button" msgstr "" -#: conf/skin_general_settings.py:72 +#: conf/skin_general_settings.py:73 msgid "" "An 88x38 pixel image that is used on the login screen for the password login " "button." msgstr "" -#: conf/skin_general_settings.py:87 +#: conf/skin_general_settings.py:88 msgid "Show all UI functions to all users" msgstr "" -#: conf/skin_general_settings.py:89 +#: conf/skin_general_settings.py:90 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:104 +#: conf/skin_general_settings.py:105 msgid "Select skin" msgstr "" -#: conf/skin_general_settings.py:113 -msgid "Skin media revision number" -msgstr "" - -#: conf/skin_general_settings.py:115 -msgid "" -"Increment this number when you change image in skin media or stylesheet. " -"This helps avoid showing your users outdated images from their browser cache." -msgstr "" - -#: conf/skin_general_settings.py:128 +#: conf/skin_general_settings.py:116 msgid "Customize HTML " msgstr "" -#: conf/skin_general_settings.py:137 +#: conf/skin_general_settings.py:125 msgid "Custom portion of the HTML " msgstr "" -#: conf/skin_general_settings.py:139 +#: conf/skin_general_settings.py:127 msgid "" "To use this option, check \"Customize HTML <HEAD>\" " "above. Contents of this box will be inserted into the <HEAD> portion " -"of the HTML output, where elements such as <script>, <link>, " -"<meta> may be added. Please, keep in mind that adding external " -"javascript to the <HEAD> 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. Note: if you do use this " -"setting, please test the site with the W3C HTML validator service." +"of the HTML output, where elements such as <script>, <link>, <" +"meta> may be added. Please, keep in mind that adding external javascript " +"to the <HEAD> 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. Note: if you do use this setting, " +"please test the site with the W3C HTML validator service." +msgstr "" + +#: conf/skin_general_settings.py:149 +msgid "Custom header additions" msgstr "" -#: conf/skin_general_settings.py:159 +#: conf/skin_general_settings.py:151 +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 " +"headerin the HTML format. When customizing the site header (as well as " +"footer and the HTML <HEAD>), use the HTML validation service to make " +"sure that your input is valid and works well in all browsers." +msgstr "" + +#: conf/skin_general_settings.py:166 msgid "Site footer mode" msgstr "" -#: conf/skin_general_settings.py:161 +#: conf/skin_general_settings.py:168 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:178 +#: conf/skin_general_settings.py:185 msgid "Custom footer (HTML format)" msgstr "" -#: conf/skin_general_settings.py:180 +#: conf/skin_general_settings.py:187 msgid "" "To enable this function, please select option 'customize' " "in the \"Site footer mode\" above. Use this area to enter contents of the " "footer in the HTML format. When customizing the site footer (as well as the " -"HTML <HEAD>), use the HTML validation service to make sure that your " -"input is valid and works well in all browsers." +"header and HTML <HEAD>), use the HTML validation service to make sure " +"that your input is valid and works well in all browsers." msgstr "" -#: conf/skin_general_settings.py:195 +#: conf/skin_general_settings.py:202 msgid "Apply custom style sheet (CSS)" msgstr "" -#: conf/skin_general_settings.py:197 +#: conf/skin_general_settings.py:204 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:209 +#: conf/skin_general_settings.py:216 msgid "Custom style sheet (CSS)" msgstr "" -#: conf/skin_general_settings.py:211 +#: conf/skin_general_settings.py:218 msgid "" "To use this function, check \"Apply custom style sheet\" " "option above. The CSS rules added in this window will be applied after the " @@ -1287,50 +1682,123 @@ msgid "" "depends (default is empty string) on the url configuration in your urls.py." msgstr "" -#: conf/skin_general_settings.py:227 -msgid "Add custom javascript" +#: conf/skin_general_settings.py:234 +msgid "Add custom javascript" +msgstr "" + +#: conf/skin_general_settings.py:237 +msgid "Check to enable javascript that you can enter in the next field" +msgstr "" + +#: conf/skin_general_settings.py:247 +msgid "Custom javascript" +msgstr "" + +#: conf/skin_general_settings.py:249 +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 \"<forum url>/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 (to " +"enable your custom code, check \"Add custom javascript\" option " +"above)." +msgstr "" + +#: conf/skin_general_settings.py:267 +msgid "Skin media revision number" +msgstr "" + +#: conf/skin_general_settings.py:269 +msgid "Will be set automatically but you can modify it if necessary." +msgstr "" + +#: conf/skin_general_settings.py:280 +msgid "Hash to update the media revision number automatically." +msgstr "" + +#: conf/skin_general_settings.py:284 +msgid "Will be set automatically, it is not necesary to modify manually." +msgstr "" + +#: conf/social_sharing.py:10 +msgid "Sharing content on social networks" +msgstr "" + +#: conf/social_sharing.py:18 +#, fuzzy +msgid "Check to enable sharing of questions on Twitter" +msgstr "Partajează această întrebare pe twitter" + +#: conf/social_sharing.py:27 +#, fuzzy +msgid "Check to enable sharing of questions on Facebook" +msgstr "Partajează această întrebare pe facebook" + +#: conf/social_sharing.py:36 +msgid "Check to enable sharing of questions on LinkedIn" msgstr "" -#: conf/skin_general_settings.py:230 -msgid "Check to enable javascript that you can enter in the next field" +#: conf/social_sharing.py:45 +msgid "Check to enable sharing of questions on Identi.ca" msgstr "" -#: conf/skin_general_settings.py:240 -msgid "Custom javascript" +#: conf/social_sharing.py:54 +msgid "Check to enable sharing of questions on Google+" msgstr "" -#: conf/skin_general_settings.py:242 -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 \"<forum url>/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 (to " -"enable your custom code, check \"Add custom javascript\" option " -"above)." +#: conf/spam_and_moderation.py:9 +msgid "Spam control and content moderation" msgstr "" -#: conf/social_sharing.py:10 -msgid "Sharing content on social networks" +#: conf/spam_and_moderation.py:16 +msgid "Enable Akismet spam detection(keys below are required)" msgstr "" -#: conf/social_sharing.py:18 -msgid "Check to enable sharing of questions on Twitter and Facebook" +#: conf/spam_and_moderation.py:19 +#, python-format +msgid "To get an Akismet key please visit Akismet site" msgstr "" -#: conf/user_settings.py:10 -msgid "User policy settings" +#: conf/spam_and_moderation.py:29 +msgid "Akismet key for spam detection" msgstr "" -#: conf/user_settings.py:18 +#: conf/user_settings.py:11 +#, fuzzy +msgid "User settings" +msgstr "Configurări de bază" + +#: conf/user_settings.py:19 msgid "Allow editing user screen name" msgstr "" #: conf/user_settings.py:28 +#, fuzzy +msgid "Allow account recovery by email" +msgstr "E-mail-ul pentru recuperarea contului a fost trimis" + +#: conf/user_settings.py:37 +#, fuzzy +msgid "Allow adding and removing login methods" +msgstr "Adăugați una sau mai multe metode de autentificare" + +#: conf/user_settings.py:47 msgid "Minimum allowed length for screen name" msgstr "" -#: conf/user_settings.py:37 +#: conf/user_settings.py:57 +msgid "Default Gravatar icon type" +msgstr "" + +#: conf/user_settings.py:59 +msgid "" +"This option allows you to set the default avatar type for email addresses " +"without associated gravatar images. For more information, please visit this page." +msgstr "" + +#: conf/user_settings.py:69 msgid "Name for the Anonymous user" msgstr "" @@ -1355,515 +1823,555 @@ msgid "Number of days to allow canceling votes" msgstr "" #: conf/vote_rules.py:58 -msgid "Number of flags required to automatically hide posts" +msgid "Number of days required before answering own question" msgstr "" #: conf/vote_rules.py:67 +msgid "Number of flags required to automatically hide posts" +msgstr "" + +#: conf/vote_rules.py:76 msgid "Number of flags required to automatically delete posts" msgstr "" -#: const/__init__.py:9 +#: const/__init__.py:10 msgid "duplicate question" msgstr "întrebare duplicat" -#: const/__init__.py:10 +#: const/__init__.py:11 msgid "question is off-topic or not relevant" msgstr "întrebarea este off-topic sau nu este relevantă" -#: const/__init__.py:11 +#: const/__init__.py:12 msgid "too subjective and argumentative" msgstr "prea subiectivă și argumentativă" -#: const/__init__.py:12 +#: const/__init__.py:13 msgid "not a real question" msgstr "nu este de fapt o întrebare" -#: const/__init__.py:13 +#: const/__init__.py:14 msgid "the question is answered, right answer was accepted" msgstr "întrebarea a căpătat un răspuns, răspunsul a fost acceptat" -#: const/__init__.py:14 +#: const/__init__.py:15 msgid "question is not relevant or outdated" msgstr "întrebarea nu este relevantă sau este veche" -#: const/__init__.py:15 +#: const/__init__.py:16 msgid "question contains offensive or malicious remarks" msgstr "întrebarea conține remarci ofensatoare sau răutăcioase" -#: const/__init__.py:16 +#: const/__init__.py:17 msgid "spam or advertising" msgstr "spam sau reclamă" -#: const/__init__.py:17 +#: const/__init__.py:18 msgid "too localized" msgstr "prea localizată" -#: const/__init__.py:40 +#: const/__init__.py:41 msgid "newest" msgstr "cele mai noi" -#: const/__init__.py:41 skins/default/templates/users.html:25 -#: skins/default/templates/users.html:26 +#: const/__init__.py:42 skins/default/templates/users.html:26 msgid "oldest" msgstr "mai vechi" -#: const/__init__.py:42 +#: const/__init__.py:43 msgid "active" msgstr "activ" -#: const/__init__.py:43 +#: const/__init__.py:44 msgid "inactive" msgstr "inactiv" -#: const/__init__.py:44 +#: const/__init__.py:45 msgid "hottest" msgstr "cele mai interesante" -#: const/__init__.py:45 +#: const/__init__.py:46 msgid "coldest" msgstr "mai reci" -#: const/__init__.py:46 +#: const/__init__.py:47 msgid "most voted" msgstr "cele mai votate" -#: const/__init__.py:47 +#: const/__init__.py:48 msgid "least voted" msgstr "cele mai puțin votate" -#: const/__init__.py:48 skins/default/templates/main_page/tab_bar.html:29 +#: const/__init__.py:49 msgid "relevance" msgstr "relevanță" -#: const/__init__.py:55 skins/default/templates/main_page/tab_bar.html:10 +#: const/__init__.py:57 skins/default/templates/main_page/tab_bar.html:10 #: skins/default/templates/user_profile/user_inbox.html:50 msgid "all" msgstr "toate" -#: const/__init__.py:56 skins/default/templates/main_page/tab_bar.html:15 +#: const/__init__.py:58 skins/default/templates/main_page/tab_bar.html:15 msgid "unanswered" msgstr "fără răspuns" -#: const/__init__.py:57 skins/default/templates/main_page/tab_bar.html:21 +#: const/__init__.py:59 msgid "favorite" msgstr "favorite" -#: const/__init__.py:71 +#: const/__init__.py:64 +#, fuzzy +msgid "list" +msgstr "Listă etichete" + +#: const/__init__.py:65 +msgid "cloud" +msgstr "" + +#: const/__init__.py:78 msgid "Question has no answers" msgstr "Întrebarea nu are răspuns" -#: const/__init__.py:72 +#: const/__init__.py:79 msgid "Question has no accepted answers" msgstr "Întrebarea nu are un răspuns acceptat" -#: const/__init__.py:112 +#: const/__init__.py:121 msgid "asked a question" msgstr "a pus o întrebare" -#: const/__init__.py:113 +#: const/__init__.py:122 msgid "answered a question" msgstr "a răspuns unei întrebări" -#: const/__init__.py:114 +#: const/__init__.py:123 msgid "commented question" msgstr "întrebare comentată" -#: const/__init__.py:115 +#: const/__init__.py:124 msgid "commented answer" msgstr "răspuns comentat" -#: const/__init__.py:116 +#: const/__init__.py:125 msgid "edited question" msgstr "întrebare editată" -#: const/__init__.py:117 +#: const/__init__.py:126 msgid "edited answer" msgstr "răspuns editat" -#: const/__init__.py:118 +#: const/__init__.py:127 msgid "received award" msgstr "recompensă primită" -#: const/__init__.py:119 +#: const/__init__.py:128 msgid "marked best answer" msgstr "marcat ca cel mai bun răspuns" -#: const/__init__.py:120 +#: const/__init__.py:129 msgid "upvoted" msgstr "votat pozitiv" -#: const/__init__.py:121 +#: const/__init__.py:130 msgid "downvoted" msgstr "votat negativ" -#: const/__init__.py:122 +#: const/__init__.py:131 msgid "canceled vote" msgstr "vot anulat" -#: const/__init__.py:123 +#: const/__init__.py:132 msgid "deleted question" msgstr "întrebare ștearsă" -#: const/__init__.py:124 +#: const/__init__.py:133 msgid "deleted answer" msgstr "răspuns șters" -#: const/__init__.py:125 +#: const/__init__.py:134 msgid "marked offensive" msgstr "marcat ca ofensator" -#: const/__init__.py:126 +#: const/__init__.py:135 msgid "updated tags" msgstr "etichete actualizate" -#: const/__init__.py:127 +#: const/__init__.py:136 msgid "selected favorite" msgstr "" -#: const/__init__.py:128 +#: const/__init__.py:137 msgid "completed user profile" msgstr "profil utilizator complet" -#: const/__init__.py:129 +#: const/__init__.py:138 msgid "email update sent to user" msgstr "e-mail actualizat trimis utilizatorului" -#: const/__init__.py:130 +#: const/__init__.py:141 +#, fuzzy +msgid "reminder about unanswered questions sent" +msgstr "vezi întrebările fără răspuns" + +#: const/__init__.py:143 msgid "mentioned in the post" msgstr "menționat în postare" -#: const/__init__.py:181 +#: const/__init__.py:194 msgid "question_answered" msgstr "întrebare_cu_răspuns" -#: const/__init__.py:182 +#: const/__init__.py:195 msgid "question_commented" msgstr "întrebare_comentată" -#: const/__init__.py:183 +#: const/__init__.py:196 msgid "answer_commented" msgstr "răspuns_comentat" -#: const/__init__.py:184 +#: const/__init__.py:197 msgid "answer_accepted" msgstr "răspuns_acceptat" -#: const/__init__.py:188 +#: const/__init__.py:201 msgid "[closed]" msgstr "[închis]" -#: const/__init__.py:189 +#: const/__init__.py:202 msgid "[deleted]" msgstr "[șters]" -#: const/__init__.py:190 views/readers.py:578 +#: const/__init__.py:203 views/readers.py:614 msgid "initial version" msgstr "versiune inițială" -#: const/__init__.py:191 +#: const/__init__.py:204 msgid "retagged" msgstr "reetichetat" -#: const/__init__.py:199 +#: const/__init__.py:212 msgid "off" msgstr "dezactivat" -#: const/__init__.py:200 +#: const/__init__.py:213 msgid "exclude ignored" msgstr "exclude cele ignorate" -#: const/__init__.py:201 +#: const/__init__.py:214 msgid "only selected" msgstr "doar cele selectate" -#: const/__init__.py:205 +#: const/__init__.py:218 msgid "instantly" msgstr "instant" -#: const/__init__.py:206 +#: const/__init__.py:219 msgid "daily" msgstr "zilnic" -#: const/__init__.py:207 +#: const/__init__.py:220 msgid "weekly" msgstr "săptămânal" -#: const/__init__.py:208 +#: const/__init__.py:221 msgid "no email" msgstr "fără e-mail" -#: const/__init__.py:245 skins/default/templates/badges.html:37 +#: const/__init__.py:228 +msgid "identicon" +msgstr "" + +#: const/__init__.py:229 +#, fuzzy +msgid "mystery-man" +msgstr "ieri" + +#: const/__init__.py:230 +msgid "monsterid" +msgstr "" + +#: const/__init__.py:231 +#, fuzzy +msgid "wavatar" +msgstr "ce este gravatarul" + +#: const/__init__.py:232 +msgid "retro" +msgstr "" + +#: const/__init__.py:279 skins/default/templates/badges.html:37 msgid "gold" msgstr "aur" -#: const/__init__.py:246 skins/default/templates/badges.html:46 +#: const/__init__.py:280 skins/default/templates/badges.html:46 msgid "silver" msgstr "argint" -#: const/__init__.py:247 skins/default/templates/badges.html:53 +#: const/__init__.py:281 skins/default/templates/badges.html:53 msgid "bronze" msgstr "bronz" -#: const/message_keys.py:19 -#, python-format -msgid "First time here? Check out the FAQ!" +#: const/__init__.py:293 +msgid "None" +msgstr "" + +#: const/__init__.py:294 +msgid "Gravatar" msgstr "" -"Prima dată aici? Consultați Întrebările frecvente!" -#: const/message_keys.py:22 skins/default/templates/main_page/tab_bar.html:27 +#: const/__init__.py:295 +msgid "Uploaded Avatar" +msgstr "" + +#: const/message_keys.py:15 msgid "most relevant questions" msgstr "cele mai relevante întrebări" -#: const/message_keys.py:23 skins/default/templates/main_page/tab_bar.html:28 +#: const/message_keys.py:16 msgid "click to see most relevant questions" msgstr "efectuați clic pentru a vedea cele mai relevante întrebări" -#: const/message_keys.py:24 +#: const/message_keys.py:17 msgid "by relevance" msgstr "după relevanță" -#: const/message_keys.py:25 +#: const/message_keys.py:18 msgid "click to see the oldest questions" msgstr "clic pentru a vedea cele mai vechi întrebări" -#: const/message_keys.py:26 +#: const/message_keys.py:19 msgid "by date" msgstr "după dată" -#: const/message_keys.py:27 +#: const/message_keys.py:20 msgid "click to see the newest questions" msgstr "efectuați clic pentru a vedea cele mai noi întrebări" -#: const/message_keys.py:28 +#: const/message_keys.py:21 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:29 +#: const/message_keys.py:22 msgid "by activity" msgstr "după activitate" -#: const/message_keys.py:30 +#: const/message_keys.py:23 msgid "click to see the most recently updated questions" msgstr "clic pentru a vedea cele mai recent actualizate întrebări" -#: const/message_keys.py:31 +#: const/message_keys.py:24 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:32 +#: const/message_keys.py:25 msgid "by answers" msgstr "după răspunsuri" -#: const/message_keys.py:33 +#: const/message_keys.py:26 msgid "click to see the most answered questions" -msgstr "" -"efectuați clic pentru a vedea întrebările cu cele mai multe răspunsuri" +msgstr "efectuați clic pentru a vedea întrebările cu cele mai multe răspunsuri" -#: const/message_keys.py:34 +#: const/message_keys.py:27 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:35 +#: const/message_keys.py:28 msgid "by votes" msgstr "după voturi" -#: const/message_keys.py:36 +#: const/message_keys.py:29 msgid "click to see most voted questions" msgstr "efectuați clic pentru a vedea întrebările cu cele mai multe voturi" -#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:134 +#: deps/django_authopenid/backends.py:88 +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 msgid "i-names are not supported" msgstr "" -#: deps/django_authopenid/forms.py:231 +#: deps/django_authopenid/forms.py:233 #, python-format msgid "Please enter your %(username_token)s" msgstr "Introduceți %(username_token)s" -#: deps/django_authopenid/forms.py:257 +#: deps/django_authopenid/forms.py:259 msgid "Please, enter your user name" msgstr "Introduceți numele de utilizator" -#: deps/django_authopenid/forms.py:261 +#: deps/django_authopenid/forms.py:263 msgid "Please, enter your password" msgstr "Introduceți parola" -#: deps/django_authopenid/forms.py:268 deps/django_authopenid/forms.py:272 +#: deps/django_authopenid/forms.py:270 deps/django_authopenid/forms.py:274 msgid "Please, enter your new password" msgstr "Introduceți noua parolă" -#: deps/django_authopenid/forms.py:283 +#: deps/django_authopenid/forms.py:285 msgid "Passwords did not match" msgstr "Parolele nu se potrivesc" -#: deps/django_authopenid/forms.py:295 +#: deps/django_authopenid/forms.py:297 #, python-format msgid "Please choose password > %(len)s characters" msgstr "Alegeți o parolă mai mare decât %(len)s caractere" -#: deps/django_authopenid/forms.py:330 +#: deps/django_authopenid/forms.py:335 msgid "Current password" msgstr "Parolă curentă" -#: deps/django_authopenid/forms.py:341 +#: deps/django_authopenid/forms.py:346 msgid "" "Old password is incorrect. Please enter the correct " "password." msgstr "Parola veche nu este corectă. Introduceți o parolă corectă." -#: deps/django_authopenid/forms.py:394 +#: deps/django_authopenid/forms.py:399 msgid "Sorry, we don't have this email address in the database" msgstr "Această adreasă de e-mail nu se regăsește în baza noastră de date" -#: deps/django_authopenid/forms.py:430 +#: deps/django_authopenid/forms.py:435 msgid "Your user name (required)" msgstr "Numele de utilizator este (obligatoriu)" -#: deps/django_authopenid/forms.py:445 +#: deps/django_authopenid/forms.py:450 msgid "Incorrect username." msgstr "Nume de utilizator incorect" -#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:10 -#: deps/django_authopenid/urls.py:11 deps/django_authopenid/urls.py:14 -#: deps/django_authopenid/urls.py:17 setup_templates/settings.py:188 +#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12 +#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:202 msgid "signin/" msgstr "autentificare/" #: deps/django_authopenid/urls.py:10 -msgid "newquestion/" -msgstr "" - -#: deps/django_authopenid/urls.py:11 -msgid "newanswer/" -msgstr "" - -#: deps/django_authopenid/urls.py:12 msgid "signout/" msgstr "" -#: deps/django_authopenid/urls.py:14 +#: deps/django_authopenid/urls.py:12 msgid "complete/" msgstr "" -#: deps/django_authopenid/urls.py:17 +#: deps/django_authopenid/urls.py:15 msgid "complete-oauth/" msgstr "" -#: deps/django_authopenid/urls.py:21 +#: deps/django_authopenid/urls.py:19 msgid "register/" msgstr "" -#: deps/django_authopenid/urls.py:23 +#: deps/django_authopenid/urls.py:21 msgid "signup/" msgstr "" -#: deps/django_authopenid/urls.py:31 +#: deps/django_authopenid/urls.py:25 +msgid "logout/" +msgstr "logout/" + +#: deps/django_authopenid/urls.py:30 msgid "recover/" msgstr "" -#: deps/django_authopenid/util.py:193 +#: deps/django_authopenid/util.py:378 #, python-format msgid "%(site)s user name and password" msgstr "" -#: deps/django_authopenid/util.py:199 -#: skins/default/templates/authopenid/signin.html:99 +#: deps/django_authopenid/util.py:384 +#: skins/default/templates/authopenid/signin.html:108 msgid "Create a password-protected account" msgstr "Creați un cont protejat prin parolă" -#: deps/django_authopenid/util.py:200 +#: deps/django_authopenid/util.py:385 msgid "Change your password" msgstr "Schimbați parola" -#: deps/django_authopenid/util.py:262 +#: deps/django_authopenid/util.py:473 msgid "Sign in with Yahoo" msgstr "Autentificare cu Yahoo" -#: deps/django_authopenid/util.py:269 +#: deps/django_authopenid/util.py:480 msgid "AOL screen name" msgstr "nume utilizator AOL" -#: deps/django_authopenid/util.py:277 +#: deps/django_authopenid/util.py:488 msgid "OpenID url" msgstr "URL OpenID" -#: deps/django_authopenid/util.py:294 -msgid "MyOpenid user name" -msgstr "nume utilizator MyOpenid" - -#: deps/django_authopenid/util.py:302 +#: deps/django_authopenid/util.py:517 msgid "Flickr user name" msgstr "nume utilizator Flickr" -#: deps/django_authopenid/util.py:310 +#: deps/django_authopenid/util.py:525 msgid "Technorati user name" msgstr "nume utilizator Technorati" -#: deps/django_authopenid/util.py:318 +#: deps/django_authopenid/util.py:533 msgid "WordPress blog name" msgstr "nume blog WordPress" -#: deps/django_authopenid/util.py:326 +#: deps/django_authopenid/util.py:541 msgid "Blogger blog name" msgstr "nume blog Blogger" -#: deps/django_authopenid/util.py:334 +#: deps/django_authopenid/util.py:549 msgid "LiveJournal blog name" msgstr "nume blog LiveJournal" -#: deps/django_authopenid/util.py:342 +#: deps/django_authopenid/util.py:557 msgid "ClaimID user name" msgstr "nume utilizator ClaimID" -#: deps/django_authopenid/util.py:350 +#: deps/django_authopenid/util.py:565 msgid "Vidoop user name" msgstr "nume utilizator Vidoop" -#: deps/django_authopenid/util.py:358 +#: deps/django_authopenid/util.py:573 msgid "Verisign user name" msgstr "nume utilizator Verisign" -#: deps/django_authopenid/util.py:382 +#: deps/django_authopenid/util.py:608 #, python-format msgid "Change your %(provider)s password" msgstr "Modificați parola pentru %(provider)s" -#: deps/django_authopenid/util.py:386 +#: deps/django_authopenid/util.py:612 #, python-format -msgid "" -"Click to see if your %(provider)s signin still works for %(site_name)s" +msgid "Click to see if your %(provider)s signin still works for %(site_name)s" msgstr "" "Efectuați clic pentru a verifica dacă autentificarea pentru %(provider)s " "încă funcționează pe %(site_name)s" -#: deps/django_authopenid/util.py:395 +#: deps/django_authopenid/util.py:621 #, python-format msgid "Create password for %(provider)s" msgstr "Creați parolă pentru %(provider)s" -#: deps/django_authopenid/util.py:399 +#: deps/django_authopenid/util.py:625 #, python-format msgid "Connect your %(provider)s account to %(site_name)s" msgstr "Conectați contul %(provider)s la %(site_name)s" -#: deps/django_authopenid/util.py:408 +#: deps/django_authopenid/util.py:634 #, python-format msgid "Signin with %(provider)s user name and password" msgstr "Autentificați-vă cu numele de utilizator și parola %(provider)s" -#: deps/django_authopenid/util.py:415 +#: deps/django_authopenid/util.py:641 #, python-format msgid "Sign in with your %(provider)s account" msgstr "Autentificați-vă cu contul de %(provider)s" -#: deps/django_authopenid/views.py:141 +#: deps/django_authopenid/views.py:158 #, python-format msgid "OpenID %(openid_url)s is invalid" msgstr "Legătura OpenID %(openid_url)s este nevalidă" -#: deps/django_authopenid/views.py:253 deps/django_authopenid/views.py:395 -#: deps/django_authopenid/views.py:423 +#: deps/django_authopenid/views.py:270 deps/django_authopenid/views.py:415 +#: deps/django_authopenid/views.py:443 #, python-format msgid "" "Unfortunately, there was some problem when connecting to %(provider)s, " @@ -1872,64 +2380,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:345 +#: deps/django_authopenid/views.py:365 msgid "Your new password saved" msgstr "Noua parolă a fost salvată" -#: deps/django_authopenid/views.py:507 +#: deps/django_authopenid/views.py:469 +msgid "The login password combination was not correct" +msgstr "" + +#: deps/django_authopenid/views.py:573 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:509 +#: deps/django_authopenid/views.py:575 msgid "Account recovery email sent" msgstr "E-mail-ul pentru recuperarea contului a fost trimis" -#: deps/django_authopenid/views.py:512 +#: deps/django_authopenid/views.py:578 msgid "Please add one or more login methods." msgstr "Adăugați una sau mai multe metode de autentificare" -#: deps/django_authopenid/views.py:514 +#: deps/django_authopenid/views.py:580 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:516 +#: deps/django_authopenid/views.py:582 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:518 +#: deps/django_authopenid/views.py:584 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:574 +#: deps/django_authopenid/views.py:657 #, 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:580 +#: deps/django_authopenid/views.py:663 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:671 +#: deps/django_authopenid/views.py:754 #, python-format msgid "Your %(provider)s login works fine" msgstr "Autentificarea pentru %(provider)s este funcțională" -#: deps/django_authopenid/views.py:978 deps/django_authopenid/views.py:984 +#: deps/django_authopenid/views.py:1065 deps/django_authopenid/views.py:1071 #, 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:1005 +#: deps/django_authopenid/views.py:1092 #, python-format msgid "Recover your %(site)s account" msgstr "Recuperați contul %(site)s" -#: deps/django_authopenid/views.py:1070 +#: deps/django_authopenid/views.py:1162 msgid "Please check your email and visit the enclosed link." msgstr "Verificați-vă e-mail-ul și mergeți la legătura inclusă" @@ -1954,7 +2466,7 @@ msgstr "Valoare implicită: " msgid "Default value: %s" msgstr "Valoare implicită: %s" -#: deps/livesettings/values.py:588 +#: deps/livesettings/values.py:601 #, python-format msgid "Allowed image file types are %(types)s" msgstr "Tipurile de fișiere imagine permise sunt %(types)s" @@ -1970,7 +2482,7 @@ msgstr "Documentație" #: deps/livesettings/templates/livesettings/group_settings.html:11 #: deps/livesettings/templates/livesettings/site_settings.html:23 -#: skins/default/templates/authopenid/signin.html:117 +#: skins/default/templates/authopenid/signin.html:132 msgid "Change password" msgstr "Schimbă parola" @@ -2033,52 +2545,51 @@ msgstr "Configurări grup: %(name)s" msgid "Uncollapse all" msgstr "Restrânge tot" -#: deps/recaptcha_django/__init__.py:19 deps/recaptcha_django/__init__.py:80 -msgid "Unknown error." -msgstr "Eroare necunoscută." - -#: deps/recaptcha_django/__init__.py:20 deps/recaptcha_django/__init__.py:21 -msgid "ReCAPTCHA is wrongly configured." -msgstr "ReCAPTCHA este configurat greșit." - -#: deps/recaptcha_django/__init__.py:22 -msgid "Bad reCAPTCHA challenge parameter." -msgstr "Parametru șir reCAPTCHA eronat." - -#: deps/recaptcha_django/__init__.py:23 -msgid "The CAPTCHA solution was incorrect." -msgstr "Soluția CAPTCHA a fost incorectă." - -#: deps/recaptcha_django/__init__.py:24 -msgid "Bad reCAPTCHA verification parameters." -msgstr "Parametri verificare reCAPTCHA eronați." - -#: deps/recaptcha_django/__init__.py:25 -msgid "Provided reCAPTCHA API keys are not valid for this domain." -msgstr "Cheile reCAPTCHA API furnizate nu sunt valide pentru acest domeniu." +#: importers/stackexchange/management/commands/load_stackexchange.py:141 +msgid "Congratulations, you are now an Administrator" +msgstr "Felicitări, de acum sunteți un administrator" -#: deps/recaptcha_django/__init__.py:26 -msgid "ReCAPTCHA could not be reached." -msgstr "ReCAPTCHA nu poate fi lansat." +#: 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 "" -#: deps/recaptcha_django/__init__.py:73 -msgid "Invalid request" -msgstr "Cerere nevalidă" +#: management/commands/post_emailed_questions.py:35 +msgid "" +"

      To ask by email, please:

      \n" +"
        \n" +"
      • Format the subject line as: [Tag1; Tag2] Question title
      • \n" +"
      • Type details of your question into the email body
      • \n" +"
      \n" +"

      Note that tags may consist of more than one word, and tags\n" +"may be separated by a semicolon or a comma

      \n" +msgstr "" -#: importers/stackexchange/management/commands/load_stackexchange.py:128 -msgid "Congratulations, you are now an Administrator" -msgstr "Felicitări, de acum sunteți un administrator" +#: management/commands/post_emailed_questions.py:55 +#, python-format +msgid "" +"

      Sorry, there was an error posting your question please contact the " +"%(site)s administrator

      " +msgstr "" -#: management/commands/send_email_alerts.py:103 +#: management/commands/post_emailed_questions.py:61 #, python-format -msgid "\" and \"%s\"" -msgstr "\" și \"%s\"" +msgid "" +"

      Sorry, in order to post questions on %(site)s by email, please register first

      " +msgstr "" -#: management/commands/send_email_alerts.py:106 -msgid "\" and more" -msgstr "\" și în plus" +#: management/commands/post_emailed_questions.py:69 +msgid "" +"

      Sorry, your question could not be posted due to insufficient privileges " +"of your user account

      " +msgstr "" -#: management/commands/send_email_alerts.py:111 +#: management/commands/send_email_alerts.py:411 #, python-format msgid "%(question_count)d updated question about %(topics)s" msgid_plural "%(question_count)d updated questions about %(topics)s" @@ -2086,11 +2597,10 @@ 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:484 +#: management/commands/send_email_alerts.py:421 #, python-format msgid "%(name)s, this is an update message header for %(num)d question" -msgid_plural "" -"%(name)s, this is an update message header for %(num)d questions" +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] "" @@ -2099,11 +2609,11 @@ msgstr[2] "" "%(name)s, acesta este un antet de mesaj actualizat pentru %(num)d de " "întrebări" -#: management/commands/send_email_alerts.py:501 +#: management/commands/send_email_alerts.py:438 msgid "new question" msgstr "întrebare nouă" -#: management/commands/send_email_alerts.py:518 +#: 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 " @@ -2113,7 +2623,7 @@ msgstr "" "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:530 +#: 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 " @@ -2123,7 +2633,7 @@ msgstr "" "„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:536 +#: 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 " @@ -2133,7 +2643,7 @@ msgstr "" "„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:542 +#: 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. " @@ -2141,7 +2651,7 @@ 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:548 +#: management/commands/send_email_alerts.py:490 #, python-format msgid "" "go to %(email_settings_link)s to change frequency of email updates or " @@ -2150,7 +2660,15 @@ 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" -#: models/__init__.py:299 +#: management/commands/send_unanswered_question_reminders.py:80 +#, fuzzy, python-format +msgid "%(question_count)d unanswered question about %(topics)s" +msgid_plural "%(question_count)d unanswered questions about %(topics)s" +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" + +#: models/__init__.py:316 msgid "" "Sorry, you cannot accept or unaccept best answers because your account is " "blocked" @@ -2158,7 +2676,7 @@ msgstr "" "Nu puteți accepta sau refuza cele mai bune răspunsuri deoarece contul " "dumneavoastră este blocat" -#: models/__init__.py:304 +#: models/__init__.py:320 msgid "" "Sorry, you cannot accept or unaccept best answers because your account is " "suspended" @@ -2166,53 +2684,55 @@ msgstr "" "Nu puteți accepta sau refuza cele mai bune răspunsuri deoarece contul " "dumneavoastră este suspendat" -#: models/__init__.py:310 +#: models/__init__.py:333 +#, fuzzy, python-format msgid "" -"Sorry, you cannot accept or unaccept your own answer to your own question" +">%(points)s points required to accept or unaccept your own answer to your " +"own question" msgstr "" "Nu se poate accepta sau revoca acceptarea pentru propriul răspuns la propria " "întrebare" -#: models/__init__.py:317 -#, python-format +#: models/__init__.py:347 +#, fuzzy, python-format msgid "" -"Sorry, only original author of the question - %(username)s - can accept the " -"best answer" +"Sorry, only original author of the question - %(username)s - can accept or " +"unaccept the best answer" msgstr "" "Numai autorul original al întrebării - %(username)s - poate accepta cel mai " "bun răspuns" -#: models/__init__.py:340 +#: models/__init__.py:375 msgid "cannot vote for own posts" msgstr "nu se pot vota mesajele proprii" -#: models/__init__.py:343 +#: models/__init__.py:378 msgid "Sorry your account appears to be blocked " msgstr "Contul dumneavoastră pare a fi blocat " -#: models/__init__.py:348 +#: models/__init__.py:383 msgid "Sorry your account appears to be suspended " msgstr "Contul dumneavoastră pare a fi suspendat " -#: models/__init__.py:358 +#: models/__init__.py:393 #, python-format msgid ">%(points)s points required to upvote" msgstr "Sunt necesare >%(points)s puncte pentru a vota pozitiv" -#: models/__init__.py:364 +#: models/__init__.py:399 #, python-format msgid ">%(points)s points required to downvote" msgstr "sunt necesare %(points)s puncte pentru a dezaprova" -#: models/__init__.py:379 +#: models/__init__.py:414 msgid "Sorry, blocked users cannot upload files" msgstr "Utilizatorii blocați nu pot încărca fișiere" -#: models/__init__.py:380 +#: models/__init__.py:415 msgid "Sorry, suspended users cannot upload files" msgstr "Utilizatorii suspendați nu pot încărca fișiere" -#: models/__init__.py:382 +#: models/__init__.py:417 #, python-format msgid "" "uploading images is limited to users with >%(min_rep)s reputation points" @@ -2220,15 +2740,15 @@ msgstr "" "încărcarea de imagini este limitată utilizatorilor cu mai mult de " "%(min_rep)s puncte de reputație" -#: models/__init__.py:401 models/__init__.py:468 models/__init__.py:2320 +#: models/__init__.py:436 models/__init__.py:503 models/__init__.py:918 msgid "blocked users cannot post" msgstr "utilizatorii blocați nu pot introduce postări" -#: models/__init__.py:402 models/__init__.py:2323 +#: models/__init__.py:437 models/__init__.py:921 msgid "suspended users cannot post" msgstr "utilizatorii suspendați nu pot introduce postări" -#: models/__init__.py:429 +#: models/__init__.py:464 #, python-format msgid "" "Sorry, comments (except the last one) are editable only within %(minutes)s " @@ -2246,19 +2766,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:441 +#: models/__init__.py:476 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:454 +#: models/__init__.py:489 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:458 +#: models/__init__.py:493 #, python-format msgid "" "Sorry, to comment any post a minimum reputation of %(min_rep)s points is " @@ -2268,7 +2788,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:486 +#: models/__init__.py:521 msgid "" "This post has been deleted and can be seen only by post owners, site " "administrators and moderators" @@ -2276,7 +2796,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:503 +#: models/__init__.py:538 msgid "" "Sorry, only moderators, site administrators and post owners can edit deleted " "posts" @@ -2284,19 +2804,18 @@ msgstr "" "Numai moderatorii, administratorii site-ului și proprietarii postării pot " "modifica postările șterse" -#: models/__init__.py:518 +#: models/__init__.py:553 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:522 -msgid "" -"Sorry, since your account is suspended you can edit only your own posts" +#: models/__init__.py:557 +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:527 +#: models/__init__.py:562 #, python-format msgid "" "Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required" @@ -2304,7 +2823,7 @@ msgstr "" "Pentru a modifica wiki-ul, este necesar un minim de %(min_rep)s puncte de " "reputație" -#: models/__init__.py:534 +#: models/__init__.py:569 #, python-format msgid "" "Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is " @@ -2313,7 +2832,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:597 +#: models/__init__.py:632 msgid "" "Sorry, cannot delete your question since it has an upvoted answer posted by " "someone else" @@ -2330,18 +2849,18 @@ msgstr[2] "" "Nu puteți șterge întrebarea deoarece beneficiază de răspunsuri votate " "pozitiv de alți utilizatori." -#: models/__init__.py:612 +#: models/__init__.py:647 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:616 +#: models/__init__.py:651 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:620 +#: models/__init__.py:655 #, python-format msgid "" "Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s " @@ -2350,17 +2869,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:640 +#: models/__init__.py:675 msgid "Sorry, since your account is blocked you cannot close questions" -msgstr "" -"Deoarece contul dumneavoastră este blocat, nu puteți închide întrebări" +msgstr "Deoarece contul dumneavoastră este blocat, nu puteți închide întrebări" -#: models/__init__.py:644 +#: models/__init__.py:679 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:648 +#: models/__init__.py:683 #, python-format msgid "" "Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is " @@ -2369,7 +2887,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:657 +#: models/__init__.py:692 #, python-format msgid "" "Sorry, to close own question a minimum reputation of %(min_rep)s is required" @@ -2377,7 +2895,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:681 +#: models/__init__.py:716 #, python-format msgid "" "Sorry, only administrators, moderators or post owners with reputation > " @@ -2387,7 +2905,7 @@ msgstr "" "o reputație de minim %(min_rep)s puncte de reputație pot redeschide " "întrebări." -#: models/__init__.py:687 +#: models/__init__.py:722 #, python-format msgid "" "Sorry, to reopen own question a minimum reputation of %(min_rep)s is required" @@ -2395,30 +2913,30 @@ 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:707 +#: models/__init__.py:742 msgid "cannot flag message as offensive twice" msgstr "nu se poate marca ofensiv de mai multe ori" -#: models/__init__.py:712 +#: models/__init__.py:747 msgid "blocked users cannot flag posts" msgstr "utilizatorii blocați nu pot marca postări" -#: models/__init__.py:714 +#: models/__init__.py:749 msgid "suspended users cannot flag posts" msgstr "utilizatorii suspendați nu pot marca postări" -#: models/__init__.py:716 +#: models/__init__.py:751 #, python-format 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" -#: models/__init__.py:735 +#: models/__init__.py:770 #, python-format msgid "%(max_flags_per_day)s exceeded" msgstr "ați depășit %(max_flags_per_day)s" -#: models/__init__.py:750 +#: models/__init__.py:785 msgid "" "Sorry, only question owners, site administrators and moderators can retag " "deleted questions" @@ -2426,19 +2944,19 @@ msgstr "" "Numai proprietarii întrebării, administratorii site-ului și moderatorii pot " "reeticheta întrebările șterse" -#: models/__init__.py:757 +#: models/__init__.py:792 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:761 +#: models/__init__.py:796 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:765 +#: models/__init__.py:800 #, python-format msgid "" "Sorry, to retag questions a minimum reputation of %(min_rep)s is required" @@ -2446,67 +2964,110 @@ 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:784 +#: models/__init__.py:819 msgid "Sorry, since your account is blocked you cannot delete comment" -msgstr "" -"Deoarece contul dumneavoastră este blocat, nu puteți șterge comentarii" +msgstr "Deoarece contul dumneavoastră este blocat, nu puteți șterge comentarii" -#: models/__init__.py:788 +#: models/__init__.py:823 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:792 +#: models/__init__.py:827 #, 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:815 +#: models/__init__.py:850 msgid "cannot revoke old vote" msgstr "voturile vechi nu pot fi revocate" -#: models/__init__.py:1354 +#: models/__init__.py:1325 utils/functions.py:70 +#, python-format +msgid "on %(date)s" +msgstr "în %(date)s" + +#: models/__init__.py:1327 +msgid "in two days" +msgstr "" + +#: models/__init__.py:1329 +msgid "tomorrow" +msgstr "" + +#: models/__init__.py:1331 +#, fuzzy, python-format +msgid "in %(hr)d hour" +msgid_plural "in %(hr)d hours" +msgstr[0] "acum %(hr)d oră" +msgstr[1] "acum %(hr)d ore" +msgstr[2] "acum %(hr)d de ore" + +#: models/__init__.py:1333 +#, fuzzy, python-format +msgid "in %(min)d min" +msgid_plural "in %(min)d mins" +msgstr[0] "acum %(min)d minut" +msgstr[1] "acum %(min)d minute" +msgstr[2] "acum %(min)d de minute" + +#: models/__init__.py:1334 +#, python-format +msgid "%(days)d day" +msgid_plural "%(days)d days" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: models/__init__.py:1336 +#, 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:1501 skins/default/templates/feedback_email.txt:9 msgid "Anonymous" msgstr "Anonim" -#: models/__init__.py:1440 views/users.py:362 +#: models/__init__.py:1597 views/users.py:365 msgid "Site Adminstrator" msgstr "Administrator" -#: models/__init__.py:1442 views/users.py:364 +#: models/__init__.py:1599 views/users.py:367 msgid "Forum Moderator" msgstr "Moderator" -#: models/__init__.py:1444 views/users.py:366 +#: models/__init__.py:1601 views/users.py:369 msgid "Suspended User" msgstr "Utilizator suspendat" -#: models/__init__.py:1446 views/users.py:368 +#: models/__init__.py:1603 views/users.py:371 msgid "Blocked User" msgstr "Utilizator blocat" -#: models/__init__.py:1448 views/users.py:370 +#: models/__init__.py:1605 views/users.py:373 msgid "Registered User" msgstr "Utilizator înregistrat" -#: models/__init__.py:1450 +#: models/__init__.py:1607 msgid "Watched User" msgstr "Utilizator urmărit" -#: models/__init__.py:1452 +#: models/__init__.py:1609 msgid "Approved User" msgstr "Utilizator aprobat" -#: models/__init__.py:1508 +#: models/__init__.py:1718 #, python-format msgid "%(username)s karma is %(reputation)s" msgstr "%(username)s are %(reputation)s puncte de reputație" -#: models/__init__.py:1518 +#: models/__init__.py:1728 #, python-format msgid "one gold badge" msgid_plural "%(count)d gold badges" @@ -2514,7 +3075,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:1525 +#: models/__init__.py:1735 #, python-format msgid "one silver badge" msgid_plural "%(count)d silver badges" @@ -2522,7 +3083,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:1532 +#: models/__init__.py:1742 #, python-format msgid "one bronze badge" msgid_plural "%(count)d bronze badges" @@ -2530,37 +3091,37 @@ msgstr[0] "o insignă de bronz" msgstr[1] "%(count)d insigne de bronz" msgstr[2] "%(count)d de insigne de bronz" -#: models/__init__.py:1543 +#: models/__init__.py:1753 #, python-format msgid "%(item1)s and %(item2)s" msgstr "%(item1)s și %(item2)s" -#: models/__init__.py:1547 +#: models/__init__.py:1757 #, python-format msgid "%(user)s has %(badges)s" msgstr "%(user)s are %(badges)s" -#: models/__init__.py:1920 models/__init__.py:1926 models/__init__.py:1931 -#: models/__init__.py:1936 +#: models/__init__.py:2164 models/__init__.py:2170 models/__init__.py:2175 +#: models/__init__.py:2180 #, python-format msgid "Re: \"%(title)s\"" msgstr "Re: \"%(title)s\"" -#: models/__init__.py:1941 models/__init__.py:1946 +#: models/__init__.py:2185 models/__init__.py:2190 #, python-format msgid "Question: \"%(title)s\"" msgstr "Întrebare: „%(title)s”" -#: models/__init__.py:2116 +#: models/__init__.py:2371 #, python-format msgid "" "Congratulations, you have received a badge '%(badge_name)s'. Check out your profile." msgstr "" -"Felicitări, ați obținut o insignă „%(badge_name)s”. Verificați profilul propriu." +"Felicitări, ați obținut o insignă „%(badge_name)s”. Verificați profilul propriu." -#: models/__init__.py:2295 views/commands.py:396 +#: models/__init__.py:2550 views/commands.py:396 msgid "Your tag subscription was saved, thanks!" msgstr "Abonarea la etichetă a fost salvată!" @@ -2843,7 +3404,7 @@ msgstr "Expert" msgid "Very active in one tag" msgstr "Foarte activ pe o anumită etichetă" -#: models/meta.py:111 +#: models/meta.py:112 msgid "" "Sorry, the comment you are looking for is no longer accessible, because the " "parent question has been removed" @@ -2851,7 +3412,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:118 +#: models/meta.py:119 msgid "" "Sorry, the comment you are looking for is no longer accessible, because the " "parent answer has been removed" @@ -2859,32 +3420,41 @@ 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:387 +#: models/question.py:72 +#, python-format +msgid "\" and \"%s\"" +msgstr "\" și \"%s\"" + +#: models/question.py:75 +msgid "\" and more" +msgstr "\" și în plus" + +#: models/question.py:452 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/question.py:815 +#: models/question.py:908 #, python-format msgid "%(author)s modified the question" msgstr "%(author)s a modificat întrebarea" -#: models/question.py:819 +#: models/question.py:912 #, 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:824 +#: models/question.py:917 #, python-format msgid "%(people)s commented the question" msgstr "%(people)s au comentat întrebările" -#: models/question.py:829 +#: models/question.py:922 #, python-format msgid "%(people)s commented answers" msgstr "%(people)s au comentat răspunsurile" -#: models/question.py:831 +#: models/question.py:924 #, python-format msgid "%(people)s commented an answer" msgstr "%(people)s au comentat un răspuns" @@ -2912,47 +3482,47 @@ msgstr "" "%(points)s puncte au fost retrase pentru contribuția utilizatorului " "%(username)s la întrebarea %(question_title)s" -#: models/tag.py:105 +#: models/tag.py:151 msgid "interesting" msgstr "interesant" -#: models/tag.py:105 +#: models/tag.py:151 msgid "ignored" msgstr "ignorat" -#: models/user.py:261 +#: models/user.py:264 msgid "Entire forum" msgstr "Toate întrebările" -#: models/user.py:262 +#: models/user.py:265 msgid "Questions that I asked" msgstr "Întrebările pe care le-am pus" -#: models/user.py:263 +#: models/user.py:266 msgid "Questions that I answered" msgstr "Întrebările la care am răspuns" -#: models/user.py:264 +#: models/user.py:267 msgid "Individually selected questions" msgstr "Întrebări selectate individual" -#: models/user.py:265 +#: models/user.py:268 msgid "Mentions and comment responses" msgstr "Mențiuni și răspunsuri la comentarii" -#: models/user.py:268 +#: models/user.py:271 msgid "Instantly" msgstr "Imediat" -#: models/user.py:269 +#: models/user.py:272 msgid "Daily" msgstr "Zilnic" -#: models/user.py:270 +#: models/user.py:273 msgid "Weekly" msgstr "Săptămânal" -#: models/user.py:271 +#: models/user.py:274 msgid "No email" msgstr "Fără email" @@ -2986,7 +3556,7 @@ msgstr "" "suficiente puncte, vezi" #: skins/default/templates/404.jinja.html:19 -#: skins/default/templates/blocks/footer.html:6 +#: skins/default/templates/blocks/footer.html:5 #: skins/default/templates/blocks/header_meta_links.html:13 #: skins/default/templates/blocks/question_edit_tips.html:15 msgid "faq" @@ -3054,26 +3624,25 @@ msgstr "Modifică răspuns" msgid "back" msgstr "înapoi" -#: skins/default/templates/answer_edit.html:15 -#: skins/default/templates/question_edit.html:11 +#: skins/default/templates/answer_edit.html:14 msgid "revision" msgstr "revizie" -#: skins/default/templates/answer_edit.html:18 +#: skins/default/templates/answer_edit.html:17 #: skins/default/templates/question_edit.html:16 msgid "select revision" msgstr "alege revizia" -#: skins/default/templates/answer_edit.html:22 -#: skins/default/templates/question_edit.html:20 +#: skins/default/templates/answer_edit.html:21 +#: skins/default/templates/question_edit.html:27 msgid "Save edit" msgstr "Salvează modificările" -#: skins/default/templates/answer_edit.html:23 +#: skins/default/templates/answer_edit.html:22 #: skins/default/templates/close.html:16 #: skins/default/templates/feedback.html:42 -#: skins/default/templates/question_edit.html:21 -#: skins/default/templates/question_retag.html:23 +#: skins/default/templates/question_edit.html:28 +#: skins/default/templates/question_retag.html:22 #: skins/default/templates/reopen.html:27 #: skins/default/templates/subscribe_for_tags.html:16 #: skins/default/templates/authopenid/changeemail.html:38 @@ -3081,31 +3650,31 @@ msgstr "Salvează modificările" msgid "Cancel" msgstr "Anulează" -#: skins/default/templates/answer_edit.html:62 -#: skins/default/templates/answer_edit.html:65 -#: skins/default/templates/ask.html:43 skins/default/templates/ask.html:46 -#: skins/default/templates/macros.html:592 -#: skins/default/templates/question.html:477 -#: skins/default/templates/question.html:480 -#: skins/default/templates/question_edit.html:62 -#: skins/default/templates/question_edit.html:65 +#: skins/default/templates/answer_edit.html:60 +#: skins/default/templates/answer_edit.html:63 +#: skins/default/templates/ask.html:46 skins/default/templates/ask.html:49 +#: skins/default/templates/macros.html:698 +#: skins/default/templates/question.html:562 +#: skins/default/templates/question.html:565 +#: skins/default/templates/question_edit.html:72 +#: skins/default/templates/question_edit.html:75 msgid "hide preview" msgstr "ascunde previzualizarea" -#: skins/default/templates/answer_edit.html:65 -#: skins/default/templates/ask.html:46 -#: skins/default/templates/question.html:480 -#: skins/default/templates/question_edit.html:65 +#: skins/default/templates/answer_edit.html:63 +#: skins/default/templates/ask.html:49 +#: skins/default/templates/question.html:565 +#: skins/default/templates/question_edit.html:75 msgid "show preview" msgstr "arată previzualizarea" -#: skins/default/templates/ask.html:3 +#: skins/default/templates/ask.html:4 msgid "Ask a question" msgstr "Puneți o întrebare" #: skins/default/templates/badge.html:4 skins/default/templates/badge.html:8 #: skins/default/templates/user_profile/user_recent.html:16 -#: skins/default/templates/user_profile/user_stats.html:106 +#: skins/default/templates/user_profile/user_stats.html:110 #, python-format msgid "%(name)s" msgstr "%(name)s" @@ -3121,7 +3690,7 @@ msgstr "Insigna „%(name)s”" #: skins/default/templates/badge.html:8 #: skins/default/templates/user_profile/user_recent.html:16 -#: skins/default/templates/user_profile/user_stats.html:106 +#: skins/default/templates/user_profile/user_stats.html:108 #, python-format msgid "%(description)s" msgstr "%(description)s" @@ -3207,19 +3776,21 @@ msgstr "Motive" msgid "OK to close" msgstr "Ok pentru închidere" -#: skins/default/templates/faq.html:3 skins/default/templates/faq.html.py:5 +#: skins/default/templates/faq.html:3 +#: skins/default/templates/faq_static.html:3 +#: skins/default/templates/faq_static.html:5 msgid "FAQ" msgstr "Întrebări frecvente" -#: skins/default/templates/faq.html:5 +#: skins/default/templates/faq_static.html:5 msgid "Frequently Asked Questions " msgstr "Întrebări frecvente " -#: skins/default/templates/faq.html:6 +#: skins/default/templates/faq_static.html:6 msgid "What kinds of questions can I ask here?" msgstr "Ce fel de întrebări pot întreba aici?" -#: skins/default/templates/faq.html:7 +#: skins/default/templates/faq_static.html:7 msgid "" "Most importanly - questions should be relevant to this " "community." @@ -3227,7 +3798,7 @@ msgstr "" "Cel mai important - întrebările trebuie să fie relevante " "pentru această comunitate." -#: skins/default/templates/faq.html:8 +#: 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." @@ -3235,11 +3806,11 @@ 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.html:10 +#: skins/default/templates/faq_static.html:10 msgid "What questions should I avoid asking?" msgstr "Ce întrebări ar trebui să evit a pune?" -#: skins/default/templates/faq.html:11 +#: skins/default/templates/faq_static.html:11 msgid "" "Please avoid asking questions that are not relevant to this community, too " "subjective and argumentative." @@ -3247,11 +3818,11 @@ msgstr "" "Vă rugăm să evitați a pune întrebări care nu sunt relevante pentru această " "comunitate, prea subiective și argumentative." -#: skins/default/templates/faq.html:13 +#: skins/default/templates/faq_static.html:13 msgid "What should I avoid in my answers?" msgstr "Ce ar trebui să evit în răspunsurile mele?" -#: skins/default/templates/faq.html:14 +#: 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 " @@ -3261,19 +3832,19 @@ msgstr "" "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.html:15 +#: skins/default/templates/faq_static.html:15 msgid "Who moderates this community?" msgstr "Cine moderează această comunitate?" -#: skins/default/templates/faq.html:16 +#: skins/default/templates/faq_static.html:16 msgid "The short answer is: you." msgstr "Răspunsul scurt este: dumneavoastră." -#: skins/default/templates/faq.html:17 +#: skins/default/templates/faq_static.html:17 msgid "This website is moderated by the users." msgstr "Acest site web este moderat de utilizatori." -#: skins/default/templates/faq.html:18 +#: skins/default/templates/faq_static.html:18 msgid "" "The reputation system allows users earn the authorization to perform a " "variety of moderation tasks." @@ -3281,89 +3852,93 @@ 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.html:20 +#: skins/default/templates/faq_static.html:20 msgid "How does reputation system work?" msgstr "Cum funcționează sistemul de reputație?" -#: skins/default/templates/faq.html:21 +#: skins/default/templates/faq_static.html:21 msgid "Rep system summary" msgstr "Sumar al sistemului de reputație" -#: skins/default/templates/faq.html:22 +#: 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 " -"%(REP_GAIN_FOR_RECEIVING_UPVOTE)s points, each vote against " -"will subtract %(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s points. " -"There is a limit of %(MAX_REP_GAIN_PER_USER_PER_DAY)s " -"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." +"it will be downvoted. Each vote in favor will generate " +"%(REP_GAIN_FOR_RECEIVING_UPVOTE)s points, each vote against will " +"subtract %(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s points. There " +"is a limit of %(MAX_REP_GAIN_PER_USER_PER_DAY)s 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 "" "De exemplu, dacă puneți o întrebare interesantă sau dacă oferiți un răspuns " "util, veți fi apreciat cu voturi pozitive. Pe de altă parte, dacă răspunsul " "este greșit, va fi votat negativ. Fiecare vot pozitiv va genera puncte " "%(REP_GAIN_FOR_RECEIVING_UPVOTE)s points, fiecare vot " -"negativ va șterge puncte " -"%(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s. Există o limită a " -"punctelor %(MAX_REP_GAIN_PER_USER_PER_DAY)s pe care le " -"puteți acumula pentru o întrebare sau un răspuns în decursul unei zile. " -"Tabelul de mai jos explică necesarul de puncte de reputație necesare pentru " -"fiecare tip de sarcină de moderare." - -#: skins/default/templates/faq.html:32 +"negativ va șterge puncte %(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s. Există o limită a punctelor " +"%(MAX_REP_GAIN_PER_USER_PER_DAY)s pe care le puteți acumula pentru " +"o întrebare sau un răspuns în decursul unei zile. Tabelul de mai jos explică " +"necesarul de puncte de reputație necesare pentru fiecare tip de sarcină de " +"moderare." + +#: skins/default/templates/faq_static.html:32 #: skins/default/templates/user_profile/user_votes.html:13 msgid "upvote" msgstr "vot pozitiv" -#: skins/default/templates/faq.html:37 +#: skins/default/templates/faq_static.html:37 msgid "use tags" msgstr "utilizează etichete" -#: skins/default/templates/faq.html:42 +#: skins/default/templates/faq_static.html:42 msgid "add comments" msgstr "adaugă comentarii" -#: skins/default/templates/faq.html:46 +#: skins/default/templates/faq_static.html:46 #: skins/default/templates/user_profile/user_votes.html:15 msgid "downvote" msgstr "vot negativ" -#: skins/default/templates/faq.html:49 +#: skins/default/templates/faq_static.html:49 +#, fuzzy +msgid " accept own answer to own questions" +msgstr "comentarii și răspunsuri pentru întrebările altora" + +#: skins/default/templates/faq_static.html:53 msgid "open and close own questions" msgstr "deschide și închide propriile întrebări" -#: skins/default/templates/faq.html:53 +#: skins/default/templates/faq_static.html:57 msgid "retag other's questions" msgstr "reetichetează întrebările altora" -#: skins/default/templates/faq.html:58 +#: skins/default/templates/faq_static.html:62 msgid "edit community wiki questions" msgstr "modifică întrebările wiki-ului comunității" -#: skins/default/templates/faq.html:63 +#: skins/default/templates/faq_static.html:67 msgid "\"edit any answer" msgstr "\"modifică orice răspuns" -#: skins/default/templates/faq.html:67 +#: skins/default/templates/faq_static.html:71 msgid "\"delete any comment" msgstr "\"șterge orice comentariu" -#: skins/default/templates/faq.html:70 +#: skins/default/templates/faq_static.html:74 msgid "what is gravatar" msgstr "ce este gravatarul" -#: skins/default/templates/faq.html:71 +#: skins/default/templates/faq_static.html:75 msgid "gravatar faq info" msgstr "informații utile despre gravatar" -#: skins/default/templates/faq.html:72 +#: skins/default/templates/faq_static.html:76 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.html:73 +#: skins/default/templates/faq_static.html:77 msgid "" "No, you don't have to. You can login through any service that supports " "OpenID, e.g. Google, Yahoo, AOL, etc.\"" @@ -3371,19 +3946,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.html:74 +#: skins/default/templates/faq_static.html:78 msgid "\"Login now!\"" msgstr "\"Autentifică acum!\"" -#: skins/default/templates/faq.html:76 +#: skins/default/templates/faq_static.html:80 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.html:77 +#: skins/default/templates/faq_static.html:81 msgid "Goal of this site is..." msgstr "Scopul acestui site este..." -#: skins/default/templates/faq.html:77 +#: skins/default/templates/faq_static.html:81 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 " @@ -3393,16 +3968,16 @@ msgstr "" "către utilizatori cu experineță în acest fel îmbunătățindu-se calitatea " "bazei de cunoștințe." -#: skins/default/templates/faq.html:78 +#: skins/default/templates/faq_static.html:82 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.html:80 +#: skins/default/templates/faq_static.html:84 msgid "Still have questions?" msgstr "Aveți și alte întrebări?" -#: skins/default/templates/faq.html:81 +#: skins/default/templates/faq_static.html:85 #, python-format msgid "" "Please ask your question at %(ask_question_url)s, help make our community " @@ -3460,32 +4035,15 @@ msgstr "(acest câmp este obligatoriu)" msgid "Send Feedback" msgstr "Trimite sugestia" -#: skins/default/templates/feedback_email.txt:3 -#, python-format +#: skins/default/templates/feedback_email.txt:2 +#, fuzzy, python-format msgid "" "\n" -"Hello, this is a %(site_title)s forum feedback message\n" +"Hello, this is a %(site_title)s forum feedback message.\n" msgstr "" "\n" "Salut, acesta este un mesaj de sugestii pentru %(site_title)s\n" -#: skins/default/templates/feedback_email.txt:9 -msgid "Sender is" -msgstr "Expenditorul este" - -#: skins/default/templates/feedback_email.txt:11 -#: skins/default/templates/feedback_email.txt:14 -msgid "email" -msgstr "email" - -#: skins/default/templates/feedback_email.txt:13 -msgid "anonymous" -msgstr "anonim" - -#: skins/default/templates/feedback_email.txt:19 -msgid "Message body:" -msgstr "Corp mesaj:" - #: skins/default/templates/import_data.html:2 #: skins/default/templates/import_data.html:4 msgid "Import StackExchange data" @@ -3519,14 +4077,14 @@ msgstr "Import date" #: 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: python " -"manage.py load_stackexchange path/to/your-data.zip" +" please try importing your data via command line: python manage." +"py load_stackexchange path/to/your-data.zip" msgstr "" "În cazul în care întâmpinați dificultăți în utilizarea acestei unelte pentru " "import,\n" " încercați să importați datele utilizând linia de comandă : " -"python manage.py load_stackexchange calea/către/datele-" -"dumneavoastră.zip" +"python manage.py load_stackexchange calea/către/datele-dumneavoastră." +"zip" #: skins/default/templates/instant_notification.html:1 #, python-format @@ -3537,8 +4095,8 @@ msgstr "

      %(receiving_user_name)s,

      " #, python-format msgid "" "\n" -"

      %(update_author_name)s left a new " -"comment:

      \n" +"

      %(update_author_name)s left a new comment:\n" msgstr "" "\n" "

      %(update_author_name)s a lăsat un comentariu " @@ -3548,8 +4106,8 @@ msgstr "" #, python-format msgid "" "\n" -"

      %(update_author_name)s left a new " -"comment

      \n" +"

      %(update_author_name)s left a new comment\n" msgstr "" "\n" "

      %(update_author_name)s a lăsat un comentariu " @@ -3604,8 +4162,8 @@ msgstr "" msgid "" "\n" "

      \n" -"

      Please note - you can easily change\n" +"

      Please note - you can easily change\n" "how often you receive these notifications or unsubscribe. Thank you for your " "interest in our forum!

      \n" msgstr "" @@ -3620,72 +4178,76 @@ msgstr "" msgid "

      Sincerely,
      Forum Administrator

      " msgstr "

      Cu stimă,
      Administrator forum

      " -#: skins/default/templates/logout.html:3 skins/default/templates/logout.html:5 -msgid "Logout" -msgstr "Ieșire" +#: skins/default/templates/macros.html:25 +#, fuzzy, python-format +msgid "Share this question on %(site)s" +msgstr "Partajează această întrebare pe twitter" -#: skins/default/templates/logout.html:6 -msgid "" -"As a registered user you can login with your OpenID, log out of the site or " -"permanently remove your account." +#: skins/default/templates/macros.html:36 +#, python-format +msgid "follow %(alias)s" +msgstr "" + +#: skins/default/templates/macros.html:39 +#, python-format +msgid "unfollow %(alias)s" msgstr "" -"Ca utilizator înregistrat vă puteți autentifica cu OpenID-ul dumneavoastră, " -"vă puteți deautentifica sau vă puteți șterge contul definitiv." -#: skins/default/templates/logout.html:7 -msgid "Logout now" -msgstr "Ieșiți acum" +#: skins/default/templates/macros.html:40 +#, python-format +msgid "following %(alias)s" +msgstr "" -#: skins/default/templates/macros.html:26 +#: skins/default/templates/macros.html:63 msgid "karma:" msgstr "reputație:" -#: skins/default/templates/macros.html:30 +#: skins/default/templates/macros.html:67 msgid "badges:" msgstr "insigne:" -#: skins/default/templates/macros.html:82 -#: skins/default/templates/macros.html:83 +#: skins/default/templates/macros.html:143 +#: skins/default/templates/macros.html:144 msgid "previous" msgstr "precedentă" -#: skins/default/templates/macros.html:94 +#: skins/default/templates/macros.html:155 msgid "current page" msgstr "pagiona curentă" -#: skins/default/templates/macros.html:96 -#: skins/default/templates/macros.html:103 +#: skins/default/templates/macros.html:157 +#: skins/default/templates/macros.html:164 #, python-format msgid "page number %(num)s" msgstr "număr pagină %(num)s" -#: skins/default/templates/macros.html:107 +#: skins/default/templates/macros.html:168 msgid "next page" msgstr "pagina următoare" -#: skins/default/templates/macros.html:118 +#: skins/default/templates/macros.html:179 msgid "posts per page" msgstr "postări pe pagină" -#: skins/default/templates/macros.html:150 templatetags/extra_tags.py:43 +#: skins/default/templates/macros.html:211 templatetags/extra_tags.py:43 #, python-format msgid "%(username)s gravatar image" msgstr "imagine gravatat %(username)s" -#: skins/default/templates/macros.html:159 +#: skins/default/templates/macros.html:220 #, python-format msgid "%(username)s's website is %(url)s" msgstr "Pagina web pentru %(username)s este %(url)s" -#: skins/default/templates/macros.html:171 +#: skins/default/templates/macros.html:232 msgid "anonymous user" msgstr "utilizator anonim" -#: skins/default/templates/macros.html:199 +#: skins/default/templates/macros.html:260 msgid "this post is marked as community wiki" msgstr "acest text este marca drep un wiki al comunității" -#: skins/default/templates/macros.html:202 +#: skins/default/templates/macros.html:263 #, python-format msgid "" "This post is a wiki.\n" @@ -3695,66 +4257,66 @@ 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:208 +#: skins/default/templates/macros.html:269 msgid "asked" msgstr "întrebat" -#: skins/default/templates/macros.html:210 +#: skins/default/templates/macros.html:271 msgid "answered" msgstr "răspuns" -#: skins/default/templates/macros.html:212 +#: skins/default/templates/macros.html:273 msgid "posted" msgstr "adăugat" -#: skins/default/templates/macros.html:242 +#: skins/default/templates/macros.html:303 msgid "updated" msgstr "actualizat" -#: skins/default/templates/macros.html:309 +#: skins/default/templates/macros.html:379 #, python-format msgid "see questions tagged '%(tag)s'" msgstr "afișează întrebările etichetate „%(tag)s”" -#: skins/default/templates/macros.html:352 views/readers.py:231 -msgid "vote" -msgid_plural "votes" -msgstr[0] "vot" -msgstr[1] "voturi" -msgstr[2] "de voturi" +#: skins/default/templates/macros.html:424 views/readers.py:239 +msgid "view" +msgid_plural "views" +msgstr[0] "afișare" +msgstr[1] "afișări" +msgstr[2] "de afișări" -#: skins/default/templates/macros.html:369 views/readers.py:234 +#: skins/default/templates/macros.html:441 views/readers.py:236 msgid "answer" msgid_plural "answers" msgstr[0] "răspuns" msgstr[1] "răspunsuri" msgstr[2] "de răspunsuri" -#: skins/default/templates/macros.html:380 views/readers.py:237 -msgid "view" -msgid_plural "views" -msgstr[0] "afișare" -msgstr[1] "afișări" -msgstr[2] "de afișări" +#: skins/default/templates/macros.html:452 views/readers.py:233 +msgid "vote" +msgid_plural "votes" +msgstr[0] "vot" +msgstr[1] "voturi" +msgstr[2] "de voturi" -#: skins/default/templates/macros.html:409 -#: skins/default/templates/question.html:93 -#: skins/default/templates/question.html:249 +#: skins/default/templates/macros.html:491 +msgid "delete this comment" +msgstr "șterge acest comentariu" + +#: skins/default/templates/macros.html:502 +#: skins/default/templates/question.html:79 +#: skins/default/templates/question.html:235 #: skins/default/templates/revisions.html:37 msgid "edit" msgstr "modifică" -#: skins/default/templates/macros.html:413 -msgid "delete this comment" -msgstr "șterge acest comentariu" - -#: skins/default/templates/macros.html:431 -#: skins/default/templates/macros.html:439 -#: skins/default/templates/question.html:439 +#: skins/default/templates/macros.html:520 +#: skins/default/templates/macros.html:528 +#: skins/default/templates/question.html:511 msgid "add comment" msgstr "adaugă comentariu" -#: skins/default/templates/macros.html:432 +#: skins/default/templates/macros.html:521 #, python-format msgid "see %(counter)s more" msgid_plural "see %(counter)s more" @@ -3762,7 +4324,7 @@ msgstr[0] "afișează încă %(counter)s" msgstr[1] "afișează încă %(counter)s" msgstr[2] "afișează încă %(counter)s" -#: skins/default/templates/macros.html:434 +#: skins/default/templates/macros.html:523 #, python-format msgid "see %(counter)s more comment" msgid_plural "" @@ -3772,20 +4334,25 @@ msgstr[0] "afișează încă %(counter)s comentariu" msgstr[1] "afișează încă %(counter)s comentarii" msgstr[2] "afișează încă %(counter)s de comentarii" -#: skins/default/templates/macros.html:569 +#: skins/default/templates/macros.html:661 +#, fuzzy +msgid "one of these is required" +msgstr "acest câmp este obligatoriu" + +#: skins/default/templates/macros.html:673 msgid "(required)" msgstr "(obligatoriu)" -#: skins/default/templates/macros.html:590 +#: skins/default/templates/macros.html:696 msgid "Toggle the real time Markdown editor preview" msgstr "Comută previzualizare în timp real pentru textul Markdown" -#: skins/default/templates/macros.html:602 +#: skins/default/templates/macros.html:708 #, python-format msgid "responses for %(username)s" msgstr "răspunsuri pentru %(username)s" -#: skins/default/templates/macros.html:605 +#: skins/default/templates/macros.html:711 #, python-format msgid "you have a new response" msgid_plural "you have %(response_count)s new responses" @@ -3793,24 +4360,24 @@ 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:608 +#: skins/default/templates/macros.html:714 msgid "no new responses yet" msgstr "încă nici un răspuns nou" -#: skins/default/templates/macros.html:623 -#: skins/default/templates/macros.html:624 +#: skins/default/templates/macros.html:729 +#: skins/default/templates/macros.html:730 #, 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:626 -#: skins/default/templates/macros.html:627 +#: skins/default/templates/macros.html:732 +#: skins/default/templates/macros.html:733 #, python-format msgid "%(new)s new flagged posts" msgstr "%(new)s postări noi marcate" -#: skins/default/templates/macros.html:632 -#: skins/default/templates/macros.html:633 +#: skins/default/templates/macros.html:738 +#: skins/default/templates/macros.html:739 #, python-format msgid "%(seen)s flagged posts" msgstr "%(seen)s (de) postări marcate" @@ -3824,85 +4391,63 @@ msgstr "Întrebări" msgid "Privacy policy" msgstr "Politica de confidențialitate" +#: skins/default/templates/question.html:26 #: skins/default/templates/question.html:27 -#: skins/default/templates/question.html:28 -#: skins/default/templates/question.html:43 -#: skins/default/templates/question.html:45 +#: skins/default/templates/question.html:42 +#: skins/default/templates/question.html:44 msgid "i like this post (click again to cancel)" msgstr "îmi place această postare (efectuați clic din nou pentru a anula)" -#: skins/default/templates/question.html:30 -#: skins/default/templates/question.html:47 -#: skins/default/templates/question.html:200 +#: skins/default/templates/question.html:29 +#: skins/default/templates/question.html:46 +#: skins/default/templates/question.html:186 msgid "current number of votes" msgstr "număr actual de voturi" +#: skins/default/templates/question.html:38 #: skins/default/templates/question.html:39 -#: skins/default/templates/question.html:40 +#: skins/default/templates/question.html:51 #: skins/default/templates/question.html:52 -#: skins/default/templates/question.html:53 msgid "i dont like this post (click again to cancel)" msgstr "nu îmi place această postare (efectuați clic din nou pentru a anula)" -#: skins/default/templates/question.html:57 -#: skins/default/templates/question.html:58 -msgid "mark this question as favorite (click again to cancel)" -msgstr "" -"marchează această întrebare ca favorită (efectuați clic din nou pentru a " -"anula)" - -#: skins/default/templates/question.html:64 -#: skins/default/templates/question.html:65 -msgid "remove favorite mark from this question (click again to restore mark)" -msgstr "" -"șterge această întrebare din grupul favoritelor (efectuați clic din nou " -"pentru a anula)" - -#: skins/default/templates/question.html:71 -msgid "Share this question on twitter" -msgstr "Partajează această întrebare pe twitter" - -#: skins/default/templates/question.html:72 -msgid "Share this question on facebook" -msgstr "Partajează această întrebare pe facebook" - -#: skins/default/templates/question.html:96 +#: skins/default/templates/question.html:82 msgid "retag" msgstr "reetichetează" -#: skins/default/templates/question.html:103 +#: skins/default/templates/question.html:89 msgid "reopen" msgstr "redeschide" -#: skins/default/templates/question.html:107 +#: skins/default/templates/question.html:93 msgid "close" msgstr "închide" -#: skins/default/templates/question.html:112 -#: skins/default/templates/question.html:253 +#: skins/default/templates/question.html:98 +#: skins/default/templates/question.html:239 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/default/templates/question.html:113 -#: skins/default/templates/question.html:254 +#: skins/default/templates/question.html:99 +#: skins/default/templates/question.html:240 msgid "flag offensive" msgstr "marchează ofensiv" -#: skins/default/templates/question.html:120 -#: skins/default/templates/question.html:264 +#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:250 msgid "undelete" msgstr "recuperează" -#: skins/default/templates/question.html:120 -#: skins/default/templates/question.html:264 -#: skins/default/templates/authopenid/signin.html:149 +#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:250 +#: skins/default/templates/authopenid/signin.html:166 msgid "delete" msgstr "șterge" -#: skins/default/templates/question.html:157 +#: skins/default/templates/question.html:143 #, python-format msgid "" "The question has been closed for the following reason \"%(close_reason)s\" by" @@ -3910,21 +4455,21 @@ msgstr "" "Această întrebare a fost închisă din următoarele motive \"%(close_reason)s\" " "de către" -#: skins/default/templates/question.html:159 +#: skins/default/templates/question.html:145 #, python-format msgid "close date %(closed_at)s" msgstr "data închiderii %(closed_at)s" -#: skins/default/templates/question.html:165 -#, python-format +#: skins/default/templates/question.html:151 +#, 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 răspuns:\n" @@ -3938,74 +4483,95 @@ msgstr[2] "" " %(counter)s de răspunsuri:\n" " " -#: skins/default/templates/question.html:173 +#: skins/default/templates/question.html:159 msgid "oldest answers will be shown first" msgstr "răspunsurile mai vechi vor fi afișate întâi" -#: skins/default/templates/question.html:174 +#: skins/default/templates/question.html:160 msgid "oldest answers" msgstr "cele mai vechi întrebări" -#: skins/default/templates/question.html:176 +#: skins/default/templates/question.html:162 msgid "newest answers will be shown first" msgstr "răspunsurile mai noi vor fi afișate întâi" -#: skins/default/templates/question.html:177 +#: skins/default/templates/question.html:163 msgid "newest answers" msgstr "cele mai noi răspunsuri" -#: skins/default/templates/question.html:179 +#: skins/default/templates/question.html:165 msgid "most voted answers will be shown first" msgstr "cele mai votate răspunsuri vor fi afișate întâi" -#: skins/default/templates/question.html:180 +#: skins/default/templates/question.html:166 msgid "popular answers" msgstr "răspunsuri populare" -#: skins/default/templates/question.html:198 -#: skins/default/templates/question.html:199 +#: skins/default/templates/question.html:184 +#: skins/default/templates/question.html:185 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/question.html:209 -#: skins/default/templates/question.html:210 +#: skins/default/templates/question.html:195 +#: skins/default/templates/question.html:196 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/question.html:218 -#: skins/default/templates/question.html:219 +#: skins/default/templates/question.html:204 +#: skins/default/templates/question.html:205 msgid "mark this answer as favorite (click again to undo)" msgstr "" "marchează acest răspuns ca favorit (efectuați clic din nou pentru a anula)" -#: skins/default/templates/question.html:228 -#: skins/default/templates/question.html:229 +#: skins/default/templates/question.html:214 +#: skins/default/templates/question.html:215 #, 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/default/templates/question.html:244 +#: skins/default/templates/question.html:230 msgid "answer permanent link" msgstr "legătură permanentă întrebare" -#: skins/default/templates/question.html:245 +#: skins/default/templates/question.html:231 msgid "permanent link" msgstr "legătură permanentă" -#: skins/default/templates/question.html:314 -#: skins/default/templates/question.html:316 +#: skins/default/templates/question.html:256 +#, fuzzy +msgid "swap with question" +msgstr "Răspunde întrebării" + +#: skins/default/templates/question.html:297 +#, python-format +msgid "" +"Know someone who can answer? Share a link " +"to this question via" +msgstr "" + +#: skins/default/templates/question.html:303 +#, fuzzy +msgid " or" +msgstr " sau " + +#: skins/default/templates/question.html:305 +msgid "email" +msgstr "email" + +#: skins/default/templates/question.html:320 +#: skins/default/templates/question.html:322 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.html:318 +#: skins/default/templates/question.html:324 msgid "Notify me weekly 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.html:320 +#: skins/default/templates/question.html:326 msgid "Notify me immediately when there are any new answers" msgstr "Notifică-mă imediat ce apar răspunsuri noi" -#: skins/default/templates/question.html:323 +#: skins/default/templates/question.html:329 #, python-format msgid "" "You can always adjust frequency of email updates from your %(profile_url)s" @@ -4013,64 +4579,130 @@ msgstr "" "Puteți oricând să modificați frecvența notificărilor mergând la pagina " "%(profile_url)s" -#: skins/default/templates/question.html:328 +#: skins/default/templates/question.html:334 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.html:338 +#: skins/default/templates/question.html:344 +#, fuzzy +msgid "Login/Signup to Answer" +msgstr "Autentifică-te / înregistrează-te pentru a adăuga răspunsul" + +#: skins/default/templates/question.html:352 msgid "Your answer" msgstr "Răspunsul tău" -#: skins/default/templates/question.html:340 +#: skins/default/templates/question.html:354 msgid "Be the first one to answer this question!" msgstr "Fi primul care răspunde acestei întrebări!" -#: skins/default/templates/question.html:346 +#: skins/default/templates/question.html:360 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.html:350 +#: skins/default/templates/question.html:364 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.html:352 +#: skins/default/templates/question.html:366 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.html:359 +#: skins/default/templates/question.html:373 msgid "Login/Signup to Post Your Answer" msgstr "Autentifică-te / înregistrează-te pentru a adăuga răspunsul" -#: skins/default/templates/question.html:362 +#: skins/default/templates/question.html:376 +#: skins/default/templates/question.html:389 msgid "Answer Your Own Question" msgstr "Răspunde propriei întrebări" -#: skins/default/templates/question.html:364 +#: skins/default/templates/question.html:378 msgid "Answer the question" msgstr "Răspunde întrebării" -#: skins/default/templates/question.html:380 +#: skins/default/templates/question.html:397 +#, fuzzy +msgid "Question tools" +msgstr "Etichete întrebare" + +#: skins/default/templates/question.html:400 +#, fuzzy +msgid "click to unfollow this question" +msgstr "clic pentru a vedea cele mai vechi întrebări" + +#: skins/default/templates/question.html:401 +msgid "Following" +msgstr "" + +#: skins/default/templates/question.html:402 +msgid "Unfollow" +msgstr "" + +#: skins/default/templates/question.html:406 +#, fuzzy +msgid "click to follow this question" +msgstr "clic pentru a vedea cele mai vechi întrebări" + +#: skins/default/templates/question.html:407 +msgid "Follow" +msgstr "" + +#: skins/default/templates/question.html:414 +#, python-format +msgid "%(count)s follower" +msgid_plural "%(count)s followers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: skins/default/templates/question.html:420 +#, fuzzy +msgid "email the updates" +msgstr "actualizările email au fost anulate" + +#: skins/default/templates/question.html:423 +msgid "" +"Here (once you log in) you will be able to sign up for the " +"periodic email updates about this question." +msgstr "" + +#: skins/default/templates/question.html:428 +#, fuzzy +msgid "subscribe to this question rss feed" +msgstr "abonarea la fluxul de întrebări" + +#: skins/default/templates/question.html:429 +#, fuzzy +msgid "subsribe to rss feed" +msgstr "abonarea la fluxul de întrebări" + +#: skins/default/templates/question.html:438 msgid "Question tags" msgstr "Etichete întrebare" -#: skins/default/templates/question.html:397 +#: skins/default/templates/question.html:460 +msgid "Stats:" +msgstr "" + +#: skins/default/templates/question.html:462 msgid "question asked" msgstr "întrebare cu răspuns" -#: skins/default/templates/question.html:400 +#: skins/default/templates/question.html:465 msgid "question was seen" msgstr "întrebarea a fost văzută de" -#: skins/default/templates/question.html:400 +#: skins/default/templates/question.html:465 msgid "times" msgstr "ori" -#: skins/default/templates/question.html:403 +#: skins/default/templates/question.html:468 msgid "last updated" msgstr "ultima actualizare" -#: skins/default/templates/question.html:410 +#: skins/default/templates/question.html:477 msgid "Related questions" msgstr "Întrebări similare" @@ -4084,25 +4716,25 @@ msgstr "Modifică întrebarea" msgid "Change tags" msgstr "Schimbă etichetele" -#: skins/default/templates/question_retag.html:22 +#: skins/default/templates/question_retag.html:21 msgid "Retag" msgstr "Reetichetează" -#: skins/default/templates/question_retag.html:30 +#: skins/default/templates/question_retag.html:28 msgid "Why use and modify tags?" msgstr "De ce să folosiți și să modificați etichetele?" -#: skins/default/templates/question_retag.html:32 +#: skins/default/templates/question_retag.html:30 msgid "Tags help to keep the content better organized and searchable" msgstr "Etichetele ajută la organizarea și căutarea conținutului" -#: skins/default/templates/question_retag.html:34 +#: skins/default/templates/question_retag.html:32 msgid "tag editors receive special awards from the community" msgstr "" "cei care modifică etichetele primesc recompense speciale din partea " "comunității" -#: skins/default/templates/question_retag.html:75 +#: skins/default/templates/question_retag.html:59 msgid "up to 5 tags, less than 20 characters each" msgstr "până la 5 etichete, mai puțin de 20 de caractere pentru fiecare" @@ -4166,35 +4798,32 @@ msgstr "Abonați-vă la următoarele etichete:" msgid "Subscribe" msgstr "Abonare" -#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:8 +#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:11 msgid "Tag list" msgstr "Listă etichete" -#: skins/default/templates/tags.html:14 +#: skins/default/templates/tags.html:9 +#, python-format +msgid "Tags, matching \"%(stag)s\"" +msgstr "" + +#: skins/default/templates/tags.html:19 msgid "sorted alphabetically" msgstr "ordonate alfabetic" -#: skins/default/templates/tags.html:15 +#: skins/default/templates/tags.html:20 msgid "by name" msgstr "după nume" -#: skins/default/templates/tags.html:20 +#: skins/default/templates/tags.html:25 msgid "sorted by frequency of tag use" msgstr "ordonate după frecvența folosirii etichetei" -#: skins/default/templates/tags.html:21 +#: skins/default/templates/tags.html:26 msgid "by popularity" msgstr "după popularitate" -#: skins/default/templates/tags.html:26 -#, python-format -msgid "" -"All tags matching '%(stag)s'" -msgstr "" -"Toate etichetele echivalente cu '%(stag)s'" - -#: skins/default/templates/tags.html:29 +#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:56 msgid "Nothing found" msgstr "Nu a fost găsit nimic" @@ -4202,16 +4831,32 @@ msgstr "Nu a fost găsit nimic" msgid "Users" msgstr "Utilizatori" -#: skins/default/templates/users.html:13 skins/default/templates/users.html:14 +#: skins/default/templates/users.html:13 +msgid "see people with the highest reputation" +msgstr "" + +#: skins/default/templates/users.html:14 #: skins/default/templates/user_profile/user_info.html:25 msgid "reputation" msgstr "reputație" -#: skins/default/templates/users.html:19 skins/default/templates/users.html:20 +#: skins/default/templates/users.html:19 +msgid "see people who joined most recently" +msgstr "" + +#: skins/default/templates/users.html:20 msgid "recent" msgstr "recent" -#: skins/default/templates/users.html:31 skins/default/templates/users.html:32 +#: skins/default/templates/users.html:25 +msgid "see people who joined the site first" +msgstr "" + +#: skins/default/templates/users.html:31 +msgid "see people sorted by name" +msgstr "" + +#: skins/default/templates/users.html:32 msgid "by username" msgstr "după nume de utilizator" @@ -4423,16 +5068,30 @@ msgid "" "for any inconvenience" msgstr "" -#: skins/default/templates/authopenid/macros.html:50 +#: skins/default/templates/authopenid/logout.html:3 +msgid "Logout" +msgstr "Ieșire" + +#: skins/default/templates/authopenid/logout.html:5 +msgid "You have successfully logged out" +msgstr "" + +#: skins/default/templates/authopenid/logout.html: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 "" + +#: skins/default/templates/authopenid/macros.html:53 msgid "Please enter your user name, then sign in" msgstr "" -#: skins/default/templates/authopenid/macros.html:51 -#: skins/default/templates/authopenid/signin.html:84 +#: skins/default/templates/authopenid/macros.html:54 +#: skins/default/templates/authopenid/signin.html:90 msgid "(or select another login method above)" msgstr "" -#: skins/default/templates/authopenid/macros.html:53 +#: skins/default/templates/authopenid/macros.html:56 msgid "Sign in" msgstr "" @@ -4440,7 +5099,7 @@ msgstr "" msgid "User login" msgstr "Autentificare autilizator" -#: skins/default/templates/authopenid/signin.html:12 +#: skins/default/templates/authopenid/signin.html:14 #, python-format msgid "" "\n" @@ -4448,7 +5107,7 @@ msgid "" " " msgstr "" -#: skins/default/templates/authopenid/signin.html:19 +#: skins/default/templates/authopenid/signin.html:21 #, python-format msgid "" "Your question \n" @@ -4456,141 +5115,147 @@ msgid "" " " msgstr "" -#: skins/default/templates/authopenid/signin.html:26 +#: skins/default/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." msgstr "" -#: skins/default/templates/authopenid/signin.html:29 +#: skins/default/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 "" -#: skins/default/templates/authopenid/signin.html:31 +#: skins/default/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 "" -#: skins/default/templates/authopenid/signin.html:35 +#: skins/default/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 "" -#: skins/default/templates/authopenid/signin.html:37 +#: skins/default/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 "" -#: skins/default/templates/authopenid/signin.html:40 +#: skins/default/templates/authopenid/signin.html:42 msgid "" "Please check your email and visit the enclosed link to re-connect to your " "account" msgstr "" -#: skins/default/templates/authopenid/signin.html:82 +#: skins/default/templates/authopenid/signin.html:87 msgid "Please enter your user name and password, then sign in" msgstr "" -#: skins/default/templates/authopenid/signin.html:86 +#: skins/default/templates/authopenid/signin.html:93 msgid "Login failed, please try again" msgstr "" -#: skins/default/templates/authopenid/signin.html:89 -msgid "Login name" -msgstr "Nume cont" +#: skins/default/templates/authopenid/signin.html:97 +#, fuzzy +msgid "Login or email" +msgstr "fără e-mail" -#: skins/default/templates/authopenid/signin.html:93 +#: skins/default/templates/authopenid/signin.html:101 msgid "Password" msgstr "Parolă" -#: skins/default/templates/authopenid/signin.html:97 +#: skins/default/templates/authopenid/signin.html:106 msgid "Login" msgstr "Autentificare" -#: skins/default/templates/authopenid/signin.html:104 +#: skins/default/templates/authopenid/signin.html:113 msgid "To change your password - please enter the new one twice, then submit" msgstr "" -#: skins/default/templates/authopenid/signin.html:107 +#: skins/default/templates/authopenid/signin.html:117 msgid "New password" msgstr "Parolă nouă" -#: skins/default/templates/authopenid/signin.html:112 +#: skins/default/templates/authopenid/signin.html:124 msgid "Please, retype" msgstr "introduceți din nou" -#: skins/default/templates/authopenid/signin.html:130 +#: skins/default/templates/authopenid/signin.html:146 msgid "Here are your current login methods" msgstr "" -#: skins/default/templates/authopenid/signin.html:134 +#: skins/default/templates/authopenid/signin.html:150 msgid "provider" msgstr "" -#: skins/default/templates/authopenid/signin.html:135 +#: skins/default/templates/authopenid/signin.html:151 msgid "last used" msgstr "" -#: skins/default/templates/authopenid/signin.html:136 +#: skins/default/templates/authopenid/signin.html:152 msgid "delete, if you like" msgstr "" -#: skins/default/templates/authopenid/signin.html:162 +#: skins/default/templates/authopenid/signin.html:168 +#, fuzzy +msgid "cannot be deleted" +msgstr "voturile vechi nu pot fi revocate" + +#: skins/default/templates/authopenid/signin.html:181 msgid "Still have trouble signing in?" msgstr "" -#: skins/default/templates/authopenid/signin.html:167 +#: skins/default/templates/authopenid/signin.html:186 msgid "Please, enter your email address below and obtain a new key" msgstr "" -#: skins/default/templates/authopenid/signin.html:169 +#: skins/default/templates/authopenid/signin.html:188 msgid "Please, enter your email address below to recover your account" msgstr "" -#: skins/default/templates/authopenid/signin.html:172 +#: skins/default/templates/authopenid/signin.html:191 msgid "recover your account via email" msgstr "" -#: skins/default/templates/authopenid/signin.html:183 +#: skins/default/templates/authopenid/signin.html:202 msgid "Send a new recovery key" msgstr "" -#: skins/default/templates/authopenid/signin.html:185 +#: skins/default/templates/authopenid/signin.html:204 msgid "Recover your account via email" msgstr "" -#: skins/default/templates/authopenid/signin.html:196 +#: skins/default/templates/authopenid/signin.html:216 msgid "Why use OpenID?" msgstr "" -#: skins/default/templates/authopenid/signin.html:199 +#: skins/default/templates/authopenid/signin.html:219 msgid "with openid it is easier" msgstr "" -#: skins/default/templates/authopenid/signin.html:202 +#: skins/default/templates/authopenid/signin.html:222 msgid "reuse openid" msgstr "" -#: skins/default/templates/authopenid/signin.html:205 +#: skins/default/templates/authopenid/signin.html:225 msgid "openid is widely adopted" msgstr "" -#: skins/default/templates/authopenid/signin.html:208 +#: skins/default/templates/authopenid/signin.html:228 msgid "openid is supported open standard" msgstr "" -#: skins/default/templates/authopenid/signin.html:212 +#: skins/default/templates/authopenid/signin.html:232 msgid "Find out more" msgstr "" -#: skins/default/templates/authopenid/signin.html:213 +#: skins/default/templates/authopenid/signin.html:233 msgid "Get OpenID" msgstr "" @@ -4677,8 +5342,8 @@ msgstr "" #: skins/default/templates/avatar/confirm_delete.html:7 #, python-format msgid "" -"You have no avatars to delete. Please upload one now." +"You have no avatars to delete. Please upload one now." msgstr "" #: skins/default/templates/avatar/confirm_delete.html:13 @@ -4768,29 +5433,37 @@ msgstr "de asemenea sunt suportate tag-uri HTML simple" msgid "learn more about Markdown" msgstr "află mai multe despre Markdown" -#: skins/default/templates/blocks/ask_form.html:7 +#: skins/default/templates/blocks/ask_form.html:6 msgid "login to post question info" msgstr "autentificați-vă pentru a pune o întrebare" -#: skins/default/templates/blocks/ask_form.html:11 -#, python-format +#: skins/default/templates/blocks/ask_form.html:10 +#, fuzzy, python-format msgid "" "must have valid %(email)s to post, \n" -" see %(email_validation_faq_url)s\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" " " -#: skins/default/templates/blocks/ask_form.html:28 +#: skins/default/templates/blocks/ask_form.html:34 msgid "Login/signup to post your question" msgstr "" -#: skins/default/templates/blocks/ask_form.html:30 +#: skins/default/templates/blocks/ask_form.html:36 msgid "Ask your question" msgstr "Puneți întrebarea" +#: skins/default/templates/blocks/bottom_scripts.html:7 +#, python-format +msgid "" +"Please note: %(app_name)s requires javascript to work properly, please " +"enable javascript in your browser, here is how" +msgstr "" + #: skins/default/templates/blocks/editor_data.html:5 #, python-format msgid "each tag must be shorter that %(max_chars)s character" @@ -4811,19 +5484,24 @@ msgid "" "please use up to %(tag_count)s tags, less than %(max_chars)s characters each" msgstr "" -#: skins/default/templates/blocks/footer.html:5 +#: skins/default/templates/blocks/footer.html:4 #: skins/default/templates/blocks/header_meta_links.html:12 msgid "about" msgstr "despre" -#: skins/default/templates/blocks/footer.html:7 +#: skins/default/templates/blocks/footer.html:6 msgid "privacy policy" msgstr "politica de confidențialitate" -#: skins/default/templates/blocks/footer.html:16 +#: skins/default/templates/blocks/footer.html:15 msgid "give feedback" msgstr "oferă o sugestie" +#: skins/default/templates/blocks/footer.html:41 +#, python-format +msgid "Content on this site is licensed under a %(license)s" +msgstr "" + #: skins/default/templates/blocks/header.html:8 msgid "back to home page" msgstr "înapoi la pagina de start" @@ -4833,19 +5511,19 @@ msgstr "înapoi la pagina de start" msgid "%(site)s logo" msgstr "siglă %(site)s" -#: skins/default/templates/blocks/header.html:17 +#: skins/default/templates/blocks/header.html:20 msgid "questions" msgstr "întrebări" -#: skins/default/templates/blocks/header.html:27 +#: skins/default/templates/blocks/header.html:30 msgid "users" msgstr "utilizatori" -#: skins/default/templates/blocks/header.html:32 +#: skins/default/templates/blocks/header.html:35 msgid "badges" msgstr "insigne" -#: skins/default/templates/blocks/header.html:37 +#: skins/default/templates/blocks/header.html:40 msgid "ask a question" msgstr "pune o întrebare" @@ -4883,7 +5561,7 @@ msgstr "Etichete interesante" #: skins/default/templates/blocks/tag_selector.html:18 #: skins/default/templates/blocks/tag_selector.html:34 -#: skins/default/templates/user_profile/user_moderate.html:38 +#: skins/default/templates/user_profile/user_moderate.html:40 msgid "Add" msgstr "Adaugă" @@ -4968,33 +5646,17 @@ msgstr "Indiciu de căutare:" msgid "add tags and a query to focus your search" msgstr "adăugarea de etichete și a mai multe cuvinte cheie pentru căutare" -#: skins/default/templates/main_page/javascript.html:16 -#: skins/default/templates/main_page/javascript.html:17 -msgid "mark-tag/" -msgstr "" - -#: skins/default/templates/main_page/javascript.html:16 -msgid "interesting/" -msgstr "" - -#: skins/default/templates/main_page/javascript.html:17 -msgid "ignored/" -msgstr "" - -#: skins/default/templates/main_page/javascript.html:18 -msgid "unmark-tag/" -msgstr "" - #: skins/default/templates/main_page/nothing_found.html:4 msgid "There are no unanswered questions here" msgstr "" #: skins/default/templates/main_page/nothing_found.html:7 -msgid "No favorite questions here. " -msgstr "" +#, fuzzy +msgid "No questions here. " +msgstr "întrebare_cu_răspuns" #: skins/default/templates/main_page/nothing_found.html:8 -msgid "Please start (bookmark) some questions when you visit them" +msgid "Please star (bookmark) some questions or follow some users." msgstr "" #: skins/default/templates/main_page/nothing_found.html:13 @@ -5018,11 +5680,11 @@ msgstr "" msgid "Please always feel free to ask your question!" msgstr "" -#: skins/default/templates/main_page/sidebar.html:5 +#: skins/default/templates/main_page/sidebar.html:8 msgid "Contributors" msgstr "Contribuitori" -#: skins/default/templates/main_page/sidebar.html:22 +#: skins/default/templates/main_page/sidebar.html:25 msgid "Related tags" msgstr "Etichete asemămătoare" @@ -5035,9 +5697,14 @@ msgid "see unanswered questions" msgstr "vezi întrebările fără răspuns" #: skins/default/templates/main_page/tab_bar.html:20 -msgid "see your favorite questions" +#, fuzzy +msgid "see your followed questions" msgstr "vezi întrebările tale favorite" +#: skins/default/templates/main_page/tab_bar.html:21 +msgid "followed" +msgstr "" + #: skins/default/templates/main_page/tab_bar.html:25 msgid "Sort by:" msgstr "Ordonează după:" @@ -5074,7 +5741,7 @@ msgid "Update" msgstr "Actualizează" #: skins/default/templates/user_profile/user_email_subscriptions.html:4 -#: skins/default/templates/user_profile/user_tabs.html:36 +#: skins/default/templates/user_profile/user_tabs.html:42 msgid "subscriptions" msgstr "abonamente" @@ -5091,9 +5758,10 @@ msgid "Stop sending email" msgstr "Nu mai trimite emailuri" #: skins/default/templates/user_profile/user_favorites.html:4 -#: skins/default/templates/user_profile/user_tabs.html:21 -msgid "favorites" -msgstr "favorite" +#: skins/default/templates/user_profile/user_tabs.html:27 +#, fuzzy +msgid "followed questions" +msgstr "Închide întrebarea" #: skins/default/templates/user_profile/user_inbox.html:18 #: skins/default/templates/user_profile/user_tabs.html:12 @@ -5146,52 +5814,52 @@ msgstr "" msgid "remove" msgstr "elimină" -#: skins/default/templates/user_profile/user_info.html:33 +#: skins/default/templates/user_profile/user_info.html:36 msgid "update profile" msgstr "actualizează profil" -#: skins/default/templates/user_profile/user_info.html:37 +#: skins/default/templates/user_profile/user_info.html:40 msgid "manage login methods" msgstr "administrează metodele de autentificare" -#: skins/default/templates/user_profile/user_info.html:50 +#: skins/default/templates/user_profile/user_info.html:53 msgid "real name" msgstr "nume real" -#: skins/default/templates/user_profile/user_info.html:55 +#: skins/default/templates/user_profile/user_info.html:58 msgid "member for" msgstr "membru de" -#: skins/default/templates/user_profile/user_info.html:60 +#: skins/default/templates/user_profile/user_info.html:63 msgid "last seen" msgstr "văzut ultima dată" -#: skins/default/templates/user_profile/user_info.html:66 +#: skins/default/templates/user_profile/user_info.html:69 msgid "user website" msgstr "pagină web utilizator" -#: skins/default/templates/user_profile/user_info.html:72 +#: skins/default/templates/user_profile/user_info.html:75 msgid "location" msgstr "locație" -#: skins/default/templates/user_profile/user_info.html:79 +#: skins/default/templates/user_profile/user_info.html:82 msgid "age" msgstr "vârstă" -#: skins/default/templates/user_profile/user_info.html:80 +#: skins/default/templates/user_profile/user_info.html:83 msgid "age unit" msgstr "ani" -#: skins/default/templates/user_profile/user_info.html:87 +#: skins/default/templates/user_profile/user_info.html:90 msgid "todays unused votes" msgstr "voturi nefolosite azi" -#: skins/default/templates/user_profile/user_info.html:88 +#: skins/default/templates/user_profile/user_info.html:91 msgid "votes left" msgstr "voturi rămase" #: skins/default/templates/user_profile/user_moderate.html:4 -#: skins/default/templates/user_profile/user_tabs.html:42 +#: skins/default/templates/user_profile/user_tabs.html:48 msgid "moderation" msgstr "moderare" @@ -5204,34 +5872,34 @@ msgstr "starea curentă a utilizatorului %(username)s este „%(status)s”" msgid "User status changed" msgstr "Starea utilizatorului a fost schimbată" -#: skins/default/templates/user_profile/user_moderate.html:18 +#: skins/default/templates/user_profile/user_moderate.html:20 msgid "Save" msgstr "Salvează" -#: skins/default/templates/user_profile/user_moderate.html:24 +#: skins/default/templates/user_profile/user_moderate.html:26 #, python-format msgid "Your current reputation is %(reputation)s points" msgstr "Reputația curentă este %(reputation)s puncte" -#: skins/default/templates/user_profile/user_moderate.html:26 +#: skins/default/templates/user_profile/user_moderate.html:28 #, python-format msgid "User's current reputation is %(reputation)s points" msgstr "Reputația curentă a utilizatorului este %(reputation)s puncte" -#: skins/default/templates/user_profile/user_moderate.html:30 +#: skins/default/templates/user_profile/user_moderate.html:32 msgid "User reputation changed" msgstr "Reputația utilizatorului a fost schimbată" -#: skins/default/templates/user_profile/user_moderate.html:37 +#: skins/default/templates/user_profile/user_moderate.html:39 msgid "Subtract" msgstr "Scade" -#: skins/default/templates/user_profile/user_moderate.html:42 +#: skins/default/templates/user_profile/user_moderate.html:44 #, python-format msgid "Send message to %(username)s" msgstr "Trimite mesaj către %(username)s" -#: skins/default/templates/user_profile/user_moderate.html:43 +#: skins/default/templates/user_profile/user_moderate.html:45 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." @@ -5239,19 +5907,83 @@ msgstr "" "Un mesaj email va fi trimis către utilizator cu câmpul „reply-to” definit la " "adresa proprie de email. Verificați că adresa proprie este introdusă corect." -#: skins/default/templates/user_profile/user_moderate.html:45 +#: skins/default/templates/user_profile/user_moderate.html:47 msgid "Message sent" msgstr "Mesaj trimis" -#: skins/default/templates/user_profile/user_moderate.html:63 +#: skins/default/templates/user_profile/user_moderate.html:65 msgid "Send message" msgstr "Trimite mesaj" +#: skins/default/templates/user_profile/user_moderate.html:75 +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 "" + +#: skins/default/templates/user_profile/user_moderate.html:78 +msgid "" +"Moderators have the same privileges as administrators, but cannot add or " +"remove user status of 'moderator' or 'administrator'." +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:81 +msgid "'Approved' status means the same as regular user." +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:84 +#, fuzzy +msgid "Suspended users can only edit or delete their own posts." +msgstr "utilizatorii suspendați nu pot marca postări" + +#: skins/default/templates/user_profile/user_moderate.html:87 +msgid "" +"Blocked users can only login and send feedback to the site administrators." +msgstr "" + +#: skins/default/templates/user_profile/user_network.html:5 +#: skins/default/templates/user_profile/user_tabs.html:18 +msgid "network" +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[1] "" +msgstr[2] "" + +#: 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[1] "" +msgstr[2] "" + +#: skins/default/templates/user_profile/user_network.html:19 +msgid "" +"Your network is empty. Would you like to follow someone? - Just visit their " +"profiles and click \"follow\"" +msgstr "" + +#: skins/default/templates/user_profile/user_network.html:21 +#, fuzzy, python-format +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:25 +#: 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:28 +msgid "source" +msgstr "" + #: skins/default/templates/user_profile/user_reputation.html:4 msgid "karma" msgstr "reputație" @@ -5343,43 +6075,53 @@ msgstr[0] "%(counter)s insignă" msgstr[1] "%(counter)s insigne" msgstr[2] "%(counter)s de insigne" +#: skins/default/templates/user_profile/user_stats.html:122 +#, fuzzy +msgid "Answer to:" +msgstr "indicații pentru răspunsuri" + #: skins/default/templates/user_profile/user_tabs.html:5 msgid "User profile" msgstr "Profil utilizator" -#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:728 +#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:772 msgid "comments and answers to others questions" msgstr "comentarii și răspunsuri pentru întrebările altora" -#: skins/default/templates/user_profile/user_tabs.html:15 +#: skins/default/templates/user_profile/user_tabs.html:16 +msgid "followers and followed users" +msgstr "" + +#: skins/default/templates/user_profile/user_tabs.html:21 msgid "graph of user reputation" msgstr "graficul reputației utilizatorului" -#: skins/default/templates/user_profile/user_tabs.html:17 +#: skins/default/templates/user_profile/user_tabs.html:23 msgid "reputation history" msgstr "istorie reputație" -#: skins/default/templates/user_profile/user_tabs.html:19 -msgid "questions that user selected as his/her favorite" +#: 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:23 +#: skins/default/templates/user_profile/user_tabs.html:29 msgid "recent activity" msgstr "activitate recentă" -#: skins/default/templates/user_profile/user_tabs.html:28 views/users.py:792 +#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:847 msgid "user vote record" msgstr "istoria voturilor utilizatorului" -#: skins/default/templates/user_profile/user_tabs.html:30 +#: skins/default/templates/user_profile/user_tabs.html:36 msgid "casted votes" msgstr "voturi date" -#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:897 +#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:960 msgid "email subscription settings" msgstr "configurări abonament email" -#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:212 +#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:224 msgid "moderate this user" msgstr "moderează acest utilizator" @@ -5387,31 +6129,23 @@ msgstr "moderează acest utilizator" msgid "votes" msgstr "voturi" -#: skins/default/templates/user_profile/users_questions.html:9 -#: skins/default/templates/user_profile/users_questions.html:17 -#, python-format -msgid "this questions was selected as favorite %(cnt)s time" -msgid_plural "this questions was selected as favorite %(cnt)s times" -msgstr[0] "aceste întrebări au fost alese ca favorite %(cnt)s dată" -msgstr[1] "aceste întrebări au fost alese ca favorite de %(cnt)s ori" -msgstr[2] "aceste întrebări au fost alese ca favorite de %(cnt)s de ori" - -#: skins/default/templates/user_profile/users_questions.html:10 -msgid "thumb-up on" -msgstr "" - -#: skins/default/templates/user_profile/users_questions.html:18 -msgid "thumb-up off" -msgstr "" - -#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:227 +#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:240 msgid "no items in counter" msgstr "nu sunt elemente în contor" -#: utils/decorators.py:82 views/commands.py:128 views/commands.py:145 +#: utils/decorators.py:90 views/commands.py:112 views/commands.py:132 msgid "Oops, apologies - there was some error" msgstr "Oops, ne cerem scuze - a apărut o eroare" +#: utils/decorators.py:109 +#, fuzzy +msgid "Please login to post" +msgstr "administrează metodele de autentificare" + +#: utils/decorators.py:205 +msgid "Spam was detected on your post, sorry for if this is a mistake" +msgstr "" + #: utils/forms.py:32 msgid "this field is required" msgstr "acest câmp este obligatoriu" @@ -5486,20 +6220,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:63 -#, python-format -msgid "on %(date)s" -msgstr "în %(date)s" - -#: utils/functions.py:67 +#: utils/functions.py:74 msgid "2 days ago" msgstr "acum 2 zile" -#: utils/functions.py:69 +#: utils/functions.py:76 msgid "yesterday" msgstr "ieri" -#: utils/functions.py:71 +#: utils/functions.py:79 #, python-format msgid "%(hr)d hour ago" msgid_plural "%(hr)d hours ago" @@ -5507,7 +6236,7 @@ msgstr[0] "acum %(hr)d oră" msgstr[1] "acum %(hr)d ore" msgstr[2] "acum %(hr)d de ore" -#: utils/functions.py:73 +#: utils/functions.py:85 #, python-format msgid "%(min)d min ago" msgid_plural "%(min)d mins ago" @@ -5515,75 +6244,77 @@ msgstr[0] "acum %(min)d minut" msgstr[1] "acum %(min)d minute" msgstr[2] "acum %(min)d de minute" -#: views/avatar_views.py:94 +#: views/avatar_views.py:99 msgid "Successfully uploaded a new avatar." msgstr "A încărcat cu succes un avatar nou." -#: views/avatar_views.py:134 +#: views/avatar_views.py:140 msgid "Successfully updated your avatar." msgstr "Ați actualizat cu succes propriul avatar." -#: views/avatar_views.py:173 +#: views/avatar_views.py:180 msgid "Successfully deleted the requested avatars." msgstr "Ați șters cu succes avatarele cerute." -#: views/commands.py:38 +#: views/commands.py:39 msgid "anonymous users cannot vote" msgstr "utilizatorii anonimi nu pot vota" -#: views/commands.py:58 +#: views/commands.py:59 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" +msgstr "Ne pare rău, dar nu mai aveți voturi pentru azi... și mâine este o zi" -#: views/commands.py:64 +#: views/commands.py:65 #, python-format msgid "You have %(votes_left)s votes left for today" msgstr "Mai ai %(votes_left)s voturi pentru azi" -#: views/commands.py:135 +#: views/commands.py:122 msgid "Sorry, but anonymous users cannot access the inbox" msgstr "Ne pare rău dar utilizatorii anonimi nu pot accesa inboxul" -#: views/commands.py:205 +#: views/commands.py:192 msgid "Sorry, something is not right here..." msgstr "Ne pare rău dar ceva nu este în regulă aici" -#: views/commands.py:220 +#: views/commands.py:207 msgid "Sorry, but anonymous users cannot accept answers" msgstr "Ne pare rău dar utilizatorii anonimi nu pot accepta răspunsuri" -#: views/commands.py:301 +#: views/commands.py:288 #, python-format msgid "subscription saved, %(email)s needs validation, see %(details_url)s" msgstr "abonament salvat, %(email)s necesită validare, vezi %(details_url)s" -#: views/commands.py:309 +#: views/commands.py:295 msgid "email update frequency has been set to daily" msgstr "frecvența de actualizare a emailurilor a fost definită drept zilnic" #: views/commands.py:400 #, python-format msgid "Tag subscription was canceled (undo)." -msgstr "" -"Abonomanetul la etichetă a fost anulat (refă)." +msgstr "Abonomanetul la etichetă a fost anulat (refă)." #: views/commands.py:409 #, 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/meta.py:63 +#: views/commands.py:542 +#, 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:83 msgid "Q&A forum feedback" msgstr "Sugestii pentru întrebări și răspunsuri" -#: views/meta.py:64 +#: views/meta.py:84 msgid "Thanks for the feedback!" msgstr "Vă mulțumim pentru sugestii!" -#: views/meta.py:72 -msgid "" -"We look forward to hearing your feedback! Please, give it next time :)" +#: views/meta.py:92 +msgid "We look forward to hearing your feedback! Please, give it next time :)" msgstr "Suntem interesați de sugestiile voastre!" #: views/readers.py:177 @@ -5594,7 +6325,7 @@ 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:403 +#: views/readers.py:441 msgid "" "Sorry, the comment you are looking for has been deleted and is no longer " "accessible" @@ -5602,97 +6333,106 @@ msgstr "" "Ne pare rău, comentariul pe care îl căutați a fost șters nu mai este " "accesibil" -#: views/users.py:213 +#: views/users.py:225 msgid "moderate user" msgstr "moderează utilizator" -#: views/users.py:377 +#: views/users.py:380 msgid "user profile" msgstr "profil utilizator" -#: views/users.py:378 +#: views/users.py:381 msgid "user profile overview" msgstr "privire de ansamblu profil utilizator" -#: views/users.py:661 +#: views/users.py:685 msgid "recent user activity" msgstr "activitate recentă utilizator" -#: views/users.py:662 +#: views/users.py:686 msgid "profile - recent activity" msgstr "profil - activitate recentă" -#: views/users.py:729 +#: views/users.py:773 msgid "profile - responses" msgstr "profil - răspunsuri" -#: views/users.py:793 +#: views/users.py:848 msgid "profile - votes" msgstr "profil - voturi" -#: views/users.py:828 +#: views/users.py:883 msgid "user reputation in the community" msgstr "reputația utilizatorului în comunitate" -#: views/users.py:829 +#: views/users.py:884 msgid "profile - user reputation" msgstr "profil - reputație utilizator" -#: views/users.py:856 +#: views/users.py:911 msgid "users favorite questions" msgstr "întrebările favorite ale utilizatorului" -#: views/users.py:857 +#: views/users.py:912 msgid "profile - favorite questions" msgstr "profile - întrebări favorite" -#: views/users.py:876 views/users.py:880 +#: views/users.py:932 views/users.py:936 msgid "changes saved" msgstr "schimbările au fost salvate" -#: views/users.py:886 +#: views/users.py:942 msgid "email updates canceled" msgstr "actualizările email au fost anulate" -#: views/users.py:898 +#: views/users.py:961 msgid "profile - email subscriptions" msgstr "profil - abonamente email" -#: views/writers.py:57 +#: views/writers.py:58 msgid "Sorry, anonymous users cannot upload files" msgstr "Utilizatorii anonimi nu pot încărca fișiere" -#: views/writers.py:67 +#: views/writers.py:68 #, python-format msgid "allowed file types are '%(file_types)s'" msgstr "tipurile de fișiere permise sunt „%(file_types)s”" -#: views/writers.py:90 +#: views/writers.py:91 #, 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:98 -msgid "" -"Error uploading file. Please contact the site administrator. Thank you." +#: views/writers.py:99 +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:560 +#: views/writers.py:191 +#, fuzzy +msgid "Please log in to ask questions" +msgstr "autentificați-vă pentru a pune o întrebare" + +#: views/writers.py:492 +#, fuzzy +msgid "Please log in to answer questions" +msgstr "vezi întrebările fără răspuns" + +#: views/writers.py:598 #, python-format msgid "" -"Sorry, you appear to be logged out and cannot post comments. Please sign in." +"Sorry, you appear to be logged out and cannot post comments. Please sign in." msgstr "" "Nu sunteți autentificat și nu puteți adăuga comentarii . Vă rugăm să vă autentificați." -#: views/writers.py:605 +#: views/writers.py:646 msgid "Sorry, anonymous users cannot edit comments" msgstr "Utilizatorii anonimi nu pot modifica comentariile" -#: views/writers.py:613 +#: views/writers.py:654 #, python-format msgid "" "Sorry, you appear to be logged out and cannot delete comments. Please autentificați." -#: views/writers.py:634 +#: views/writers.py:675 msgid "sorry, we seem to have some technical difficulties" msgstr "ne pare rău dar se pare că avem unele dificultăți tehnice" -msgid "Email verification subject line" -msgstr "Linie subiect verificare email" +#~ msgid "First time here? Check out the FAQ!" +#~ msgstr "" +#~ "Prima dată aici? Consultați Întrebările frecvente!" -msgid "how to validate email title" -msgstr "cum să fie validat titlul email-ului" +#~ msgid "MyOpenid user name" +#~ msgstr "nume utilizator MyOpenid" -msgid "" -"how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)s" -msgstr "" -"cum să fie validate informațiile email cu %(send_email_key_url)s " -"%(gravatar_faq_url)s" +#~ msgid "Unknown error." +#~ msgstr "Eroare necunoscută." + +#~ msgid "ReCAPTCHA is wrongly configured." +#~ msgstr "ReCAPTCHA este configurat greșit." + +#~ msgid "Bad reCAPTCHA challenge parameter." +#~ msgstr "Parametru șir reCAPTCHA eronat." + +#~ msgid "The CAPTCHA solution was incorrect." +#~ msgstr "Soluția CAPTCHA a fost incorectă." + +#~ msgid "Bad reCAPTCHA verification parameters." +#~ msgstr "Parametri verificare reCAPTCHA eronați." + +#~ msgid "Provided reCAPTCHA API keys are not valid for this domain." +#~ msgstr "Cheile reCAPTCHA API furnizate nu sunt valide pentru acest domeniu." + +#~ msgid "ReCAPTCHA could not be reached." +#~ msgstr "ReCAPTCHA nu poate fi lansat." + +#~ msgid "Invalid request" +#~ msgstr "Cerere nevalidă" + +#~ msgid "Sender is" +#~ msgstr "Expenditorul este" + +#~ msgid "anonymous" +#~ msgstr "anonim" + +#~ msgid "Message body:" +#~ msgstr "Corp mesaj:" + +#~ msgid "" +#~ "As a registered user you can login with your OpenID, log out of the site " +#~ "or permanently remove your account." +#~ msgstr "" +#~ "Ca utilizator înregistrat vă puteți autentifica cu OpenID-ul " +#~ "dumneavoastră, vă puteți deautentifica sau vă puteți șterge contul " +#~ "definitiv." + +#~ msgid "Logout now" +#~ msgstr "Ieșiți acum" + +#~ msgid "mark this question as favorite (click again to cancel)" +#~ msgstr "" +#~ "marchează această întrebare ca favorită (efectuați clic din nou pentru a " +#~ "anula)" + +#~ msgid "" +#~ "remove favorite mark from this question (click again to restore mark)" +#~ msgstr "" +#~ "șterge această întrebare din grupul favoritelor (efectuați clic din nou " +#~ "pentru a anula)" + +#~ msgid "" +#~ "All tags matching '%(stag)s'" +#~ msgstr "" +#~ "Toate etichetele echivalente cu '%(stag)" +#~ "s'" + +#~ msgid "Login name" +#~ msgstr "Nume cont" + +#~ msgid "favorites" +#~ msgstr "favorite" + +#~ msgid "this questions was selected as favorite %(cnt)s time" +#~ msgid_plural "this questions was selected as favorite %(cnt)s times" +#~ msgstr[0] "aceste întrebări au fost alese ca favorite %(cnt)s dată" +#~ msgstr[1] "aceste întrebări au fost alese ca favorite de %(cnt)s ori" +#~ msgstr[2] "aceste întrebări au fost alese ca favorite de %(cnt)s de ori" + +#~ msgid "Email verification subject line" +#~ msgstr "Linie subiect verificare email" + +#~ msgid "how to validate email title" +#~ msgstr "cum să fie validat titlul email-ului" + +#~ msgid "" +#~ "how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)" +#~ "s" +#~ msgstr "" +#~ "cum să fie validate informațiile email cu %(send_email_key_url)s " +#~ "%(gravatar_faq_url)s" -msgid "more answers" -msgstr "mai multe răspunsuri" +#~ msgid "more answers" +#~ msgstr "mai multe răspunsuri" -msgid "popular" -msgstr "popular" +#~ msgid "popular" +#~ msgstr "popular" -msgid "reputation points" -msgstr "puncte reputație" +#~ msgid "reputation points" +#~ msgstr "puncte reputație" diff --git a/askbot/locale/ro/LC_MESSAGES/djangojs.mo b/askbot/locale/ro/LC_MESSAGES/djangojs.mo new file mode 100644 index 00000000..6701db6d Binary files /dev/null and b/askbot/locale/ro/LC_MESSAGES/djangojs.mo differ diff --git a/askbot/locale/ro/LC_MESSAGES/djangojs.po b/askbot/locale/ro/LC_MESSAGES/djangojs.po new file mode 100644 index 00000000..b6f24438 --- /dev/null +++ b/askbot/locale/ro/LC_MESSAGES/djangojs.po @@ -0,0 +1,66 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: 0.7\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-10-08 02:30-0500\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n == 1 ? 0: (((n % 100 > 19) || ((n % 100 " +"== 0) && (n != 0))) ? 2: 1));\n" + +#: skins/default/media/js/post.js:532 +msgid "Follow" +msgstr "" + +#: skins/default/media/js/post.js:541 skins/default/media/js/post.js.py:550 +#, perl-format +msgid "%s follower" +msgid_plural "%s followers" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/media/js/post.js:546 +msgid "
      Following
      Unfollow
      " +msgstr "" + +#: skins/default/media/js/post.js:1613 +msgid "Please enter question title (>10 characters)" +msgstr "" + +#: skins/default/media/js/tag_selector.js:15 +msgid "Tag \"\" matches:" +msgstr "" + +#: skins/default/media/js/tag_selector.js:84 +#, perl-format +msgid "and %s more, not shown..." +msgstr "" + +#: skins/default/media/js/user.js:129 +msgid "Please signin to follow %(username)s" +msgstr "" + +#: skins/default/media/js/user.js:161 +#, perl-format +msgid "unfollow %s" +msgstr "" + +#: skins/default/media/js/user.js:164 +#, perl-format +msgid "following %s" +msgstr "" + +#: skins/default/media/js/user.js:170 +#, perl-format +msgid "follow %s" +msgstr "" diff --git a/askbot/locale/ru/LC_MESSAGES/django.mo b/askbot/locale/ru/LC_MESSAGES/django.mo index f5ec5a31..c41a06bf 100644 Binary files a/askbot/locale/ru/LC_MESSAGES/django.mo and b/askbot/locale/ru/LC_MESSAGES/django.mo differ diff --git a/askbot/locale/ru/LC_MESSAGES/django.po b/askbot/locale/ru/LC_MESSAGES/django.po index 4e894c81..14493ace 100644 --- a/askbot/locale/ru/LC_MESSAGES/django.po +++ b/askbot/locale/ru/LC_MESSAGES/django.po @@ -5,83 +5,94 @@ # msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: 0.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-05-16 01:42-0500\n" -"PO-Revision-Date: 2011-06-20 17:53+0300\n" -"Last-Translator: dassdasdas \n" +"POT-Creation-Date: 2011-10-08 02:30-0500\n" +"PO-Revision-Date: 2011-10-04 01:46\n" +"Last-Translator: \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Translated-Using: django-rosetta 0.5.6\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" +"X-Translated-Using: django-rosetta 0.6.2\n" #: exceptions.py:13 msgid "Sorry, but anonymous visitors cannot access this function" -msgstr "Извините, но к сожалению эта функция недоступна для не авторизованных пользователей" +msgstr "" +"Извините, но к сожалению эта функция недоступна для неавторизованных " +"пользователей" -#: feed.py:22 +#: feed.py:26 feed.py:100 msgid " - " msgstr "-" -#: feed.py:22 +#: feed.py:26 +#, fuzzy +msgid "Individual question feed" +msgstr "Индивидуально избранные вопросы" + +#: feed.py:100 msgid "latest questions" msgstr "новые вопросы" -#: forms.py:73 +#: forms.py:74 #, fuzzy msgid "select country" -msgstr "выбрать страну" +msgstr "Удалить аккаунт" -#: forms.py:82 +#: forms.py:83 msgid "Country" -msgstr "Страна" +msgstr "" -#: forms.py:90 +#: forms.py:91 #, fuzzy msgid "Country field is required" msgstr "это поле обязательное" -#: forms.py:103 -#: skins/default/templates/blocks/answer_edit_tips.html:43 +#: forms.py:104 skins/default/templates/blocks/answer_edit_tips.html:43 #: skins/default/templates/blocks/answer_edit_tips.html:47 #: skins/default/templates/blocks/question_edit_tips.html:38 #: skins/default/templates/blocks/question_edit_tips.html:43 msgid "title" msgstr "заголовок" -#: forms.py:104 +#: forms.py:105 msgid "please enter a descriptive title for your question" msgstr "пожалуйста, введите заголовок, содержащий суть вашего вопроса" -#: forms.py:109 +#: forms.py:110 msgid "title must be > 10 characters" msgstr "заголовок должен иметь хотя бы 10 букв" -#: forms.py:118 +#: forms.py:119 msgid "content" msgstr "основное содержание" -#: forms.py:124 +#: forms.py:125 msgid "question content must be > 10 characters" -msgstr "содержание вопроса должно быть более 10 букв" +msgstr "содержание вопроса должно быть более 10-ти букв" -#: forms.py:133 -#: skins/default/templates/blocks/header.html:22 +#: forms.py:134 skins/default/templates/macros.html:660 +#: skins/default/templates/macros.html:672 +#: skins/default/templates/blocks/header.html:25 msgid "tags" -msgstr "теги" +msgstr "тэги" -#: forms.py:135 -msgid "Tags are short keywords, with no spaces within. Up to five tags can be used." -msgstr "Теги - ключевые слова, характеризующие вопрос. Теги отделяются пробелом, может быть использовано до 5 тегов." +#: forms.py:136 +msgid "" +"Tags are short keywords, with no spaces within. Up to five tags can be used." +msgstr "" +"Теги - ключевые слова, характеризующие вопрос. Теги отделяются пробелом, " +"может быть использовано до 5 тегов." -#: forms.py:142 -#: skins/default/templates/question_retag.html:58 +#: forms.py:164 skins/default/templates/question_retag.html:58 msgid "tags are required" msgstr "теги (ключевые слова) обязательны" -#: forms.py:151 +#: forms.py:173 #, python-format msgid "please use %(tag_count)d tag or less" msgid_plural "please use %(tag_count)d tags or less" @@ -89,7 +100,12 @@ msgstr[0] "пожалуйста введите не более %(tag_count)d с msgstr[1] "пожалуйста введите не более %(tag_count)d слова" msgstr[2] "пожалуйста введите не более %(tag_count)d слов" -#: forms.py:160 +#: forms.py:181 +#, python-format +msgid "At least one of the following tags is required : %(tags)s" +msgstr "" + +#: forms.py:190 #, 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" @@ -97,320 +113,331 @@ msgstr[0] "каждое слово должно быть не более %(max_c msgstr[1] "каждое слово должно быть не более %(max_chars)d буквы" msgstr[2] "каждое слово должно быть не более %(max_chars)d букв" -#: forms.py:168 +#: forms.py:198 msgid "use-these-chars-in-tags" msgstr "допускается использование только символа дефис \"-\"" -#: forms.py:203 +#: forms.py:233 msgid "community wiki (karma is not awarded & many others can edit wiki post)" -msgstr "вики (репутация не добавляется, многие могут редактировать пост)" +msgstr "" -#: forms.py:204 -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:234 +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:220 +#: forms.py:250 msgid "update summary:" msgstr "информация об обновлениях:" -#: forms.py:221 -msgid "enter a brief summary of your revision (e.g. fixed spelling, grammar, improved style, this field is optional)" -msgstr "если у Вас есть желание, то кратко опишите здесь суть вашей правки (например - исправление орфографии, грамматики, стиля)" +#: forms.py:251 +msgid "" +"enter a brief summary of your revision (e.g. fixed spelling, grammar, " +"improved style, this field is optional)" +msgstr "" +"если у Вас есть желание, то кратко опишите здесь суть вашей правки (например " +"- исправление орфографии, грамматики, стиля)" -#: forms.py:284 +#: forms.py:327 msgid "Enter number of points to add or subtract" msgstr "Введите количество очков которые Вы собираетесь вычесть или добавить." -#: forms.py:298 -#: const/__init__.py:230 +#: forms.py:341 const/__init__.py:245 msgid "approved" msgstr "простой гражданин" -#: forms.py:299 -#: const/__init__.py:231 +#: forms.py:342 const/__init__.py:246 msgid "watched" msgstr "поднадзорный пользователь" -#: forms.py:300 -#: const/__init__.py:232 +#: forms.py:343 const/__init__.py:247 msgid "suspended" msgstr "ограниченный в правах" -#: forms.py:301 -#: const/__init__.py:233 +#: forms.py:344 const/__init__.py:248 msgid "blocked" msgstr "заблокированный пользователь" -#: forms.py:303 -#: const/__init__.py:229 +#: forms.py:346 +#, fuzzy +msgid "administrator" +msgstr "Администратор сайта" + +#: forms.py:347 const/__init__.py:244 msgid "moderator" msgstr "модератор" -#: forms.py:323 +#: forms.py:367 msgid "Change status to" msgstr "Измененить статус на" -#: forms.py:350 +#: forms.py:394 msgid "which one?" msgstr "который?" -#: forms.py:371 +#: forms.py:415 msgid "Cannot change own status" msgstr "Извините, но собственный статус изменить нельзя" -#: forms.py:377 +#: forms.py:421 msgid "Cannot turn other user to moderator" -msgstr "Извините, но у Вас нет возможности давать другим пользователям статус модератора" +msgstr "" +"Извините, но у Вас нет возможности давать другим пользователям статус " +"модератора" -#: forms.py:384 +#: forms.py:428 msgid "Cannot change status of another moderator" msgstr "Извините, но у Вас нет возможности изменять статус модераторов" -#: forms.py:390 +#: forms.py:434 +#, fuzzy +msgid "Cannot change status to admin" +msgstr "Извините, но собственный статус изменить нельзя" + +#: forms.py:440 #, python-format -msgid "If you wish to change %(username)s's status, please make a meaningful selection." -msgstr "Если Вы хотите изменить статус пользователя %(username)s, это можно сделать здесь" +msgid "" +"If you wish to change %(username)s's status, please make a meaningful " +"selection." +msgstr "" +"Если Вы хотите изменить статус пользователя %(username)s, это можно сделать " +"сдесь" -#: forms.py:399 +#: forms.py:449 msgid "Subject line" msgstr "Тема" -#: forms.py:406 +#: forms.py:456 msgid "Message text" msgstr "Текст сообщения" -#: forms.py:489 +#: forms.py:542 msgid "Your name:" msgstr "Ваше имя:" -#: forms.py:490 +#: forms.py:543 msgid "Email (not shared with anyone):" msgstr "Адрес электронной почты (держится в секрете):" -#: forms.py:491 +#: forms.py:544 msgid "Your message:" msgstr "Ваше сообщение:" -#: forms.py:528 +#: forms.py:581 #, fuzzy msgid "ask anonymously" msgstr "анонимный" -#: forms.py:530 +#: forms.py:583 msgid "Check if you do not want to reveal your name when asking this question" -msgstr "Отметьте если не хотите раскрывать свое имя при публикации вопроса" +msgstr "" -#: forms.py:672 -msgid "You have asked this question anonymously, if you decide to reveal your identity, please check this box." -msgstr "Вы опубликовали вопрос анонимно, если вы решили раскрыть свое имя - отметьте здесь" +#: forms.py:743 +msgid "" +"You have asked this question anonymously, if you decide to reveal your " +"identity, please check this box." +msgstr "" -#: forms.py:676 +#: forms.py:747 msgid "reveal identity" -msgstr "раскрыть имя" +msgstr "" -#: forms.py:734 -msgid "Sorry, only owner of the anonymous question can reveal his or her identity, please uncheck the box" -msgstr "Извините, только автор анонимного вопроса может раскрыть свое имя, пожалуйста отмените" +#: forms.py:805 +msgid "" +"Sorry, only owner of the anonymous question can reveal his or her identity, " +"please uncheck the box" +msgstr "" -#: forms.py:747 -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." +#: forms.py:818 +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:785 +#: forms.py:856 #, fuzzy msgid "this email will be linked to gravatar" msgstr "Этот адрес ассоциирован с глобальным аватаром (gravatar)" -#: forms.py:792 +#: forms.py:863 msgid "Real name" msgstr "Настоящее имя" -#: forms.py:799 +#: forms.py:870 msgid "Website" msgstr "Вебсайт" -#: forms.py:806 +#: forms.py:877 #, fuzzy msgid "City" msgstr "Критик" -#: forms.py:815 +#: forms.py:886 #, fuzzy msgid "Show country" -msgstr "Показывать страну." +msgstr "Показывать подвал страницы." -#: forms.py:820 +#: forms.py:891 msgid "Date of birth" msgstr "День рождения" -#: forms.py:821 +#: forms.py:892 msgid "will not be shown, used to calculate age, format: YYYY-MM-DD" msgstr "показывается только возраст, формат ГГГГ-ММ-ДД" -#: forms.py:827 +#: forms.py:898 msgid "Profile" msgstr "Профиль" -#: forms.py:836 +#: forms.py:907 msgid "Screen name" -msgstr "Отображаемое имя" +msgstr "Название экрана" -#: forms.py:867 -#: forms.py:868 +#: forms.py:938 forms.py:939 msgid "this email has already been registered, please use another one" msgstr "этот адрес уже зарегистрирован, пожалуйста введите другой" -#: forms.py:875 +#: forms.py:946 msgid "Choose email tag filter" msgstr "Выберите тип фильтра по темам (ключевым словам)" -#: forms.py:915 +#: forms.py:993 msgid "Asked by me" msgstr "Заданные мной" -#: forms.py:918 +#: forms.py:996 msgid "Answered by me" msgstr "Отвеченные мной" -#: forms.py:921 +#: forms.py:999 msgid "Individually selected" msgstr "Выбранные индивидуально" -#: forms.py:924 +#: forms.py:1002 msgid "Entire forum (tag filtered)" msgstr "Весь форум (фильтрованный по темам)" -#: forms.py:928 +#: forms.py:1006 msgid "Comments and posts mentioning me" msgstr "Сообщения которые упоминают моё имя" -#: forms.py:998 +#: forms.py:1085 msgid "okay, let's try!" msgstr "хорошо - попробуем!" -#: forms.py:999 +#: forms.py:1086 msgid "no community email please, thanks" msgstr "спасибо - не надо" -#: forms.py:1003 +#: forms.py:1090 msgid "please choose one of the options above" msgstr "пожалуйста сделайте Ваш выбор (см. выше)" -#: urls.py:44 +#: urls.py:53 msgid "about/" -msgstr "about/" +msgstr "" -#: urls.py:45 -#: conf/site_settings.py:79 +#: urls.py:54 msgid "faq/" -msgstr "faq/" +msgstr "" -#: urls.py:46 +#: urls.py:55 msgid "privacy/" -msgstr "privacy/" - -#: urls.py:47 -msgid "logout/" -msgstr "logout/" +msgstr "" -#: urls.py:49 -#: urls.py:54 +#: urls.py:57 urls.py:62 msgid "answers/" -msgstr "answers/" +msgstr "otvety/" -#: urls.py:49 -#: urls.py:75 -#: urls.py:186 +#: urls.py:57 urls.py:83 urls.py:198 msgid "edit/" -msgstr "edit/" +msgstr "" -#: urls.py:54 -#: urls.py:105 +#: urls.py:62 urls.py:113 msgid "revisions/" -msgstr "revisions/" - -#: urls.py:60 -#: urls.py:70 -#: urls.py:75 -#: urls.py:80 -#: urls.py:85 -#: urls.py:90 -#: urls.py:95 -#: urls.py:100 -#: urls.py:105 -#: skins/default/templates/question.html:436 +msgstr "" + +#: urls.py:68 urls.py:78 urls.py:83 urls.py:88 urls.py:93 urls.py:98 +#: urls.py:103 urls.py:108 urls.py:113 urls.py:285 +#: skins/default/templates/question.html:508 msgid "questions/" -msgstr "questions/" +msgstr "voprosy/" -#: urls.py:70 +#: urls.py:78 msgid "ask/" -msgstr "ask/" +msgstr "sprashivaem/" -#: urls.py:80 +#: urls.py:88 msgid "retag/" -msgstr "retag/" +msgstr "izmenyaem-temy/" -#: urls.py:85 +#: urls.py:93 msgid "close/" -msgstr "close/" +msgstr "zakryvaem/" -#: urls.py:90 +#: urls.py:98 msgid "reopen/" -msgstr "reopen/" +msgstr "otkryvaem-zanovo/" -#: urls.py:95 +#: urls.py:103 msgid "answer/" -msgstr "answer/" +msgstr "otvet/" -#: urls.py:100 -#: skins/default/templates/question.html:436 +#: urls.py:108 skins/default/templates/question.html:508 msgid "vote/" -msgstr "vote/" +msgstr "golosuem/" -#: urls.py:132 -#: skins/default/templates/question.html:434 -#: skins/default/templates/main_page/javascript.html:18 -msgid "question/" -msgstr "question/" - -#: urls.py:137 +#: urls.py:144 msgid "tags/" -msgstr "tags/" +msgstr "temy/" -#: urls.py:175 +#: urls.py:187 msgid "subscribe-for-tags/" -msgstr "subscribe-for-tags/" +msgstr "" -#: urls.py:180 -#: urls.py:186 -#: urls.py:191 -#: skins/default/templates/main_page/javascript.html:19 +#: urls.py:192 urls.py:198 urls.py:204 urls.py:212 +#: skins/default/templates/main_page/javascript.html:23 msgid "users/" -msgstr "users/" +msgstr "lyudi/" -#: urls.py:196 -#: urls.py:201 +#: urls.py:205 +msgid "subscriptions/" +msgstr "подписки/" + +#: urls.py:217 +msgid "users/update_has_custom_avatar/" +msgstr "" + +#: urls.py:222 urls.py:227 msgid "badges/" -msgstr "badges/" +msgstr "nagrady/" -#: urls.py:206 +#: urls.py:232 msgid "messages/" -msgstr "messages/" +msgstr "soobsheniya/" -#: urls.py:206 +#: urls.py:232 msgid "markread/" -msgstr "markread/" +msgstr "otmechaem-prochitannoye/" -#: urls.py:222 +#: urls.py:248 msgid "upload/" -msgstr "upload/" +msgstr "zagruzhaem-file/" -#: urls.py:223 +#: urls.py:249 msgid "feedback/" -msgstr "feedback/" +msgstr "obratnaya-svyaz/" + +#: urls.py:291 skins/default/templates/question.html:506 +#: skins/default/templates/main_page/javascript.html:22 +msgid "question/" +msgstr "vopros/" -#: urls.py:224 -#: setup_templates/settings.py:202 +#: urls.py:298 setup_templates/settings.py:202 #: skins/default/templates/authopenid/providers_javascript.html:7 msgid "account/" msgstr "account/" @@ -505,15 +532,15 @@ msgstr "Гениальный вопрос: минимальное количес #: conf/badges.py:210 msgid "Commentator: minimum comments" -msgstr "Комментатор: минимум комментариев" +msgstr "" #: conf/badges.py:219 msgid "Taxonomist: minimum tag use count" -msgstr "Таксономист: минимум тегов" +msgstr "" #: conf/badges.py:228 msgid "Enthusiast: minimum days" -msgstr "Энтузиаст: минимум дней" +msgstr "" #: conf/email.py:14 msgid "Email and email alert settings" @@ -524,51 +551,71 @@ msgid "Prefix for the email subject line" msgstr "Префикс для электронной почты в строке темы" #: conf/email.py:24 -msgid "This setting takes default from the django settingEMAIL_SUBJECT_PREFIX. A value entered here will overridethe default." +msgid "" +"This setting takes default from the django settingEMAIL_SUBJECT_PREFIX. A " +"value entered here will overridethe default." msgstr "" #: conf/email.py:36 msgid "Maximum number of news entries in an email alert" -msgstr "Максимальное количество новостей в оповещении по email" +msgstr "Максимальное количество новостей в оповестительном сообщении" #: conf/email.py:46 msgid "Default news notification frequency" msgstr "Минимальная частота рассылки сообщений по умолчанию" #: conf/email.py:48 -msgid "This option currently defines default frequency of emailed updates in the following five categories: questions asked by user, answered by user, individually selected, entire forum (per person tag filter applies) and posts mentioning the user and comment responses" -msgstr "Эта опция определяет частоту рассылки сообщений по умолчанию в категориях: вопросы заданные пользователем, отвеченные пользователем, выбранные отдельно, все вопросы (отфильтрованные по темам) и сообщения которые упоминают имя пользователя, а также комментарии." +msgid "" +"This option currently defines default frequency of emailed updates in the " +"following five categories: questions asked by user, answered by user, " +"individually selected, entire forum (per person tag filter applies) and " +"posts mentioning the user and comment responses" +msgstr "" +"Эта опция определяет частоту рассылки сообщений по умолчанию в категориях: " +"вопросы заданные пользователем, отвеченные пользователем, выбранные " +"отдельно, все вопросы (отфильтрованные по темам) и сообщения которые " +"упоминают имя пользователя, а также комментарии." #: conf/email.py:62 #, fuzzy msgid "Send periodic reminders about unanswered questions" -msgstr "Посылать периодические напоминания о не отвеченных вопросах" +msgstr "Неотвеченных вопросов нет" #: conf/email.py:64 -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) and an IMAP server with a dedicated inbox must be configured " +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) and an IMAP server with a dedicated inbox " +"must be configured " msgstr "" #: conf/email.py:78 #, fuzzy msgid "Days before starting to send reminders about unanswered questions" -msgstr "Сколько дней ждать перед напоминанием о не отвеченных вопросах" +msgstr "Неотвеченных вопросов нет" #: conf/email.py:89 -msgid "How often to send unanswered question reminders (in days between the reminders sent)." -msgstr "Каждые сколько дней слать напоминания о не отвеченных вопросах" +msgid "" +"How often to send unanswered question reminders (in days between the " +"reminders sent)." +msgstr "" #: conf/email.py:101 #, fuzzy msgid "Max. number of reminders to send about unanswered questions" -msgstr "Максимум напоминаний о не отвеченных вопросах" +msgstr "нажмите, чтобы увидеть последние вопросы" #: conf/email.py:113 msgid "Require email verification before allowing to post" -msgstr "Требовать подтверждения адреса электронной почты перед публикацией сообщений" +msgstr "" +"Требовать подтверждения адреса электронной почты перед публикацией сообщений" #: conf/email.py:114 -msgid "Active email verification is done by sending a verification key in email" -msgstr "Подтверждение адреса электронной почты осуществляется отправкой ключа проверки на email" +msgid "" +"Active email verification is done by sending a verification key in email" +msgstr "" +"Подтверждение адреса электронной почты осуществляется отправкой ключа " +"проверки на email" #: conf/email.py:123 msgid "Allow only one account per email address" @@ -580,15 +627,25 @@ msgstr "Поддельный адрес электронной почты для #: conf/email.py:133 msgid "Use this setting to control gravatar for email-less user" -msgstr "Используйте эту установку для аватара пользователей которые не ввели адрес электронной почты." +msgstr "" +"Используйте эту установку для аватара пользователей которые не ввели адрес " +"электронной почты." #: conf/email.py:142 #, fuzzy msgid "Allow posting questions by email" -msgstr "Пожалуйста, начните задавать Ваш вопрос анонимно. Когда Вы пошлете вопрос, Вы будете направлены на страницу авторизации. Ваш вопрос будет сохранён в текущей сессии и будет опубликован как только Вы авторизуетесь. Войти или записаться на наш форум очень легко. Авторизация займет не более полминуты а изначальная запись - приблизительно одну минуту." +msgstr "" +"Пожалуйста, начните задавать Ваш ворпос анонимно. Когда Вы пошлете вопрос, Вы будете направлены на страницу " +"авторизации. Ваш вопрос будет сохранён в текущей сессии и будет опубликован " +"как только Вы авторизуетесь. Войти или записаться на наш форум очень легко. " +"Авторизация займет не более полминуты а изначальная запись - приблизительно " +"одну минуту." #: conf/email.py:144 -msgid "Before enabling this setting - please fill out IMAP settings in the settings.py file" +msgid "" +"Before enabling this setting - please fill out IMAP settings in the settings." +"py file" msgstr "" #: conf/email.py:155 @@ -596,10 +653,12 @@ msgid "Replace space in emailed tags with dash" msgstr "" #: conf/email.py:157 -msgid "This setting applies to tags written in the subject line of questions asked by email" +msgid "" +"This setting applies to tags written in the subject line of questions asked " +"by email" msgstr "" -#: conf/external_keys.py:11 +#: conf/external_keys.py:10 msgid "Keys to connect the site with external services like Facebook, etc." msgstr "Ключи для связи с внешними сервисами, такими как Facebook, и т.д." @@ -608,83 +667,140 @@ msgid "Google site verification key" msgstr "Идентификационный ключ Google" #: conf/external_keys.py:20 -#, python-format -msgid "This key helps google index your site please obtain is at google webmasters tools site" -msgstr "Этот ключ поможет поисковику Google индексировать Ваш форум, пожалуйста получите ключ на инструментарии для вебмастеров от Google" +#, fuzzy, python-format +msgid "" +"This key helps google index your site please obtain is at google webmasters tools site" +msgstr "" +"Этот ключ поможет поисковику Google индексировать Ваш форум, пожалуйста " +"получите ключ на инструментарии " +"для вебмастеров от Google" -#: conf/external_keys.py:34 +#: conf/external_keys.py:35 msgid "Google Analytics key" msgstr "Ключ для активации сервиса \"Google-Analytics\"" -#: conf/external_keys.py:36 -#, python-format -msgid "Obtain is at Google Analytics site, if you wish to use Google Analytics to monitor your site" -msgstr "Получите ключ по этой ссылке, если Вы собираетесь пользоваться инструментом Google-Analytics" +#: conf/external_keys.py:37 +#, fuzzy, python-format +msgid "" +"Obtain is at Google Analytics site, if you wish to " +"use Google Analytics to monitor your site" +msgstr "" +"Получите ключ по этой ссылке, если Вы " +"собираетесь пользоваться инструментом Google-Analytics" -#: conf/external_keys.py:49 +#: conf/external_keys.py:50 msgid "Enable recaptcha (keys below are required)" msgstr "Активировать recaptcha (требуется регистрация на recaptcha.net)" -#: conf/external_keys.py:58 +#: conf/external_keys.py:59 msgid "Recaptcha public key" msgstr "Публичный ключ для recaptcha" -#: conf/external_keys.py:66 +#: conf/external_keys.py:67 msgid "Recaptcha private key" msgstr "Секретный ключ для recaptcha" -#: conf/external_keys.py:68 -msgid "Recaptcha is a tool that helps distinguish real people from annoying spam robots. Please get this and a public key at the recaptcha.net" -msgstr "Recaptcha это средство, которое помогает отличить живых людей от надоедливых спам-роботов. Пожалуйста получите необходимые ключи на сайте recaptcha.net" +#: conf/external_keys.py:69 +#, fuzzy, 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 %(url)s" +msgstr "" +"Recaptcha это средство, которое помогает отличить живых людей от надоедливых " +"спам-роботов. Пожалуйста получите необходимые ключи на сайте recaptcha.net" -#: conf/external_keys.py:80 +#: conf/external_keys.py:81 msgid "Facebook public API key" msgstr "Публичный ключ для доступа Facebook API" -#: conf/external_keys.py:82 -msgid "Facebook API key and Facebook secret allow to use Facebook Connect login method at your site. Please obtain these keys at facebook create app site" -msgstr "Пара ключей для Facebook API позволит пользователям Вашего форума авторизоваться через их аккаунт на социальной сети Facebook. Оба ключа можно получить здесь" +#: conf/external_keys.py:83 +#, fuzzy, python-format +msgid "" +"Facebook API key and Facebook secret allow to use Facebook Connect login " +"method at your site. Please obtain these keys at facebook create app site" +msgstr "" +"Пара ключей для Facebook API позволит пользователям Вашего форума " +"авторизоваться через их аккаунт на социальной сети Facebook. Оба ключа можно " +"получить здесь" -#: conf/external_keys.py:95 +#: conf/external_keys.py:96 msgid "Facebook secret key" msgstr "Секретный ключ для Facebook" -#: conf/external_keys.py:103 +#: conf/external_keys.py:104 msgid "Twitter consumer key" msgstr "Публичный ключ для доступа Twitter API (consumer key)" -#: conf/external_keys.py:105 -#: conf/external_keys.py:126 -msgid "Please register your forum at twitter applications site" +#: conf/external_keys.py:106 +#, fuzzy, python-format +msgid "" +"Please register your forum at twitter applications site" msgstr "" "Чтобы получить пару ключей для Twitter, зарегистрируйте Ваш форум на \n" -"сайте для приложений использующих Twitter API" +"сайте для приложений использующих " +"Twitter API" -#: conf/external_keys.py:116 +#: conf/external_keys.py:117 msgid "Twitter consumer secret" msgstr "Секретный ключ для доступа Twitter API (consumer secret)" -#: conf/external_keys.py:124 +#: conf/external_keys.py:125 msgid "LinkedIn consumer key" msgstr "Публичный ключ для LinkedIn (consumer key)" -#: conf/external_keys.py:137 +#: conf/external_keys.py:127 +#, fuzzy, python-format +msgid "" +"Please register your forum at LinkedIn developer site" +msgstr "" +"Чтобы получить пару ключей для Twitter, зарегистрируйте Ваш форум на \n" +"сайте для приложений использующих " +"Twitter API" + +#: conf/external_keys.py:138 msgid "LinkedIn consumer secret" msgstr "Секретный ключ для LinkedIn (consumer secret)" -#: conf/external_keys.py:145 +#: conf/external_keys.py:146 +#, fuzzy +msgid "ident.ca consumer key" +msgstr "Публичный ключ для LinkedIn (consumer key)" + +#: conf/external_keys.py:148 +#, fuzzy, python-format +msgid "" +"Please register your forum at Identi.ca applications " +"site" +msgstr "" +"Чтобы получить пару ключей для Twitter, зарегистрируйте Ваш форум на \n" +"сайте для приложений использующих " +"Twitter API" + +#: conf/external_keys.py:159 +#, fuzzy +msgid "ident.ca consumer secret" +msgstr "Секретный ключ для LinkedIn (consumer secret)" + +#: conf/external_keys.py:167 msgid "Use LDAP authentication for the password login" -msgstr "Использовать протокол LDAP для авторизации через пароль и имя пользователя" +msgstr "" +"Использовать протокол LDAP для авторизации через пароль и имя пользователя" -#: conf/external_keys.py:154 +#: conf/external_keys.py:176 msgid "LDAP service provider name" msgstr "Имя провайдера сервиса авторизации LDAP" -#: conf/external_keys.py:162 +#: conf/external_keys.py:184 msgid "URL for the LDAP service" msgstr "URL, по которому доступен сервис LDAP" -#: conf/external_keys.py:170 +#: conf/external_keys.py:192 msgid "Explain how to change LDAP password" msgstr "Об‎‎ъясните, как изменить LDAP пароль" @@ -697,166 +813,383 @@ msgid "Text of the Q&A forum About page (html format)" msgstr "О нас (в формате html)" #: conf/flatpages.py:20 -msgid "Save, then use HTML validator on the \"about\" page to check your input." -msgstr "Сохраните, затем используйте HTML валидатор на странице \"о нас\" для проверки правильности." +msgid "" +"Save, then use HTML validator on " +"the \"about\" page to check your input." +msgstr "" +"Сохраните, затем используйте HTML " +"валидатор на странице \"о нас\" для проверки правильности." #: conf/flatpages.py:30 +#, fuzzy +msgid "Text of the Q&A forum FAQ page (html format)" +msgstr "О нас (в формате html)" + +#: conf/flatpages.py:33 +#, fuzzy +msgid "" +"Save, then use HTML validator on " +"the \"faq\" page to check your input." +msgstr "" +"Сохраните, затем используйте HTML " +"валидатор на странице \"о нас\" для проверки правильности." + +#: conf/flatpages.py:44 msgid "Text of the Q&A forum Privacy Policy (html format)" msgstr "Политика о личных данных (в формате html)" -#: conf/flatpages.py:33 -msgid "Save, then use HTML validator on the \"privacy\" page to check your input." -msgstr "Сохраните, затем используйте HTML валидатор на странице \"о нас\" для проверки правильности." +#: conf/flatpages.py:47 +msgid "" +"Save, then use HTML validator on " +"the \"privacy\" page to check your input." +msgstr "" +"Сохраните, затем используйте HTML " +"валидатор на странице \"о нас\" для проверки правильности." #: conf/forum_data_rules.py:11 -msgid "Settings for askbot data entry and display" +#, fuzzy +msgid "Data entry and display" msgstr "Ввод и отображение данных" #: conf/forum_data_rules.py:20 #, python-format -msgid "Enable embedding videos. Note: please read read this first." +msgid "" +"Enable embedding videos. Note: please read read this first." msgstr "" #: conf/forum_data_rules.py:31 msgid "Check to enable community wiki feature" -msgstr "Отметьте, если Вы хотите использовать функцию \"общее вики\" для сообщений на форуме" +msgstr "" +"Отметьте, если Вы хотите использовать функцию \"общее вики\" для сообщений " +"на форуме" #: conf/forum_data_rules.py:40 msgid "Allow asking questions anonymously" -msgstr "Разрешить публиковать вопросы анонимно" +msgstr "" #: conf/forum_data_rules.py:42 -msgid "Users do not accrue reputation for anonymous questions and their identity is not revealed until they change their mind" +msgid "" +"Users do not accrue reputation for anonymous questions and their identity is " +"not revealed until they change their mind" msgstr "" #: conf/forum_data_rules.py:54 +#, fuzzy +msgid "Allow posting before logging in" +msgstr "" +"Пожалуйста, начните задавать Ваш ворпос анонимно. Когда Вы пошлете вопрос, Вы будете направлены на страницу " +"авторизации. Ваш вопрос будет сохранён в текущей сессии и будет опубликован " +"как только Вы авторизуетесь. Войти или записаться на наш форум очень легко. " +"Авторизация займет не более полминуты а изначальная запись - приблизительно " +"одну минуту." + +#: conf/forum_data_rules.py:56 +msgid "" +"Check if you want to allow users start posting questions or answers before " +"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 "" + +#: conf/forum_data_rules.py:71 +#, fuzzy +msgid "Allow swapping answer with question" +msgstr "Ответить на вопрос" + +#: conf/forum_data_rules.py:73 +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 "" + +#: conf/forum_data_rules.py:85 msgid "Maximum length of tag (number of characters)" msgstr "Максимальное количество букв в теге (ключевом слове)" -#: conf/forum_data_rules.py:63 +#: conf/forum_data_rules.py:93 +#, fuzzy +msgid "Mandatory tags" +msgstr "обновленные тэги " + +#: conf/forum_data_rules.py:96 +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:108 msgid "Force lowercase the tags" -msgstr "Переводить теги в строчные буквы" +msgstr "" + +#: conf/forum_data_rules.py:110 +msgid "" +"Attention: after checking this, please back up the database, and run a " +"management command: python manage.py fix_question_tags to " +"globally rename the tags" +msgstr "" + +#: conf/forum_data_rules.py:124 +msgid "Format of tag list" +msgstr "" -#: conf/forum_data_rules.py:65 -msgid "Attention: after checking this, please back up the database, and run a management command: python manage.py fix_question_tags to globally rename the tags" +#: conf/forum_data_rules.py:126 +msgid "" +"Select the format to show tags in, either as a simple list, or as a tag cloud" msgstr "" -#: conf/forum_data_rules.py:78 +#: conf/forum_data_rules.py:138 #, fuzzy msgid "Use wildcard tags" -msgstr "Использовать теги с wildcard" +msgstr "смотреть все темы" -#: conf/forum_data_rules.py:80 -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" +#: conf/forum_data_rules.py:140 +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:93 +#: conf/forum_data_rules.py:153 msgid "Default max number of comments to display under posts" msgstr "Число комментариев по-умолчанию, которое показывается под сообщениями" -#: conf/forum_data_rules.py:104 +#: conf/forum_data_rules.py:164 #, python-format msgid "Maximum comment length, must be < %(max_len)s" -msgstr "Максимальная длина комментария не должна превышать %(max_len)s символов" +msgstr "" +"Максимальная длина комментария не должна превышать %(max_len)s символов" -#: conf/forum_data_rules.py:114 +#: conf/forum_data_rules.py:174 msgid "Limit time to edit comments" -msgstr "Ограничить время редактирования комментария" +msgstr "" -#: conf/forum_data_rules.py:116 +#: conf/forum_data_rules.py:176 msgid "If unchecked, there will be no time limit to edit the comments" msgstr "" -#: conf/forum_data_rules.py:127 +#: conf/forum_data_rules.py:187 msgid "Minutes allowed to edit a comment" msgstr "" -#: conf/forum_data_rules.py:128 +#: conf/forum_data_rules.py:188 msgid "To enable this setting, check the previous one" msgstr "" -#: conf/forum_data_rules.py:137 +#: conf/forum_data_rules.py:197 msgid "Save comment by pressing key" msgstr "" -#: conf/forum_data_rules.py:146 +#: conf/forum_data_rules.py:206 msgid "Minimum length of search term for Ajax search" msgstr "Минимальная длина поискового запроса в AJAX поиске" -#: conf/forum_data_rules.py:147 +#: conf/forum_data_rules.py:207 msgid "Must match the corresponding database backend setting" -msgstr "Значение должно равняться соответствующей установке в Вашей базе данных" +msgstr "" +"Значение должно равняться соответствующей установке в Вашей базе данных" -#: conf/forum_data_rules.py:156 +#: conf/forum_data_rules.py:216 msgid "Do not make text query sticky in search" msgstr "" -#: conf/forum_data_rules.py:158 -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." +#: conf/forum_data_rules.py:218 +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:171 +#: conf/forum_data_rules.py:231 msgid "Maximum number of tags per question" msgstr "Наибольшее разрешенное количество ключевых слов (тегов) на вопрос" -#: conf/forum_data_rules.py:183 +#: conf/forum_data_rules.py:243 msgid "Number of questions to list by default" msgstr "Количество вопросов отображаемых на главной странице" -#: conf/forum_data_rules.py:193 +#: conf/forum_data_rules.py:253 msgid "What should \"unanswered question\" mean?" -msgstr "Что должен означать \"не отвеченный вопрос\"?" +msgstr "Что должен означать \"неотвеченный вопрос\"?" -#: conf/login_providers.py:11 +#: conf/license.py:12 +#, fuzzy +msgid "License settings" +msgstr "Настройка политики пользователей" + +#: conf/license.py:19 +msgid "Show license clause in the site footer" +msgstr "" + +#: conf/license.py:28 +msgid "Short name for the license" +msgstr "" + +#: conf/license.py:37 +msgid "Full name of the license" +msgstr "" + +#: conf/license.py:38 +msgid "Creative Commons Attribution Share Alike 3.0" +msgstr "" + +#: conf/license.py:46 +msgid "Add link to the license page" +msgstr "" + +#: conf/license.py:55 +#, fuzzy +msgid "License homepage" +msgstr "вернуться на главную" + +#: conf/license.py:57 +msgid "URL of the official page with all the license legal clauses" +msgstr "" + +#: conf/license.py:67 +#, fuzzy +msgid "Use license logo" +msgstr "логотип %(site)s" + +#: conf/license.py:76 +msgid "License logo image" +msgstr "" + +#: conf/login_providers.py:12 msgid "Login provider setings" msgstr "" -#: conf/login_providers.py:19 -msgid "Show alternative login provider buttons on the password \"Sign Up\" page" +#: conf/login_providers.py:20 +msgid "" +"Show alternative login provider buttons on the password \"Sign Up\" page" msgstr "" -#: conf/login_providers.py:28 +#: conf/login_providers.py:29 msgid "Always display local login form and hide \"Askbot\" button." msgstr "" -#: conf/login_providers.py:56 +#: conf/login_providers.py:38 +msgid "Activate to allow login with self-hosted wordpress site" +msgstr "" + +#: conf/login_providers.py:39 +msgid "" +"to activate this feature you must fill out the wordpress xml-rpc setting " +"bellow" +msgstr "" + +#: conf/login_providers.py:48 +msgid "" +"Fill it with the wordpress url to the xml-rpc, normally http://mysite.com/" +"xmlrpc.php" +msgstr "" + +#: conf/login_providers.py:49 +msgid "" +"To enable, go to Settings->Writing->Remote Publishing and check the box for " +"XML-RPC" +msgstr "" + +#: conf/login_providers.py:60 +msgid "Upload your icon" +msgstr "" + +#: conf/login_providers.py:90 #, fuzzy, python-format msgid "Activate %(provider)s login" msgstr "Вход при помощи %(provider)s работает отлично" -#: conf/login_providers.py:61 +#: conf/login_providers.py:95 #, python-format -msgid "Note: to really enable %(provider)s login some additional parameters will need to be set in the \"External keys\" section" +msgid "" +"Note: to really enable %(provider)s login some additional parameters will " +"need to be set in the \"External keys\" section" msgstr "" -#: conf/markup.py:15 +#: conf/markup.py:14 msgid "Markup formatting" msgstr "Разметка текста" -#: conf/markup.py:22 +#: conf/markup.py:39 msgid "Enable code-friendly Markdown" msgstr "Активировать Markdown, оптимизированный для программистов" -#: conf/markup.py:24 -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 \"MathJax support\" implicitly turns this feature on, because underscores are heavily used in LaTeX input." -msgstr "Эта функция выключает специальное значение символа \"_\", когда он встречается в середине слов. Обычно этот символ используется для отметки жирного или курсивного текста. Заметьте, что эта функция автоматически включена при использовании MathJax, т.к. в формате LaTeX этот символ широко используется." +#: conf/markup.py:41 +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 " +"\"MathJax support\" implicitly turns this feature on, because underscores " +"are heavily used in LaTeX input." +msgstr "" +"Эта функция выключает специальное значение символа \"_\", когда он " +"встречается в середине слов. Обычно этот символ используется для отметки " +"жирного или курсивного текста. Заметьте, что эта функция автоматически " +"включена при использовании MathJax, т.к. в формате LaTeX этот символ широко " +"используется." -#: conf/markup.py:39 +#: conf/markup.py:56 msgid "Mathjax support (rendering of LaTeX)" msgstr "Поддержка MathJax (LaTeX) для форматирования математических формул" -#: conf/markup.py:41 +#: conf/markup.py:58 #, fuzzy, python-format -msgid "If you enable this feature, mathjax must be installed on your server in its own directory." -msgstr "Если вы включите эту функцию, mathjax должен быть установлен в каталоге %(dir)s" +msgid "" +"If you enable this feature, mathjax must be " +"installed on your server in its own directory." +msgstr "" +"Если вы включите эту функцию, mathjax должен быть " +"установлен в каталоге %(dir)s" -#: conf/markup.py:55 +#: conf/markup.py:72 msgid "Base url of MathJax deployment" msgstr "База URL-ов для размещения MathJax" -#: conf/markup.py:57 -msgid "Note - MathJax is not included with askbot - 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 "Примечание - MathJax не входит в askbot - вы должны разместить его лично, желательно на отдельном домене и ввести URL, указывающий на \"mathjax\" каталог (например: http://mysite.com/mathjax)" +#: conf/markup.py:74 +msgid "" +"Note - MathJax is not included with askbot - 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 "" +"Примечание - MathJax не входит в askbot - вы должны " +"разместить его лично, желательно на отдельном домене и ввести URL, " +"указывающий на \"mathjax\" каталог (например: http://mysite.com/mathjax)" + +#: conf/markup.py:89 +msgid "Enable autolinking with specific patterns" +msgstr "" + +#: conf/markup.py:91 +msgid "" +"If you enable this feature, the application will be able to detect patterns " +"and auto link to URLs" +msgstr "" + +#: conf/markup.py:104 +msgid "Regexes to detect the link patterns" +msgstr "" + +#: conf/markup.py:106 +msgid "" +"Enter valid regular expressions for the patters, one per line. For example " +"to detect a bug pattern like #bug123, use the following regex: #bug(\\d+). " +"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 "" + +#: conf/markup.py:125 +msgid "URLs for autolinking" +msgstr "" + +#: conf/markup.py:127 +msgid "" +"Here, please enter url templates for the patterns entered in the previous " +"setting, also one entry per line. Make sure that number of lines in " +"this setting and the previous one are the same 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 "" #: conf/minimum_reputation.py:11 msgid "Minimum reputation required to perform actions" @@ -871,63 +1204,75 @@ msgid "Downvote" msgstr "Голосовать \"против\"" #: conf/minimum_reputation.py:38 +#, fuzzy +msgid "Answer own question immediately" +msgstr "Ответьте на собственный вопрос" + +#: conf/minimum_reputation.py:47 +#, fuzzy +msgid "Accept own answer" +msgstr "редактировать любой ответ" + +#: conf/minimum_reputation.py:56 msgid "Flag offensive" msgstr "Пометить как спам" -#: conf/minimum_reputation.py:47 +#: conf/minimum_reputation.py:65 msgid "Leave comments" msgstr "Добавить комментарии" -#: conf/minimum_reputation.py:56 +#: conf/minimum_reputation.py:74 msgid "Delete comments posted by others" msgstr "Удалить чужие комментарии" -#: conf/minimum_reputation.py:65 +#: conf/minimum_reputation.py:83 msgid "Delete questions and answers posted by others" msgstr "Удалить любые вопросы или ответы" -#: conf/minimum_reputation.py:74 +#: conf/minimum_reputation.py:92 msgid "Upload files" msgstr "Загрузить файлы" -#: conf/minimum_reputation.py:83 +#: conf/minimum_reputation.py:101 msgid "Close own questions" msgstr "Закрыть собственные вопросы" -#: conf/minimum_reputation.py:92 +#: conf/minimum_reputation.py:110 msgid "Retag questions posted by other people" msgstr "Изменить теги вопросов, заданных другими" -#: conf/minimum_reputation.py:101 +#: conf/minimum_reputation.py:119 msgid "Reopen own questions" msgstr "Заново открыть свои вопросы" -#: conf/minimum_reputation.py:110 +#: conf/minimum_reputation.py:128 msgid "Edit community wiki posts" msgstr "Редактировать сообщения, помеченные как вики" -#: conf/minimum_reputation.py:119 +#: conf/minimum_reputation.py:137 msgid "Edit posts authored by other people" msgstr "Править чужие сообщения" -#: conf/minimum_reputation.py:128 +#: conf/minimum_reputation.py:146 msgid "View offensive flags" msgstr "Просмотреть отметки неуместного контента" -#: conf/minimum_reputation.py:137 +#: conf/minimum_reputation.py:155 msgid "Close questions asked by others" msgstr "Закрыть чужие вопросы" -#: conf/minimum_reputation.py:146 +#: conf/minimum_reputation.py:164 msgid "Lock posts" msgstr "Заблокировать посты" -#: conf/minimum_reputation.py:155 +#: conf/minimum_reputation.py:173 msgid "Remove rel=nofollow from own homepage" msgstr "" -#: conf/minimum_reputation.py:157 -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." +#: conf/minimum_reputation.py:175 +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 "" #: conf/reputation_changes.py:12 @@ -940,23 +1285,23 @@ msgstr "Максимальный рост репутации пользоват #: conf/reputation_changes.py:30 msgid "Gain for receiving an upvote" -msgstr "Увеличение репутации за положительный голос" +msgstr "Увeличение репутации за положительный голос" #: conf/reputation_changes.py:39 msgid "Gain for the author of accepted answer" -msgstr "Увеличение репутации для автора принятого ответа" +msgstr "Увeличение репутации для автора принятого ответа" #: conf/reputation_changes.py:48 msgid "Gain for accepting best answer" -msgstr "Увеличение репутации за пометку лучшего ответа" +msgstr "Увeличение репутации за пометку лучшего ответа" #: conf/reputation_changes.py:57 msgid "Gain for post owner on canceled downvote" -msgstr "Увеличение репутации автора сообщения при отмене отрицательного голоса" +msgstr "Увeличение репутации автора сообщения при отмене отрицательного голоса" #: conf/reputation_changes.py:66 msgid "Gain for voter on canceling downvote" -msgstr "Увеличение репутации голосующего при отмене голоса \"против\"" +msgstr "Увeличение репутации голосующего при отмене голоса \"против\"" #: conf/reputation_changes.py:76 msgid "Loss for voter for canceling of answer acceptance" @@ -980,59 +1325,190 @@ msgstr "Потеря для автора, чье сообщение получи #: conf/reputation_changes.py:126 msgid "Loss for owner of post that was flagged 3 times per same revision" -msgstr "Потеря для автора, чье сообщение было помечено как неприемлемое трижды на одну и ту же правку" +msgstr "" +"Потеря для автора, чье сообщение было помечено как неприемлемое трижды на " +"одну и ту же правку" #: conf/reputation_changes.py:136 msgid "Loss for owner of post that was flagged 5 times per same revision" -msgstr "Потеря для автора, чье сообщение было помечено как неприемлемое пять раз на одну и ту же правку" +msgstr "" +"Потеря для автора, чье сообщение было помечено как неприемлемое пять раз на " +"одну и ту же правку" #: conf/reputation_changes.py:146 msgid "Loss for post owner when upvote is canceled" msgstr "Потеря для автора, чье сообщение потеряло голос \"за\"" -#: conf/site_settings.py:13 +#: conf/sidebar_main.py:11 +msgid "Sidebar widget settings - main page" +msgstr "" + +#: conf/sidebar_main.py:18 conf/sidebar_profile.py:18 +#: conf/sidebar_question.py:18 +msgid "Custom sidebar header" +msgstr "" + +#: conf/sidebar_main.py:21 conf/sidebar_profile.py:21 +#: conf/sidebar_question.py:21 +msgid "" +"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." +msgstr "" + +#: conf/sidebar_main.py:34 +msgid "Show avatar block in sidebar" +msgstr "" + +#: conf/sidebar_main.py:36 +#, fuzzy +msgid "Uncheck this if you want to hide the avatar block from the sidebar " +msgstr "" +"Отметьте, если вы хотите, чтобы подвал отображался на каждой странице форума" + +#: conf/sidebar_main.py:47 +msgid "Limit how many avatars will be displayed on the sidebar" +msgstr "" + +#: conf/sidebar_main.py:57 +msgid "Show tag selector in sidebar" +msgstr "" + +#: conf/sidebar_main.py:59 +msgid "" +"Uncheck this if you want to hide the options for choosing interesting and " +"ignored tags " +msgstr "" + +#: conf/sidebar_main.py:70 +msgid "Show tag list/cloud in sidebar" +msgstr "" + +#: conf/sidebar_main.py:72 +msgid "" +"Uncheck this if you want to hide the tag cloud or tag list from the sidebar " +msgstr "" + +#: conf/sidebar_main.py:83 conf/sidebar_profile.py:34 +#: conf/sidebar_question.py:74 +msgid "Custom sidebar footer" +msgstr "" + +#: conf/sidebar_main.py:86 conf/sidebar_profile.py:37 +#: conf/sidebar_question.py:77 +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 "" + +#: conf/sidebar_profile.py:11 +msgid "Sidebar widget settings - profile page" +msgstr "" + +#: conf/sidebar_question.py:11 +msgid "Sidebar widget settings - question page" +msgstr "" + +#: conf/sidebar_question.py:34 +msgid "Show tag list in sidebar" +msgstr "" + +#: conf/sidebar_question.py:36 +msgid "Uncheck this if you want to hide the tag list from the sidebar " +msgstr "" + +#: conf/sidebar_question.py:47 +msgid "Show meta information in sidebar" +msgstr "" + +#: conf/sidebar_question.py:49 +msgid "" +"Uncheck this if you want to hide the meta information about the question " +"(post date, views, last updated). " +msgstr "" + +#: conf/sidebar_question.py:61 +#, fuzzy +msgid "Show related questions in sidebar" +msgstr "похожие вопросы:" + +#: conf/sidebar_question.py:63 +#, fuzzy +msgid "Uncheck this if you want to hide the list of related questions. " +msgstr "нажмите, чтобы посмотреть последние обновленные вопросы" + +#: conf/site_modes.py:63 +#, fuzzy +msgid "Site modes" +msgstr "Сайт" + +#: conf/site_modes.py:72 +msgid "Activate a \"Bootstrap\" mode" +msgstr "" + +#: conf/site_modes.py:74 +msgid "" +"Bootstrap mode lowers reputation and certain badge thresholds, to values, " +"more suitable for the smaller communities, WARNING: your " +"current value for Minimum reputation, Bagde Settings and Vote Rules will be " +"changed after you modify this setting." +msgstr "" + +#: conf/site_settings.py:11 msgid "Q&A forum website parameters and urls" msgstr "Основные параметры и ссылки форума" -#: conf/site_settings.py:21 +#: conf/site_settings.py:19 msgid "Site title for the Q&A forum" msgstr "Название сайта" -#: conf/site_settings.py:30 +#: conf/site_settings.py:28 msgid "Comma separated list of Q&A site keywords" msgstr "Ключевые слова для сайта, через запятую" -#: conf/site_settings.py:40 +#: conf/site_settings.py:37 msgid "Copyright message to show in the footer" msgstr "Сообщение о праве собственности (показывается в нижней части страницы)" -#: conf/site_settings.py:50 +#: conf/site_settings.py:47 msgid "Site description for the search engines" msgstr "Описание сайта для поисковиков" -#: conf/site_settings.py:59 +#: conf/site_settings.py:56 msgid "Short name for your Q&A forum" msgstr "Краткое название форума" -#: conf/site_settings.py:69 +#: conf/site_settings.py:66 msgid "Base URL for your Q&A forum, must start with http or https" msgstr "Базовая часть URL форума (должна начинаться с http или https)" -#: conf/site_settings.py:82 -msgid "Link shown in the greeting message shown to the anonymous user" -msgstr "Ссылка, которая показывается в приветствии не авторизованному посетителю" +#: conf/site_settings.py:77 +#, fuzzy +msgid "Check to enable greeting for anonymous user" +msgstr "Поддельный адрес электронной почты для анонимного пользователя" + +#: conf/site_settings.py:88 +#, fuzzy +msgid "Text shown in the greeting message shown to the anonymous user" +msgstr "" +"Ссылка, которая показывается в приветствии неавторизованному посетителю" -#: conf/site_settings.py:85 -msgid "If you change this url from the default - then you will also probably want to adjust translation of the following string: " -msgstr "Если Вы измените эту ссылку, то вероятно Вам придется поправить перевод следующей строки:" +#: conf/site_settings.py:92 +msgid "Use HTML to format the message " +msgstr "" -#: conf/site_settings.py:98 +#: conf/site_settings.py:101 msgid "Feedback site URL" msgstr "Ссылка на сайт для обратной связи" -#: conf/site_settings.py:100 +#: conf/site_settings.py:103 msgid "If left empty, a simple internal feedback form will be used instead" -msgstr "Если оставите это поле пустым, то для посылки обратной связи будет использоваться встроенная функция" +msgstr "" +"Если оставите это поле пустым, то для посылки обратной связи будет " +"использоваться встроенная функция" #: conf/skin_counter_settings.py:11 msgid "Skin: view, vote and answer counters" @@ -1046,26 +1522,16 @@ msgstr "Значение счетчика голосования для прис msgid "Background color for votes = 0" 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 -#: conf/skin_counter_settings.py:72 -#: conf/skin_counter_settings.py:85 -#: conf/skin_counter_settings.py:106 -#: conf/skin_counter_settings.py:117 -#: conf/skin_counter_settings.py:128 -#: conf/skin_counter_settings.py:138 -#: conf/skin_counter_settings.py:148 -#: conf/skin_counter_settings.py:163 -#: conf/skin_counter_settings.py:186 -#: conf/skin_counter_settings.py:196 -#: conf/skin_counter_settings.py:206 -#: conf/skin_counter_settings.py:216 -#: conf/skin_counter_settings.py:228 -#: conf/skin_counter_settings.py:239 -#: conf/skin_counter_settings.py:252 -#: conf/skin_counter_settings.py:262 +#: conf/skin_counter_settings.py:30 conf/skin_counter_settings.py:41 +#: conf/skin_counter_settings.py:52 conf/skin_counter_settings.py:62 +#: conf/skin_counter_settings.py:72 conf/skin_counter_settings.py:85 +#: conf/skin_counter_settings.py:106 conf/skin_counter_settings.py:117 +#: conf/skin_counter_settings.py:128 conf/skin_counter_settings.py:138 +#: conf/skin_counter_settings.py:148 conf/skin_counter_settings.py:163 +#: conf/skin_counter_settings.py:186 conf/skin_counter_settings.py:196 +#: conf/skin_counter_settings.py:206 conf/skin_counter_settings.py:216 +#: conf/skin_counter_settings.py:228 conf/skin_counter_settings.py:239 +#: conf/skin_counter_settings.py:252 conf/skin_counter_settings.py:262 msgid "HTML color name or hex value" msgstr "Имя цвета HTML или шестнадцатиричное значение" @@ -1163,111 +1629,182 @@ msgstr "Главный логотип" #: conf/skin_general_settings.py:23 msgid "To change the logo, select new file, then submit this whole form." -msgstr "Чтобы заменить логотип, выберите новый файл затем нажмите кнопку \"сохранить\"" +msgstr "" +"Чтобы заменить логотип, выберите новый файл затем нажмите кнопку \"сохранить" +"\"" #: conf/skin_general_settings.py:37 msgid "Show logo" msgstr "Показывать логотип" #: 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" +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 msgid "Site favicon" -msgstr "favicon для Вашего сайта" +msgstr "Фавикон для Вашего сайта" #: 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 this page." -msgstr "favicon это маленькая квадратная картинка 16х16 либо 32х32, которая используется в интерфейсе браузеров. На Здесь есть дополнительная информация о favicon." +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 this page." +msgstr "" +"favicon это маленькая квадратная картинка 16х16 либо 32х32, которая " +"используется в интерфейсе браузеров. На Здесь есть дополнительная информация о favicon." -#: conf/skin_general_settings.py:70 +#: conf/skin_general_settings.py:71 msgid "Password login button" msgstr "Кнопка для входа с паролем" -#: conf/skin_general_settings.py:72 -msgid "An 88x38 pixel image that is used on the login screen for the password login button." -msgstr "Картинка размером 88x38, которая используется в качестве кнопки для авторизации с именем и паролем." +#: conf/skin_general_settings.py:73 +msgid "" +"An 88x38 pixel image that is used on the login screen for the password login " +"button." +msgstr "" +"Картинка размером 88x38, которая используется в качестве кнопки для " +"авторизации с именем и паролем." -#: conf/skin_general_settings.py:87 +#: conf/skin_general_settings.py:88 msgid "Show all UI functions to all users" msgstr "Отображать все функции пользовательского интерфейса всем пользователям" -#: conf/skin_general_settings.py:89 -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:90 +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:104 +#: conf/skin_general_settings.py:105 msgid "Select skin" msgstr "Выберите тему пользовательского интерфейса" -#: conf/skin_general_settings.py:113 -msgid "Skin media revision number" -msgstr "Ревизия медиа-файлов скина" - -#: conf/skin_general_settings.py:115 -msgid "Increment this number when you change image in skin media or stylesheet. This helps avoid showing your users outdated images from their browser cache." -msgstr "Увеличьте это число когда изменяете медиа-файлы или css. Это позволяет избежать ошибки отображения кешированных старых данных у пользователей." - -#: conf/skin_general_settings.py:128 +#: conf/skin_general_settings.py:116 msgid "Customize HTML " msgstr "" -#: conf/skin_general_settings.py:137 +#: conf/skin_general_settings.py:125 msgid "Custom portion of the HTML " msgstr "" -#: conf/skin_general_settings.py:139 -msgid "To use this option, check \"Customize HTML <HEAD>\" above. Contents of this box will be inserted into the <HEAD> portion of the HTML output, where elements such as <script>, <link>, <meta> may be added. Please, keep in mind that adding external javascript to the <HEAD> 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. Note: if you do use this setting, please test the site with the W3C HTML validator service." +#: conf/skin_general_settings.py:127 +msgid "" +"To use this option, check \"Customize HTML <HEAD>\" " +"above. Contents of this box will be inserted into the <HEAD> portion " +"of the HTML output, where elements such as <script>, <link>, <" +"meta> may be added. Please, keep in mind that adding external javascript " +"to the <HEAD> 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. Note: if you do use this setting, " +"please test the site with the W3C HTML validator service." +msgstr "" + +#: conf/skin_general_settings.py:149 +msgid "Custom header additions" +msgstr "" + +#: conf/skin_general_settings.py:151 +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 " +"headerin the HTML format. When customizing the site header (as well as " +"footer and the HTML <HEAD>), use the HTML validation service to make " +"sure that your input is valid and works well in all browsers." msgstr "" -#: conf/skin_general_settings.py:159 +#: conf/skin_general_settings.py:166 msgid "Site footer mode" msgstr "" -#: conf/skin_general_settings.py:161 -msgid "Footer is the bottom portion of the content, which is common to all pages. You can disable, customize, or use the default footer." +#: conf/skin_general_settings.py:168 +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:178 +#: conf/skin_general_settings.py:185 msgid "Custom footer (HTML format)" msgstr "" -#: conf/skin_general_settings.py:180 -msgid "To enable this function, please select option 'customize' in the \"Site footer mode\" above. Use this area to enter contents of the footer in the HTML format. When customizing the site footer (as well as the HTML <HEAD>), use the HTML validation service to make sure that your input is valid and works well in all browsers." +#: conf/skin_general_settings.py:187 +msgid "" +"To enable this function, please select option 'customize' " +"in the \"Site footer mode\" above. Use this area to enter contents of the " +"footer in the HTML format. When customizing the site footer (as well as the " +"header and HTML <HEAD>), use the HTML validation service to make sure " +"that your input is valid and works well in all browsers." msgstr "" -#: conf/skin_general_settings.py:195 +#: conf/skin_general_settings.py:202 msgid "Apply custom style sheet (CSS)" msgstr "" -#: conf/skin_general_settings.py:197 -msgid "Check if you want to change appearance of your form by adding custom style sheet rules (please see the next item)" +#: conf/skin_general_settings.py:204 +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:209 +#: conf/skin_general_settings.py:216 msgid "Custom style sheet (CSS)" msgstr "" -#: conf/skin_general_settings.py:211 -msgid "To use this function, 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 \"<forum url>/custom.css\", where the \"<forum url> part depends (default is empty string) on the url configuration in your urls.py." +#: conf/skin_general_settings.py:218 +msgid "" +"To use this function, 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 \"<forum url>/custom.css\", where the \"<forum url> part " +"depends (default is empty string) on the url configuration in your urls.py." msgstr "" -#: conf/skin_general_settings.py:227 +#: conf/skin_general_settings.py:234 msgid "Add custom javascript" msgstr "" -#: conf/skin_general_settings.py:230 +#: conf/skin_general_settings.py:237 msgid "Check to enable javascript that you can enter in the next field" msgstr "" -#: conf/skin_general_settings.py:240 +#: conf/skin_general_settings.py:247 msgid "Custom javascript" msgstr "" -#: conf/skin_general_settings.py:242 -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 \"<forum url>/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 (to enable your custom code, check \"Add custom javascript\" option above)." +#: conf/skin_general_settings.py:249 +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 \"<forum url>/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 (to " +"enable your custom code, check \"Add custom javascript\" option " +"above)." +msgstr "" + +#: conf/skin_general_settings.py:267 +msgid "Skin media revision number" +msgstr "Ревизия медиа-файлов скина" + +#: conf/skin_general_settings.py:269 +msgid "Will be set automatically but you can modify it if necessary." +msgstr "" + +#: conf/skin_general_settings.py:280 +msgid "Hash to update the media revision number automatically." +msgstr "" + +#: conf/skin_general_settings.py:284 +msgid "Will be set automatically, it is not necesary to modify manually." msgstr "" #: conf/social_sharing.py:10 @@ -1275,27 +1812,85 @@ msgid "Sharing content on social networks" msgstr "Распространение информации по социальным сетям" #: conf/social_sharing.py:18 -msgid "Check to enable sharing of questions on Twitter and Facebook" +#, fuzzy +msgid "Check to enable sharing of questions on Twitter" msgstr "Добавить кнопки для сетей Twitter и Facebook в каждый вопрос" -#: conf/user_settings.py:10 -msgid "User policy settings" +#: conf/social_sharing.py:27 +#, fuzzy +msgid "Check to enable sharing of questions on Facebook" +msgstr "Добавить кнопки для сетей Twitter и Facebook в каждый вопрос" + +#: conf/social_sharing.py:36 +#, fuzzy +msgid "Check to enable sharing of questions on LinkedIn" +msgstr "Добавить кнопки для сетей Twitter и Facebook в каждый вопрос" + +#: conf/social_sharing.py:45 +#, fuzzy +msgid "Check to enable sharing of questions on Identi.ca" +msgstr "Добавить кнопки для сетей Twitter и Facebook в каждый вопрос" + +#: conf/social_sharing.py:54 +#, fuzzy +msgid "Check to enable sharing of questions on Google+" +msgstr "Добавить кнопки для сетей Twitter и Facebook в каждый вопрос" + +#: conf/spam_and_moderation.py:9 +msgid "Spam control and content moderation" +msgstr "" + +#: conf/spam_and_moderation.py:16 +#, fuzzy +msgid "Enable Akismet spam detection(keys below are required)" +msgstr "Активировать recaptcha (требуется регистрация на recaptcha.net)" + +#: conf/spam_and_moderation.py:19 +#, python-format +msgid "To get an Akismet key please visit Akismet site" +msgstr "" + +#: conf/spam_and_moderation.py:29 +msgid "Akismet key for spam detection" +msgstr "" + +#: conf/user_settings.py:11 +#, fuzzy +msgid "User settings" msgstr "Настройка политики пользователей" -#: conf/user_settings.py:18 +#: conf/user_settings.py:19 msgid "Allow editing user screen name" msgstr "Позволить пользователям изменять имена" -#: conf/user_settings.py:27 +#: conf/user_settings.py:28 #, fuzzy msgid "Allow account recovery by email" msgstr "Email для восстановления аккаунта выслан" #: conf/user_settings.py:37 +#, fuzzy +msgid "Allow adding and removing login methods" +msgstr "" +"Пожалуйста, добавьте хотя бы один постоянный метод для авторизации. Иметь " +"два или больше методов тоже можно." + +#: conf/user_settings.py:47 msgid "Minimum allowed length for screen name" msgstr "Минимальное количество букв в именах пользователей" -#: conf/user_settings.py:46 +#: conf/user_settings.py:57 +msgid "Default Gravatar icon type" +msgstr "" + +#: conf/user_settings.py:59 +msgid "" +"This option allows you to set the default avatar type for email addresses " +"without associated gravatar images. For more information, please visit this page." +msgstr "" + +#: conf/user_settings.py:69 #, fuzzy msgid "Name for the Anonymous user" msgstr "Поддельный адрес электронной почты для анонимного пользователя" @@ -1321,604 +1916,642 @@ msgid "Number of days to allow canceling votes" msgstr "Количество дней, в течение которых можно отменить голос" #: conf/vote_rules.py:58 +#, fuzzy +msgid "Number of days required before answering own question" +msgstr "Количество дней, в течение которых можно отменить голос" + +#: conf/vote_rules.py:67 msgid "Number of flags required to automatically hide posts" msgstr "Число сигналов, требуемое для автоматического скрытия сообщений" -#: conf/vote_rules.py:67 +#: conf/vote_rules.py:76 #, fuzzy msgid "Number of flags required to automatically delete posts" msgstr "Количество меток требуемое для автоматического удаления сообщений" -#: const/__init__.py:9 +#: const/__init__.py:10 msgid "duplicate question" msgstr "такой вопрос уже был задан" -#: const/__init__.py:10 +#: const/__init__.py:11 msgid "question is off-topic or not relevant" msgstr "вопрос не по теме данного форума" -#: const/__init__.py:11 +#: const/__init__.py:12 msgid "too subjective and argumentative" msgstr "вопрос слишком субъективный или спорный" -#: const/__init__.py:12 +#: const/__init__.py:13 msgid "not a real question" msgstr "на вопрос не похоже" -#: const/__init__.py:13 +#: const/__init__.py:14 msgid "the question is answered, right answer was accepted" msgstr "на этот вопрос был дан ответ и он был принят как правильный" -#: const/__init__.py:14 +#: const/__init__.py:15 msgid "question is not relevant or outdated" msgstr "вопрос устарел или более на актуален" -#: const/__init__.py:15 +#: const/__init__.py:16 msgid "question contains offensive or malicious remarks" msgstr "вопрос содержит грубые или злонамеренные заявления" -#: const/__init__.py:16 +#: const/__init__.py:17 msgid "spam or advertising" msgstr "спам или реклама" -#: const/__init__.py:17 +#: const/__init__.py:18 msgid "too localized" msgstr "слишком специализированный" -#: const/__init__.py:40 +#: const/__init__.py:41 msgid "newest" msgstr "новые" -#: const/__init__.py:41 -#: skins/default/templates/users.html:25 -#: skins/default/templates/users.html:26 -#, fuzzy +#: const/__init__.py:42 skins/default/templates/users.html:26 msgid "oldest" msgstr "старые" -#: const/__init__.py:42 +#: const/__init__.py:43 msgid "active" msgstr "активные" -#: const/__init__.py:43 +#: const/__init__.py:44 msgid "inactive" msgstr "неактивные" -#: const/__init__.py:44 +#: const/__init__.py:45 #, fuzzy msgid "hottest" msgstr "больше ответов" -#: const/__init__.py:45 +#: const/__init__.py:46 #, fuzzy msgid "coldest" msgstr "меньше ответов" -#: const/__init__.py:46 +#: const/__init__.py:47 msgid "most voted" msgstr "больше голосов" -#: const/__init__.py:47 +#: const/__init__.py:48 msgid "least voted" msgstr "меньше голосов" -#: const/__init__.py:48 -#: skins/default/templates/main_page/tab_bar.html:29 +#: const/__init__.py:49 msgid "relevance" msgstr "уместность" -#: const/__init__.py:55 -#: skins/default/templates/main_page/tab_bar.html:10 +#: const/__init__.py:57 skins/default/templates/main_page/tab_bar.html:10 #: skins/default/templates/user_profile/user_inbox.html:50 msgid "all" msgstr "все" -#: const/__init__.py:56 -#: skins/default/templates/main_page/tab_bar.html:15 +#: const/__init__.py:58 skins/default/templates/main_page/tab_bar.html:15 msgid "unanswered" -msgstr "без ответа" +msgstr "неотвеченные" -#: const/__init__.py:57 -#: skins/default/templates/main_page/tab_bar.html:21 +#: const/__init__.py:59 msgid "favorite" -msgstr "избранное" +msgstr "закладки" + +#: const/__init__.py:64 +#, fuzzy +msgid "list" +msgstr "Список тегов" -#: const/__init__.py:71 +#: const/__init__.py:65 +msgid "cloud" +msgstr "" + +#: const/__init__.py:78 msgid "Question has no answers" msgstr "Нет ни одного ответа" -#: const/__init__.py:72 +#: const/__init__.py:79 msgid "Question has no accepted answers" msgstr "Нет принятого ответа" -#: const/__init__.py:114 +#: const/__init__.py:121 msgid "asked a question" msgstr "задан вопрос" -#: const/__init__.py:115 +#: const/__init__.py:122 msgid "answered a question" msgstr "дан ответ" -#: const/__init__.py:116 +#: const/__init__.py:123 msgid "commented question" msgstr "прокомментированный вопрос" -#: const/__init__.py:117 +#: const/__init__.py:124 msgid "commented answer" msgstr "прокомментированный ответ" -#: const/__init__.py:118 +#: const/__init__.py:125 msgid "edited question" msgstr "отредактированный вопрос" -#: const/__init__.py:119 +#: const/__init__.py:126 msgid "edited answer" msgstr "отредактированный ответ" -#: const/__init__.py:120 +#: const/__init__.py:127 msgid "received award" msgstr "получена награда" -#: const/__init__.py:121 +#: const/__init__.py:128 msgid "marked best answer" msgstr "отмечен как лучший ответ" -#: const/__init__.py:122 +#: const/__init__.py:129 msgid "upvoted" msgstr "проголосовали \"за\"" -#: const/__init__.py:123 +#: const/__init__.py:130 msgid "downvoted" msgstr "проголосовали \"против\"" -#: const/__init__.py:124 +#: const/__init__.py:131 msgid "canceled vote" msgstr "отмененный голос" -#: const/__init__.py:125 +#: const/__init__.py:132 msgid "deleted question" msgstr "удаленный вопрос" -#: const/__init__.py:126 +#: const/__init__.py:133 msgid "deleted answer" msgstr "удаленный ответ" -#: const/__init__.py:127 +#: const/__init__.py:134 msgid "marked offensive" msgstr "отметка неуместного содержания" -#: const/__init__.py:128 +#: const/__init__.py:135 msgid "updated tags" msgstr "обновленные тэги " -#: const/__init__.py:129 +#: const/__init__.py:136 #, fuzzy msgid "selected favorite" msgstr "занесено в избранное " -#: const/__init__.py:130 +#: const/__init__.py:137 #, fuzzy msgid "completed user profile" msgstr "завершенный профиль пользователя" -#: const/__init__.py:131 +#: const/__init__.py:138 msgid "email update sent to user" msgstr "сообщение выслано по электронной почте" -#: const/__init__.py:134 +#: const/__init__.py:141 +#, fuzzy msgid "reminder about unanswered questions sent" -msgstr "напоминание о вопросах без ответа" +msgstr "просмотреть неотвеченные ворпосы" -#: const/__init__.py:136 +#: const/__init__.py:143 msgid "mentioned in the post" msgstr "упомянуто в тексте сообщения" -#: const/__init__.py:187 +#: const/__init__.py:194 msgid "question_answered" msgstr "question_answered" -#: const/__init__.py:188 +#: const/__init__.py:195 msgid "question_commented" msgstr "question_commented" -#: const/__init__.py:189 +#: const/__init__.py:196 msgid "answer_commented" msgstr "answer_commented" -#: const/__init__.py:190 +#: const/__init__.py:197 msgid "answer_accepted" msgstr "answer_accepted" -#: const/__init__.py:194 +#: const/__init__.py:201 msgid "[closed]" msgstr "[закрыт]" -#: const/__init__.py:195 +#: const/__init__.py:202 msgid "[deleted]" msgstr "[удален]" -#: const/__init__.py:196 -#: views/readers.py:563 +#: const/__init__.py:203 views/readers.py:614 msgid "initial version" msgstr "изначальная версия" -#: const/__init__.py:197 +#: const/__init__.py:204 msgid "retagged" msgstr "теги изменены" -#: const/__init__.py:205 +#: const/__init__.py:212 msgid "off" -msgstr "выключить" +msgstr "отключить" -#: const/__init__.py:206 -#, fuzzy +#: const/__init__.py:213 msgid "exclude ignored" -msgstr "исключить игнорируемые теги" +msgstr "исключить игнорируемые" -#: const/__init__.py:207 -#, fuzzy +#: const/__init__.py:214 msgid "only selected" -msgstr "только выбранные" +msgstr "только избранные" -#: const/__init__.py:211 +#: const/__init__.py:218 msgid "instantly" msgstr "немедленно " -#: const/__init__.py:212 +#: const/__init__.py:219 msgid "daily" msgstr "ежедневно" -#: const/__init__.py:213 +#: const/__init__.py:220 msgid "weekly" msgstr "еженедельно" -#: const/__init__.py:214 +#: const/__init__.py:221 msgid "no email" msgstr "не посылать email" -#: const/__init__.py:252 -#: skins/default/templates/badges.html:37 +#: const/__init__.py:228 +msgid "identicon" +msgstr "" + +#: const/__init__.py:229 +#, fuzzy +msgid "mystery-man" +msgstr "вчера" + +#: const/__init__.py:230 +msgid "monsterid" +msgstr "" + +#: const/__init__.py:231 +#, fuzzy +msgid "wavatar" +msgstr "что такое Gravatar" + +#: const/__init__.py:232 +msgid "retro" +msgstr "" + +#: const/__init__.py:279 skins/default/templates/badges.html:37 msgid "gold" msgstr "золотая" -#: const/__init__.py:253 -#: skins/default/templates/badges.html:46 +#: const/__init__.py:280 skins/default/templates/badges.html:46 msgid "silver" msgstr "серебряная" -#: const/__init__.py:254 -#: skins/default/templates/badges.html:53 +#: const/__init__.py:281 skins/default/templates/badges.html:53 msgid "bronze" msgstr "бронзовая " -#: const/message_keys.py:19 -#, python-format -msgid "First time here? Check out the FAQ!" -msgstr "Впервые здесь? Посмотрите наши часто задаваемые вопросы(FAQ)!" +#: const/__init__.py:293 +msgid "None" +msgstr "" -#: const/message_keys.py:22 -#: skins/default/templates/main_page/tab_bar.html:27 +#: const/__init__.py:294 +#, fuzzy +msgid "Gravatar" +msgstr "что такое Gravatar" + +#: const/__init__.py:295 +#, fuzzy +msgid "Uploaded Avatar" +msgstr "что такое Gravatar" + +#: const/message_keys.py:15 #, fuzzy msgid "most relevant questions" msgstr "ваш вопрос должен соответствовать тематике сообщества" -#: const/message_keys.py:23 -#: skins/default/templates/main_page/tab_bar.html:28 +#: const/message_keys.py:16 #, fuzzy msgid "click to see most relevant questions" msgstr "нажмите, чтобы просмотреть вопросы с большим числом голосов" -#: const/message_keys.py:24 +#: const/message_keys.py:17 #, fuzzy msgid "by relevance" msgstr "уместность" -#: const/message_keys.py:25 +#: const/message_keys.py:18 msgid "click to see the oldest questions" msgstr "нажмите, чтобы увидеть старые вопросы" -#: const/message_keys.py:26 -#, fuzzy +#: const/message_keys.py:19 msgid "by date" msgstr "дата" -#: const/message_keys.py:27 +#: const/message_keys.py:20 msgid "click to see the newest questions" msgstr "нажмите, чтобы увидеть последние вопросы" -#: const/message_keys.py:28 +#: const/message_keys.py:21 msgid "click to see the least recently updated questions" msgstr "нажмите, чтобы посмотреть последние обновленные вопросы" -#: const/message_keys.py:29 -#, fuzzy +#: const/message_keys.py:22 msgid "by activity" msgstr "активность" -#: const/message_keys.py:30 +#: const/message_keys.py:23 msgid "click to see the most recently updated questions" msgstr "нажмите, чтобы посмотреть недавно обновленные вопросы" -#: const/message_keys.py:31 +#: const/message_keys.py:24 #, fuzzy msgid "click to see the least answered questions" msgstr "нажмите, чтобы увидеть старые вопросы" -#: const/message_keys.py:32 -#, fuzzy +#: const/message_keys.py:25 msgid "by answers" msgstr "ответы" -#: const/message_keys.py:33 +#: const/message_keys.py:26 #, fuzzy msgid "click to see the most answered questions" msgstr "нажмите, чтобы увидеть последние вопросы" -#: const/message_keys.py:34 +#: const/message_keys.py:27 msgid "click to see least voted questions" msgstr "нажмите, чтобы просмотреть последние отмеченные голосами вопросы" -#: const/message_keys.py:35 -#, fuzzy +#: const/message_keys.py:28 msgid "by votes" msgstr "голоса" -#: const/message_keys.py:36 +#: const/message_keys.py:29 msgid "click to see most voted questions" msgstr "нажмите, чтобы просмотреть вопросы с большим числом голосов" -#: deps/django_authopenid/forms.py:110 -#: deps/django_authopenid/views.py:135 +#: deps/django_authopenid/backends.py:88 +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 msgid "i-names are not supported" msgstr "i-names не поддерживаются" -#: deps/django_authopenid/forms.py:231 +#: deps/django_authopenid/forms.py:233 #, python-format msgid "Please enter your %(username_token)s" msgstr "Пожалуйста, введите Ваш %(username_token)s" -#: deps/django_authopenid/forms.py:257 +#: deps/django_authopenid/forms.py:259 msgid "Please, enter your user name" msgstr "Пожалуйста, введите имя пользователя" -#: deps/django_authopenid/forms.py:261 +#: deps/django_authopenid/forms.py:263 msgid "Please, enter your password" msgstr "Пожалуйста, введите пароль" -#: deps/django_authopenid/forms.py:268 -#: deps/django_authopenid/forms.py:272 +#: deps/django_authopenid/forms.py:270 deps/django_authopenid/forms.py:274 msgid "Please, enter your new password" msgstr "Пожалуйста, введите новый пароль" -#: deps/django_authopenid/forms.py:283 +#: deps/django_authopenid/forms.py:285 msgid "Passwords did not match" -msgstr "Пароли не одинаковы" +msgstr "Пароли не подходят" -#: deps/django_authopenid/forms.py:295 +#: deps/django_authopenid/forms.py:297 #, python-format msgid "Please choose password > %(len)s characters" msgstr "Пожалуйста, выберите пароль > %(len)s символов" -#: deps/django_authopenid/forms.py:330 +#: deps/django_authopenid/forms.py:335 msgid "Current password" msgstr "Текущий пароль" -#: deps/django_authopenid/forms.py:341 -msgid "Old password is incorrect. Please enter the correct password." +#: deps/django_authopenid/forms.py:346 +msgid "" +"Old password is incorrect. Please enter the correct " +"password." msgstr "Старый пароль неверен. Пожалуйста, введите правильный пароль." -#: deps/django_authopenid/forms.py:394 +#: deps/django_authopenid/forms.py:399 msgid "Sorry, we don't have this email address in the database" msgstr "Извините, но этого адреса нет в нашей базе данных." -#: deps/django_authopenid/forms.py:430 +#: deps/django_authopenid/forms.py:435 msgid "Your user name (required)" msgstr "Ваше имя пользователя (обязательно)" -#: deps/django_authopenid/forms.py:445 +#: deps/django_authopenid/forms.py:450 msgid "Incorrect username." msgstr "Неправильное имя пользователя." -#: deps/django_authopenid/urls.py:9 -#: deps/django_authopenid/urls.py:10 -#: deps/django_authopenid/urls.py:11 -#: deps/django_authopenid/urls.py:14 -#: deps/django_authopenid/urls.py:17 -#: setup_templates/settings.py:202 +#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12 +#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:202 msgid "signin/" -msgstr "signin/" +msgstr "vhod/" #: deps/django_authopenid/urls.py:10 -msgid "newquestion/" -msgstr "newquestion/" - -#: deps/django_authopenid/urls.py:11 -msgid "newanswer/" -msgstr "newanswer/" - -#: deps/django_authopenid/urls.py:12 msgid "signout/" -msgstr "signout/" +msgstr "vyhod/" -#: deps/django_authopenid/urls.py:14 +#: deps/django_authopenid/urls.py:12 msgid "complete/" -msgstr "complete/" +msgstr "zavershaem/" -#: deps/django_authopenid/urls.py:17 +#: deps/django_authopenid/urls.py:15 msgid "complete-oauth/" -msgstr "complete-oauth/" +msgstr "zavershaem-oauth/" -#: deps/django_authopenid/urls.py:21 +#: deps/django_authopenid/urls.py:19 msgid "register/" -msgstr "register/" +msgstr "registraciya/" -#: deps/django_authopenid/urls.py:23 +#: deps/django_authopenid/urls.py:21 msgid "signup/" -msgstr "signup/" +msgstr "noviy-account/" + +#: deps/django_authopenid/urls.py:25 +msgid "logout/" +msgstr "" -#: deps/django_authopenid/urls.py:31 +#: deps/django_authopenid/urls.py:30 msgid "recover/" -msgstr "recover/" +msgstr "vosstanovleniye-accounta/" -#: deps/django_authopenid/util.py:233 +#: deps/django_authopenid/util.py:378 #, python-format msgid "%(site)s user name and password" msgstr "имя пользователя и пароль на %(site)s" -#: deps/django_authopenid/util.py:239 -#: skins/default/templates/authopenid/signin.html:105 +#: deps/django_authopenid/util.py:384 +#: skins/default/templates/authopenid/signin.html:108 msgid "Create a password-protected account" msgstr "Создайте новый аккаунт с именем и паролем" -#: deps/django_authopenid/util.py:240 +#: deps/django_authopenid/util.py:385 msgid "Change your password" msgstr "Сменить пароль" -#: deps/django_authopenid/util.py:302 +#: deps/django_authopenid/util.py:473 msgid "Sign in with Yahoo" msgstr "Вход через Yahoo" -#: deps/django_authopenid/util.py:309 +#: deps/django_authopenid/util.py:480 msgid "AOL screen name" msgstr "Имя пользователя в AOL" -#: deps/django_authopenid/util.py:317 +#: deps/django_authopenid/util.py:488 msgid "OpenID url" msgstr "Адрес Вашего OpenID" -#: deps/django_authopenid/util.py:344 +#: deps/django_authopenid/util.py:517 msgid "Flickr user name" msgstr "Имя пользователя на Flickr" -#: deps/django_authopenid/util.py:352 +#: deps/django_authopenid/util.py:525 msgid "Technorati user name" msgstr "Имя пользователя в Technorati" -#: deps/django_authopenid/util.py:360 +#: deps/django_authopenid/util.py:533 msgid "WordPress blog name" msgstr "Имя блога на WordPress" -#: deps/django_authopenid/util.py:368 +#: deps/django_authopenid/util.py:541 msgid "Blogger blog name" msgstr "Имя блога на Blogger" -#: deps/django_authopenid/util.py:376 +#: deps/django_authopenid/util.py:549 msgid "LiveJournal blog name" msgstr "Имя блога на LiveJournal" -#: deps/django_authopenid/util.py:384 +#: deps/django_authopenid/util.py:557 msgid "ClaimID user name" msgstr "Имя пользователя в ClaimID" -#: deps/django_authopenid/util.py:392 +#: deps/django_authopenid/util.py:565 msgid "Vidoop user name" msgstr "Имя пользователя в Vidoop" -#: deps/django_authopenid/util.py:400 +#: deps/django_authopenid/util.py:573 msgid "Verisign user name" msgstr "Имя пользователя в Verisign" -#: deps/django_authopenid/util.py:424 +#: deps/django_authopenid/util.py:608 #, python-format msgid "Change your %(provider)s password" msgstr "Сменить пароль в %(provider)s" -#: deps/django_authopenid/util.py:428 +#: deps/django_authopenid/util.py:612 #, python-format msgid "Click to see if your %(provider)s signin still works for %(site_name)s" -msgstr "Проверьте, работает ли по-прежнему Ваш логин от %(provider)s на %(site_name)s" +msgstr "" +"Проверьте, работает ли по-прежнему Ваш логин от %(provider)s на %(site_name)s" -#: deps/django_authopenid/util.py:437 +#: deps/django_authopenid/util.py:621 #, python-format msgid "Create password for %(provider)s" msgstr "Создать пароль для %(provider)s" -#: deps/django_authopenid/util.py:441 +#: deps/django_authopenid/util.py:625 #, python-format msgid "Connect your %(provider)s account to %(site_name)s" -msgstr "Соедините Ваш аккаунт на %(provider)s с Вашей учетной записью на %(site_name)s" +msgstr "" +"Соедините Ваш аккаунт на %(provider)s с Вашей учетной записью на " +"%(site_name)s" -#: deps/django_authopenid/util.py:450 +#: deps/django_authopenid/util.py:634 #, python-format msgid "Signin with %(provider)s user name and password" msgstr "Заходите с именем пользователя и паролем %(provider)s " -#: deps/django_authopenid/util.py:457 +#: deps/django_authopenid/util.py:641 #, python-format msgid "Sign in with your %(provider)s account" msgstr "Заходите через Ваш аккаунт на %(provider)s" -#: deps/django_authopenid/views.py:142 +#: deps/django_authopenid/views.py:158 #, python-format msgid "OpenID %(openid_url)s is invalid" msgstr "OpenID %(openid_url)s недействителен" -#: deps/django_authopenid/views.py:254 -#: deps/django_authopenid/views.py:399 -#: deps/django_authopenid/views.py:427 +#: deps/django_authopenid/views.py:270 deps/django_authopenid/views.py:415 +#: deps/django_authopenid/views.py:443 #, python-format -msgid "Unfortunately, there was some problem when connecting to %(provider)s, please try again or use another provider" -msgstr "К сожалению, возникла проблема при соединении с %(provider)s, пожалуйста попробуйте ещё раз или зайдите через другого провайдера" +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:349 +#: deps/django_authopenid/views.py:365 msgid "Your new password saved" msgstr "Ваш новый пароль сохранен" -#: deps/django_authopenid/views.py:512 +#: deps/django_authopenid/views.py:469 +msgid "The login password combination was not correct" +msgstr "" + +#: deps/django_authopenid/views.py:573 msgid "Please click any of the icons below to sign in" -msgstr "Чтобы войти на форум, нажмите на любую из кнопок ниже " +msgstr "Введите имя пользователя и пароль" -#: deps/django_authopenid/views.py:514 +#: deps/django_authopenid/views.py:575 msgid "Account recovery email sent" msgstr "Email для восстановления аккаунта выслан" -#: deps/django_authopenid/views.py:517 +#: deps/django_authopenid/views.py:578 msgid "Please add one or more login methods." -msgstr "Пожалуйста, добавьте хотя бы один постоянный метод для авторизации. Иметь два или больше методов тоже можно." +msgstr "" +"Пожалуйста, добавьте хотя бы один постоянный метод для авторизации. Иметь " +"два или больше методов тоже можно." -#: deps/django_authopenid/views.py:519 +#: deps/django_authopenid/views.py:580 msgid "If you wish, please add, remove or re-validate your login methods" -msgstr "Если Вам угодно, пожалуйста добавьте, удалите или проверьте как работают Ваши методы для авторизации" +msgstr "Здесь можно изменить пароль и проверить текущие методы авторизации" -#: deps/django_authopenid/views.py:521 +#: deps/django_authopenid/views.py:582 msgid "Please wait a second! Your account is recovered, but ..." -msgstr "Пожалуйста, подождите секунду! Ваша учетная запись восстановлена, но ..." +msgstr "" +"Пожалуйста, подождите секунду! Ваша учетная запись восстанавлена, но ..." -#: deps/django_authopenid/views.py:523 +#: deps/django_authopenid/views.py:584 msgid "Sorry, this account recovery key has expired or is invalid" msgstr "К сожалению, этот ключ восстановления истек или не является верным" -#: deps/django_authopenid/views.py:594 +#: deps/django_authopenid/views.py:657 #, python-format msgid "Login method %(provider_name)s does not exist" msgstr "Метод входа %(provider_name) s не существует" -#: deps/django_authopenid/views.py:600 +#: deps/django_authopenid/views.py:663 msgid "Oops, sorry - there was some error - please try again" -msgstr "Ой, извините, произошла ошибка - пожалуйста, попробуйте ещё раз" +msgstr "Упс, извините, произошла ошибка - пожалуйста, попробуйте ещё раз" -#: deps/django_authopenid/views.py:691 +#: deps/django_authopenid/views.py:754 #, python-format msgid "Your %(provider)s login works fine" msgstr "Вход при помощи %(provider)s работает отлично" -#: deps/django_authopenid/views.py:1001 -#: deps/django_authopenid/views.py:1007 +#: deps/django_authopenid/views.py:1065 deps/django_authopenid/views.py:1071 #, python-format msgid "your email needs to be validated see %(details_url)s" -msgstr "пожалуйста подтвердите ваш email, дополнительная информация (здесь)" +msgstr "" +"пожалуйста подтвердите ваш email, дополнительная информация (здесь)" -#: deps/django_authopenid/views.py:1028 +#: deps/django_authopenid/views.py:1092 #, fuzzy, python-format msgid "Recover your %(site)s account" msgstr "Восстановить ваш аккаунт используя email" -#: deps/django_authopenid/views.py:1098 +#: deps/django_authopenid/views.py:1162 msgid "Please check your email and visit the enclosed link." msgstr "Пожалуйста, проверьте свой email и пройдите по вложенной ссылке." -#: deps/livesettings/models.py:101 -#: deps/livesettings/models.py:140 +#: deps/livesettings/models.py:101 deps/livesettings/models.py:140 msgid "Site" msgstr "Сайт" @@ -1939,7 +2572,7 @@ msgstr "Значение по умолчанию:" msgid "Default value: %s" msgstr "Значение по умолчанию: %s" -#: deps/livesettings/values.py:588 +#: deps/livesettings/values.py:601 #, python-format msgid "Allowed image file types are %(types)s" msgstr "Допустимые типы файлов изображений: %(types)s" @@ -1955,7 +2588,7 @@ msgstr "Документация" #: deps/livesettings/templates/livesettings/group_settings.html:11 #: deps/livesettings/templates/livesettings/site_settings.html:23 -#: skins/default/templates/authopenid/signin.html:123 +#: skins/default/templates/authopenid/signin.html:132 msgid "Change password" msgstr "Сменить пароль" @@ -2016,49 +2649,20 @@ msgstr "Настройки групп: %(name)s" msgid "Uncollapse all" msgstr "Развернуть все" -#: deps/recaptcha_django/__init__.py:19 -#: deps/recaptcha_django/__init__.py:80 -msgid "Unknown error." -msgstr "Неизвестная ошибка." - -#: deps/recaptcha_django/__init__.py:20 -#: deps/recaptcha_django/__init__.py:21 -msgid "ReCAPTCHA is wrongly configured." -msgstr "Recaptcha неправильно настроен." - -#: deps/recaptcha_django/__init__.py:22 -msgid "Bad reCAPTCHA challenge parameter." -msgstr "Неправильный ввод параметра reCAPTCHA. " - -#: deps/recaptcha_django/__init__.py:23 -msgid "The CAPTCHA solution was incorrect." -msgstr "Решение CAPTCHA было неправильным." - -#: deps/recaptcha_django/__init__.py:24 -msgid "Bad reCAPTCHA verification parameters." -msgstr "Неверные параметры верификации reCAPTCHA. " - -#: deps/recaptcha_django/__init__.py:25 -msgid "Provided reCAPTCHA API keys are not valid for this domain." -msgstr "Предоставленные Recaptcha API ключи не подходят для этого домена." - -#: deps/recaptcha_django/__init__.py:26 -msgid "ReCAPTCHA could not be reached." -msgstr "ReCAPTCHA недоступен. " - -#: deps/recaptcha_django/__init__.py:73 -msgid "Invalid request" -msgstr "Неправильный запрос" - -#: importers/stackexchange/management/commands/load_stackexchange.py:128 +#: importers/stackexchange/management/commands/load_stackexchange.py:141 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." +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:34 +#: management/commands/post_emailed_questions.py:35 msgid "" "

      To ask by email, please:

      \n" "
        \n" @@ -2069,21 +2673,27 @@ msgid "" "may be separated by a semicolon or a comma

        \n" msgstr "" -#: management/commands/post_emailed_questions.py:54 +#: management/commands/post_emailed_questions.py:55 #, python-format -msgid "

        Sorry, there was an error posting your question please contact the %(site)s administrator

        " -msgstr "

        Извините, произошла ошибка с размещением вашего вопроса, напишите администратору %(site)s

        " +msgid "" +"

        Sorry, there was an error posting your question please contact the " +"%(site)s administrator

        " +msgstr "" -#: management/commands/post_emailed_questions.py:60 +#: management/commands/post_emailed_questions.py:61 #, python-format -msgid "

        Sorry, in order to post questions on %(site)s by email, please register first

        " +msgid "" +"

        Sorry, in order to post questions on %(site)s by email, please register first

        " msgstr "" -#: management/commands/post_emailed_questions.py:68 -msgid "

        Sorry, your question could not be posted due to insufficient privileges of your user account

        " +#: management/commands/post_emailed_questions.py:69 +msgid "" +"

        Sorry, your question could not be posted due to insufficient privileges " +"of your user account

        " msgstr "" -#: management/commands/send_email_alerts.py:408 +#: management/commands/send_email_alerts.py:411 #, python-format msgid "%(question_count)d updated question about %(topics)s" msgid_plural "%(question_count)d updated questions about %(topics)s" @@ -2091,7 +2701,7 @@ 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:418 +#: management/commands/send_email_alerts.py:421 #, python-format msgid "%(name)s, this is an update message header for %(num)d question" msgid_plural "%(name)s, this is an update message header for %(num)d questions" @@ -2099,30 +2709,55 @@ msgstr[0] "%(name)s, в этом %(num)d вопросе есть новости" msgstr[1] "%(name)s, в этих %(num)d вопросах есть новости" msgstr[2] "%(name)s, в этих %(num)d вопросах есть новости" -#: management/commands/send_email_alerts.py:435 +#: management/commands/send_email_alerts.py:438 msgid "new question" msgstr "новый вопрос" -#: management/commands/send_email_alerts.py:452 -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: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:464 -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: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:470 -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: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:476 -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: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:482 +#: management/commands/send_email_alerts.py:490 #, python-format -msgid "go to %(email_settings_link)s to change frequency of email updates or %(admin_email)s administrator" -msgstr "Здесь Вы можете изменить частоту рассылки. Если возникнет необходимость - пожалуйста свяжитесь с администратором форума по %(admin_email)s." +msgid "" +"go to %(email_settings_link)s to change frequency of email updates or " +"%(admin_email)s administrator" +msgstr "" +"Здесь Вы можете изменить частоту " +"рассылки. Если возникнет необходимость - пожалуйста свяжитесь с " +"администратором форума по %(admin_email)s." #: management/commands/send_unanswered_question_reminders.py:80 #, fuzzy, python-format @@ -2132,324 +2767,474 @@ msgstr[0] "%(question_count)d вопрос обновлен в %(topics)s" msgstr[1] "%(question_count)d вопросы обновлены в %(topics)s" msgstr[2] "%(question_count)d вопросы обновлены в %(topics)s" -#: models/__init__.py:299 -msgid "Sorry, you cannot accept or unaccept best answers because your account is blocked" -msgstr "К сожалению, вы не можете принять или не принять лучший ответ, потому что ваша учетная запись заблокирована" +#: models/__init__.py:316 +msgid "" +"Sorry, you cannot accept or unaccept best answers because your account is " +"blocked" +msgstr "" +"К сожалению, вы не можете принять или не принять лучший ответ, потому что " +"ваша учетная запись заблокирована" -#: models/__init__.py:304 -msgid "Sorry, you cannot accept or unaccept best answers because your account is suspended" -msgstr "К сожалению, вы не можете принять или не принять лучший ответ, потому что ваша учетная запись приостановлена" +#: models/__init__.py:320 +msgid "" +"Sorry, you cannot accept or unaccept best answers because your account is " +"suspended" +msgstr "" +"К сожалению, вы не можете принять или не принять лучший ответ, потому что " +"ваша учетная запись приостановлена" -#: models/__init__.py:310 -msgid "Sorry, you cannot accept or unaccept your own answer to your own question" -msgstr "К сожалению, вы не можете принять или не принять ваш собственный ответ на ваш вопрос" +#: models/__init__.py:333 +#, fuzzy, python-format +msgid "" +">%(points)s points required to accept or unaccept your own answer to your " +"own question" +msgstr "" +"К сожалению, вы не можете принять или не принять ваш собственный ответ на " +"ваш вопрос" -#: models/__init__.py:317 -#, python-format -msgid "Sorry, only original author of the question - %(username)s - can accept the best answer" -msgstr "К сожалению, только первый автор вопроса - %(username)s - может принять лучший ответ" +#: models/__init__.py:347 +#, fuzzy, python-format +msgid "" +"Sorry, only original author of the question - %(username)s - can accept or " +"unaccept the best answer" +msgstr "" +"К сожалению, только первый автор вопроса - %(username)s - может принять " +"лучший ответ" -#: models/__init__.py:340 +#: models/__init__.py:375 msgid "cannot vote for own posts" msgstr "нельзя голосовать за собственные сообщения" -#: models/__init__.py:343 +#: models/__init__.py:378 msgid "Sorry your account appears to be blocked " msgstr "К сожалению, ваша учетная запись заблокирована" -#: models/__init__.py:348 +#: models/__init__.py:383 msgid "Sorry your account appears to be suspended " msgstr "К сожалению, ваша учетная запись приостановлена" -#: models/__init__.py:358 +#: models/__init__.py:393 #, python-format msgid ">%(points)s points required to upvote" msgstr "для повышения рейтинга требуется минимум %(points)s баллов " -#: models/__init__.py:364 +#: models/__init__.py:399 #, python-format msgid ">%(points)s points required to downvote" msgstr "для понижения рейтинга требуется минимум %(points)s баллов" -#: models/__init__.py:379 +#: models/__init__.py:414 msgid "Sorry, blocked users cannot upload files" msgstr "К сожалению, заблокированные пользователи не могут загружать файлы" -#: models/__init__.py:380 +#: models/__init__.py:415 msgid "Sorry, suspended users cannot upload files" -msgstr "К сожалению, временно блокированные пользователи не могут загружать файлы" +msgstr "" +"К сожалению, временно блокированные пользователи не могут загружать файлы" -#: models/__init__.py:382 +#: models/__init__.py:417 #, python-format -msgid "uploading images is limited to users with >%(min_rep)s reputation points" -msgstr "загрузка изображений доступна только пользователям с репутацией > %(min_rep)s" +msgid "" +"uploading images is limited to users with >%(min_rep)s reputation points" +msgstr "" +"загрузка изображений доступна только пользователям с репутацией > %(min_rep)s" -#: models/__init__.py:401 -#: models/__init__.py:468 -#: models/__init__.py:2374 +#: models/__init__.py:436 models/__init__.py:503 models/__init__.py:918 msgid "blocked users cannot post" msgstr "заблокированные пользователи не могут размещать сообщения" -#: models/__init__.py:402 -#: models/__init__.py:2377 +#: models/__init__.py:437 models/__init__.py:921 msgid "suspended users cannot post" msgstr "временно заблокированные пользователи не могут размещать сообщения" -#: models/__init__.py:429 +#: models/__init__.py:464 #, fuzzy, python-format -msgid "Sorry, comments (except the last one) are editable only within %(minutes)s minute from posting" -msgid_plural "Sorry, comments (except the last one) are editable only within %(minutes)s minutes from posting" -msgstr[0] "К сожалению, комментарии (за исключением последнего) можно редактировать только в течение 10 минут" -msgstr[1] "К сожалению, комментарии (за исключением последнего) можно редактировать только в течение 10 минут" -msgstr[2] "К сожалению, комментарии (за исключением последнего) можно редактировать только в течение 10 минут" +msgid "" +"Sorry, comments (except the last one) are editable only within %(minutes)s " +"minute from posting" +msgid_plural "" +"Sorry, comments (except the last one) are editable only within %(minutes)s " +"minutes from posting" +msgstr[0] "" +"К сожалению, комментарии (за исключением последнего) можно редактировать " +"только в течение 10 минут" +msgstr[1] "" +"К сожалению, комментарии (за исключением последнего) можно редактировать " +"только в течение 10 минут" +msgstr[2] "" +"К сожалению, комментарии (за исключением последнего) можно редактировать " +"только в течение 10 минут" -#: models/__init__.py:441 +#: models/__init__.py:476 msgid "Sorry, but only post owners or moderators can edit comments" -msgstr "К сожалению, только владелец или модератор может редактировать комментарий" +msgstr "" +"К сожалению, только владелец или модератор может редактировать комментарий" -#: models/__init__.py:454 -msgid "Sorry, since your account is suspended you can comment only your own posts" -msgstr "К сожалению, так как ваш аккаунт приостановлен вы можете комментировать только свои собственные сообщения" +#: models/__init__.py:489 +msgid "" +"Sorry, since your account is suspended you can comment only your own posts" +msgstr "" +"К сожалению, так как ваш аккаунт приостановлен вы можете комментировать " +"только свои собственные сообщения" -#: models/__init__.py:458 +#: models/__init__.py:493 #, 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 баллов кармы. Вы можете комментировать только свои собственные сообщения и ответы на ваши вопросы" +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:486 -msgid "This post has been deleted and can be seen only by post owners, site administrators and moderators" -msgstr "Этот пост был удален, его может увидеть только владелец, администраторы сайта и модераторы" +#: models/__init__.py:521 +msgid "" +"This post has been deleted and can be seen only by post owners, site " +"administrators and moderators" +msgstr "" +"Этот пост был удален, его может увидеть только владелец, администраторы " +"сайта и модераторы" -#: models/__init__.py:503 -msgid "Sorry, only moderators, site administrators and post owners can edit deleted posts" -msgstr "Извините, только модераторы, администраторы сайта и владельцы сообщения могут редактировать удаленные сообщения" +#: models/__init__.py:538 +msgid "" +"Sorry, only moderators, site administrators and post owners can edit deleted " +"posts" +msgstr "" +"Извините, только модераторы, администраторы сайта и владельцы сообщения " +"могут редактировать удаленные сообщения" -#: models/__init__.py:518 +#: models/__init__.py:553 msgid "Sorry, since your account is blocked you cannot edit posts" -msgstr "К сожалению, так как Ваш учетная запись заблокирована Вы не можете редактировать сообщения" +msgstr "" +"К сожалению, так как Ваш учетная запись заблокирована Вы не можете " +"редактировать сообщения" -#: models/__init__.py:522 +#: models/__init__.py:557 msgid "Sorry, since your account is suspended you can edit only your own posts" -msgstr "К сожалению, так как ваша учетная запись приостановлена вы можете редактировать только ваши собственные сообщения" +msgstr "" +"К сожалению, так как ваша учетная запись приостановлена вы можете " +"редактировать только ваши собственные сообщения" -#: models/__init__.py:527 +#: models/__init__.py:562 #, python-format -msgid "Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required" -msgstr "К сожалению, для редактирования вики сообщений, требуется %(min_rep)s баллов кармы" +msgid "" +"Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required" +msgstr "" +"К сожалению, для редактирования вики сообщений, требуется %(min_rep)s баллов " +"кармы" -#: models/__init__.py:534 +#: models/__init__.py:569 #, python-format -msgid "Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is required" -msgstr "К сожалению, для редактировать сообщения других пользователей, требуется %(min_rep)s баллов кармы" +msgid "" +"Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is " +"required" +msgstr "" +"К сожалению, для редактировать сообщения других пользователей, требуется " +"%(min_rep)s балов кармы" -#: models/__init__.py:597 -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] "К сожалению, Вы не может удалить ваш вопрос, поскольку на него ответил другой пользователь и его ответ получил положительный голос" -msgstr[1] "К сожалению, Вы не может удалить ваш вопрос, поскольку на него ответили другие пользователи и их ответы получили положительные голоса" -msgstr[2] "К сожалению, Вы не может удалить ваш вопрос, поскольку на него ответили другие пользователи и их ответы получили положительные голоса" +#: models/__init__.py:632 +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] "" +"К сожалению, Вы не может удалить ваш вопрос, поскольку на него ответил " +"другой пользователь и его ответ получил положительный голос" +msgstr[1] "" +"К сожалению, Вы не может удалить ваш вопрос, поскольку на него ответили " +"другие пользователи и их ответы получили положительные голоса" +msgstr[2] "" +"К сожалению, Вы не может удалить ваш вопрос, поскольку на него ответили " +"другие пользователи и их ответы получили положительные голоса" -#: models/__init__.py:612 +#: models/__init__.py:647 msgid "Sorry, since your account is blocked you cannot delete posts" -msgstr "К сожалению, так как Ваша учетная запись заблокирована Вы не можете удалять сообщения" +msgstr "" +"К сожалению, так как Ваша учетная запись заблокирована Вы не можете удалять " +"сообщения" -#: models/__init__.py:616 -msgid "Sorry, since your account is suspended you can delete only your own posts" -msgstr "К сожалению, так как Ваша учетная запись приостановлена Вы не можете удалять сообщения" +#: models/__init__.py:651 +msgid "" +"Sorry, since your account is suspended you can delete only your own posts" +msgstr "" +"К сожалению, так как Ваша учетная запись приостановлена Вы не можете удалять " +"сообщения" -#: models/__init__.py:620 +#: models/__init__.py:655 #, python-format -msgid "Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s is required" -msgstr "К сожалению, для удаления сообщений других пользователей, требуется %(min_rep)s балов кармы" +msgid "" +"Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s " +"is required" +msgstr "" +"К сожалению, для удаления сообщений других пользователей, требуется " +"%(min_rep)s балов кармы" -#: models/__init__.py:640 +#: models/__init__.py:675 msgid "Sorry, since your account is blocked you cannot close questions" -msgstr "К сожалению, так как Ваша учетная запись заблокирована вы не можете закрыть вопросы" +msgstr "" +"К сожалению, так как Ваша учетная запись заблокирована вы не можете закрыть " +"вопросы" -#: models/__init__.py:644 +#: models/__init__.py:679 msgid "Sorry, since your account is suspended you cannot close questions" -msgstr "К сожалению, так как Ваша учетная запись приостановлена вы не можете закрыть вопросы" +msgstr "" +"К сожалению, так как Ваша учетная запись приостановлена вы не можете закрыть " +"вопросы" -#: models/__init__.py:648 +#: models/__init__.py:683 #, python-format -msgid "Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is required" -msgstr "К сожалению, для закрытия сообщения других пользователей, требуется %(min_rep)s балов кармы" +msgid "" +"Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is " +"required" +msgstr "" +"К сожалению, для закрытия сообщения других пользователей, требуется " +"%(min_rep)s балов кармы" -#: models/__init__.py:657 +#: models/__init__.py:692 #, python-format -msgid "Sorry, to close own question a minimum reputation of %(min_rep)s is required" -msgstr "К сожалению, для закрытия своего вопроса, требуется %(min_rep)s балов кармы" +msgid "" +"Sorry, to close own question a minimum reputation of %(min_rep)s is required" +msgstr "" +"К сожалению, для закрытия своего вопроса, требуется %(min_rep)s балов кармы" -#: models/__init__.py:681 +#: models/__init__.py:716 #, python-format -msgid "Sorry, only administrators, moderators or post owners with reputation > %(min_rep)s can reopen questions." -msgstr "К сожалению, только администраторы, модераторы или владельцы с кармой > %(min_rep)s может открыть вопрос" +msgid "" +"Sorry, only administrators, moderators or post owners with reputation > " +"%(min_rep)s can reopen questions." +msgstr "" +"К сожалению, только администраторы, модераторы или владельцы с кармой >" +"%(min_rep)s может открыть вопрос" -#: models/__init__.py:687 +#: models/__init__.py:722 #, python-format -msgid "Sorry, to reopen own question a minimum reputation of %(min_rep)s is required" -msgstr "К сожалению, чтобы вновь открыть собственный вопрос требуется %(min_rep)s баллов кармы" +msgid "" +"Sorry, to reopen own question a minimum reputation of %(min_rep)s is required" +msgstr "" +"К сожалению, чтобы вновь открыть собственный вопрос требуется %(min_rep)s " +"баллов кармы" -#: models/__init__.py:707 +#: models/__init__.py:742 msgid "cannot flag message as offensive twice" msgstr "нельзя пометить сообщение как оскорбительное дважды" -#: models/__init__.py:712 +#: models/__init__.py:747 msgid "blocked users cannot flag posts" msgstr "заблокированные пользователи не могут помечать сообщения" -#: models/__init__.py:714 +#: models/__init__.py:749 msgid "suspended users cannot flag posts" msgstr "приостановленные пользователи не могут помечать сообщения" -#: models/__init__.py:716 +#: models/__init__.py:751 #, python-format msgid "need > %(min_rep)s points to flag spam" msgstr "необходимо > %(min_rep)s баллов чтобы отметить как спам" -#: models/__init__.py:735 +#: models/__init__.py:770 #, python-format msgid "%(max_flags_per_day)s exceeded" msgstr "%(max_flags_per_day)s превышен" -#: models/__init__.py:750 -msgid "Sorry, only question owners, site administrators and moderators can retag deleted questions" -msgstr "К сожалению, только владельцы, администраторы сайта и модераторы могут менять теги к удаленным вопросам" +#: models/__init__.py:785 +msgid "" +"Sorry, only question owners, site administrators and moderators can retag " +"deleted questions" +msgstr "" +"К сожалению, только владельцы, администраторы сайта и модераторы могут " +"менять теги к удаленным вопросам" -#: models/__init__.py:757 +#: models/__init__.py:792 msgid "Sorry, since your account is blocked you cannot retag questions" -msgstr "К сожалению, так как Ваша учетная запись заблокирована вы не можете поменять теги вопроса " +msgstr "" +"К сожалению, так как Ваша учетная запись заблокирована вы не можете поменять " +"теги вопроса " -#: models/__init__.py:761 -msgid "Sorry, since your account is suspended you can retag only your own questions" -msgstr "К сожалению, так как Ваша учетная запись приостановлена вы можете менять теги только на свои вопросы" +#: models/__init__.py:796 +msgid "" +"Sorry, since your account is suspended you can retag only your own questions" +msgstr "" +"К сожалению, так как Ваша учетная запись приостановлена вы можете менять " +"теги только на свои вопросы" -#: models/__init__.py:765 +#: models/__init__.py:800 #, python-format -msgid "Sorry, to retag questions a minimum reputation of %(min_rep)s is required" +msgid "" +"Sorry, to retag questions a minimum reputation of %(min_rep)s is required" msgstr "К сожалению, для изменения тегов требуется %(min_rep)s баллов кармы" -#: models/__init__.py:784 +#: models/__init__.py:819 msgid "Sorry, since your account is blocked you cannot delete comment" -msgstr "К сожалению, так как Ваша учетная запись заблокирована Вы не можете удалять комментарий" +msgstr "" +"К сожалению, так как Ваша учетная запись заблокирована Вы не можете удалять " +"комментарий" -#: models/__init__.py:788 -msgid "Sorry, since your account is suspended you can delete only your own comments" -msgstr "К сожалению, так как Ваша учетная запись приостановлена вы можете удалять только ваши собственные комментарии" +#: models/__init__.py:823 +msgid "" +"Sorry, since your account is suspended you can delete only your own comments" +msgstr "" +"К сожалению, так как Ваша учетная запись приостановлена вы можете удалять " +"только ваши собственные комментарии" -#: models/__init__.py:792 +#: models/__init__.py:827 #, python-format msgid "Sorry, to delete comments reputation of %(min_rep)s is required" -msgstr "К сожалению, для удаления комментариев требуется %(min_rep)s баллов кармы" +msgstr "" +"К сожалению, для удаления комментариев требуется %(min_rep)s баллов кармы" -#: models/__init__.py:815 +#: models/__init__.py:850 msgid "cannot revoke old vote" msgstr "голос не может быть отозван" -#: models/__init__.py:1370 +#: models/__init__.py:1325 utils/functions.py:70 +#, python-format +msgid "on %(date)s" +msgstr "%(date)s" + +#: models/__init__.py:1327 +msgid "in two days" +msgstr "" + +#: models/__init__.py:1329 +msgid "tomorrow" +msgstr "" + +#: models/__init__.py:1331 +#, fuzzy, python-format +msgid "in %(hr)d hour" +msgid_plural "in %(hr)d hours" +msgstr[0] "%(hr)d час назад" +msgstr[1] "%(hr)d часов назад" +msgstr[2] "%(hr)d часа назад" + +#: models/__init__.py:1333 +#, fuzzy, python-format +msgid "in %(min)d min" +msgid_plural "in %(min)d mins" +msgstr[0] "%(min)d минуту назад" +msgstr[1] "%(min)d минут назад" +msgstr[2] "%(min)d минуты назад" + +#: models/__init__.py:1334 +#, python-format +msgid "%(days)d day" +msgid_plural "%(days)d days" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: models/__init__.py:1336 +#, 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:1501 skins/default/templates/feedback_email.txt:9 #, fuzzy msgid "Anonymous" msgstr "анонимный" -#: models/__init__.py:1456 -#: views/users.py:365 +#: models/__init__.py:1597 views/users.py:365 msgid "Site Adminstrator" msgstr "Администратор сайта" -#: models/__init__.py:1458 -#: views/users.py:367 +#: models/__init__.py:1599 views/users.py:367 msgid "Forum Moderator" msgstr "С уважением, Модератор форума" -#: models/__init__.py:1460 -#: views/users.py:369 +#: models/__init__.py:1601 views/users.py:369 msgid "Suspended User" msgstr "Приостановленный пользователь " -#: models/__init__.py:1462 -#: views/users.py:371 +#: models/__init__.py:1603 views/users.py:371 msgid "Blocked User" msgstr "Заблокированный пользователь" -#: models/__init__.py:1464 -#: views/users.py:373 +#: models/__init__.py:1605 views/users.py:373 msgid "Registered User" msgstr "Зарегистрированный пользователь" -#: models/__init__.py:1466 +#: models/__init__.py:1607 msgid "Watched User" msgstr "Видный пользователь" -#: models/__init__.py:1468 +#: models/__init__.py:1609 msgid "Approved User" msgstr "Утвержденный Пользователь" -#: models/__init__.py:1563 +#: models/__init__.py:1718 #, python-format msgid "%(username)s karma is %(reputation)s" msgstr "%(reputation)s кармы %(username)s " -#: models/__init__.py:1573 +#: models/__init__.py:1728 #, python-format msgid "one gold badge" msgid_plural "%(count)d gold badges" -msgstr[0] "золотая медаль" +msgstr[0] "%(count)dзолотая медаль" msgstr[1] "%(count)d золотых медалей" msgstr[2] "%(count)d золотых медалей" -#: models/__init__.py:1580 +#: models/__init__.py:1735 #, python-format msgid "one silver badge" msgid_plural "%(count)d silver badges" -msgstr[0] "серебряная медаль" +msgstr[0] "%(count)dсеребряная медаль" msgstr[1] "%(count)d серебряных медалей" msgstr[2] "%(count)d серебряных медалей" -#: models/__init__.py:1587 +#: models/__init__.py:1742 #, python-format msgid "one bronze badge" msgid_plural "%(count)d bronze badges" -msgstr[0] "бронзовая медаль" +msgstr[0] "%(count)dбронзовая медаль" msgstr[1] "%(count)d бронзовых медалей" msgstr[2] "%(count)d бронзовых медалей" -#: models/__init__.py:1598 +#: models/__init__.py:1753 #, python-format msgid "%(item1)s and %(item2)s" msgstr "%(item1)s и %(item2)s" -#: models/__init__.py:1602 +#: models/__init__.py:1757 #, python-format msgid "%(user)s has %(badges)s" msgstr "%(user)s имеет %(badges)s" -#: models/__init__.py:1966 -#: models/__init__.py:1972 -#: models/__init__.py:1977 -#: models/__init__.py:1982 +#: models/__init__.py:2164 models/__init__.py:2170 models/__init__.py:2175 +#: models/__init__.py:2180 #, python-format msgid "Re: \"%(title)s\"" msgstr "Re: \"%(title)s\"" -#: models/__init__.py:1987 -#: models/__init__.py:1992 +#: models/__init__.py:2185 models/__init__.py:2190 #, python-format msgid "Question: \"%(title)s\"" msgstr "Вопрос: \"%(title)s\"" -#: models/__init__.py:2170 +#: models/__init__.py:2371 #, python-format -msgid "Congratulations, you have received a badge '%(badge_name)s'. Check out your profile." -msgstr "Поздравляем, вы получили '%(badge_name)s'. Проверьте свой профиль." +msgid "" +"Congratulations, you have received a badge '%(badge_name)s'. Check out your profile." +msgstr "" +"Поздравляем, вы получили '%(badge_name)s'. Проверьте свой профиль." -#: models/__init__.py:2349 -#: views/commands.py:397 +#: models/__init__.py:2550 views/commands.py:396 msgid "Your tag subscription was saved, thanks!" -msgstr "Ваша подписка на тег сохранена" +msgstr "" #: models/answer.py:105 -msgid "Sorry, the answer you are looking for is no longer available, because the parent question has been removed" -msgstr "К сожалению, ответ который вы ищете больше не доступен, потому что вопрос был удален" +msgid "" +"Sorry, the answer you are looking for is no longer available, because the " +"parent question has been removed" +msgstr "" +"К сожалению, ответ который вы ищете больше не доступен, потому что вопрос " +"был удален" #: models/answer.py:112 msgid "Sorry, this answer has been removed and is no longer accessible" @@ -2485,7 +3270,7 @@ msgstr "Учитель" #: models/badges.py:218 #, fuzzy msgid "Supporter" -msgstr "Помощник" +msgstr "Фанат" #: models/badges.py:219 msgid "First upvote" @@ -2521,9 +3306,7 @@ msgstr "Самоучка" msgid "Nice Answer" msgstr "Хороший ответ" -#: models/badges.py:309 -#: models/badges.py:321 -#: models/badges.py:333 +#: models/badges.py:309 models/badges.py:321 models/badges.py:333 #, python-format msgid "Answer voted up %(num)s times" msgstr "Ответ получил %(num)s положительных голосов" @@ -2540,9 +3323,7 @@ msgstr "Замечательный Ответ" msgid "Nice Question" msgstr "Хороший Вопрос" -#: models/badges.py:345 -#: models/badges.py:357 -#: models/badges.py:369 +#: models/badges.py:345 models/badges.py:357 models/badges.py:369 #, python-format msgid "Question voted up %(num)s times" msgstr "Вопрос с %(num)s или более положительными откликами" @@ -2567,9 +3348,7 @@ msgstr "Задан первый вопрос, получивший хотя бы msgid "Popular Question" msgstr "Популярный Вопрос" -#: models/badges.py:418 -#: models/badges.py:429 -#: models/badges.py:441 +#: models/badges.py:418 models/badges.py:429 models/badges.py:441 #, python-format msgid "Asked a question with %(views)s views" msgstr "Задал вопрос с %(views)s просмотрами" @@ -2610,8 +3389,11 @@ msgstr "Ответ отмечен, по меньшей мере %(num)s голо #: models/badges.py:518 #, python-format -msgid "Answered a question more than %(days)s days later with at least %(votes)s votes" -msgstr "Ответил на вопрос более чем %(days)s дней спустя с минимум %(votes)s голосами" +msgid "" +"Answered a question more than %(days)s days later with at least %(votes)s " +"votes" +msgstr "" +"Ответил на вопрос более чем %(days)s дней спустя с минимум %(votes)s голосами" #: models/badges.py:525 msgid "Necromancer" @@ -2668,7 +3450,7 @@ msgstr "Организатор" #: models/badges.py:637 #, fuzzy msgid "First retag" -msgstr "Первое изменение тегов " +msgstr "Первое изменение тэгов " #: models/badges.py:644 msgid "Autobiographer" @@ -2707,7 +3489,7 @@ msgstr "Комментатор" #: models/badges.py:736 #, fuzzy, python-format msgid "Posted %(num_comments)s comments" -msgstr "Оставлено %(num_comments)s комментариев" +msgstr "(один комментарий)" #: models/badges.py:752 msgid "Taxonomist" @@ -2726,13 +3508,21 @@ msgstr "Эксперт" msgid "Very active in one tag" msgstr "Очень активны в одном теге" -#: models/meta.py:111 -msgid "Sorry, the comment you are looking for is no longer accessible, because the parent question has been removed" -msgstr "К сожалению, комментарии который вы ищете больше не доступны, потому что вопрос был удален" +#: models/meta.py:112 +msgid "" +"Sorry, the comment you are looking for is no longer accessible, because the " +"parent question has been removed" +msgstr "" +"К сожалению, комментарии который вы ищете больше не доступны, потому что " +"вопрос был удален" -#: models/meta.py:118 -msgid "Sorry, the comment you are looking for is no longer accessible, because the parent answer has been removed" -msgstr "К сожалению, комментарий который Вы ищете больше не доступен, потому что ответ был удален" +#: models/meta.py:119 +msgid "" +"Sorry, the comment you are looking for is no longer accessible, because the " +"parent answer has been removed" +msgstr "" +"К сожалению, комментарий который Вы ищете больше не доступен, потому что " +"ответ был удален" #: models/question.py:72 #, python-format @@ -2744,31 +3534,31 @@ msgstr "\" и \"%s\"" msgid "\" and more" msgstr "Узнать больше" -#: models/question.py:425 +#: models/question.py:452 msgid "Sorry, this question has been deleted and is no longer accessible" msgstr "Извините, вопрос удалён и более не доступен" -#: models/question.py:853 +#: models/question.py:908 #, python-format msgid "%(author)s modified the question" msgstr "%(author)s отредактировали вопрос" -#: models/question.py:857 +#: models/question.py:912 #, python-format msgid "%(people)s posted %(new_answer_count)s new answers" msgstr "%(people)s задали новых %(new_answer_count)s вопросов" -#: models/question.py:862 +#: models/question.py:917 #, python-format msgid "%(people)s commented the question" msgstr "%(people)s оставили комментарии" -#: models/question.py:867 +#: models/question.py:922 #, python-format msgid "%(people)s commented answers" msgstr "%(people)s комментировали вопросы" -#: models/question.py:869 +#: models/question.py:924 #, python-format msgid "%(people)s commented an answer" msgstr "%(people)s комментировали ответы" @@ -2780,55 +3570,62 @@ msgstr "Изменено модератором. Причина: %(reas #: models/repute.py:153 #, 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" +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 #, python-format -msgid "%(points)s points were subtracted for %(username)s's contribution to question %(question_title)s" -msgstr "%(points)s было отобрано у %(username)s's за участие в вопросе %(question_title)s" +msgid "" +"%(points)s points were subtracted for %(username)s's contribution to " +"question %(question_title)s" +msgstr "" +"%(points)s было отобрано у %(username)s's за участие в вопросе " +"%(question_title)s" -#: models/tag.py:138 +#: models/tag.py:151 msgid "interesting" msgstr "интересные" -#: models/tag.py:138 +#: models/tag.py:151 msgid "ignored" msgstr "игнорируемые" -#: models/user.py:260 +#: models/user.py:264 msgid "Entire forum" msgstr "Весь форум" -#: models/user.py:261 +#: models/user.py:265 msgid "Questions that I asked" msgstr "Вопросы заданные мной" -#: models/user.py:262 +#: models/user.py:266 msgid "Questions that I answered" msgstr "Вопросы отвеченные мной" -#: models/user.py:263 +#: models/user.py:267 msgid "Individually selected questions" msgstr "Индивидуально избранные вопросы" -#: models/user.py:264 +#: models/user.py:268 msgid "Mentions and comment responses" msgstr "Упоминания и комментарии ответов" -#: models/user.py:267 +#: models/user.py:271 msgid "Instantly" msgstr "Мгновенно" -#: models/user.py:268 +#: models/user.py:272 msgid "Daily" msgstr "Раз в день" -#: models/user.py:269 +#: models/user.py:273 msgid "Weekly" msgstr "Раз в неделю" -#: models/user.py:270 +#: models/user.py:274 msgid "No email" msgstr "Отменить" @@ -2854,15 +3651,19 @@ msgid "url has error - please check it;" msgstr "запрос был неверен - пожалуйста проверьте;" #: skins/default/templates/404.jinja.html:19 -msgid "the page you tried to visit is protected or you don't have sufficient points, see" -msgstr "документ который Вы запросили защищён или у Вас не хватает \"репутации\", пожалуйста посмотрите" +msgid "" +"the page you tried to visit is protected or you don't have sufficient " +"points, see" +msgstr "" +"документ который Вы запросили защищён или у Вас не хватает \"репутации\", " +"пожалуйста посмотрите" #: skins/default/templates/404.jinja.html:19 -#: skins/default/templates/blocks/footer.html:6 +#: skins/default/templates/blocks/footer.html:5 #: skins/default/templates/blocks/header_meta_links.html:13 #: skins/default/templates/blocks/question_edit_tips.html:15 msgid "faq" -msgstr "часто задаваемые вопросы" +msgstr "Часто задаваемые вопросы" #: skins/default/templates/404.jinja.html:20 msgid "if you believe this error 404 should not have occured, please" @@ -2893,11 +3694,14 @@ msgstr "Внутренняя ошибка сервера" #: skins/default/templates/500.jinja.html:8 msgid "system error log is recorded, error will be fixed as soon as possible" -msgstr "об этой ошибке была сделана запись в журнале и соответствующие исправления будут вскоре сделаны" +msgstr "" +"об этой ошибке была сделана запись в журнале и соответствующие исправления " +"будут вскоре сделаны" #: skins/default/templates/500.jinja.html:9 msgid "please report the error to the site administrators if you wish" -msgstr "если у Вас имеется желание, пожалуйста сообщите об этой ошибке администратору" +msgstr "" +"если у Вас имеется желание, пожалуйста сообщите об этой ошибке вебмастеру" #: skins/default/templates/500.jinja.html:12 msgid "see latest questions" @@ -2907,8 +3711,7 @@ msgstr "смотреть самые новые вопросы" msgid "see tags" msgstr "смотреть темы" -#: skins/default/templates/about.html:3 -#: skins/default/templates/about.html:5 +#: skins/default/templates/about.html:3 skins/default/templates/about.html:5 #, python-format msgid "About %(site_name)s" msgstr "" @@ -2926,7 +3729,6 @@ msgid "back" msgstr "назад" #: skins/default/templates/answer_edit.html:14 -#: skins/default/templates/question_edit.html:11 msgid "revision" msgstr "версия правки" @@ -2936,14 +3738,14 @@ msgid "select revision" msgstr "выбрать версию" #: skins/default/templates/answer_edit.html:21 -#: skins/default/templates/question_edit.html:20 +#: skins/default/templates/question_edit.html:27 msgid "Save edit" msgstr "Сохранить" #: skins/default/templates/answer_edit.html:22 #: skins/default/templates/close.html:16 #: skins/default/templates/feedback.html:42 -#: skins/default/templates/question_edit.html:21 +#: skins/default/templates/question_edit.html:28 #: skins/default/templates/question_retag.html:22 #: skins/default/templates/reopen.html:27 #: skins/default/templates/subscribe_for_tags.html:16 @@ -2954,20 +3756,19 @@ msgstr "Отменить" #: skins/default/templates/answer_edit.html:60 #: skins/default/templates/answer_edit.html:63 -#: skins/default/templates/ask.html:43 -#: skins/default/templates/ask.html:46 -#: skins/default/templates/macros.html:592 -#: skins/default/templates/question.html:472 -#: skins/default/templates/question.html:475 -#: skins/default/templates/question_edit.html:62 -#: skins/default/templates/question_edit.html:65 +#: skins/default/templates/ask.html:46 skins/default/templates/ask.html:49 +#: skins/default/templates/macros.html:698 +#: skins/default/templates/question.html:562 +#: skins/default/templates/question.html:565 +#: skins/default/templates/question_edit.html:72 +#: skins/default/templates/question_edit.html:75 msgid "hide preview" msgstr "скрыть предварительный просмотр" #: skins/default/templates/answer_edit.html:63 -#: skins/default/templates/ask.html:46 -#: skins/default/templates/question.html:475 -#: skins/default/templates/question_edit.html:65 +#: skins/default/templates/ask.html:49 +#: skins/default/templates/question.html:565 +#: skins/default/templates/question_edit.html:75 msgid "show preview" msgstr "показать предварительный просмотр" @@ -2975,10 +3776,9 @@ msgstr "показать предварительный просмотр" msgid "Ask a question" msgstr "Спросить" -#: skins/default/templates/badge.html:4 -#: skins/default/templates/badge.html:8 +#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:8 #: skins/default/templates/user_profile/user_recent.html:16 -#: skins/default/templates/user_profile/user_stats.html:106 +#: skins/default/templates/user_profile/user_stats.html:110 #, python-format msgid "%(name)s" msgstr "%(name)s" @@ -2994,7 +3794,7 @@ msgstr "%(name)s" #: skins/default/templates/badge.html:8 #: skins/default/templates/user_profile/user_recent.html:16 -#: skins/default/templates/user_profile/user_stats.html:106 +#: skins/default/templates/user_profile/user_stats.html:108 #, python-format msgid "%(description)s" msgstr "%(description)s" @@ -3019,11 +3819,15 @@ msgid "Community gives you awards for your questions, answers and votes." msgstr "Награды" #: skins/default/templates/badges.html:8 -#, fuzzy, python-format +#, 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 "Ниже приведен список доступных значков и число награждений каждым из них. Предложения по новым значкам отправляйте через обратную связь - %(feedback_faq_url)s." +"of times each type of badge has been awarded. Give us feedback at " +"%(feedback_faq_url)s.\n" +msgstr "" +"Ниже приведен список доступных значков и число награждений каждым из них. " +"Предложения по новым значкам отправляйте через обратную связь - " +"%(feedback_faq_url)s.\n" #: skins/default/templates/badges.html:35 msgid "Community badges" @@ -3038,7 +3842,8 @@ msgid "gold badge description" msgstr "золотой значок" #: skins/default/templates/badges.html:45 -msgid "silver badge: occasionally awarded for the very high quality contributions" +msgid "" +"silver badge: occasionally awarded for the very high quality contributions" msgstr "серебряная медаль: иногда присуждается за большой вклад" #: skins/default/templates/badges.html:49 @@ -3053,8 +3858,7 @@ msgstr "бронзовый значок: часто даётся как особ msgid "bronze badge description" msgstr "бронзовый значок - описание" -#: skins/default/templates/close.html:3 -#: skins/default/templates/close.html:5 +#: skins/default/templates/close.html:3 skins/default/templates/close.html:5 msgid "Close question" msgstr "Закрыть вопрос" @@ -3071,153 +3875,212 @@ msgid "OK to close" msgstr "OK, чтобы закрыть" #: skins/default/templates/faq.html:3 -#: skins/default/templates/faq.html.py:5 +#: skins/default/templates/faq_static.html:3 +#: skins/default/templates/faq_static.html:5 msgid "FAQ" msgstr "FAQ" -#: skins/default/templates/faq.html:5 +#: skins/default/templates/faq_static.html:5 msgid "Frequently Asked Questions " msgstr "Часто задаваемые вопросы" -#: skins/default/templates/faq.html:6 +#: skins/default/templates/faq_static.html:6 msgid "What kinds of questions can I ask here?" msgstr "Какие вопросы я могу задать здесь?" -#: skins/default/templates/faq.html:7 -msgid "Most importanly - questions should be relevant to this community." -msgstr "Самое главное - вопросы должны соответствовать теме сообщества." +#: skins/default/templates/faq_static.html:7 +msgid "" +"Most importanly - questions should be relevant to this " +"community." +msgstr "" +"Самое главное - вопросы должны соответствовать теме " +"сообщества." -#: skins/default/templates/faq.html:8 -msgid "Before asking the question - please make sure to use search to see whether your question has alredy been answered." -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." +msgstr "" +"Перед тем как задать вопрос - пожалуйста, не забудьте использовать поиск, " +"чтобы убедиться, что ваш вопрос еще не имеет ответа." -#: skins/default/templates/faq.html:10 +#: skins/default/templates/faq_static.html:10 msgid "What questions should I avoid asking?" msgstr "Каких вопросов мне следует избегать?" -#: skins/default/templates/faq.html:11 -msgid "Please avoid asking questions that are not relevant to this community, too subjective and argumentative." -msgstr "Просьба не задавать вопросы, которые не соответствуют теме этого сайта, слишком субъективны или очевидны." +#: skins/default/templates/faq_static.html:11 +msgid "" +"Please avoid asking questions that are not relevant to this community, too " +"subjective and argumentative." +msgstr "" +"Просьба не задавать вопросы, которые не соответствуют теме этого сайта, " +"слишком субъективны или очевидны." -#: skins/default/templates/faq.html:13 +#: skins/default/templates/faq_static.html:13 msgid "What should I avoid in my answers?" msgstr "Чего я должен избегать в своих ответах?" -#: skins/default/templates/faq.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 "является местом ответов/вопросов, а не группой обсуждения. Поэтому - пожалуйста, избегайте обсуждения в своих ответах. Комментарии позволяют лишь краткое обсуждение." +#: 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 "" +"является местом ответов/вопросов, а не группой обсуждения. Поэтому - " +"пожалуйста, избегайте обсуждения в своих ответах. Комментарии позволяют лишь " +"краткое обсуждение." -#: skins/default/templates/faq.html:15 +#: skins/default/templates/faq_static.html:15 msgid "Who moderates this community?" msgstr "Кто модерирует это сообщество?" -#: skins/default/templates/faq.html:16 +#: skins/default/templates/faq_static.html:16 msgid "The short answer is: you." msgstr "Ответ краток: вы." -#: skins/default/templates/faq.html:17 +#: skins/default/templates/faq_static.html:17 msgid "This website is moderated by the users." msgstr "Этот сайт находится под управлением самих пользователей." -#: skins/default/templates/faq.html:18 -msgid "The reputation system allows users earn the authorization to perform a variety of moderation tasks." -msgstr "Система репутации (кармы) позволяет пользователям приобретать различные управленческие права." +#: skins/default/templates/faq_static.html:18 +msgid "" +"The reputation system allows users earn the authorization to perform a " +"variety of moderation tasks." +msgstr "" +"Система репутации (кармы) позволяет пользователям приобретать различные " +"управленческие права." -#: skins/default/templates/faq.html:20 +#: skins/default/templates/faq_static.html:20 msgid "How does reputation system work?" -msgstr "Как работает репутация (карма)?" +msgstr "Как работает карма?" -#: skins/default/templates/faq.html:21 +#: skins/default/templates/faq_static.html:21 msgid "Rep system summary" -msgstr "Зачем репутация (карма)" +msgstr "Суть кармы" -#: skins/default/templates/faq.html:22 +#: 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 %(REP_GAIN_FOR_RECEIVING_UPVOTE)s points, each vote against will subtract %(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s points. There is a limit of %(MAX_REP_GAIN_PER_USER_PER_DAY)s 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 "Например, если задать интересующий вопрос или дать полный ответ, ваш вклад будет оценен положительно. С другой стороны, если ответ будет вводить в заблуждение - это будет оценено отрицательно. Каждый голос в пользу будет генерировать %(REP_GAIN_FOR_RECEIVING_UPVOTE)s кармы, каждый голос против - будет отнимать %(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s кармы. Существует лимит %(MAX_REP_GAIN_PER_USER_PER_DAY)s кармы, который может быть набран за вопрос или ответ за день. В таблице ниже представлены все требования к карме для каждого типа модерирования." - -#: skins/default/templates/faq.html:32 +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 " +"%(REP_GAIN_FOR_RECEIVING_UPVOTE)s points, each vote against will " +"subtract %(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s points. There " +"is a limit of %(MAX_REP_GAIN_PER_USER_PER_DAY)s 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 "" +"Например, если задать интересующий вопрос или дать полный ответ, ваш вклад " +"будет оценен положительно. С другой стороны, если ответ будет вводить в " +"заблуждение - это будет оценено отрицательно. Каждый голос в пользу будет " +"генерировать %(REP_GAIN_FOR_RECEIVING_UPVOTE)s кармы, " +"каждый голос против - будет отнимать " +"%(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s кармы. Существует лимит " +"%(MAX_REP_GAIN_PER_USER_PER_DAY)s кармы, который может быть набран " +"за вопрос или ответ за день. В таблице ниже представлены все требования к " +"карме для каждого типа модерирования." + +#: skins/default/templates/faq_static.html:32 #: skins/default/templates/user_profile/user_votes.html:13 msgid "upvote" msgstr "проголосовать \"за\"" -#: skins/default/templates/faq.html:37 +#: skins/default/templates/faq_static.html:37 msgid "use tags" msgstr "использовать теги" -#: skins/default/templates/faq.html:42 +#: skins/default/templates/faq_static.html:42 msgid "add comments" msgstr "добавить комментарии" -#: skins/default/templates/faq.html:46 +#: skins/default/templates/faq_static.html:46 #: skins/default/templates/user_profile/user_votes.html:15 msgid "downvote" msgstr "проголосовать \"против\"" -#: skins/default/templates/faq.html:49 +#: skins/default/templates/faq_static.html:49 +#, fuzzy +msgid " accept own answer to own questions" +msgstr "Первый принятый ответ на собственный вопрос" + +#: skins/default/templates/faq_static.html:53 msgid "open and close own questions" msgstr "открывать и закрывать свои вопросы" -#: skins/default/templates/faq.html:53 +#: skins/default/templates/faq_static.html:57 msgid "retag other's questions" msgstr "изменять теги других вопросов" -#: skins/default/templates/faq.html:58 +#: skins/default/templates/faq_static.html:62 msgid "edit community wiki questions" msgstr "редактировать вопросы в вики сообщества " -#: skins/default/templates/faq.html:63 +#: skins/default/templates/faq_static.html:67 msgid "\"edit any answer" msgstr "редактировать любой ответ" -#: skins/default/templates/faq.html:67 +#: skins/default/templates/faq_static.html:71 msgid "\"delete any comment" msgstr "удалять любые комментарии" -#: skins/default/templates/faq.html:70 +#: skins/default/templates/faq_static.html:74 msgid "what is gravatar" msgstr "что такое Gravatar" -#: skins/default/templates/faq.html:71 +#: skins/default/templates/faq_static.html:75 msgid "gravatar faq info" -msgstr "Gravatar FAQ" +msgstr "gravatar FAQ" -#: skins/default/templates/faq.html:72 +#: skins/default/templates/faq_static.html:76 msgid "To register, do I need to create new password?" msgstr "Необходимо ли создавать новый пароль, чтобы зарегистрироваться?" -#: skins/default/templates/faq.html:73 -msgid "No, you don't have to. You can login through any service that supports OpenID, e.g. Google, Yahoo, AOL, etc.\"" -msgstr "Нет, этого делать нет необходимости. Вы можете Войти через любой сервис, который поддерживает OpenID, например, Google, Yahoo, AOL и т.д." +#: skins/default/templates/faq_static.html:77 +msgid "" +"No, you don't have to. You can login through any service that supports " +"OpenID, e.g. Google, Yahoo, AOL, etc.\"" +msgstr "" +"Нет, этого делать нет необходимости. Вы можете Войти через любой сервис, " +"который поддерживает OpenID, например, Google, Yahoo, AOL и т.д." -#: skins/default/templates/faq.html:74 +#: skins/default/templates/faq_static.html:78 msgid "\"Login now!\"" msgstr "Войти сейчас!" -#: skins/default/templates/faq.html:76 +#: skins/default/templates/faq_static.html:80 msgid "Why other people can edit my questions/answers?" msgstr "Почему другие люди могут изменять мои вопросы / ответы?" -#: skins/default/templates/faq.html:77 +#: skins/default/templates/faq_static.html:81 msgid "Goal of this site is..." msgstr "Цель этого сайта ..." -#: skins/default/templates/faq.html:77 -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:81 +msgid "" +"So questions and answers can be edited like wiki pages by experienced users " +"of this site and this improves the overall quality of the knowledge base " +"content." +msgstr "" +"Таким образом, более опытные пользователи могут редактировать вопросы и " +"ответы как страницы вики, что в свою очередь улучшает качество содержания " +"базы данных вопросов/ответов." -#: skins/default/templates/faq.html:78 +#: skins/default/templates/faq_static.html:82 msgid "If this approach is not for you, we respect your choice." msgstr "Если этот подход не для вас, мы уважаем ваш выбор." -#: skins/default/templates/faq.html:80 +#: skins/default/templates/faq_static.html:84 msgid "Still have questions?" msgstr "Остались вопросы?" -#: skins/default/templates/faq.html:81 +#: skins/default/templates/faq_static.html:85 #, python-format -msgid "Please ask your question at %(ask_question_url)s, help make our community better!" -msgstr "Задайте свой вопрос, помогите сделать наше сообщество лучше!" +msgid "" +"Please ask your question at %(ask_question_url)s, help make our community " +"better!" +msgstr "" +"Задайте свой вопрос в %(ask_question_url)s, помогите сделать наше сообщество " +"лучше!" #: skins/default/templates/feedback.html:3 msgid "Feedback" @@ -3231,24 +4094,28 @@ msgstr "Выскажите свое мнение!" #, fuzzy, python-format msgid "" "\n" -" Dear %(user_name)s, we look forward to hearing your feedback. \n" +" Dear %(user_name)s, we look forward " +"to hearing your feedback. \n" " Please type and send us your message below.\n" " " msgstr "" "\n" -"Уважаемый %(user_name)s, мы с нетерпением ждем ваших отзывов. \n" +"Уважаемый %(user_name)s, мы с нетерпением " +"ждем ваших отзывов. \n" "Пожалуйста, укажите и отправьте нам свое сообщение ниже." #: skins/default/templates/feedback.html:16 #, fuzzy msgid "" "\n" -" Dear visitor, we look forward to hearing your feedback.\n" +" Dear visitor, we look forward to " +"hearing your feedback.\n" " Please type and send us your message below.\n" " " msgstr "" "\n" -"Уважаемый посетитель, мы с нетерпением ждем ваших отзывов. Пожалуйста, введите и отправить нам свое сообщение ниже." +"Уважаемый посетитель, мы с нетерпением ждем " +"ваших отзывов. Пожалуйста, введите и отправить нам свое сообщение ниже." #: skins/default/templates/feedback.html:25 msgid "(please enter a valid email)" @@ -3262,32 +4129,15 @@ msgstr "(это поле обязательно)" msgid "Send Feedback" msgstr "Отправить отзыв" -#: skins/default/templates/feedback_email.txt:3 -#, python-format +#: skins/default/templates/feedback_email.txt:2 +#, fuzzy, python-format msgid "" "\n" -"Hello, this is a %(site_title)s forum feedback message\n" +"Hello, this is a %(site_title)s forum feedback message.\n" msgstr "" "\n" "Здравствуйте, это сообщение обратной связи с форума: %(site_title)s\n" -#: skins/default/templates/feedback_email.txt:9 -msgid "Sender is" -msgstr "Отправитель" - -#: skins/default/templates/feedback_email.txt:11 -#: skins/default/templates/feedback_email.txt:14 -msgid "email" -msgstr "email" - -#: skins/default/templates/feedback_email.txt:13 -msgid "anonymous" -msgstr "анонимный" - -#: skins/default/templates/feedback_email.txt:19 -msgid "Message body:" -msgstr "Текст сообщения:" - #: skins/default/templates/import_data.html:2 #: skins/default/templates/import_data.html:4 msgid "Import StackExchange data" @@ -3314,7 +4164,8 @@ msgstr "" #: 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: python manage.py load_stackexchange path/to/your-data.zip" +" please try importing your data via command line: python manage." +"py load_stackexchange path/to/your-data.zip" msgstr "" #: skins/default/templates/instant_notification.html:1 @@ -3326,19 +4177,23 @@ msgstr "

        Уважаемый %(receiving_user_name)s,

        " #, python-format msgid "" "\n" -"

        %(update_author_name)s left a new comment:

        \n" +"

        %(update_author_name)s left a new comment:\n" msgstr "" "\n" -"

        %(update_author_name)s оставил новый комментарий:

        \n" +"

        %(update_author_name)s оставил новый " +"комментарий:

        \n" #: skins/default/templates/instant_notification.html:8 #, python-format msgid "" "\n" -"

        %(update_author_name)s left a new comment

        \n" +"

        %(update_author_name)s left a new comment\n" msgstr "" "\n" -"

        %(update_author_name)s оставил новый комментарий

        \n" +"

        %(update_author_name)s оставил новый " +"комментарий

        \n" #: skins/default/templates/instant_notification.html:13 #, python-format @@ -3389,182 +4244,199 @@ msgstr "" msgid "" "\n" "
        %(content_preview)s
        \n" -"

        Please note - you can easily change\n" -"how often you receive these notifications or unsubscribe. Thank you for your interest in our forum!

        \n" +"

        Please note - you can easily change\n" +"how often you receive these notifications or unsubscribe. Thank you for your " +"interest in our forum!

        \n" msgstr "" "\n" "
        %(content_preview)s
        \n" -"

        Обратите внимание - вы можете с лёгкостью изменить\n" -"условия рассылки или отписаться вовсе. Спасибо за ваш интерес к нашему форуму!

        \n" +"

        Обратите внимание - вы можете с лёгкостью изменить\n" +"условия рассылки или отписаться вовсе. Спасибо за ваш интерес к нашему " +"форуму!

        \n" #: skins/default/templates/instant_notification.html:42 msgid "

        Sincerely,
        Forum Administrator

        " msgstr "

        С уважением,
        Администрация Форума

        " -#: skins/default/templates/logout.html:3 -msgid "Logout" -msgstr "Выйти" +#: skins/default/templates/macros.html:25 +#, fuzzy, python-format +msgid "Share this question on %(site)s" +msgstr "Поделиться вопросом на Twitter" -#: skins/default/templates/logout.html:5 -msgid "You have successfully logged out" +#: skins/default/templates/macros.html:36 +#, python-format +msgid "follow %(alias)s" +msgstr "" + +#: skins/default/templates/macros.html:39 +#, python-format +msgid "unfollow %(alias)s" msgstr "" -#: skins/default/templates/logout.html:6 -msgid "However, you still may be logged in to your OpenID provider. Please logout of your provider if you wish to do so." +#: skins/default/templates/macros.html:40 +#, python-format +msgid "following %(alias)s" msgstr "" -#: skins/default/templates/macros.html:26 +#: skins/default/templates/macros.html:63 msgid "karma:" msgstr "карма:" -#: skins/default/templates/macros.html:30 +#: skins/default/templates/macros.html:67 msgid "badges:" msgstr "награды" -#: skins/default/templates/macros.html:82 -#: skins/default/templates/macros.html:83 +#: skins/default/templates/macros.html:143 +#: skins/default/templates/macros.html:144 msgid "previous" msgstr "предыдущая" -#: skins/default/templates/macros.html:94 +#: skins/default/templates/macros.html:155 msgid "current page" msgstr "текущая страница" -#: skins/default/templates/macros.html:96 -#: skins/default/templates/macros.html:103 +#: skins/default/templates/macros.html:157 +#: skins/default/templates/macros.html:164 #, python-format msgid "page number %(num)s" msgstr "страница номер %(num)s" -#: skins/default/templates/macros.html:107 +#: skins/default/templates/macros.html:168 msgid "next page" msgstr "следующая страница" -#: skins/default/templates/macros.html:118 +#: skins/default/templates/macros.html:179 msgid "posts per page" msgstr "сообщений на странице" -#: skins/default/templates/macros.html:150 -#: templatetags/extra_tags.py:43 +#: skins/default/templates/macros.html:211 templatetags/extra_tags.py:43 #, python-format msgid "%(username)s gravatar image" msgstr "%(username)s Gravatar" -#: skins/default/templates/macros.html:159 +#: skins/default/templates/macros.html:220 #, fuzzy, python-format msgid "%(username)s's website is %(url)s" msgstr "пользователь %(username)s имеет статус \"%(status)s\"" -#: skins/default/templates/macros.html:171 +#: skins/default/templates/macros.html:232 #, fuzzy msgid "anonymous user" msgstr "анонимный" -#: skins/default/templates/macros.html:199 +#: skins/default/templates/macros.html:260 msgid "this post is marked as community wiki" msgstr "пост отмечен как вики сообщества" -#: skins/default/templates/macros.html:202 +#: skins/default/templates/macros.html:263 #, python-format msgid "" "This post is a wiki.\n" " Anyone with karma >%(wiki_min_rep)s is welcome to improve it." -msgstr "Этот пост - вики. Любой с кармой >%(wiki_min_rep)s может улучшить его." +msgstr "" +"Этот пост - вики. Любой с кармой >%(wiki_min_rep)s может улучшить его." -#: skins/default/templates/macros.html:208 +#: skins/default/templates/macros.html:269 msgid "asked" msgstr "спросил" -#: skins/default/templates/macros.html:210 +#: skins/default/templates/macros.html:271 msgid "answered" msgstr "ответил" -#: skins/default/templates/macros.html:212 +#: skins/default/templates/macros.html:273 msgid "posted" msgstr "опубликовал" -#: skins/default/templates/macros.html:242 +#: skins/default/templates/macros.html:303 msgid "updated" msgstr "обновил" -#: skins/default/templates/macros.html:309 +#: skins/default/templates/macros.html:379 #, python-format msgid "see questions tagged '%(tag)s'" msgstr "смотри вопросы с тегами '%(tag)s'" -#: skins/default/templates/macros.html:352 -#: views/readers.py:220 -msgid "vote" -msgid_plural "votes" -msgstr[0] "голос" -msgstr[1] "голоса" -msgstr[2] "голосов" +#: skins/default/templates/macros.html:424 views/readers.py:239 +msgid "view" +msgid_plural "views" +msgstr[0] "просм." +msgstr[1] "просм." +msgstr[2] "просм." -#: skins/default/templates/macros.html:369 -#: views/readers.py:223 +#: skins/default/templates/macros.html:441 views/readers.py:236 msgid "answer" msgid_plural "answers" msgstr[0] "ответ" msgstr[1] "ответа" msgstr[2] "ответов" -#: skins/default/templates/macros.html:380 -#: views/readers.py:226 -msgid "view" -msgid_plural "views" -msgstr[0] "просмотр" -msgstr[1] "просмотра" -msgstr[2] "просмотров" +#: skins/default/templates/macros.html:452 views/readers.py:233 +msgid "vote" +msgid_plural "votes" +msgstr[0] "голос" +msgstr[1] "голоса" +msgstr[2] "голосов" -#: skins/default/templates/macros.html:409 -#: skins/default/templates/question.html:92 -#: skins/default/templates/question.html:248 +#: skins/default/templates/macros.html:491 +msgid "delete this comment" +msgstr "удалить этот комментарий" + +#: skins/default/templates/macros.html:502 +#: skins/default/templates/question.html:79 +#: skins/default/templates/question.html:235 #: skins/default/templates/revisions.html:37 msgid "edit" msgstr "редактировать" -#: skins/default/templates/macros.html:413 -msgid "delete this comment" -msgstr "удалить этот комментарий" - -#: skins/default/templates/macros.html:431 -#: skins/default/templates/macros.html:439 -#: skins/default/templates/question.html:437 +#: skins/default/templates/macros.html:520 +#: skins/default/templates/macros.html:528 +#: skins/default/templates/question.html:511 msgid "add comment" msgstr "добавить комментарий" -#: skins/default/templates/macros.html:432 +#: skins/default/templates/macros.html:521 #, python-format msgid "see %(counter)s more" msgid_plural "see %(counter)s more" -msgstr[0] "смотреть еще один" +msgstr[0] "" +"смотреть еще %(counter)sодин" msgstr[1] "смотреть еще %(counter)s" msgstr[2] "смотреть еще %(counter)s" -#: skins/default/templates/macros.html:434 +#: skins/default/templates/macros.html:523 #, python-format msgid "see %(counter)s more comment" msgid_plural "" "see %(counter)s more comments\n" " " -msgstr[0] "смотреть еще один комментарий" +msgstr[0] "" +"смотреть еще %(counter)sодин " +"комментарий" msgstr[1] "смотреть еще %(counter)s комментария" msgstr[2] "смотреть еще %(counter)s комментариев" -#: skins/default/templates/macros.html:569 +#: skins/default/templates/macros.html:661 +#, fuzzy +msgid "one of these is required" +msgstr "это поле обязательное" + +#: skins/default/templates/macros.html:673 msgid "(required)" msgstr "(обязательно)" -#: skins/default/templates/macros.html:590 +#: skins/default/templates/macros.html:696 msgid "Toggle the real time Markdown editor preview" msgstr "Включить/выключить предварительный просмотр текста" -#: skins/default/templates/macros.html:602 +#: skins/default/templates/macros.html:708 #, python-format msgid "responses for %(username)s" msgstr "ответы пользователю %(username)s" -#: skins/default/templates/macros.html:605 +#: skins/default/templates/macros.html:711 #, fuzzy, python-format msgid "you have a new response" msgid_plural "you have %(response_count)s new responses" @@ -3572,24 +4444,24 @@ msgstr[0] "У вас новый ответ" msgstr[1] "У вас %(response_count)s новых ответов" msgstr[2] "У вас %(response_count)s новых ответов" -#: skins/default/templates/macros.html:608 +#: skins/default/templates/macros.html:714 msgid "no new responses yet" msgstr "новых ответов нет" -#: skins/default/templates/macros.html:623 -#: skins/default/templates/macros.html:624 +#: skins/default/templates/macros.html:729 +#: skins/default/templates/macros.html:730 #, python-format msgid "%(new)s new flagged posts and %(seen)s previous" msgstr "%(new)s новых постов со спамом и %(seen)s предыдущих" -#: skins/default/templates/macros.html:626 -#: skins/default/templates/macros.html:627 +#: skins/default/templates/macros.html:732 +#: skins/default/templates/macros.html:733 #, python-format msgid "%(new)s new flagged posts" msgstr "%(new)s новых неуместных сообщений" -#: skins/default/templates/macros.html:632 -#: skins/default/templates/macros.html:633 +#: skins/default/templates/macros.html:738 +#: skins/default/templates/macros.html:739 #, python-format msgid "%(seen)s flagged posts" msgstr "%(seen)s неуместных сообщений" @@ -3612,7 +4484,7 @@ msgstr "мне понравился этот пост (щелкните снов #: skins/default/templates/question.html:29 #: skins/default/templates/question.html:46 -#: skins/default/templates/question.html:199 +#: skins/default/templates/question.html:186 msgid "current number of votes" msgstr "текущее число голосов" @@ -3623,68 +4495,54 @@ msgstr "текущее число голосов" msgid "i dont like this post (click again to cancel)" msgstr "мне не понравился этот пост (нажмите еще раз для отмены)" -#: skins/default/templates/question.html:56 -#: skins/default/templates/question.html:57 -msgid "mark this question as favorite (click again to cancel)" -msgstr "добавить в закладки (чтобы отменить - отметьте еще раз)" - -#: skins/default/templates/question.html:63 -#: skins/default/templates/question.html:64 -msgid "remove favorite mark from this question (click again to restore mark)" -msgstr "удалить из закладок (еще раз - чтобы восстановить)" - -#: skins/default/templates/question.html:70 -msgid "Share this question on twitter" -msgstr "Поделиться вопросом на Twitter" - -#: skins/default/templates/question.html:71 -msgid "Share this question on facebook" -msgstr "Поделиться вопросом на Facebook" - -#: skins/default/templates/question.html:95 +#: skins/default/templates/question.html:82 msgid "retag" msgstr "изменить тег" -#: skins/default/templates/question.html:102 +#: skins/default/templates/question.html:89 msgid "reopen" msgstr "переоткрыть" -#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:93 msgid "close" msgstr "закрыть" -#: skins/default/templates/question.html:111 -#: skins/default/templates/question.html:252 -msgid "report as offensive (i.e containing spam, advertising, malicious text, etc.)" -msgstr "сообщить о спаме (т.е. сообщениях содержащих спам, рекламу, вредоносные ссылки и т.д.)" +#: skins/default/templates/question.html:98 +#: skins/default/templates/question.html:239 +msgid "" +"report as offensive (i.e containing spam, advertising, malicious text, etc.)" +msgstr "" +"сообщить о спаме (т.е. сообщениях содержащих спам, рекламу, вредоносные " +"ссылки и т.д.)" -#: skins/default/templates/question.html:112 -#: skins/default/templates/question.html:253 +#: skins/default/templates/question.html:99 +#: skins/default/templates/question.html:240 msgid "flag offensive" msgstr "спам" -#: skins/default/templates/question.html:119 -#: skins/default/templates/question.html:263 +#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:250 msgid "undelete" msgstr "восстановить" -#: skins/default/templates/question.html:119 -#: skins/default/templates/question.html:263 -#: skins/default/templates/authopenid/signin.html:155 +#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:250 +#: skins/default/templates/authopenid/signin.html:166 msgid "delete" msgstr "удалить" -#: skins/default/templates/question.html:156 +#: skins/default/templates/question.html:143 #, python-format -msgid "The question has been closed for the following reason \"%(close_reason)s\" by" +msgid "" +"The question has been closed for the following reason \"%(close_reason)s\" by" msgstr "Вопрос был закрыт по следующим причинам \"%(close_reason)s\", автор:" -#: skins/default/templates/question.html:158 +#: skins/default/templates/question.html:145 #, python-format msgid "close date %(closed_at)s" msgstr "дата закрытия: %(closed_at)s" -#: skins/default/templates/question.html:164 +#: skins/default/templates/question.html:151 #, fuzzy, python-format msgid "" "\n" @@ -3705,134 +4563,220 @@ msgstr[2] "" "\n" "%(counter)s Ответов:" -#: skins/default/templates/question.html:172 +#: skins/default/templates/question.html:159 msgid "oldest answers will be shown first" msgstr "самые старые ответы будут показаны первыми" -#: skins/default/templates/question.html:173 +#: skins/default/templates/question.html:160 msgid "oldest answers" msgstr "самые старые ответы" -#: skins/default/templates/question.html:175 +#: skins/default/templates/question.html:162 msgid "newest answers will be shown first" msgstr "самые новые ответы будут показаны первыми" -#: skins/default/templates/question.html:176 +#: skins/default/templates/question.html:163 msgid "newest answers" msgstr "самые новые ответы" -#: skins/default/templates/question.html:178 +#: skins/default/templates/question.html:165 msgid "most voted answers will be shown first" msgstr "ответы с большим числом голосов будут показаны первыми" -#: skins/default/templates/question.html:179 +#: skins/default/templates/question.html:166 msgid "popular answers" msgstr "популярные ответы" -#: skins/default/templates/question.html:197 -#: skins/default/templates/question.html:198 +#: skins/default/templates/question.html:184 +#: skins/default/templates/question.html:185 msgid "i like this answer (click again to cancel)" msgstr "мне нравится этот ответ (нажмите еще раз для отмены)" -#: skins/default/templates/question.html:208 -#: skins/default/templates/question.html:209 +#: skins/default/templates/question.html:195 +#: skins/default/templates/question.html:196 msgid "i dont like this answer (click again to cancel)" msgstr "мне не нравится этот ответ (нажмите еще раз для отмены)" -#: skins/default/templates/question.html:217 -#: skins/default/templates/question.html:218 +#: skins/default/templates/question.html:204 +#: skins/default/templates/question.html:205 msgid "mark this answer as favorite (click again to undo)" msgstr "отметить этот вопрос как интересный (еще раз - чтобы удалить закладку)" -#: skins/default/templates/question.html:227 -#: skins/default/templates/question.html:228 +#: skins/default/templates/question.html:214 +#: skins/default/templates/question.html:215 #, python-format msgid "%(question_author)s has selected this answer as correct" -msgstr "автор вопроса %(question_author)s выбрал этот ответ лучшим" +msgstr "автор вопроса %(question_author)s выбрал этот ответ правильным" -#: skins/default/templates/question.html:243 +#: skins/default/templates/question.html:230 msgid "answer permanent link" msgstr "постоянная ссылка на ответ" -#: skins/default/templates/question.html:244 +#: skins/default/templates/question.html:231 msgid "permanent link" msgstr "постоянная ссылка" -#: skins/default/templates/question.html:313 -#: skins/default/templates/question.html:315 +#: skins/default/templates/question.html:256 +#, fuzzy +msgid "swap with question" +msgstr "Ответить на вопрос" + +#: skins/default/templates/question.html:297 +#, python-format +msgid "" +"Know someone who can answer? Share a link " +"to this question via" +msgstr "" + +#: skins/default/templates/question.html:303 +#, fuzzy +msgid " or" +msgstr "или" + +#: skins/default/templates/question.html:305 +msgid "email" +msgstr "email" + +#: skins/default/templates/question.html:320 +#: skins/default/templates/question.html:322 msgid "Notify me once a day when there are any new answers" msgstr "Информировать один раз в день, если есть новые ответы" -#: skins/default/templates/question.html:317 +#: skins/default/templates/question.html:324 msgid "Notify me weekly when there are any new answers" msgstr "Еженедельно информировать о новых ответах" -#: skins/default/templates/question.html:319 +#: skins/default/templates/question.html:326 msgid "Notify me immediately when there are any new answers" msgstr "Информировать о новых ответах сразу" -#: skins/default/templates/question.html:322 +#: skins/default/templates/question.html:329 #, python-format -msgid "You can always adjust frequency of email updates from your %(profile_url)s" -msgstr "(в своем профиле, вы можете настроить частоту оповещений по электронной почте, нажав на кнопку \"подписка по e-mail\")" +msgid "" +"You can always adjust frequency of email updates from your %(profile_url)s" +msgstr "" +"(в своем профиле, вы можете настроить частоту оповещений по электронной " +"почте, нажав на кнопку \"подписка по e-mail\" - %(profile_url)s)" -#: skins/default/templates/question.html:327 +#: skins/default/templates/question.html:334 msgid "once you sign in you will be able to subscribe for any updates here" msgstr "После входа в систему вы сможете подписаться на все обновления" -#: skins/default/templates/question.html:337 +#: skins/default/templates/question.html:344 +#, fuzzy +msgid "Login/Signup to Answer" +msgstr "Войти / Зарегистрироваться чтобы ответить" + +#: skins/default/templates/question.html:352 msgid "Your answer" msgstr "Ваш ответ" -#: skins/default/templates/question.html:339 +#: skins/default/templates/question.html:354 msgid "Be the first one to answer this question!" msgstr "Будьте первым, кто ответ на этот вопрос!" -#: skins/default/templates/question.html:345 +#: skins/default/templates/question.html:360 msgid "you can answer anonymously and then login" msgstr "Вы можете ответить анонимно, а затем войти" -#: skins/default/templates/question.html:349 +#: skins/default/templates/question.html:364 msgid "answer your own question only to give an answer" msgstr "ответ на собственный вопрос только ради ответа" -#: skins/default/templates/question.html:351 +#: skins/default/templates/question.html:366 msgid "please only give an answer, no discussions" msgstr "пожалуйста, отвечайте на вопросы, а не вступайте в обсуждения" -#: skins/default/templates/question.html:358 +#: skins/default/templates/question.html:373 msgid "Login/Signup to Post Your Answer" msgstr "Войти / Зарегистрироваться чтобы ответить" -#: skins/default/templates/question.html:361 +#: skins/default/templates/question.html:376 +#: skins/default/templates/question.html:389 msgid "Answer Your Own Question" msgstr "Ответьте на собственный вопрос" -#: skins/default/templates/question.html:363 +#: skins/default/templates/question.html:378 msgid "Answer the question" msgstr "Ответить на вопрос" -#: skins/default/templates/question.html:378 +#: skins/default/templates/question.html:397 +msgid "Question tools" +msgstr "Закладки и информация" + +#: skins/default/templates/question.html:400 +msgid "click to unfollow this question" +msgstr "нажмите, чтобы удалить закладку" + +#: skins/default/templates/question.html:401 +msgid "Following" +msgstr "Есть закладка!" + +#: skins/default/templates/question.html:402 +msgid "Unfollow" +msgstr "Убрать закладку" + +#: skins/default/templates/question.html:406 +msgid "click to follow this question" +msgstr "нажмите, чтобы добавить закладку" + +#: skins/default/templates/question.html:407 +msgid "Follow" +msgstr "Добавить закладку" + +#: skins/default/templates/question.html:414 +#, python-format +msgid "%(count)s follower" +msgid_plural "%(count)s followers" +msgstr[0] "%(count)s закладка" +msgstr[1] "%(count)s закладки" +msgstr[2] "%(count)s закладок" + +#: skins/default/templates/question.html:420 +msgid "email the updates" +msgstr "получить обновления по email" + +#: skins/default/templates/question.html:423 +msgid "" +"Here (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.html:428 +#, fuzzy +msgid "subscribe to this question rss feed" +msgstr "подписаться на RSS-канал для вопросов" + +#: skins/default/templates/question.html:429 +#, fuzzy +msgid "subsribe to rss feed" +msgstr "подписаться на RSS-канал для вопросов" + +#: skins/default/templates/question.html:438 msgid "Question tags" msgstr "Теги вопроса" -#: skins/default/templates/question.html:395 +#: skins/default/templates/question.html:460 +msgid "Stats:" +msgstr "Статистика" + +#: skins/default/templates/question.html:462 msgid "question asked" msgstr "вопрос был задан" -#: skins/default/templates/question.html:398 +#: skins/default/templates/question.html:465 msgid "question was seen" msgstr "вопрос был просмотрен" -#: skins/default/templates/question.html:398 +#: skins/default/templates/question.html:465 msgid "times" msgstr "раз" -#: skins/default/templates/question.html:401 +#: skins/default/templates/question.html:468 msgid "last updated" msgstr "последнее обновление" -#: skins/default/templates/question.html:408 +#: skins/default/templates/question.html:477 msgid "Related questions" msgstr "похожие вопросы:" @@ -3844,7 +4788,7 @@ msgstr "Изменить вопрос" #: skins/default/templates/question_retag.html:3 #: skins/default/templates/question_retag.html:5 msgid "Change tags" -msgstr "Изменить теги" +msgstr "Измененить тэги" #: skins/default/templates/question_retag.html:21 msgid "Retag" @@ -3866,8 +4810,7 @@ msgstr "редакторы тегов получают специальные п msgid "up to 5 tags, less than 20 characters each" msgstr "до 5 тегов, менее 20 символов каждый" -#: skins/default/templates/reopen.html:3 -#: skins/default/templates/reopen.html:5 +#: skins/default/templates/reopen.html:3 skins/default/templates/reopen.html:5 msgid "Reopen question" msgstr "Переоткрыть вопрос" @@ -3921,61 +4864,71 @@ msgid "Subscribe for tags" msgstr "использовать теги" #: skins/default/templates/subscribe_for_tags.html:6 -#, fuzzy msgid "Please, subscribe for the following tags:" -msgstr "Вопрос был закрыт по следующим причинам" +msgstr "Пожалуйста, подпишитесь на темы:" #: skins/default/templates/subscribe_for_tags.html:15 msgid "Subscribe" -msgstr "Подписаться" +msgstr "" -#: skins/default/templates/tags.html:4 -#: skins/default/templates/tags.html:8 +#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:11 msgid "Tag list" msgstr "Список тегов" -#: skins/default/templates/tags.html:14 +#: skins/default/templates/tags.html:9 +#, python-format +msgid "Tags, matching \"%(stag)s\"" +msgstr "" + +#: skins/default/templates/tags.html:19 msgid "sorted alphabetically" msgstr "сортировать в алфавитном порядке" -#: skins/default/templates/tags.html:15 +#: skins/default/templates/tags.html:20 msgid "by name" msgstr "по имени" -#: skins/default/templates/tags.html:20 +#: skins/default/templates/tags.html:25 msgid "sorted by frequency of tag use" msgstr "сортировать по частоте использования тега" -#: skins/default/templates/tags.html:21 +#: skins/default/templates/tags.html:26 msgid "by popularity" msgstr "по популярности" -#: skins/default/templates/tags.html:26 -#, python-format -msgid "All tags matching '%(stag)s'" -msgstr "Все теги, соответствующие '%(stag)s' " - -#: skins/default/templates/tags.html:29 +#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:56 msgid "Nothing found" msgstr "Ничего не найдено" -#: skins/default/templates/users.html:4 -#: skins/default/templates/users.html:7 +#: skins/default/templates/users.html:4 skins/default/templates/users.html:7 msgid "Users" msgstr "Пользователи" #: skins/default/templates/users.html:13 +msgid "see people with the highest reputation" +msgstr "" + #: skins/default/templates/users.html:14 #: skins/default/templates/user_profile/user_info.html:25 msgid "reputation" msgstr "карма" #: skins/default/templates/users.html:19 +msgid "see people who joined most recently" +msgstr "" + #: skins/default/templates/users.html:20 msgid "recent" msgstr "новички" +#: skins/default/templates/users.html:25 +msgid "see people who joined the site first" +msgstr "" + #: skins/default/templates/users.html:31 +msgid "see people sorted by name" +msgstr "" + #: skins/default/templates/users.html:32 msgid "by username" msgstr "по имени" @@ -3993,21 +4946,21 @@ msgstr "Ничего не найдено." #: skins/default/templates/authopenid/changeemail.html:8 #: skins/default/templates/authopenid/changeemail.html:36 msgid "Change email" -msgstr "Изменить адрес email" +msgstr "Изменить адрес электронной почты" #: skins/default/templates/authopenid/changeemail.html:10 msgid "Save your email address" -msgstr "Сохранить адрес email" +msgstr "Сохранить адрес электронной почты" #: skins/default/templates/authopenid/changeemail.html:15 #, python-format msgid "change %(email)s info" -msgstr "изменить %(email)s" +msgstr "измененить %(email)s" #: skins/default/templates/authopenid/changeemail.html:17 #, python-format msgid "here is why email is required, see %(gravatar_faq_url)s" -msgstr "вот почему требуется email, см. %(gravatar_faq_url)s" +msgstr "вот почему требуется электронной почты, см. %(gravatar_faq_url)s" #: skins/default/templates/authopenid/changeemail.html:29 msgid "Your new Email" @@ -4037,7 +4990,9 @@ msgstr "Email не изменился" #: skins/default/templates/authopenid/changeemail.html:55 #, python-format msgid "old %(email)s kept, if you like go to %(change_email_url)s" -msgstr "старый %(email)s сохранен, при желании можно изменить тут %(change_email_url)s" +msgstr "" +"старый %(email)s сохранен, при желании можно изменить тут " +"%(change_email_url)s" #: skins/default/templates/authopenid/changeemail.html:59 msgid "Email changed" @@ -4063,7 +5018,8 @@ msgstr "email ключ не отослан" #: skins/default/templates/authopenid/changeemail.html:76 #, python-format msgid "email key not sent %(email)s change email here %(change_link)s" -msgstr "email ключ не отослан на %(email)s, изменить email здесь %(change_link)s" +msgstr "" +"email ключ не отослан на %(email)s, изменить email здесь %(change_link)s" #: skins/default/templates/authopenid/complete.html:21 #: skins/default/templates/authopenid/complete.html:23 @@ -4073,20 +5029,28 @@ msgstr "Регистрация" #: skins/default/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" +msgstr "" +"зарегистрировать нового провайдера %(provider)s к учетной записи, смотрите " +"%(gravatar_faq_url)s" #: skins/default/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" +" %(provider)s. Email is required too, see " +"%(gravatar_faq_url)s\n" " " -msgstr "%(username)s уже существует, выберите другое имя для %(provider)s. Email так же требуется тоже, смотрите %(gravatar_faq_url)s" +msgstr "" +"%(username)s уже существует, выберите другое имя для %(provider)s. Email так " +"же требуется тоже, смотрите %(gravatar_faq_url)s" #: skins/default/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" +msgid "" +"register new external %(provider)s account info, see %(gravatar_faq_url)s" +msgstr "" +"регистрация нового внешнего %(provider)s к учетной записи, смотрите " +"%(gravatar_faq_url)s" #: skins/default/templates/authopenid/complete.html:37 #, python-format @@ -4103,12 +5067,12 @@ msgstr "Логин" #: skins/default/templates/authopenid/complete.html:66 msgid "Email address label" -msgstr "Ярлык для Email" +msgstr "Email" #: skins/default/templates/authopenid/complete.html:72 #: skins/default/templates/authopenid/signup_with_password.html:36 msgid "receive updates motivational blurb" -msgstr "получать обновления мотивационной рекламы" +msgstr "Получать обновления по электронной почте" #: skins/default/templates/authopenid/complete.html:76 #: skins/default/templates/authopenid/signup_with_password.html:40 @@ -4117,7 +5081,8 @@ msgstr "Пожалуйста, выберите один из вариантов" #: skins/default/templates/authopenid/complete.html:79 msgid "Tag filter tool will be your right panel, once you log in." -msgstr "Фильтр тегов будет в правой панели, после того, как вы войдете в систему" +msgstr "" +"Фильтр тегов будет в правой панели, после того, как вы войдете в систему" #: skins/default/templates/authopenid/complete.html:80 msgid "create account" @@ -4156,29 +5121,47 @@ msgstr "Вас приветствует Q/A форум" #: skins/default/templates/authopenid/email_validation.txt:3 msgid "To make use of the Forum, please follow the link below:" -msgstr "Для того чтобы воспользоваться форумом, пожалуйста, перейдите по ссылке ниже:" +msgstr "" +"Для того чтобы воспользоваться форумом, пожалуйста, перейдите по ссылке ниже:" #: skins/default/templates/authopenid/email_validation.txt:7 msgid "Following the link above will help us verify your email address." msgstr "Перейдя по ссылке выше, вы поможете нам проверить ваш email." -#: skins/default/templates/authopenid/email_validation.txt:9 +#: skins/default/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" +"for any inconvenience" +msgstr "" +"Если вы считаете, что сообщение было отправлено по ошибке - никаких " +"дальнейших действий не требуется. Просто проигнорируйте это письмо, мы " +"приносим свои извинения за причиненные неудобства." + +#: skins/default/templates/authopenid/logout.html:3 +msgid "Logout" +msgstr "Выйти" + +#: skins/default/templates/authopenid/logout.html:5 +msgid "You have successfully logged out" +msgstr "" + +#: skins/default/templates/authopenid/logout.html:7 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 "Если вы считаете, что сообщение было отправлено по ошибке - никаких дальнейших действий не требуется. Просто проигнорируйте это письмо, мы приносим свои извинения за причиненные неудобства." +"However, you still may be logged in to your OpenID provider. Please logout " +"of your provider if you wish to do so." +msgstr "" -#: skins/default/templates/authopenid/macros.html:46 +#: skins/default/templates/authopenid/macros.html:53 msgid "Please enter your user name, then sign in" msgstr "Пожалуйста, введите ваше имя пользователя, затем войдите" -#: skins/default/templates/authopenid/macros.html:47 -#: skins/default/templates/authopenid/signin.html:89 +#: skins/default/templates/authopenid/macros.html:54 +#: skins/default/templates/authopenid/signin.html:90 msgid "(or select another login method above)" msgstr "(или выберите один из методов входа выше)" -#: skins/default/templates/authopenid/macros.html:49 +#: skins/default/templates/authopenid/macros.html:56 msgid "Sign in" msgstr "Войти" @@ -4202,129 +5185,170 @@ msgid "" "Your question \n" " %(title)s %(summary)s will be posted once you log in\n" " " -msgstr "Ваш вопрос %(title)s / %(summary)s ы будет опубликован после того, как вы войдёте" +msgstr "" +"Ваш вопрос %(title)s / %(summary)s ы будет опубликован после того, как вы " +"войдёте" #: skins/default/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." -msgstr "Выберите ваш сервис чтобы войти используя безопасную OpenID (или похожую) технологию. Пароль к вашей внешней службе всегда конфиденциален и нет необходимости создавать пароль при регистрации." +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 "" +"Выберите ваш сервис чтобы войти используя безопасную OpenID (или похожую) " +"технологию. Пароль к вашей внешней службе всегда конфиденциален и нет " +"необходимости создавать пароль при регистрации." #: skins/default/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 "Всегда хорошая идея проверить работает ли ваш текущий метод входа, а также добавить и другие методы. Пожалуйста, выберите любую иконку ниже для проверки/изменения/добавления методов входа." +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 "" +"Всегда хорошая идея проверить работает ли ваш текущий метод входа, а также " +"добавить и другие методы. Пожалуйста, выберите любую иконку ниже для " +"проверки/изменения/добавления методов входа." #: skins/default/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 "Пожалуйста, добавьте постоянный метод входа кликнув по одной из иконок ниже, чтобы не входить каждый раз через e-mail." +msgid "" +"Please add a more permanent login method by clicking one of the icons below, " +"to avoid logging in via email each time." +msgstr "" +"Пожалуйста, добавьте постоянный метод входа кликнув по одной из иконок ниже, " +"чтобы не входить каждый раз через e-mail." #: skins/default/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 "Кликните на одной из иконок ниже чтобы добавить метод входа или проверить уже существующий." +msgid "" +"Click on one of the icons below to add a new login method or re-validate an " +"existing one." +msgstr "" +"Кликние на одной из иконок ниже чтобы добавить метод входа или проверить уже " +"существующий." #: skins/default/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 "На данный момент вами не выбран ни один из методов входа, добавьте хотя бы один кликнув по иконке ниже." +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 "" +"На данный момент вами не выбран ни один из методов входа, добавьте хотя бы " +"один кликнув по иконке ниже." #: skins/default/templates/authopenid/signin.html:42 -msgid "Please check your email and visit the enclosed link to re-connect to your account" -msgstr "Пожалуйста, проверьте ваш email и пройдите по ссылке чтобы вновь войти в ваш аккаунт" +msgid "" +"Please check your email and visit the enclosed link to re-connect to your " +"account" +msgstr "" +"Пожалуйста, проверьте ваш email и пройдите по ссылке чтобы вновь войти в ваш " +"аккаунт" -#: skins/default/templates/authopenid/signin.html:86 +#: skins/default/templates/authopenid/signin.html:87 msgid "Please enter your user name and password, then sign in" -msgstr "Пожалуйста, введите ваши имя пользователя и пароль, затем войдите" +msgstr "" +"Пожалуйста, введите ваши имя пользователя и пароль, затем " +"войдите" -#: skins/default/templates/authopenid/signin.html:92 +#: skins/default/templates/authopenid/signin.html:93 msgid "Login failed, please try again" msgstr "Вход завершился неудачей, попробуйте ещё раз" -#: skins/default/templates/authopenid/signin.html:95 -msgid "Login name" -msgstr "Имя пользователя" +#: skins/default/templates/authopenid/signin.html:97 +#, fuzzy +msgid "Login or email" +msgstr "не посылать email" -#: skins/default/templates/authopenid/signin.html:99 +#: skins/default/templates/authopenid/signin.html:101 msgid "Password" msgstr "Пароль" -#: skins/default/templates/authopenid/signin.html:103 +#: skins/default/templates/authopenid/signin.html:106 msgid "Login" msgstr "Войти" -#: skins/default/templates/authopenid/signin.html:110 +#: skins/default/templates/authopenid/signin.html:113 msgid "To change your password - please enter the new one twice, then submit" -msgstr "Чтобы изменить ваш пароль - пожалуйста, введите новый дважды и подтвердите ввод" +msgstr "" +"Чтобы изменить ваш пароль - пожалуйста, введите новый дважды и подтвердите " +"ввод" -#: skins/default/templates/authopenid/signin.html:113 +#: skins/default/templates/authopenid/signin.html:117 msgid "New password" msgstr "Новый пароль" -#: skins/default/templates/authopenid/signin.html:118 +#: skins/default/templates/authopenid/signin.html:124 msgid "Please, retype" -msgstr "пожалуйста, повторите пароль" +msgstr "пожалуйста, ещё раз" -#: skins/default/templates/authopenid/signin.html:136 +#: skins/default/templates/authopenid/signin.html:146 msgid "Here are your current login methods" msgstr "Ваши текущие методы входа" -#: skins/default/templates/authopenid/signin.html:140 +#: skins/default/templates/authopenid/signin.html:150 msgid "provider" msgstr "провайдер" -#: skins/default/templates/authopenid/signin.html:141 +#: skins/default/templates/authopenid/signin.html:151 msgid "last used" msgstr "последний использованный" -#: skins/default/templates/authopenid/signin.html:142 +#: skins/default/templates/authopenid/signin.html:152 msgid "delete, if you like" msgstr "удалите, если хотите" #: skins/default/templates/authopenid/signin.html:168 +#, fuzzy +msgid "cannot be deleted" +msgstr "Аккаунт удален." + +#: skins/default/templates/authopenid/signin.html:181 msgid "Still have trouble signing in?" msgstr "По-прежнему проблемы со входом ?" -#: skins/default/templates/authopenid/signin.html:173 +#: skins/default/templates/authopenid/signin.html:186 msgid "Please, enter your email address below and obtain a new key" msgstr "Пожалуйста, введите ваш email-адрес ниже и получите новый ключ" -#: skins/default/templates/authopenid/signin.html:175 +#: skins/default/templates/authopenid/signin.html:188 msgid "Please, enter your email address below to recover your account" -msgstr "Пожалуйста, введите ваш email-адрес ниже чтобы восстановить ваш аккаунт" +msgstr "" +"Пожалуйста, введите ваш email-адрес ниже чтобы восстановить ваш аккаунт" -#: skins/default/templates/authopenid/signin.html:178 +#: skins/default/templates/authopenid/signin.html:191 msgid "recover your account via email" msgstr "Восстановить ваш аккаунт по email" -#: skins/default/templates/authopenid/signin.html:189 +#: skins/default/templates/authopenid/signin.html:202 msgid "Send a new recovery key" msgstr "Послать новый ключ восстановления" -#: skins/default/templates/authopenid/signin.html:191 +#: skins/default/templates/authopenid/signin.html:204 msgid "Recover your account via email" msgstr "Восстановить ваш аккаунт используя email" -#: skins/default/templates/authopenid/signin.html:203 +#: skins/default/templates/authopenid/signin.html:216 msgid "Why use OpenID?" msgstr "Плюсы использования OpenID" -#: skins/default/templates/authopenid/signin.html:206 +#: skins/default/templates/authopenid/signin.html:219 msgid "with openid it is easier" msgstr "С OpenID проще" -#: skins/default/templates/authopenid/signin.html:209 +#: skins/default/templates/authopenid/signin.html:222 msgid "reuse openid" msgstr "Используйте везде повторно" -#: skins/default/templates/authopenid/signin.html:212 +#: skins/default/templates/authopenid/signin.html:225 msgid "openid is widely adopted" msgstr "OpenID широко распространён" -#: skins/default/templates/authopenid/signin.html:215 +#: skins/default/templates/authopenid/signin.html:228 msgid "openid is supported open standard" msgstr "OpenID поддерживаемый открытый стандарт" -#: skins/default/templates/authopenid/signin.html:219 +#: skins/default/templates/authopenid/signin.html:232 msgid "Find out more" msgstr "Узнать больше" -#: skins/default/templates/authopenid/signin.html:220 +#: skins/default/templates/authopenid/signin.html:233 msgid "Get OpenID" msgstr "Получить OpenID" @@ -4333,14 +5357,12 @@ msgid "Signup" msgstr "Зарегистрироваться" #: skins/default/templates/authopenid/signup_with_password.html:10 -#, fuzzy msgid "Please register by clicking on any of the icons below" -msgstr "Чтобы войти на форум, нажмите на любую из кнопок ниже " +msgstr "Создайте имя пользователя и пароль" #: skins/default/templates/authopenid/signup_with_password.html:23 -#, fuzzy msgid "or create a new user name and password here" -msgstr "Создать имя и пароль" +msgstr "или зайдите нажав одну из кнопок ниже" #: skins/default/templates/authopenid/signup_with_password.html:25 msgid "Create login name and password" @@ -4351,8 +5373,12 @@ msgid "Traditional signup info" msgstr "Информация о традиционной регистрации" #: skins/default/templates/authopenid/signup_with_password.html:44 -msgid "Please read and type in the two words below to help us prevent automated account creation." -msgstr "Пожалуйста, прочтите и укажите два слова ниже, чтобы помочь нам предотвратить автоматизированные создания учетной записи." +msgid "" +"Please read and type in the two words below to help us prevent automated " +"account creation." +msgstr "" +"Пожалуйста, прочтите и укажите два слова ниже, чтобы помочь нам " +"предотвратить автоматизированные создания учетной записи." #: skins/default/templates/authopenid/signup_with_password.html:47 msgid "Create Account" @@ -4374,7 +5400,7 @@ msgstr "что такое Gravatar" #: skins/default/templates/avatar/add.html:5 #, fuzzy msgid "Change avatar" -msgstr "Изменить теги" +msgstr "Измененить тэги" #: skins/default/templates/avatar/add.html:6 #: skins/default/templates/avatar/change.html:7 @@ -4385,11 +5411,11 @@ msgstr "Подробности вашей учетной записи:" #: skins/default/templates/avatar/add.html:9 #: skins/default/templates/avatar/change.html:11 msgid "You haven't uploaded an avatar yet. Please upload one now." -msgstr "Вы не загрузили аватар, загрузите сейчас" +msgstr "" #: skins/default/templates/avatar/add.html:13 msgid "Upload New Image" -msgstr "Загрузить картинку" +msgstr "" #: skins/default/templates/avatar/change.html:4 #, fuzzy @@ -4401,8 +5427,9 @@ msgid "Choose new Default" msgstr "" #: skins/default/templates/avatar/change.html:22 +#, fuzzy msgid "Upload" -msgstr "Загрузить" +msgstr "zagruzhaem-file/" #: skins/default/templates/avatar/confirm_delete.html:3 #, fuzzy @@ -4411,17 +5438,19 @@ msgstr "удаленный ответ" #: skins/default/templates/avatar/confirm_delete.html:5 msgid "Please select the avatars that you would like to delete." -msgstr "Выберите аватар для удаления" +msgstr "" #: skins/default/templates/avatar/confirm_delete.html:7 #, python-format -msgid "You have no avatars to delete. Please upload one now." +msgid "" +"You have no avatars to delete. Please upload one now." msgstr "" #: skins/default/templates/avatar/confirm_delete.html:13 #, fuzzy msgid "Delete These" -msgstr "Удалить эти" +msgstr "удаленный ответ" #: skins/default/templates/blocks/answer_edit_tips.html:3 msgid "answer tips" @@ -4429,7 +5458,8 @@ msgstr "Советы как лучше давать ответы" #: skins/default/templates/blocks/answer_edit_tips.html:6 msgid "please make your answer relevant to this community" -msgstr "пожалуйста постарайтесь дать ответ который будет интересен коллегам по форуму" +msgstr "" +"пожалуйста постарайтесь дать ответ который будет интересен коллегам по форуму" #: skins/default/templates/blocks/answer_edit_tips.html:9 msgid "try to give an answer, rather than engage into a discussion" @@ -4504,28 +5534,44 @@ msgstr "а также, поддерживаются основные теги HT #: skins/default/templates/blocks/answer_edit_tips.html:60 #: skins/default/templates/blocks/question_edit_tips.html:56 msgid "learn more about Markdown" -msgstr "узнайте больше про Markdown" +msgstr "узнайте болше про Markdown" #: skins/default/templates/blocks/ask_form.html:6 msgid "login to post question info" -msgstr "Пожалуйста, начните задавать Ваш ворпос анонимно. Когда Вы пошлете вопрос, Вы будете направлены на страницу авторизации. Ваш вопрос будет сохранён в текущей сессии и будет опубликован как только Вы авторизуетесь. Войти или записаться на наш форум очень легко. Авторизация займет не более полминуты а изначальная запись - приблизительно одну минуту." +msgstr "" +"Пожалуйста, начните задавать Ваш ворпос анонимно. Когда Вы пошлете вопрос, Вы будете направлены на страницу " +"авторизации. Ваш вопрос будет сохранён в текущей сессии и будет опубликован " +"как только Вы авторизуетесь. Войти или записаться на наш форум очень легко. " +"Авторизация займет не более полминуты а изначальная запись - приблизительно " +"одну минуту." #: skins/default/templates/blocks/ask_form.html:10 -#, python-format +#, fuzzy, python-format msgid "" "must have valid %(email)s to post, \n" " see %(email_validation_faq_url)s\n" " " -msgstr "Похоже на то что адрес Вашей электронной почты, %(email)s еще не был проверен. Чтобы публиковать сообщения на форуме сначала пожалуйста продемонстрируйте что Ваша электронная почта работает, дополнительная информация об етом здесь.
        Ваш вопрос будет опубликован сразу после того как ваш адрес будет проверен, а до тех пор вопос будет сохранён в базе данных." +msgstr "" +"для публикации %(email)s должен быть действительным, см. " +"%(email_validation_faq_url)s" -#: skins/default/templates/blocks/ask_form.html:27 +#: skins/default/templates/blocks/ask_form.html:34 msgid "Login/signup to post your question" msgstr "Войдите или запишитесь чтобы опубликовать Ваш ворпос" -#: skins/default/templates/blocks/ask_form.html:29 +#: skins/default/templates/blocks/ask_form.html:36 msgid "Ask your question" msgstr "Задайте Ваш вопрос" +#: skins/default/templates/blocks/bottom_scripts.html:7 +#, python-format +msgid "" +"Please note: %(app_name)s requires javascript to work properly, please " +"enable javascript in your browser, here is how" +msgstr "" + #: skins/default/templates/blocks/editor_data.html:5 #, python-format msgid "each tag must be shorter that %(max_chars)s character" @@ -4544,22 +5590,30 @@ msgstr[2] "пожалуйста введите не более %(tag_count)s т #: skins/default/templates/blocks/editor_data.html:8 #, 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" +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/blocks/footer.html:5 +#: skins/default/templates/blocks/footer.html:4 #: skins/default/templates/blocks/header_meta_links.html:12 msgid "about" -msgstr "о нас" +msgstr "О нас" -#: skins/default/templates/blocks/footer.html:7 +#: skins/default/templates/blocks/footer.html:6 msgid "privacy policy" msgstr "политика конфиденциальности" -#: skins/default/templates/blocks/footer.html:16 +#: skins/default/templates/blocks/footer.html:15 msgid "give feedback" msgstr "оставить отзыв" +#: skins/default/templates/blocks/footer.html:41 +#, python-format +msgid "Content on this site is licensed under a %(license)s" +msgstr "" + #: skins/default/templates/blocks/header.html:8 msgid "back to home page" msgstr "вернуться на главную" @@ -4569,19 +5623,19 @@ msgstr "вернуться на главную" msgid "%(site)s logo" msgstr "логотип %(site)s" -#: skins/default/templates/blocks/header.html:17 +#: skins/default/templates/blocks/header.html:20 msgid "questions" msgstr "вопросы" -#: skins/default/templates/blocks/header.html:27 +#: skins/default/templates/blocks/header.html:30 msgid "users" msgstr "пользователи" -#: skins/default/templates/blocks/header.html:32 +#: skins/default/templates/blocks/header.html:35 msgid "badges" msgstr "награды" -#: skins/default/templates/blocks/header.html:37 +#: skins/default/templates/blocks/header.html:40 msgid "ask a question" msgstr "задать вопрос" @@ -4619,7 +5673,7 @@ msgstr "Избранные теги" #: skins/default/templates/blocks/tag_selector.html:18 #: skins/default/templates/blocks/tag_selector.html:34 -#: skins/default/templates/user_profile/user_moderate.html:38 +#: skins/default/templates/user_profile/user_moderate.html:40 msgid "Add" msgstr "Добавить" @@ -4641,14 +5695,13 @@ msgstr "Пожалуйста, опубликуйте свой вопрос!" #: skins/default/templates/main_page/headline.html:7 msgid "subscribe to the questions feed" -msgstr "подписаться на RSS-ленту для вопросов" +msgstr "подписаться на RSS-канал для вопросов" #: skins/default/templates/main_page/headline.html:8 msgid "rss feed" -msgstr "RSS-лента" +msgstr "RSS-канал" -#: skins/default/templates/main_page/headline.html:12 -#: views/readers.py:120 +#: skins/default/templates/main_page/headline.html:12 views/readers.py:131 #, fuzzy, python-format msgid "%(q_num)s question, tagged" msgid_plural "%(q_num)s questions, tagged" @@ -4656,8 +5709,7 @@ msgstr[0] "%(q_num)s вопрос" msgstr[1] "%(q_num)s вопроса" msgstr[2] "%(q_num)s вопросов" -#: skins/default/templates/main_page/headline.html:14 -#: views/readers.py:128 +#: skins/default/templates/main_page/headline.html:14 views/readers.py:139 #, python-format msgid "%(q_num)s question" msgid_plural "%(q_num)s questions" @@ -4687,7 +5739,7 @@ msgstr "или" #: skins/default/templates/main_page/headline.html:34 msgid "reset tags" -msgstr "сбросить теги" +msgstr "сбросить тэги" #: skins/default/templates/main_page/headline.html:37 #: skins/default/templates/main_page/headline.html:40 @@ -4706,34 +5758,20 @@ msgstr "Подсказки для поиска:" msgid "add tags and a query to focus your search" msgstr "добавить теги и выполнить поиск" -#: skins/default/templates/main_page/javascript.html:13 -#: skins/default/templates/main_page/javascript.html:14 -msgid "mark-tag/" -msgstr "mark-tag/" - -#: skins/default/templates/main_page/javascript.html:13 -msgid "interesting/" -msgstr "interesting/" - -#: skins/default/templates/main_page/javascript.html:14 -msgid "ignored/" -msgstr "ignored/" - -#: skins/default/templates/main_page/javascript.html:15 -msgid "unmark-tag/" -msgstr "unmark-tag/" - #: skins/default/templates/main_page/nothing_found.html:4 msgid "There are no unanswered questions here" -msgstr "Не отвеченных вопросов нет" +msgstr "Неотвеченных вопросов нет" #: skins/default/templates/main_page/nothing_found.html:7 -msgid "No favorite questions here. " -msgstr "Избранных вопросов нет." +#, fuzzy +msgid "No questions here. " +msgstr "Отмеченных вопросов нет." #: skins/default/templates/main_page/nothing_found.html:8 -msgid "Please start (bookmark) some questions when you visit them" -msgstr "Начните добавлять в (избранное) некоторые вопросы, когда вы посещаете их" +#, fuzzy +msgid "Please star (bookmark) some questions or follow some users." +msgstr "" +"Начните добавлять в (закладки) некоторые вопросы, когда вы посещаете их" #: skins/default/templates/main_page/nothing_found.html:13 msgid "You can expand your search by " @@ -4745,7 +5783,7 @@ msgstr "сброс автора" #: skins/default/templates/main_page/nothing_found.html:19 msgid "resetting tags" -msgstr "сброс тегов" +msgstr "сброс тэгов" #: skins/default/templates/main_page/nothing_found.html:22 #: skins/default/templates/main_page/nothing_found.html:25 @@ -4756,11 +5794,11 @@ msgstr "начать сначала" msgid "Please always feel free to ask your question!" msgstr "Вы всегда можете задать свой вопрос!" -#: skins/default/templates/main_page/sidebar.html:5 +#: skins/default/templates/main_page/sidebar.html:8 msgid "Contributors" msgstr "Авторы" -#: skins/default/templates/main_page/sidebar.html:22 +#: skins/default/templates/main_page/sidebar.html:25 msgid "Related tags" msgstr "Связанные теги" @@ -4770,15 +5808,21 @@ msgstr "В:" #: skins/default/templates/main_page/tab_bar.html:14 msgid "see unanswered questions" -msgstr "просмотреть вопросы без ответа" +msgstr "просмотреть неотвеченные ворпосы" #: skins/default/templates/main_page/tab_bar.html:20 -msgid "see your favorite questions" -msgstr "просмотр избранных вопросов" +#, fuzzy +msgid "see your followed questions" +msgstr "просмотр отмеченные вопросы" + +#: skins/default/templates/main_page/tab_bar.html:21 +#, fuzzy +msgid "followed" +msgstr "Убрать закладку" #: skins/default/templates/main_page/tab_bar.html:25 msgid "Sort by:" -msgstr "Сортировать по:" +msgstr "Упорядочить по:" #: skins/default/templates/user_profile/user.html:13 #, python-format @@ -4804,7 +5848,7 @@ msgstr "Зарегистрированный пользователь" #: skins/default/templates/user_profile/user_edit.html:27 msgid "Screen Name" -msgstr "Отображаемое имя" +msgstr "Название экрана" #: skins/default/templates/user_profile/user_edit.html:83 #: skins/default/templates/user_profile/user_email_subscriptions.html:21 @@ -4812,9 +5856,9 @@ msgid "Update" msgstr "Обновить" #: skins/default/templates/user_profile/user_email_subscriptions.html:4 -#: skins/default/templates/user_profile/user_tabs.html:36 +#: skins/default/templates/user_profile/user_tabs.html:42 msgid "subscriptions" -msgstr "оповещения" +msgstr "подпискa" #: skins/default/templates/user_profile/user_email_subscriptions.html:7 msgid "Email subscription settings" @@ -4829,9 +5873,9 @@ msgid "Stop sending email" msgstr "Остановить отправку электронной почты" #: skins/default/templates/user_profile/user_favorites.html:4 -#: skins/default/templates/user_profile/user_tabs.html:21 -msgid "favorites" -msgstr "избранное" +#: skins/default/templates/user_profile/user_tabs.html:27 +msgid "followed questions" +msgstr "закладки" #: skins/default/templates/user_profile/user_inbox.html:18 #: skins/default/templates/user_profile/user_tabs.html:12 @@ -4881,57 +5925,58 @@ msgid "dismiss" msgstr "удалить" #: skins/default/templates/user_profile/user_info.html:19 +#, fuzzy msgid "remove" -msgstr "remove" +msgstr "vosstanovleniye-accounta/" -#: skins/default/templates/user_profile/user_info.html:33 +#: skins/default/templates/user_profile/user_info.html:36 msgid "update profile" msgstr "обновить профиль" -#: skins/default/templates/user_profile/user_info.html:37 +#: skins/default/templates/user_profile/user_info.html:40 msgid "manage login methods" -msgstr "методы входа" +msgstr "управление методами входа" -#: skins/default/templates/user_profile/user_info.html:50 +#: skins/default/templates/user_profile/user_info.html:53 msgid "real name" msgstr "настоящее имя" -#: skins/default/templates/user_profile/user_info.html:55 +#: skins/default/templates/user_profile/user_info.html:58 msgid "member for" msgstr "состоит пользователем" -#: skins/default/templates/user_profile/user_info.html:60 +#: skins/default/templates/user_profile/user_info.html:63 msgid "last seen" msgstr "последнее посещение" -#: skins/default/templates/user_profile/user_info.html:66 +#: skins/default/templates/user_profile/user_info.html:69 msgid "user website" msgstr "сайт пользователя" -#: skins/default/templates/user_profile/user_info.html:72 +#: skins/default/templates/user_profile/user_info.html:75 msgid "location" msgstr "местоположение" -#: skins/default/templates/user_profile/user_info.html:79 +#: skins/default/templates/user_profile/user_info.html:82 msgid "age" msgstr "возраст" -#: skins/default/templates/user_profile/user_info.html:80 +#: skins/default/templates/user_profile/user_info.html:83 msgid "age unit" msgstr "возраст" -#: skins/default/templates/user_profile/user_info.html:87 +#: skins/default/templates/user_profile/user_info.html:90 msgid "todays unused votes" msgstr "сегодняшних неиспользованных голосов" -#: skins/default/templates/user_profile/user_info.html:88 +#: skins/default/templates/user_profile/user_info.html:91 msgid "votes left" msgstr "осталось голосов" #: skins/default/templates/user_profile/user_moderate.html:4 -#: skins/default/templates/user_profile/user_tabs.html:42 +#: skins/default/templates/user_profile/user_tabs.html:48 msgid "moderation" -msgstr "edit" +msgstr "модерация" #: skins/default/templates/user_profile/user_moderate.html:8 #, python-format @@ -4942,50 +5987,118 @@ msgstr "пользователь %(username)s имеет статус \"%(status msgid "User status changed" msgstr "Статус пользователя изменился" -#: skins/default/templates/user_profile/user_moderate.html:18 +#: skins/default/templates/user_profile/user_moderate.html:20 msgid "Save" msgstr "Сохранить" -#: skins/default/templates/user_profile/user_moderate.html:24 +#: skins/default/templates/user_profile/user_moderate.html:26 #, python-format msgid "Your current reputation is %(reputation)s points" -msgstr "Ваша текущая карма %(reputation)s баллов" +msgstr "Ваша текущая карма %(reputation)s балов" -#: skins/default/templates/user_profile/user_moderate.html:26 +#: skins/default/templates/user_profile/user_moderate.html:28 #, python-format msgid "User's current reputation is %(reputation)s points" -msgstr "Карма пользователя %(reputation)s баллов " +msgstr "Карма пользователя %(reputation)s балов " -#: skins/default/templates/user_profile/user_moderate.html:30 +#: skins/default/templates/user_profile/user_moderate.html:32 msgid "User reputation changed" msgstr "Карма пользователя изменена" -#: skins/default/templates/user_profile/user_moderate.html:37 +#: skins/default/templates/user_profile/user_moderate.html:39 msgid "Subtract" msgstr "Отнять" -#: skins/default/templates/user_profile/user_moderate.html:42 +#: skins/default/templates/user_profile/user_moderate.html:44 #, python-format msgid "Send message to %(username)s" msgstr "Отправить сообщение для %(username)s" -#: skins/default/templates/user_profile/user_moderate.html:43 -msgid "An email will be sent to the user with 'reply-to' field set to your email address. Please make sure that your address is entered correctly." -msgstr "Письмо будет отправлено пользователю со ссылкой \"Ответить\" на ваш адрес электронной почты. Пожалуйста, убедитесь, что ваш адрес введен правильно." - #: skins/default/templates/user_profile/user_moderate.html:45 +msgid "" +"An email will be sent to the user with 'reply-to' field set to your email " +"address. Please make sure that your address is entered correctly." +msgstr "" +"Письмо будет отправлено пользователю со ссылкой \"Ответить\" на ваш адрес " +"электронной почты. Пожалуйста, убедитесь, что ваш адрес введен правильно." + +#: skins/default/templates/user_profile/user_moderate.html:47 msgid "Message sent" msgstr "Сообщение отправлено" -#: skins/default/templates/user_profile/user_moderate.html:63 +#: skins/default/templates/user_profile/user_moderate.html:65 msgid "Send message" msgstr "Отправить сообщение" +#: skins/default/templates/user_profile/user_moderate.html:75 +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 "" + +#: skins/default/templates/user_profile/user_moderate.html:78 +msgid "" +"Moderators have the same privileges as administrators, but cannot add or " +"remove user status of 'moderator' or 'administrator'." +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:81 +msgid "'Approved' status means the same as regular user." +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:84 +#, fuzzy +msgid "Suspended users can only edit or delete their own posts." +msgstr "приостановленные пользователи не могут помечать сообщения" + +#: skins/default/templates/user_profile/user_moderate.html:87 +msgid "" +"Blocked users can only login and send feedback to the site administrators." +msgstr "" + +#: skins/default/templates/user_profile/user_network.html:5 +#: skins/default/templates/user_profile/user_tabs.html:18 +msgid "network" +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[1] "" +msgstr[2] "" + +#: 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[1] "" +msgstr[2] "" + +#: skins/default/templates/user_profile/user_network.html:19 +msgid "" +"Your network is empty. Would you like to follow someone? - Just visit their " +"profiles and click \"follow\"" +msgstr "" + +#: skins/default/templates/user_profile/user_network.html:21 +#, fuzzy, python-format +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:25 +#: 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:28 +msgid "source" +msgstr "" + #: skins/default/templates/user_profile/user_reputation.html:4 #, fuzzy msgid "karma" @@ -5006,7 +6119,7 @@ msgid "overview" msgstr "обзор" #: skins/default/templates/user_profile/user_stats.html:11 -#, python-format +#, fuzzy, python-format msgid "%(counter)s Question" msgid_plural "%(counter)s Questions" msgstr[0] "1 Вопрос" @@ -5014,7 +6127,7 @@ msgstr[1] "%(counter)s Вопросов" msgstr[2] "%(counter)s Вопроса" #: skins/default/templates/user_profile/user_stats.html:16 -#, python-format +#, fuzzy, python-format msgid "%(counter)s Answer" msgid_plural "%(counter)s Answers" msgstr[0] "1 Ответ" @@ -5028,18 +6141,18 @@ msgstr "за ответ проголосовали %(answer_score)s раз" #: skins/default/templates/user_profile/user_stats.html:24 msgid "this answer has been selected as correct" -msgstr "этот ответ был выбран в качестве лучшего" +msgstr "этот ответ был выбран в качестве правильного" #: skins/default/templates/user_profile/user_stats.html:34 #, python-format msgid "(%(comment_count)s comment)" msgid_plural "the answer has been commented %(comment_count)s times" -msgstr[0] "(один комментарий)" +msgstr[0] "%(comment_count)s(один комментарий)" msgstr[1] "ответ был прокомментирован %(comment_count)s раз" msgstr[2] "ответ был прокомментирован %(comment_count)s раза" #: skins/default/templates/user_profile/user_stats.html:44 -#, python-format +#, fuzzy, python-format msgid "%(cnt)s Vote" msgid_plural "%(cnt)s Votes " msgstr[0] "1 Голос" @@ -5063,7 +6176,7 @@ msgid "user voted down this many times" msgstr "пользователь проголосовал \"против\" много раз" #: skins/default/templates/user_profile/user_stats.html:63 -#, python-format +#, fuzzy, python-format msgid "%(counter)s Tag" msgid_plural "%(counter)s Tags" msgstr[0] "1 Тег" @@ -5078,82 +6191,77 @@ msgstr[0] "%(counter)s Медаль" msgstr[1] "%(counter)s Медали" msgstr[2] "%(counter)s Медалей" +#: skins/default/templates/user_profile/user_stats.html:122 +#, fuzzy +msgid "Answer to:" +msgstr "Советы как лучше давать ответы" + #: skins/default/templates/user_profile/user_tabs.html:5 msgid "User profile" msgstr "Профиль пользователя" -#: skins/default/templates/user_profile/user_tabs.html:10 -#: views/users.py:731 +#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:772 msgid "comments and answers to others questions" msgstr "комментарии и ответы на другие вопросы" -#: skins/default/templates/user_profile/user_tabs.html:15 +#: skins/default/templates/user_profile/user_tabs.html:16 +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:17 +#: skins/default/templates/user_profile/user_tabs.html:23 msgid "reputation history" -msgstr "репутация" +msgstr "карма" -#: skins/default/templates/user_profile/user_tabs.html:19 -msgid "questions that user selected as his/her favorite" +#: 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:23 +#: skins/default/templates/user_profile/user_tabs.html:29 msgid "recent activity" msgstr "последняя активность" -#: skins/default/templates/user_profile/user_tabs.html:28 -#: views/users.py:795 +#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:847 msgid "user vote record" msgstr "голос пользователя" -#: skins/default/templates/user_profile/user_tabs.html:30 +#: skins/default/templates/user_profile/user_tabs.html:36 msgid "casted votes" msgstr "голоса" -#: skins/default/templates/user_profile/user_tabs.html:34 -#: views/users.py:901 +#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:960 msgid "email subscription settings" msgstr "настройки подписки по электронной почте" -#: skins/default/templates/user_profile/user_tabs.html:40 -#: views/users.py:214 +#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:224 msgid "moderate this user" -msgstr "Редактировать этого пользователя" +msgstr "Модерировать этого пользователя" #: skins/default/templates/user_profile/user_votes.html:4 msgid "votes" msgstr "голосов" -#: skins/default/templates/user_profile/users_questions.html:9 -#: skins/default/templates/user_profile/users_questions.html:17 -#, python-format -msgid "this questions was selected as favorite %(cnt)s time" -msgid_plural "this questions was selected as favorite %(cnt)s times" -msgstr[0] "этот вопрос был добавлен в закладки %(cnt)s раз" -msgstr[1] "эти вопросы были добавлены в закладки %(cnt)s раз" -msgstr[2] "эти вопросы были добавлены в закладки %(cnt)s раз" - -#: skins/default/templates/user_profile/users_questions.html:10 -msgid "thumb-up on" -msgstr "я \"за\"" - -#: skins/default/templates/user_profile/users_questions.html:18 -msgid "thumb-up off" -msgstr "я \"против\"" - -#: templatetags/extra_filters.py:145 -#: templatetags/extra_filters_jinja.py:227 +#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:240 msgid "no items in counter" msgstr "нет" -#: utils/decorators.py:82 -#: views/commands.py:112 -#: views/commands.py:132 +#: utils/decorators.py:90 views/commands.py:112 views/commands.py:132 msgid "Oops, apologies - there was some error" msgstr "Извините, произошла ошибка!" +#: utils/decorators.py:109 +#, fuzzy +msgid "Please login to post" +msgstr "пожалуйста, выполнить вход" + +#: utils/decorators.py:205 +msgid "Spam was detected on your post, sorry for if this is a mistake" +msgstr "" + #: utils/forms.py:32 msgid "this field is required" msgstr "это поле обязательное" @@ -5180,11 +6288,14 @@ msgstr "к сожалению, пользователя с таким имене #: utils/forms.py:56 msgid "sorry, we have a serious error - user name is taken by several users" -msgstr "к сожалению, у нас есть серьезная ошибка - имя пользователя используется несколькими пользователями" +msgstr "" +"к сожалению, у нас есть серьезная ошибка - имя пользователя используется " +"несколькими пользователями" #: utils/forms.py:57 msgid "user name can only consist of letters, empty space and underscore" -msgstr "имя пользователя может состоять только из букв, пробелов и подчеркиваний" +msgstr "" +"имя пользователя может состоять только из букв, пробелов и подчеркиваний" #: utils/forms.py:118 msgid "your email address" @@ -5222,20 +6333,15 @@ msgstr "пожалуйста, повторите свой пароль" msgid "sorry, entered passwords did not match, please try again" msgstr "к сожалению, пароли не совпадают, попробуйте еще раз" -#: utils/functions.py:63 -#, python-format -msgid "on %(date)s" -msgstr "%(date)s" - -#: utils/functions.py:67 +#: utils/functions.py:74 msgid "2 days ago" msgstr "2 дня назад" -#: utils/functions.py:69 +#: utils/functions.py:76 msgid "yesterday" msgstr "вчера" -#: utils/functions.py:71 +#: utils/functions.py:79 #, python-format msgid "%(hr)d hour ago" msgid_plural "%(hr)d hours ago" @@ -5243,7 +6349,7 @@ msgstr[0] "%(hr)d час назад" msgstr[1] "%(hr)d часов назад" msgstr[2] "%(hr)d часа назад" -#: utils/functions.py:73 +#: utils/functions.py:85 #, python-format msgid "%(min)d min ago" msgid_plural "%(min)d mins ago" @@ -5251,21 +6357,21 @@ msgstr[0] "%(min)d минуту назад" msgstr[1] "%(min)d минут назад" msgstr[2] "%(min)d минуты назад" -#: views/avatar_views.py:96 +#: views/avatar_views.py:99 msgid "Successfully uploaded a new avatar." -msgstr "Аватар успешно загружен" +msgstr "" -#: views/avatar_views.py:137 +#: views/avatar_views.py:140 msgid "Successfully updated your avatar." -msgstr "Аватар успешно обновлен" +msgstr "" -#: views/avatar_views.py:177 +#: views/avatar_views.py:180 msgid "Successfully deleted the requested avatars." -msgstr "Выбранные аватары удалены" +msgstr "" #: views/commands.py:39 msgid "anonymous users cannot vote" -msgstr "анонимные пользователи не могут голосовать " +msgstr "неавторизированные пользователи не могут голосовать " #: views/commands.py:59 msgid "Sorry you ran out of votes for today" @@ -5278,7 +6384,7 @@ msgstr "Вы можете голосовать сегодня ещё %(votes_lef #: views/commands.py:122 msgid "Sorry, but anonymous users cannot access the inbox" -msgstr "Анонимные пользователи не имеют доступа к папке \"входящие\"" +msgstr "неавторизированные пользователи не имеют доступа к папке \"входящие\"" #: views/commands.py:192 msgid "Sorry, something is not right here..." @@ -5286,40 +6392,46 @@ msgstr "Извините, что-то не здесь..." #: views/commands.py:207 msgid "Sorry, but anonymous users cannot accept answers" -msgstr "Анонимные пользователи не могут отмечать ответы как правильные" +msgstr "" +"неавторизированные пользователи не могут отмечать ответы как правильные" #: views/commands.py:288 #, python-format msgid "subscription saved, %(email)s needs validation, see %(details_url)s" msgstr "подписка сохранена, %(email)s требует проверки, см. %(details_url)s" -#: views/commands.py:296 +#: views/commands.py:295 msgid "email update frequency has been set to daily" msgstr "частота обновлений по email была установлена в ежедневную" -#: views/commands.py:401 +#: views/commands.py:400 #, python-format msgid "Tag subscription was canceled (undo)." -msgstr "Подписка на тег отменена (изменить)." +msgstr "" -#: views/commands.py:410 +#: views/commands.py:409 #, fuzzy, python-format msgid "Please sign in to subscribe for: %(tags)s" msgstr "Пожалуйста, войдите здесь:" -#: views/meta.py:65 +#: views/commands.py:542 +#, fuzzy +msgid "Please sign in to vote" +msgstr "Пожалуйста, войдите здесь:" + +#: views/meta.py:83 msgid "Q&A forum feedback" msgstr "Обратная связь" -#: views/meta.py:66 +#: views/meta.py:84 msgid "Thanks for the feedback!" msgstr "Спасибо за отзыв!" -#: views/meta.py:74 +#: views/meta.py:92 msgid "We look forward to hearing your feedback! Please, give it next time :)" msgstr "Мы с нетерпением ждем ваших отзывов!" -#: views/readers.py:166 +#: views/readers.py:177 #, python-format msgid "%(badge_count)d %(badge_level)s badge" msgid_plural "%(badge_count)d %(badge_level)s badges" @@ -5327,13 +6439,15 @@ 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:390 -msgid "Sorry, the comment you are looking for has been deleted and is no longer accessible" +#: views/readers.py:441 +msgid "" +"Sorry, the comment you are looking for has been deleted and is no longer " +"accessible" msgstr "Извините, но запрашиваемый комментарий был удалён" -#: views/users.py:215 +#: views/users.py:225 msgid "moderate user" -msgstr "редактировать пользователя" +msgstr "модерировать пользователя" #: views/users.py:380 msgid "user profile" @@ -5343,87 +6457,242 @@ msgstr "профиль пользователя" msgid "user profile overview" msgstr "обзор профиля пользователя" -#: views/users.py:664 +#: views/users.py:685 msgid "recent user activity" msgstr "последние данные по активности пользователя" -#: views/users.py:665 +#: views/users.py:686 msgid "profile - recent activity" msgstr "профиль - последние данные по активности" -#: views/users.py:732 +#: views/users.py:773 msgid "profile - responses" msgstr "профиль - ответы" -#: views/users.py:796 +#: views/users.py:848 msgid "profile - votes" msgstr "профиль - голоса" -#: views/users.py:831 +#: views/users.py:883 msgid "user reputation in the community" msgstr "карма пользователя в сообществе" -#: views/users.py:832 +#: views/users.py:884 msgid "profile - user reputation" msgstr "профиль - карма пользователя" -#: views/users.py:859 +#: views/users.py:911 msgid "users favorite questions" msgstr "избранные вопросы пользователей" -#: views/users.py:860 +#: views/users.py:912 msgid "profile - favorite questions" msgstr "профиль - избранные вопросы" -#: views/users.py:880 -#: views/users.py:884 +#: views/users.py:932 views/users.py:936 msgid "changes saved" msgstr "изменения сохранены" -#: views/users.py:890 +#: views/users.py:942 msgid "email updates canceled" msgstr "обновления по email отменены" -#: views/users.py:902 +#: views/users.py:961 msgid "profile - email subscriptions" -msgstr "профиль - email подписки" +msgstr "профиль - подписки" -#: views/writers.py:57 +#: views/writers.py:58 msgid "Sorry, anonymous users cannot upload files" -msgstr "не авторизованные пользователи не могут загружать файлы" +msgstr "неавторизированные пользователи не могут загружать файлы" -#: views/writers.py:67 +#: views/writers.py:68 #, python-format msgid "allowed file types are '%(file_types)s'" msgstr "допустимые типы файлов: '%(file_types)s'" -#: views/writers.py:90 +#: views/writers.py:91 #, python-format msgid "maximum upload file size is %(file_size)sK" msgstr "максимальный размер загружаемого файла - %(file_size)s K" -#: views/writers.py:98 +#: views/writers.py:99 msgid "Error uploading file. Please contact the site administrator. Thank you." -msgstr "Ошибка при загрузке файла. Пожалуйста, свяжитесь с администрацией сайта." +msgstr "" +"Ошибка при загрузке файла. Пожалуйста, свяжитесь с администрацией сайта." + +#: views/writers.py:191 +#, fuzzy +msgid "Please log in to ask questions" +msgstr "Вы всегда можете задать свой вопрос!" + +#: views/writers.py:492 +#, fuzzy +msgid "Please log in to answer questions" +msgstr "просмотреть неотвеченные ворпосы" -#: views/writers.py:563 +#: views/writers.py:598 #, python-format -msgid "Sorry, you appear to be logged out and cannot post comments. Please sign in." -msgstr "Извините, вы не вошли, поэтому не можете оставлять комментарии. Войдите." +msgid "" +"Sorry, you appear to be logged out and cannot post comments. Please sign in." +msgstr "" +"Извините, вы не вошли, поэтому не можете оставлять комментарии. Войдите." -#: views/writers.py:608 +#: views/writers.py:646 msgid "Sorry, anonymous users cannot edit comments" -msgstr "не авторизованные пользователи не могут исправлять комментарии" +msgstr "неавторизированные пользователи не могут исправлять комментарии" -#: views/writers.py:616 +#: views/writers.py:654 #, python-format -msgid "Sorry, you appear to be logged out and cannot delete comments. Please sign in." -msgstr "Извините, вы не вошли, поэтому не можете удалять комментарии. Войдите." +msgid "" +"Sorry, you appear to be logged out and cannot delete comments. Please sign in." +msgstr "" +"Извините, вы не вошли, поэтому не можете удалять комментарии. Войдите." -#: views/writers.py:637 +#: views/writers.py:675 msgid "sorry, we seem to have some technical difficulties" msgstr "Извините, у нас определённые технические проблемы." +#~ msgid "" +#~ "If you change this url from the default - then you will also probably " +#~ "want to adjust translation of the following string: " +#~ msgstr "" +#~ "Если Вы измените эту ссылку, то вероятно Вам придется поправить перевод " +#~ "следующей строки:" + +#~ msgid "First time here? Check out the FAQ!" +#~ msgstr "" +#~ "Впервые здесь? Посмотрите наши часто задаваемые вопросы" +#~ "(FAQ)!" + +#~ msgid "Login name" +#~ msgstr "Имя пользователя" + +#~ msgid "Enter new password" +#~ msgstr "Введите новый пароль" + +#~ msgid "... or enter by clicking one of the buttons below" +#~ msgstr "... или войдите, нажав одну из кнопок ниже" + +#, fuzzy +#~ msgid "return to login page" +#~ msgstr "вернуться к странице входа" + +#, fuzzy +#~ msgid "" +#~ "must have valid %(email)s to post, \n" +#~ "\t\t\t\t\t\t\tsee %(email_validation_faq_url)s\n" +#~ "\t\t\t\t\t\t\t" +#~ msgstr "" +#~ "Похоже на то что адрес Вашей электронной " +#~ "почты, %(email)s еще не был проверен. Чтобы публиковать сообщения " +#~ "на форуме сначала пожалуйста продемонстрируйте что Ваша электронная почта " +#~ "работает, дополнительная информация об етом здесь.
        Ваш вопрос будет " +#~ "опубликован сразу после того как ваш адрес будет проверен, а до тех пор " +#~ "вопос будет сохранён в базе данных." + +#, fuzzy +#~ msgid "click here to see old astsup forum" +#~ msgstr "нажмите, чтобы посмотреть непопулярные вопросы" + +#~ msgid "keep ignored questions hidden" +#~ msgstr "скрыть игнорируемые вопросы" + +#~ msgid "mark-tag/" +#~ msgstr "pomechayem-temy/" + +#~ msgid "interesting/" +#~ msgstr "interesnaya/" + +#~ msgid "ignored/" +#~ msgstr "neinteresnaya/" + +#~ msgid "unmark-tag/" +#~ msgstr "otmenyaem-pometku-temy/" + +#~ msgid "" +#~ "Increment this number when you change image in skin media or stylesheet. " +#~ "This helps avoid showing your users outdated images from their browser " +#~ "cache." +#~ msgstr "" +#~ "Увеличьте это число когда изменяете медиа-файлы или css. Это позволяет " +#~ "избежать ошибки отображения кешированных старых данных у пользователей." + +#~ msgid "newquestion/" +#~ msgstr "noviy-vopros/" + +#~ msgid "newanswer/" +#~ msgstr "noviy-otvet/" + +#~ msgid "Unknown error." +#~ msgstr "Неизвестная ошибка." + +#~ msgid "ReCAPTCHA is wrongly configured." +#~ msgstr "Recaptcha неправильно настроен." + +#~ msgid "Bad reCAPTCHA challenge parameter." +#~ msgstr "Неправильный ввод параметра reCAPTCHA. " + +#~ msgid "The CAPTCHA solution was incorrect." +#~ msgstr "Решение CAPTCHA было неправильным." + +#~ msgid "Bad reCAPTCHA verification parameters." +#~ msgstr "Неверные параметры верификации reCAPTCHA. " + +#~ msgid "Provided reCAPTCHA API keys are not valid for this domain." +#~ msgstr "Предоставленные Recaptcha API ключи не подходят для этого домена." + +#~ msgid "ReCAPTCHA could not be reached." +#~ msgstr "ReCAPTCHA недоступен. " + +#~ msgid "Invalid request" +#~ msgstr "Неправильный запрос" + +#~ msgid "Sender is" +#~ msgstr "Отправитель" + +#~ msgid "anonymous" +#~ msgstr "анонимный" + +#~ msgid "Message body:" +#~ msgstr "Текст сообщения:" + +#~ msgid "mark this question as favorite (click again to cancel)" +#~ msgstr "добавить в закладки (чтобы отменить - отметьте еще раз)" + +#~ msgid "" +#~ "remove favorite mark from this question (click again to restore mark)" +#~ msgstr "удалить из закладок (еще раз - чтобы восстановить)" + +#~ msgid "Share this question on facebook" +#~ msgstr "Поделиться вопросом на Facebook" + +#~ msgid "" +#~ "All tags matching '%(stag)s'" +#~ msgstr "" +#~ "Все теги, соответствующие '%(stag)s' " + +#~ msgid "favorites" +#~ msgstr "закладки" + +#~ msgid "this questions was selected as favorite %(cnt)s time" +#~ msgid_plural "this questions was selected as favorite %(cnt)s times" +#~ msgstr[0] "этот вопрос был добавлен в закладки %(cnt)s раз" +#~ msgstr[1] "эти вопросы были добавлены в закладки %(cnt)s раз" +#~ msgstr[2] "эти вопросы были добавлены в закладки %(cnt)s раз" + +#~ msgid "thumb-up on" +#~ msgstr "я \"за\"" + +#~ msgid "thumb-up off" +#~ msgstr "я \"против\"" + #~ msgid "community wiki" #~ msgstr "вики сообщества" @@ -5436,11 +6705,6 @@ msgstr "Извините, у нас определённые техническ #~ msgid "search/" #~ msgstr "poisk/" -#~ msgid "Check if you want to show the footer on each forum page" -#~ msgstr "" -#~ "Отметьте, если вы хотите, чтобы подвал отображался на каждой странице " -#~ "форума" - #~ msgid "allow only selected tags" #~ msgstr "включить только выбранные тэги" @@ -5468,14 +6732,6 @@ msgstr "Извините, у нас определённые техническ #~ msgid "About" #~ 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 "how to validate email title" #~ msgstr "как проверить заголовок электронного сообщения" @@ -5483,8 +6739,8 @@ msgstr "Извините, у нас определённые техническ #~ "how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)" #~ "s" #~ msgstr "" -#~ "как проверить электронную почту с помощью %(send_email_key_url)s %" -#~ "(gravatar_faq_url)s" +#~ "как проверить электронную почту с помощью %(send_email_key_url)s " +#~ "%(gravatar_faq_url)s" #~ msgid "." #~ msgstr "." @@ -5506,7 +6762,6 @@ msgstr "Извините, у нас определённые техническ #~ "\n" #~ " %(q_num)s question\n" #~ " " - #~ msgid_plural "" #~ "\n" #~ " %(q_num)s questions\n" @@ -5530,9 +6785,6 @@ msgstr "Извините, у нас определённые техническ #~ msgid "remove '%(tag_name)s' from the list of ignored tags" #~ msgstr "удалить '%(tag_name)s' из списка игнорируемых тегов" -#~ msgid "keep ignored questions hidden" -#~ msgstr "скрыть игнорируемые вопросы" - #~ msgid "" #~ "see other questions with %(view_user)s's contributions tagged '%(tag_name)" #~ "s' " @@ -5558,7 +6810,6 @@ msgstr "Извините, у нас определённые техническ #~ "\n" #~ " vote\n" #~ " " - #~ msgid_plural "" #~ "\n" #~ " votes\n" @@ -5581,7 +6832,6 @@ msgstr "Извините, у нас определённые техническ #~ "\n" #~ " answer \n" #~ " " - #~ msgid_plural "" #~ "\n" #~ " answers \n" @@ -5601,7 +6851,6 @@ msgstr "Извините, у нас определённые техническ #~ "\n" #~ " view\n" #~ " " - #~ msgid_plural "" #~ "\n" #~ " views\n" @@ -5621,7 +6870,6 @@ msgstr "Извините, у нас определённые техническ #~ "\n" #~ " vote\n" #~ " " - #~ msgid_plural "" #~ "\n" #~ " votes\n" @@ -5641,7 +6889,6 @@ msgstr "Извините, у нас определённые техническ #~ "\n" #~ " answer \n" #~ " " - #~ msgid_plural "" #~ "\n" #~ " answers \n" @@ -5661,7 +6908,6 @@ msgstr "Извините, у нас определённые техническ #~ "\n" #~ " view\n" #~ " " - #~ msgid_plural "" #~ "\n" #~ " views\n" @@ -5743,9 +6989,6 @@ msgstr "Извините, у нас определённые техническ #~ msgid "scholar" #~ msgstr "ученик" -#~ msgid "First accepted answer on your own question" -#~ msgstr "Первый принятый ответ на собственный вопрос" - #~ msgid "student" #~ msgstr "студент" @@ -5994,9 +7237,6 @@ msgstr "Извините, у нас определённые техническ #~ msgid "OpenID %s is now associated with your account." #~ msgstr "Ваш аккаунт теперь соединен с OpenID %s" -#~ msgid "Account deleted." -#~ msgstr "Аккаунт удален." - #~ msgid "Request for new password" #~ msgstr "[форум]: замена пароля" @@ -6126,9 +7366,6 @@ msgstr "Извините, у нас определённые техническ #~ msgid "open any closed question" #~ msgstr "открыть любой закрытый вопрос" -#~ msgid "please login" -#~ msgstr "пожалуйста, выполнить вход" - #~ msgid "books" #~ msgstr "книги" @@ -6174,17 +7411,7 @@ msgstr "Извините, у нас определённые техническ #~ msgid "Unanswered questions" #~ msgstr "Неотвеченные вопросы" -#~ msgid "All questions" -#~ msgstr "Все вопросы" - -#~ msgid "click to see hottest questions" -#~ msgstr "нажмите, чтобы посмотреть популярные вопросы" - -#~ msgid "click to see coldest questions" -#~ msgstr "нажмите, чтобы посмотреть непопулярные вопросы" - #~ msgid " One question found" - #~ msgid_plural "%(q_num)s questions found" #~ msgstr[0] "Найден один вопрос " #~ msgstr[1] "Найдено %(q_num)s вопроса" @@ -6260,14 +7487,11 @@ msgstr "Извините, у нас определённые техническ #~ msgstr "Традиционная информация для входа" #~ msgid "" -#~ "how to login with password through external login website or use %" -#~ "(feedback_url)s" +#~ "how to login with password through external login website or use " +#~ "%(feedback_url)s" #~ msgstr "" -#~ "как войти с паролем через внешнюю учетную запись или использовать %" -#~ "(feedback_url)s" - -#~ msgid "Send new password" -#~ msgstr "Получить новый пароль" +#~ "как войти с паролем через внешнюю учетную запись или использовать " +#~ "%(feedback_url)s" #~ msgid "password recovery information" #~ msgstr "информация для восстановления пароля" @@ -6275,9 +7499,6 @@ msgstr "Извините, у нас определённые техническ #~ msgid "Reset password" #~ msgstr "Сброс пароля" -#~ msgid "return to login" -#~ msgstr "вернуться к странице входа" - #~ msgid "" #~ "Someone has requested to reset your password on %(site_url)s.\n" #~ "If it were not you, it is safe to ignore this email." @@ -6316,7 +7537,6 @@ msgstr "Извините, у нас определённые техническ #~ msgstr "Подключение к %(APP_SHORT_NAME)s с Facebook!" #~ msgid "one revision" - #~ msgid_plural "%(rev_count)s revisions" #~ msgstr[0] "одна версия" #~ msgstr[1] "%(rev_count)s версии правки" diff --git a/askbot/locale/ru/LC_MESSAGES/djangojs.mo b/askbot/locale/ru/LC_MESSAGES/djangojs.mo index c2aa55bb..a4408153 100644 Binary files a/askbot/locale/ru/LC_MESSAGES/djangojs.mo and b/askbot/locale/ru/LC_MESSAGES/djangojs.mo differ diff --git a/askbot/locale/ru/LC_MESSAGES/djangojs.po b/askbot/locale/ru/LC_MESSAGES/djangojs.po index a45910df..a92490fb 100644 --- a/askbot/locale/ru/LC_MESSAGES/djangojs.po +++ b/askbot/locale/ru/LC_MESSAGES/djangojs.po @@ -3,24 +3,74 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # -#, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: 0.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-20 17:36-0600\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2011-10-08 02:30-0500\n" +"PO-Revision-Date: 2011-09-05 09:02\n" +"Last-Translator: \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" - -#: skins/default/media/js/live_search.js:278 -msgid "%(q_num)s question" -msgid_plural "%(q_num)s questions" -msgstr[0] "%(q_num)s вопрос" -msgstr[1] "%(q_num)s вопроса" -msgstr[2] "%(q_num)s вопросов" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" +"X-Translated-Using: django-rosetta 0.6.2\n" + +#: skins/default/media/js/post.js:532 +msgid "Follow" +msgstr "Добавить закладку" + +#: skins/default/media/js/post.js:541 skins/default/media/js/post.js.py:550 +#, perl-format +msgid "%s follower" +msgid_plural "%s followers" +msgstr[0] "%s закладка" +msgstr[1] "%s закладки" +msgstr[2] "%s закладок" + +#: skins/default/media/js/post.js:546 +msgid "
        Following
        Unfollow
        " +msgstr "
        Есть закладка!
        Убрать закладку
        " + +#: skins/default/media/js/post.js:1613 +msgid "Please enter question title (>10 characters)" +msgstr "Пожалуйста, добавьте заглавие к вопросу (>10 букв)" + +#: skins/default/media/js/tag_selector.js:15 +msgid "Tag \"\" matches:" +msgstr "Тег \"\" подходит для:" + +#: skins/default/media/js/tag_selector.js:84 +#, perl-format +msgid "and %s more, not shown..." +msgstr "и ещё %s, не показано..." + +#: skins/default/media/js/user.js:129 +msgid "Please signin to follow %(username)s" +msgstr "" +"Пожалуйста авторизуйтесь чтобы отметить " +"профиль %(username)s" + +#: skins/default/media/js/user.js:161 +#, perl-format +msgid "unfollow %s" +msgstr "" + +#: skins/default/media/js/user.js:164 +#, perl-format +msgid "following %s" +msgstr "" + +#: skins/default/media/js/user.js:170 +#, perl-format +msgid "follow %s" +msgstr "" + +#~ msgid "%(q_num)s question" +#~ msgid_plural "%(q_num)s questions" +#~ msgstr[0] "%(q_num)s вопрос" +#~ msgstr[1] "%(q_num)s вопроса" +#~ msgstr[2] "%(q_num)s вопросов" diff --git a/askbot/locale/sr/LC_MESSAGES/django.mo b/askbot/locale/sr/LC_MESSAGES/django.mo index 06b2bef4..00cab4f5 100644 Binary files a/askbot/locale/sr/LC_MESSAGES/django.mo and b/askbot/locale/sr/LC_MESSAGES/django.mo differ diff --git a/askbot/locale/sr/LC_MESSAGES/django.po b/askbot/locale/sr/LC_MESSAGES/django.po index dea1fc01..5c27042d 100644 --- a/askbot/locale/sr/LC_MESSAGES/django.po +++ b/askbot/locale/sr/LC_MESSAGES/django.po @@ -5,94 +5,119 @@ # msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: 0.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-11-29 16:38-0600\n" +"POT-Creation-Date: 2011-10-08 02:30-0500\n" "PO-Revision-Date: 2010-05-07 02:52\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Translated-Using: django-rosetta 0.5.3\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" -#: exceptions.py:9 +#: exceptions.py:13 msgid "Sorry, but anonymous visitors cannot access this function" msgstr "" -#: feed.py:22 +#: feed.py:26 feed.py:100 msgid " - " msgstr "" -#: feed.py:22 +#: feed.py:26 +#, fuzzy +msgid "Individual question feed" +msgstr "Појединачно одабрани" + +#: feed.py:100 msgid "latest questions" msgstr "најновија питања" -#: forms.py:54 skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:40 -#: skins/default/templates/question_edit_tips.html:45 +#: forms.py:74 +#, fuzzy +msgid "select country" +msgstr "Избриши налог" + +#: forms.py:83 +msgid "Country" +msgstr "" + +#: forms.py:91 +#, fuzzy +msgid "Country field is required" +msgstr "ово поље је обавезно" + +#: forms.py:104 skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:38 +#: skins/default/templates/blocks/question_edit_tips.html:43 msgid "title" msgstr "наслов" -#: forms.py:55 +#: forms.py:105 msgid "please enter a descriptive title for your question" msgstr "молимо Вас, унестите јасан наслов за Ваше питање" -#: forms.py:60 +#: forms.py:110 msgid "title must be > 10 characters" msgstr "наслов мора имати > 10 карактера" -#: forms.py:69 +#: forms.py:119 msgid "content" msgstr "садржај" -#: forms.py:75 +#: forms.py:125 msgid "question content must be > 10 characters" msgstr "садржај питања мора имати > 10 карактера" -#: forms.py:84 skins/default/templates/header.html:83 +#: forms.py:134 skins/default/templates/macros.html:660 +#: skins/default/templates/macros.html:672 +#: skins/default/templates/blocks/header.html:25 msgid "tags" msgstr "ознаке" -#: forms.py:86 +#: forms.py:136 msgid "" "Tags are short keywords, with no spaces within. Up to five tags can be used." msgstr "Ознаке су кратке речи, без размака. Можете унети до 5 ознака." -#: forms.py:93 skins/default/templates/question_retag.html:78 +#: forms.py:164 skins/default/templates/question_retag.html:58 msgid "tags are required" msgstr "ознаке су обавезне" -#: forms.py:102 -#, python-format +#: forms.py:173 +#, fuzzy, 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 ознака или мање" -msgstr[2] "" +msgstr[2] "користите %(tag_count)d ознака или мање" -#: forms.py:111 +#: forms.py:181 #, python-format +msgid "At least one of the following tags is required : %(tags)s" +msgstr "" + +#: forms.py:190 +#, 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] "свака ознака мора имати мање од %(max_chars)d карактера" msgstr[1] "свака ознака мора имати мање од %(max_chars)d карактера" -msgstr[2] "" +msgstr[2] "свака ознака мора имати мање од %(max_chars)d карактера" -#: forms.py:119 +#: forms.py:198 msgid "use-these-chars-in-tags" msgstr "користите-ове-каратере-у-ознакама" -#: forms.py:130 -#: skins/default/templates/unused/question_summary_list_roll.html:26 -#: skins/default/templates/unused/question_summary_list_roll.html:38 -msgid "community wiki" -msgstr "вики" +#: forms.py:233 +msgid "community wiki (karma is not awarded & many others can edit wiki post)" +msgstr "" -#: forms.py:131 +#: forms.py:234 msgid "" "if you choose community wiki option, the question and answer do not generate " "points and name of author will not be shown" @@ -100,11 +125,11 @@ msgstr "" "уколико одаберете вики опцију, питање и одговор не доносе поене; име аутора " "се не приказује" -#: forms.py:147 +#: forms.py:250 msgid "update summary:" msgstr "ажурирање резимеа:" -#: forms.py:148 +#: forms.py:251 msgid "" "enter a brief summary of your revision (e.g. fixed spelling, grammar, " "improved style, this field is optional)" @@ -112,284 +137,435 @@ msgstr "" "унесите кратко објашњење Ваше измене (нпр. правопис, граматика, побољшање " "стила, ово поље није обавезно)" -#: forms.py:161 +#: forms.py:327 msgid "Enter number of points to add or subtract" msgstr "" -#: forms.py:175 const/__init__.py:219 +#: forms.py:341 const/__init__.py:245 msgid "approved" msgstr "" -#: forms.py:176 const/__init__.py:220 +#: forms.py:342 const/__init__.py:246 msgid "watched" msgstr "" -#: forms.py:177 const/__init__.py:221 +#: forms.py:343 const/__init__.py:247 msgid "suspended" msgstr "" -#: forms.py:178 const/__init__.py:222 +#: forms.py:344 const/__init__.py:248 msgid "blocked" msgstr "" -#: forms.py:180 const/__init__.py:218 +#: forms.py:346 +#, fuzzy +msgid "administrator" +msgstr "" +"Sincerely,\n" +"Q&A Forum Administrator" + +#: forms.py:347 const/__init__.py:244 #, fuzzy msgid "moderator" msgstr "moderate-user/" -#: forms.py:200 +#: forms.py:367 #, fuzzy msgid "Change status to" msgstr "Промените ознаке" -#: forms.py:227 +#: forms.py:394 msgid "which one?" msgstr "" -#: forms.py:248 +#: forms.py:415 msgid "Cannot change own status" msgstr "" -#: forms.py:254 +#: forms.py:421 msgid "Cannot turn other user to moderator" msgstr "" -#: forms.py:261 +#: forms.py:428 msgid "Cannot change status of another moderator" msgstr "" -#: forms.py:267 +#: forms.py:434 +#, fuzzy +msgid "Cannot change status to admin" +msgstr "Промените ознаке" + +#: forms.py:440 #, python-format -msgid "If you wish to change %(username)s's status, " +msgid "" +"If you wish to change %(username)s's status, please make a meaningful " +"selection." msgstr "" -#: forms.py:276 +#: forms.py:449 msgid "Subject line" msgstr "" -#: forms.py:283 +#: forms.py:456 msgid "Message text" msgstr "" -#: forms.py:360 +#: forms.py:542 msgid "Your name:" msgstr "Ваше име:" -#: forms.py:361 +#: forms.py:543 msgid "Email (not shared with anyone):" msgstr "Е-пошта:" -#: forms.py:362 +#: forms.py:544 msgid "Your message:" msgstr "Ваша порука:" -#: forms.py:449 -msgid "this email does not have to be linked to gravatar" +#: forms.py:581 +msgid "ask anonymously" +msgstr "" + +#: forms.py:583 +msgid "Check if you do not want to reveal your name when asking this question" +msgstr "" + +#: forms.py:743 +msgid "" +"You have asked this question anonymously, if you decide to reveal your " +"identity, please check this box." +msgstr "" + +#: forms.py:747 +msgid "reveal identity" +msgstr "" + +#: forms.py:805 +msgid "" +"Sorry, only owner of the anonymous question can reveal his or her identity, " +"please uncheck the box" +msgstr "" + +#: forms.py:818 +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:856 +#, fuzzy +msgid "this email will be linked to gravatar" msgstr "ова е-пошта не мора бити повезана са gravatar-ом" -#: forms.py:456 +#: forms.py:863 msgid "Real name" msgstr "Право име" -#: forms.py:463 +#: forms.py:870 msgid "Website" msgstr "Вебсајт" -#: forms.py:470 -msgid "Location" -msgstr "Локација" +#: forms.py:877 +msgid "City" +msgstr "" -#: forms.py:477 +#: forms.py:886 +msgid "Show country" +msgstr "" + +#: forms.py:891 msgid "Date of birth" msgstr "Датум рођења" -#: forms.py:478 +#: forms.py:892 msgid "will not be shown, used to calculate age, format: YYYY-MM-DD" msgstr "" "неће бити приказано, користи се за израчунавање ваших година, формат: ГГГГ-" "ММ-ДД" -#: forms.py:484 +#: forms.py:898 msgid "Profile" msgstr "Профил" -#: forms.py:493 +#: forms.py:907 msgid "Screen name" msgstr "Корисничко име" -#: forms.py:518 forms.py:519 +#: forms.py:938 forms.py:939 msgid "this email has already been registered, please use another one" msgstr "ова е-пошта је већ регистрована, молимо Вас унесите другу" -#: forms.py:525 +#: forms.py:946 msgid "Choose email tag filter" msgstr "" -#: forms.py:564 +#: forms.py:993 msgid "Asked by me" msgstr "" -#: forms.py:567 +#: forms.py:996 msgid "Answered by me" msgstr "" -#: forms.py:570 +#: forms.py:999 msgid "Individually selected" msgstr "Појединачно одабрани" -#: forms.py:573 +#: forms.py:1002 msgid "Entire forum (tag filtered)" msgstr "Цео форум (ознака филтрирана)" -#: forms.py:577 +#: forms.py:1006 msgid "Comments and posts mentioning me" msgstr "" -#: forms.py:635 +#: forms.py:1085 msgid "okay, let's try!" msgstr "У реду, хајде да покушамо!" -#: forms.py:636 +#: forms.py:1086 msgid "no community email please, thanks" msgstr "молимо Вас без askbot е-поште, хвала" -#: forms.py:640 +#: forms.py:1090 msgid "please choose one of the options above" msgstr "молимо Вас изаберете једну од опција изнад" -#: urls.py:42 +#: urls.py:53 msgid "about/" msgstr "онама/" -#: urls.py:43 conf/site_settings.py:79 +#: urls.py:54 msgid "faq/" msgstr "чпп/" -#: urls.py:44 +#: urls.py:55 msgid "privacy/" msgstr "приватност/" -#: urls.py:45 -msgid "logout/" -msgstr "одјава/" - -#: urls.py:47 urls.py:52 +#: urls.py:57 urls.py:62 msgid "answers/" msgstr "одговори/" -#: urls.py:47 urls.py:68 urls.py:164 +#: urls.py:57 urls.py:83 urls.py:198 msgid "edit/" msgstr "уреди/" -#: urls.py:52 urls.py:98 +#: urls.py:62 urls.py:113 msgid "revisions/" msgstr "ревизије/" -#: urls.py:58 urls.py:63 urls.py:68 urls.py:73 urls.py:78 urls.py:83 -#: urls.py:88 urls.py:93 urls.py:98 +#: urls.py:68 urls.py:78 urls.py:83 urls.py:88 urls.py:93 urls.py:98 +#: urls.py:103 urls.py:108 urls.py:113 urls.py:285 +#: skins/default/templates/question.html:508 msgid "questions/" msgstr "питања/" -#: urls.py:63 +#: urls.py:78 msgid "ask/" msgstr "питај/" -#: urls.py:73 +#: urls.py:88 #, fuzzy msgid "retag/" msgstr "ознаке/" -#: urls.py:78 +#: urls.py:93 msgid "close/" msgstr "затвори/" -#: urls.py:83 +#: urls.py:98 msgid "reopen/" msgstr "отворипоново/" -#: urls.py:88 +#: urls.py:103 msgid "answer/" msgstr "одговор/" -#: urls.py:93 +#: urls.py:108 skins/default/templates/question.html:508 msgid "vote/" msgstr "гласај/" -#: urls.py:114 -msgid "command/" -msgstr "command/" - -#: urls.py:130 -msgid "question/" -msgstr "питање/" - -#: urls.py:135 +#: urls.py:144 msgid "tags/" msgstr "ознаке/" -#: urls.py:140 urls.py:146 -msgid "mark-tag/" -msgstr "означи-ознаку/" - -#: urls.py:140 -msgid "interesting/" -msgstr "занимљиво/" - -#: urls.py:146 -msgid "ignored/" -msgstr "игнорисано/" - -#: urls.py:152 -msgid "unmark-tag/" -msgstr "unmark-tag/" +#: urls.py:187 +msgid "subscribe-for-tags/" +msgstr "" -#: urls.py:158 urls.py:164 urls.py:169 +#: urls.py:192 urls.py:198 urls.py:204 urls.py:212 +#: skins/default/templates/main_page/javascript.html:23 msgid "users/" msgstr "корисници/" -#: urls.py:174 urls.py:179 +#: urls.py:205 +#, fuzzy +msgid "subscriptions/" +msgstr "питања" + +#: urls.py:217 +msgid "users/update_has_custom_avatar/" +msgstr "" + +#: urls.py:222 urls.py:227 msgid "badges/" msgstr "беџеви/" -#: urls.py:184 +#: urls.py:232 msgid "messages/" msgstr "поруке/" -#: urls.py:184 +#: urls.py:232 msgid "markread/" msgstr "означипрочитано/" -#: urls.py:199 +#: urls.py:248 msgid "upload/" msgstr "upload/" -#: urls.py:200 -msgid "search/" -msgstr "претрага/" - -#: urls.py:201 +#: urls.py:249 msgid "feedback/" msgstr "сугестија/" -#: urls.py:202 setup_templates/settings.py:182 -#: skins/default/templates/authopenid/signin.html:249 +#: urls.py:291 skins/default/templates/question.html:506 +#: skins/default/templates/main_page/javascript.html:22 +msgid "question/" +msgstr "питање/" + +#: urls.py:298 setup_templates/settings.py:202 +#: skins/default/templates/authopenid/providers_javascript.html:7 #, fuzzy msgid "account/" msgstr "онама/" -#: conf/email.py:12 +#: conf/badges.py:12 +#, fuzzy +msgid "Badge settings" +msgstr "ресетујте ознаке" + +#: conf/badges.py:21 +msgid "Disciplined: minimum upvotes for deleted post" +msgstr "" + +#: conf/badges.py:30 +msgid "Peer Pressure: minimum downvotes for deleted post" +msgstr "" + +#: conf/badges.py:39 +msgid "Teacher: minimum upvotes for the answer" +msgstr "" + +#: conf/badges.py:48 +msgid "Nice Answer: minimum upvotes for the answer" +msgstr "" + +#: conf/badges.py:57 +msgid "Good Answer: minimum upvotes for the answer" +msgstr "" + +#: conf/badges.py:66 +msgid "Great Answer: minimum upvotes for the answer" +msgstr "" + +#: conf/badges.py:75 +msgid "Nice Question: minimum upvotes for the question" +msgstr "" + +#: conf/badges.py:84 +msgid "Good Question: minimum upvotes for the question" +msgstr "" + +#: conf/badges.py:93 +msgid "Great Question: minimum upvotes for the question" +msgstr "" + +#: conf/badges.py:102 +msgid "Popular Question: minimum views" +msgstr "" + +#: conf/badges.py:111 +msgid "Notable Question: minimum views" +msgstr "" + +#: conf/badges.py:120 +msgid "Famous Question: minimum views" +msgstr "" + +#: conf/badges.py:129 +msgid "Self-Learner: minimum answer upvotes" +msgstr "" + +#: conf/badges.py:138 +msgid "Civic Duty: minimum votes" +msgstr "" + +#: conf/badges.py:147 +msgid "Enlightened Duty: minimum upvotes" +msgstr "" + +#: conf/badges.py:156 +msgid "Guru: minimum upvotes" +msgstr "" + +#: conf/badges.py:165 +msgid "Necromancer: minimum upvotes" +msgstr "" + +#: conf/badges.py:174 +msgid "Necromancer: minimum delay in days" +msgstr "" + +#: conf/badges.py:183 +msgid "Associate Editor: minimum number of edits" +msgstr "" + +#: conf/badges.py:192 +#, fuzzy +msgid "Favorite Question: minimum stars" +msgstr "омиљена питања" + +#: conf/badges.py:201 +msgid "Stellar Question: minimum stars" +msgstr "" + +#: conf/badges.py:210 +msgid "Commentator: minimum comments" +msgstr "" + +#: conf/badges.py:219 +msgid "Taxonomist: minimum tag use count" +msgstr "" + +#: conf/badges.py:228 +msgid "Enthusiast: minimum days" +msgstr "" + +#: conf/email.py:14 msgid "Email and email alert settings" msgstr "" -#: conf/email.py:20 +#: conf/email.py:22 +#, fuzzy +msgid "Prefix for the email subject line" +msgstr "Добродошли на П&О форум" + +#: conf/email.py:24 +msgid "" +"This setting takes default from the django settingEMAIL_SUBJECT_PREFIX. A " +"value entered here will overridethe default." +msgstr "" + +#: conf/email.py:36 msgid "Maximum number of news entries in an email alert" msgstr "" -#: conf/email.py:30 +#: conf/email.py:46 msgid "Default news notification frequency" msgstr "" -#: conf/email.py:32 +#: conf/email.py:48 msgid "" "This option currently defines default frequency of emailed updates in the " "following five categories: questions asked by user, answered by user, " @@ -397,34 +573,82 @@ msgid "" "posts mentioning the user and comment responses" msgstr "" -#: conf/email.py:47 +#: conf/email.py:62 +#, fuzzy +msgid "Send periodic reminders about unanswered questions" +msgstr "погледајте питања без одговора" + +#: conf/email.py:64 +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) and an IMAP server with a dedicated inbox " +"must be configured " +msgstr "" + +#: conf/email.py:78 +msgid "Days before starting to send reminders about unanswered questions" +msgstr "" + +#: conf/email.py:89 +msgid "" +"How often to send unanswered question reminders (in days between the " +"reminders sent)." +msgstr "" + +#: conf/email.py:101 +msgid "Max. number of reminders to send about unanswered questions" +msgstr "" + +#: conf/email.py:113 msgid "Require email verification before allowing to post" msgstr "" -#: conf/email.py:48 +#: conf/email.py:114 msgid "" "Active email verification is done by sending a verification key in email" msgstr "" -#: conf/email.py:57 +#: conf/email.py:123 #, fuzzy msgid "Allow only one account per email address" msgstr "Your email (never shared)" -#: conf/email.py:66 +#: conf/email.py:132 msgid "Fake email for anonymous user" msgstr "" -#: conf/email.py:67 +#: conf/email.py:133 msgid "Use this setting to control gravatar for email-less user" msgstr "" -#: conf/email.py:76 +#: conf/email.py:142 #, fuzzy -msgid "Prefix for the email subject line" -msgstr "Добродошли на П&О форум" +msgid "Allow posting questions by email" +msgstr "" +"You are welcome to start submitting your question " +"anonymously. 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:144 +msgid "" +"Before enabling this setting - please fill out IMAP settings in the settings." +"py file" +msgstr "" + +#: conf/email.py:155 +msgid "Replace space in emailed tags with dash" +msgstr "" + +#: conf/email.py:157 +msgid "" +"This setting applies to tags written in the subject line of questions asked " +"by email" +msgstr "" -#: conf/external_keys.py:11 +#: conf/external_keys.py:10 msgid "Keys to connect the site with external services like Facebook, etc." msgstr "" @@ -435,90 +659,114 @@ msgstr "" #: conf/external_keys.py:20 #, python-format msgid "" -"This key helps google index your site please obtain is at google webmasters tools site" +"This key helps google index your site please obtain is at google webmasters tools site" msgstr "" -#: conf/external_keys.py:34 +#: conf/external_keys.py:35 msgid "Google Analytics key" msgstr "" -#: conf/external_keys.py:36 +#: conf/external_keys.py:37 #, python-format msgid "" -"Obtain is at Google Analytics site, if you wish " -"to use Google Analytics to monitor your site" +"Obtain is at Google Analytics site, if you wish to " +"use Google Analytics to monitor your site" msgstr "" -#: conf/external_keys.py:49 +#: conf/external_keys.py:50 msgid "Enable recaptcha (keys below are required)" msgstr "" -#: conf/external_keys.py:58 +#: conf/external_keys.py:59 msgid "Recaptcha public key" msgstr "" -#: conf/external_keys.py:66 +#: conf/external_keys.py:67 msgid "Recaptcha private key" msgstr "" -#: conf/external_keys.py:68 +#: conf/external_keys.py:69 +#, 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 recaptcha.net" +"robots. Please get this and a public key at the %(url)s" msgstr "" -#: conf/external_keys.py:80 +#: conf/external_keys.py:81 msgid "Facebook public API key" msgstr "" -#: conf/external_keys.py:82 +#: conf/external_keys.py:83 +#, python-format msgid "" "Facebook API key and Facebook secret allow to use Facebook Connect login " -"method at your site. Please obtain these keys at facebook create app site" +"method at your site. Please obtain these keys at facebook create app site" msgstr "" -#: conf/external_keys.py:95 +#: conf/external_keys.py:96 msgid "Facebook secret key" msgstr "" -#: conf/external_keys.py:103 +#: conf/external_keys.py:104 msgid "Twitter consumer key" msgstr "" -#: conf/external_keys.py:105 conf/external_keys.py:126 +#: conf/external_keys.py:106 +#, python-format msgid "" -"Please register your forum at twitter applications site" +"Please register your forum at twitter applications site" msgstr "" -#: conf/external_keys.py:116 +#: conf/external_keys.py:117 msgid "Twitter consumer secret" msgstr "" -#: conf/external_keys.py:124 +#: conf/external_keys.py:125 msgid "LinkedIn consumer key" msgstr "" -#: conf/external_keys.py:137 +#: conf/external_keys.py:127 +#, python-format +msgid "" +"Please register your forum at LinkedIn developer site" +msgstr "" + +#: conf/external_keys.py:138 msgid "LinkedIn consumer secret" msgstr "" -#: conf/external_keys.py:145 -msgid "User LDAP authentication for the password login" +#: conf/external_keys.py:146 +msgid "ident.ca consumer key" msgstr "" -#: conf/external_keys.py:154 +#: conf/external_keys.py:148 +#, python-format +msgid "" +"Please register your forum at Identi.ca applications " +"site" +msgstr "" + +#: conf/external_keys.py:159 +msgid "ident.ca consumer secret" +msgstr "" + +#: conf/external_keys.py:167 +msgid "Use LDAP authentication for the password login" +msgstr "" + +#: conf/external_keys.py:176 msgid "LDAP service provider name" msgstr "" -#: conf/external_keys.py:162 +#: conf/external_keys.py:184 msgid "URL for the LDAP service" msgstr "" -#: conf/external_keys.py:170 +#: conf/external_keys.py:192 #, fuzzy msgid "Explain how to change LDAP password" msgstr "Change your password" @@ -538,170 +786,443 @@ msgid "" msgstr "" #: conf/flatpages.py:30 -msgid "Text of the Q&A forum Privacy Policy (html format)" +msgid "Text of the Q&A forum FAQ page (html format)" msgstr "" #: conf/flatpages.py:33 msgid "" "Save, then use HTML validator on " -"the \"privacy\" page to check your input." +"the \"faq\" page to check your input." msgstr "" -#: conf/forum_data_rules.py:12 -msgid "Settings for askbot data entry and display" +#: conf/flatpages.py:44 +msgid "Text of the Q&A forum Privacy Policy (html format)" msgstr "" -#: conf/forum_data_rules.py:20 -msgid "Check to enable community wiki feature" +#: conf/flatpages.py:47 +msgid "" +"Save, then use HTML validator on " +"the \"privacy\" page to check your input." msgstr "" -#: conf/forum_data_rules.py:29 -msgid "Maximum length of tag (number of characters)" +#: conf/forum_data_rules.py:11 +msgid "Data entry and display" msgstr "" -#: conf/forum_data_rules.py:39 -msgid "Default max number of comments to display under posts" +#: conf/forum_data_rules.py:20 +#, python-format +msgid "" +"Enable embedding videos. Note: please read read this first." msgstr "" -#: conf/forum_data_rules.py:50 -#, python-format -msgid "Maximum comment length, must be < %(max_len)s" +#: conf/forum_data_rules.py:31 +msgid "Check to enable community wiki feature" msgstr "" -#: conf/forum_data_rules.py:60 -msgid "Minimum length of search term for Ajax search" +#: conf/forum_data_rules.py:40 +msgid "Allow asking questions anonymously" msgstr "" -#: conf/forum_data_rules.py:61 -msgid "Must match the corresponding database backend setting" +#: conf/forum_data_rules.py:42 +msgid "" +"Users do not accrue reputation for anonymous questions and their identity is " +"not revealed until they change their mind" msgstr "" -#: conf/forum_data_rules.py:70 -msgid "Maximum number of tags per question" +#: conf/forum_data_rules.py:54 +msgid "Allow posting before logging in" msgstr "" -#: conf/forum_data_rules.py:82 -msgid "Number of questions to list by default" +#: conf/forum_data_rules.py:56 +msgid "" +"Check if you want to allow users start posting questions or answers before " +"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 "" -#: conf/forum_data_rules.py:92 +#: conf/forum_data_rules.py:71 #, fuzzy -msgid "What should \"unanswered question\" mean?" -msgstr "питања без одговора" +msgid "Allow swapping answer with question" +msgstr "Одговорите на питање" -#: conf/markup.py:15 -msgid "Markup formatting" +#: conf/forum_data_rules.py:73 +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 "" -#: conf/markup.py:29 -msgid "Enable code-friendly Markdown" +#: conf/forum_data_rules.py:85 +msgid "Maximum length of tag (number of characters)" msgstr "" -#: conf/markup.py:31 +#: conf/forum_data_rules.py:93 +#, fuzzy +msgid "Mandatory tags" +msgstr "ажуриране ознаке" + +#: conf/forum_data_rules.py:96 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 " -"\"MathJax support\" implicitly turns this feature on, because underscores " -"are heavily used in LaTeX input." +"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/markup.py:46 -msgid "Mathjax support (rendering of LaTeX)" +#: conf/forum_data_rules.py:108 +msgid "Force lowercase the tags" msgstr "" -#: conf/markup.py:48 -#, python-format +#: conf/forum_data_rules.py:110 msgid "" -"If you enable this feature, mathjax must be " -"installed in directory %(dir)s" +"Attention: after checking this, please back up the database, and run a " +"management command: python manage.py fix_question_tags to " +"globally rename the tags" msgstr "" -#: conf/markup.py:63 -msgid "Base url of MathJax deployment" +#: conf/forum_data_rules.py:124 +msgid "Format of tag list" msgstr "" -#: conf/markup.py:65 +#: conf/forum_data_rules.py:126 msgid "" -"Note - MathJax is not included with askbot - 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 "" - -#: conf/minimum_reputation.py:11 -msgid "Minimum reputation required to perform actions" +"Select the format to show tags in, either as a simple list, or as a tag cloud" msgstr "" -#: conf/minimum_reputation.py:20 +#: conf/forum_data_rules.py:138 #, fuzzy -msgid "Upvote" -msgstr "upvoted" +msgid "Use wildcard tags" +msgstr "Ознаке" -#: conf/minimum_reputation.py:29 -#, fuzzy -msgid "Downvote" -msgstr "downvoted" +#: conf/forum_data_rules.py:140 +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/minimum_reputation.py:38 -#, fuzzy -msgid "Flag offensive" -msgstr "означи увредљивим" +#: conf/forum_data_rules.py:153 +msgid "Default max number of comments to display under posts" +msgstr "" -#: conf/minimum_reputation.py:47 -#, fuzzy -msgid "Leave comments" -msgstr "унесите коментар" +#: conf/forum_data_rules.py:164 +#, python-format +msgid "Maximum comment length, must be < %(max_len)s" +msgstr "" -#: conf/minimum_reputation.py:56 -msgid "Delete comments posted by others" +#: conf/forum_data_rules.py:174 +msgid "Limit time to edit comments" msgstr "" +#: conf/forum_data_rules.py:176 +msgid "If unchecked, there will be no time limit to edit the comments" +msgstr "" + +#: conf/forum_data_rules.py:187 +msgid "Minutes allowed to edit a comment" +msgstr "" + +#: conf/forum_data_rules.py:188 +msgid "To enable this setting, check the previous one" +msgstr "" + +#: conf/forum_data_rules.py:197 +msgid "Save comment by pressing key" +msgstr "" + +#: conf/forum_data_rules.py:206 +msgid "Minimum length of search term for Ajax search" +msgstr "" + +#: conf/forum_data_rules.py:207 +msgid "Must match the corresponding database backend setting" +msgstr "" + +#: conf/forum_data_rules.py:216 +msgid "Do not make text query sticky in search" +msgstr "" + +#: conf/forum_data_rules.py:218 +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:231 +msgid "Maximum number of tags per question" +msgstr "" + +#: conf/forum_data_rules.py:243 +msgid "Number of questions to list by default" +msgstr "" + +#: conf/forum_data_rules.py:253 +#, fuzzy +msgid "What should \"unanswered question\" mean?" +msgstr "питања без одговора" + +#: conf/license.py:12 +#, fuzzy +msgid "License settings" +msgstr "ресетујте ознаке" + +#: conf/license.py:19 +msgid "Show license clause in the site footer" +msgstr "" + +#: conf/license.py:28 +msgid "Short name for the license" +msgstr "" + +#: conf/license.py:37 +msgid "Full name of the license" +msgstr "" + +#: conf/license.py:38 +msgid "Creative Commons Attribution Share Alike 3.0" +msgstr "" + +#: conf/license.py:46 +msgid "Add link to the license page" +msgstr "" + +#: conf/license.py:55 +#, fuzzy +msgid "License homepage" +msgstr "назад на почетну страну" + +#: conf/license.py:57 +msgid "URL of the official page with all the license legal clauses" +msgstr "" + +#: conf/license.py:67 +msgid "Use license logo" +msgstr "" + +#: conf/license.py:76 +msgid "License logo image" +msgstr "" + +#: conf/login_providers.py:12 +msgid "Login provider setings" +msgstr "" + +#: conf/login_providers.py:20 +msgid "" +"Show alternative login provider buttons on the password \"Sign Up\" page" +msgstr "" + +#: conf/login_providers.py:29 +msgid "Always display local login form and hide \"Askbot\" button." +msgstr "" + +#: conf/login_providers.py:38 +msgid "Activate to allow login with self-hosted wordpress site" +msgstr "" + +#: conf/login_providers.py:39 +msgid "" +"to activate this feature you must fill out the wordpress xml-rpc setting " +"bellow" +msgstr "" + +#: conf/login_providers.py:48 +msgid "" +"Fill it with the wordpress url to the xml-rpc, normally http://mysite.com/" +"xmlrpc.php" +msgstr "" + +#: conf/login_providers.py:49 +msgid "" +"To enable, go to Settings->Writing->Remote Publishing and check the box for " +"XML-RPC" +msgstr "" + +#: conf/login_providers.py:60 +msgid "Upload your icon" +msgstr "" + +#: conf/login_providers.py:90 +#, python-format +msgid "Activate %(provider)s login" +msgstr "" + +#: conf/login_providers.py:95 +#, python-format +msgid "" +"Note: to really enable %(provider)s login some additional parameters will " +"need to be set in the \"External keys\" section" +msgstr "" + +#: conf/markup.py:14 +msgid "Markup formatting" +msgstr "" + +#: conf/markup.py:39 +msgid "Enable code-friendly Markdown" +msgstr "" + +#: conf/markup.py:41 +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 " +"\"MathJax support\" implicitly turns this feature on, because underscores " +"are heavily used in LaTeX input." +msgstr "" + +#: conf/markup.py:56 +msgid "Mathjax support (rendering of LaTeX)" +msgstr "" + +#: conf/markup.py:58 +#, python-format +msgid "" +"If you enable this feature, mathjax must be " +"installed on your server in its own directory." +msgstr "" + +#: conf/markup.py:72 +msgid "Base url of MathJax deployment" +msgstr "" + +#: conf/markup.py:74 +msgid "" +"Note - MathJax is not included with askbot - 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 "" + +#: conf/markup.py:89 +msgid "Enable autolinking with specific patterns" +msgstr "" + +#: conf/markup.py:91 +msgid "" +"If you enable this feature, the application will be able to detect patterns " +"and auto link to URLs" +msgstr "" + +#: conf/markup.py:104 +msgid "Regexes to detect the link patterns" +msgstr "" + +#: conf/markup.py:106 +msgid "" +"Enter valid regular expressions for the patters, one per line. For example " +"to detect a bug pattern like #bug123, use the following regex: #bug(\\d+). " +"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 "" + +#: conf/markup.py:125 +msgid "URLs for autolinking" +msgstr "" + +#: conf/markup.py:127 +msgid "" +"Here, please enter url templates for the patterns entered in the previous " +"setting, also one entry per line. Make sure that number of lines in " +"this setting and the previous one are the same 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 "" + +#: conf/minimum_reputation.py:11 +msgid "Minimum reputation required to perform actions" +msgstr "" + +#: conf/minimum_reputation.py:20 +#, fuzzy +msgid "Upvote" +msgstr "upvoted" + +#: conf/minimum_reputation.py:29 +#, fuzzy +msgid "Downvote" +msgstr "downvoted" + +#: conf/minimum_reputation.py:38 +#, fuzzy +msgid "Answer own question immediately" +msgstr "Одговорите на ваше питање" + +#: conf/minimum_reputation.py:47 +#, fuzzy +msgid "Accept own answer" +msgstr "измењен одговор" + +#: conf/minimum_reputation.py:56 +#, fuzzy +msgid "Flag offensive" +msgstr "означи увредљивим" + #: conf/minimum_reputation.py:65 #, fuzzy +msgid "Leave comments" +msgstr "унесите коментар" + +#: conf/minimum_reputation.py:74 +msgid "Delete comments posted by others" +msgstr "" + +#: conf/minimum_reputation.py:83 +#, fuzzy msgid "Delete questions and answers posted by others" msgstr "питање је одговорено, прави одговор је прихваћен" -#: conf/minimum_reputation.py:74 +#: conf/minimum_reputation.py:92 #, fuzzy msgid "Upload files" msgstr "upfiles/" -#: conf/minimum_reputation.py:83 +#: conf/minimum_reputation.py:101 #, fuzzy msgid "Close own questions" msgstr "Затвори питање" -#: conf/minimum_reputation.py:92 +#: conf/minimum_reputation.py:110 msgid "Retag questions posted by other people" msgstr "" -#: conf/minimum_reputation.py:101 +#: conf/minimum_reputation.py:119 #, fuzzy msgid "Reopen own questions" msgstr "Поново отворите ово питање" -#: conf/minimum_reputation.py:110 +#: conf/minimum_reputation.py:128 #, fuzzy msgid "Edit community wiki posts" msgstr "вики" -#: conf/minimum_reputation.py:119 +#: conf/minimum_reputation.py:137 msgid "Edit posts authored by other people" msgstr "" -#: conf/minimum_reputation.py:128 +#: conf/minimum_reputation.py:146 #, fuzzy msgid "View offensive flags" msgstr "означено увредљивим" -#: conf/minimum_reputation.py:137 +#: conf/minimum_reputation.py:155 #, fuzzy msgid "Close questions asked by others" msgstr "Затвори питање" -#: conf/minimum_reputation.py:146 +#: conf/minimum_reputation.py:164 msgid "Lock posts" msgstr "" +#: conf/minimum_reputation.py:173 +msgid "Remove rel=nofollow from own homepage" +msgstr "" + +#: conf/minimum_reputation.py:175 +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 "" + #: conf/reputation_changes.py:12 msgid "Reputation loss and gain rules" msgstr "" @@ -763,55 +1284,167 @@ msgstr "" msgid "Loss for post owner when upvote is canceled" msgstr "" -#: conf/site_settings.py:13 +#: conf/sidebar_main.py:11 +msgid "Sidebar widget settings - main page" +msgstr "" + +#: conf/sidebar_main.py:18 conf/sidebar_profile.py:18 +#: conf/sidebar_question.py:18 +msgid "Custom sidebar header" +msgstr "" + +#: conf/sidebar_main.py:21 conf/sidebar_profile.py:21 +#: conf/sidebar_question.py:21 +msgid "" +"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." +msgstr "" + +#: conf/sidebar_main.py:34 +msgid "Show avatar block in sidebar" +msgstr "" + +#: conf/sidebar_main.py:36 +msgid "Uncheck this if you want to hide the avatar block from the sidebar " +msgstr "" + +#: conf/sidebar_main.py:47 +msgid "Limit how many avatars will be displayed on the sidebar" +msgstr "" + +#: conf/sidebar_main.py:57 +msgid "Show tag selector in sidebar" +msgstr "" + +#: conf/sidebar_main.py:59 +msgid "" +"Uncheck this if you want to hide the options for choosing interesting and " +"ignored tags " +msgstr "" + +#: conf/sidebar_main.py:70 +msgid "Show tag list/cloud in sidebar" +msgstr "" + +#: conf/sidebar_main.py:72 +msgid "" +"Uncheck this if you want to hide the tag cloud or tag list from the sidebar " +msgstr "" + +#: conf/sidebar_main.py:83 conf/sidebar_profile.py:34 +#: conf/sidebar_question.py:74 +msgid "Custom sidebar footer" +msgstr "" + +#: conf/sidebar_main.py:86 conf/sidebar_profile.py:37 +#: conf/sidebar_question.py:77 +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 "" + +#: conf/sidebar_profile.py:11 +msgid "Sidebar widget settings - profile page" +msgstr "" + +#: conf/sidebar_question.py:11 +msgid "Sidebar widget settings - question page" +msgstr "" + +#: conf/sidebar_question.py:34 +msgid "Show tag list in sidebar" +msgstr "" + +#: conf/sidebar_question.py:36 +msgid "Uncheck this if you want to hide the tag list from the sidebar " +msgstr "" + +#: conf/sidebar_question.py:47 +msgid "Show meta information in sidebar" +msgstr "" + +#: conf/sidebar_question.py:49 +msgid "" +"Uncheck this if you want to hide the meta information about the question " +"(post date, views, last updated). " +msgstr "" + +#: conf/sidebar_question.py:61 +#, fuzzy +msgid "Show related questions in sidebar" +msgstr "Слична питања" + +#: conf/sidebar_question.py:63 +msgid "Uncheck this if you want to hide the list of related questions. " +msgstr "" + +#: conf/site_modes.py:63 +#, fuzzy +msgid "Site modes" +msgstr "наслов" + +#: conf/site_modes.py:72 +msgid "Activate a \"Bootstrap\" mode" +msgstr "" + +#: conf/site_modes.py:74 +msgid "" +"Bootstrap mode lowers reputation and certain badge thresholds, to values, " +"more suitable for the smaller communities, WARNING: your " +"current value for Minimum reputation, Bagde Settings and Vote Rules will be " +"changed after you modify this setting." +msgstr "" + +#: conf/site_settings.py:11 msgid "Q&A forum website parameters and urls" msgstr "" -#: conf/site_settings.py:21 +#: conf/site_settings.py:19 #, fuzzy msgid "Site title for the Q&A forum" msgstr "Поздрав од П&О форума" -#: conf/site_settings.py:30 +#: conf/site_settings.py:28 msgid "Comma separated list of Q&A site keywords" msgstr "" -#: conf/site_settings.py:40 +#: conf/site_settings.py:37 msgid "Copyright message to show in the footer" msgstr "" -#: conf/site_settings.py:50 +#: conf/site_settings.py:47 msgid "Site description for the search engines" msgstr "" -#: conf/site_settings.py:58 -#, fuzzy -msgid "Askbot" -msgstr "O нама" - -#: conf/site_settings.py:59 +#: conf/site_settings.py:56 msgid "Short name for your Q&A forum" msgstr "" -#: conf/site_settings.py:69 +#: conf/site_settings.py:66 msgid "Base URL for your Q&A forum, must start with http or https" msgstr "" -#: conf/site_settings.py:82 -msgid "Link shown in the greeting message shown to the anonymous user" +#: conf/site_settings.py:77 +msgid "Check to enable greeting for anonymous user" msgstr "" -#: conf/site_settings.py:85 -msgid "" -"If you change this url from the default - then you will also probably want " -"to adjust translation of the following string: " +#: conf/site_settings.py:88 +msgid "Text shown in the greeting message shown to the anonymous user" +msgstr "" + +#: conf/site_settings.py:92 +msgid "Use HTML to format the message " msgstr "" -#: conf/site_settings.py:98 +#: conf/site_settings.py:101 msgid "Feedback site URL" msgstr "" -#: conf/site_settings.py:100 +#: conf/site_settings.py:103 msgid "If left empty, a simple internal feedback form will be used instead" msgstr "" @@ -924,23 +1557,33 @@ msgstr "" msgid "Foreground color for accepted answer" msgstr "" -#: conf/skin_general_settings.py:15 +#: conf/skin_general_settings.py:14 msgid "Skin and User Interface settings" msgstr "" -#: conf/skin_general_settings.py:22 +#: conf/skin_general_settings.py:21 msgid "Q&A site logo" msgstr "" -#: conf/skin_general_settings.py:24 +#: conf/skin_general_settings.py:23 msgid "To change the logo, select new file, then submit this whole form." msgstr "" -#: conf/skin_general_settings.py:38 +#: conf/skin_general_settings.py:37 +msgid "Show logo" +msgstr "" + +#: 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 msgid "Site favicon" msgstr "" -#: conf/skin_general_settings.py:40 +#: conf/skin_general_settings.py:53 #, python-format msgid "" "A small 16x16 or 32x32 pixel icon image used to distinguish your site in the " @@ -948,66 +1591,232 @@ msgid "" "href=\"%(favicon_info_url)s\">this page." msgstr "" -#: conf/skin_general_settings.py:56 +#: conf/skin_general_settings.py:71 msgid "Password login button" msgstr "" -#: conf/skin_general_settings.py:58 +#: conf/skin_general_settings.py:73 msgid "" "An 88x38 pixel image that is used on the login screen for the password login " "button." msgstr "" -#: conf/skin_general_settings.py:73 +#: conf/skin_general_settings.py:88 msgid "Show all UI functions to all users" msgstr "" -#: conf/skin_general_settings.py:75 +#: conf/skin_general_settings.py:90 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:90 +#: conf/skin_general_settings.py:105 #, fuzzy msgid "Select skin" msgstr "изаберите ревизију" -#: conf/skin_general_settings.py:99 -msgid "Skin media revision number" +#: conf/skin_general_settings.py:116 +msgid "Customize HTML " +msgstr "" + +#: conf/skin_general_settings.py:125 +msgid "Custom portion of the HTML " msgstr "" -#: conf/skin_general_settings.py:101 +#: conf/skin_general_settings.py:127 msgid "" -"Increment this number when you change image in skin media or stylesheet. " -"This helps avoid showing your users outdated images from their browser cache." +"To use this option, check \"Customize HTML <HEAD>\" " +"above. Contents of this box will be inserted into the <HEAD> portion " +"of the HTML output, where elements such as <script>, <link>, <" +"meta> may be added. Please, keep in mind that adding external javascript " +"to the <HEAD> 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. Note: if you do use this setting, " +"please test the site with the W3C HTML validator service." msgstr "" -#: conf/social_sharing.py:10 -msgid "Sharing content on social networks" +#: conf/skin_general_settings.py:149 +msgid "Custom header additions" msgstr "" -#: conf/social_sharing.py:18 -msgid "Check to enable sharing of questions on Twitter and Facebook" +#: conf/skin_general_settings.py:151 +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 " +"headerin the HTML format. When customizing the site header (as well as " +"footer and the HTML <HEAD>), use the HTML validation service to make " +"sure that your input is valid and works well in all browsers." msgstr "" -#: conf/user_settings.py:10 -#, fuzzy -msgid "User policy settings" +#: conf/skin_general_settings.py:166 +msgid "Site footer mode" +msgstr "" + +#: conf/skin_general_settings.py:168 +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:185 +msgid "Custom footer (HTML format)" +msgstr "" + +#: conf/skin_general_settings.py:187 +msgid "" +"To enable this function, please select option 'customize' " +"in the \"Site footer mode\" above. Use this area to enter contents of the " +"footer in the HTML format. When customizing the site footer (as well as the " +"header and HTML <HEAD>), use the HTML validation service to make sure " +"that your input is valid and works well in all browsers." +msgstr "" + +#: conf/skin_general_settings.py:202 +msgid "Apply custom style sheet (CSS)" +msgstr "" + +#: conf/skin_general_settings.py:204 +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:216 +msgid "Custom style sheet (CSS)" +msgstr "" + +#: conf/skin_general_settings.py:218 +msgid "" +"To use this function, 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 \"<forum url>/custom.css\", where the \"<forum url> part " +"depends (default is empty string) on the url configuration in your urls.py." +msgstr "" + +#: conf/skin_general_settings.py:234 +msgid "Add custom javascript" +msgstr "" + +#: conf/skin_general_settings.py:237 +msgid "Check to enable javascript that you can enter in the next field" +msgstr "" + +#: conf/skin_general_settings.py:247 +msgid "Custom javascript" +msgstr "" + +#: conf/skin_general_settings.py:249 +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 \"<forum url>/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 (to " +"enable your custom code, check \"Add custom javascript\" option " +"above)." +msgstr "" + +#: conf/skin_general_settings.py:267 +msgid "Skin media revision number" +msgstr "" + +#: conf/skin_general_settings.py:269 +msgid "Will be set automatically but you can modify it if necessary." +msgstr "" + +#: conf/skin_general_settings.py:280 +msgid "Hash to update the media revision number automatically." +msgstr "" + +#: conf/skin_general_settings.py:284 +msgid "Will be set automatically, it is not necesary to modify manually." +msgstr "" + +#: conf/social_sharing.py:10 +msgid "Sharing content on social networks" +msgstr "" + +#: conf/social_sharing.py:18 +#, fuzzy +msgid "Check to enable sharing of questions on Twitter" +msgstr "Поново отворите ово питање" + +#: conf/social_sharing.py:27 +msgid "Check to enable sharing of questions on Facebook" +msgstr "" + +#: conf/social_sharing.py:36 +msgid "Check to enable sharing of questions on LinkedIn" +msgstr "" + +#: conf/social_sharing.py:45 +msgid "Check to enable sharing of questions on Identi.ca" +msgstr "" + +#: conf/social_sharing.py:54 +msgid "Check to enable sharing of questions on Google+" +msgstr "" + +#: conf/spam_and_moderation.py:9 +msgid "Spam control and content moderation" +msgstr "" + +#: conf/spam_and_moderation.py:16 +msgid "Enable Akismet spam detection(keys below are required)" +msgstr "" + +#: conf/spam_and_moderation.py:19 +#, python-format +msgid "To get an Akismet key please visit Akismet site" +msgstr "" + +#: conf/spam_and_moderation.py:29 +msgid "Akismet key for spam detection" +msgstr "" + +#: conf/user_settings.py:11 +#, fuzzy +msgid "User settings" msgstr "" "Forum software relies on the internet cookie technology to keep track of " "user sessions. Cookies must be enabled in your browser so that forum can " "work for you." -#: conf/user_settings.py:18 +#: conf/user_settings.py:19 msgid "Allow editing user screen name" msgstr "" #: conf/user_settings.py:28 +#, fuzzy +msgid "Allow account recovery by email" +msgstr "Your email (never shared)" + +#: conf/user_settings.py:37 +msgid "Allow adding and removing login methods" +msgstr "" + +#: conf/user_settings.py:47 msgid "Minimum allowed length for screen name" msgstr "" +#: conf/user_settings.py:57 +msgid "Default Gravatar icon type" +msgstr "" + +#: conf/user_settings.py:59 +msgid "" +"This option allows you to set the default avatar type for email addresses " +"without associated gravatar images. For more information, please visit this page." +msgstr "" + +#: conf/user_settings.py:69 +msgid "Name for the Anonymous user" +msgstr "" + #: conf/vote_rules.py:13 msgid "Limits applicable to votes and moderation flags" msgstr "" @@ -1029,296 +1838,437 @@ msgid "Number of days to allow canceling votes" msgstr "" #: conf/vote_rules.py:58 -msgid "Number of flags required to automatically hide posts" +msgid "Number of days required before answering own question" msgstr "" #: conf/vote_rules.py:67 +msgid "Number of flags required to automatically hide posts" +msgstr "" + +#: conf/vote_rules.py:76 msgid "Number of flags required to automatically delete posts" msgstr "" -#: const/__init__.py:9 +#: const/__init__.py:10 msgid "duplicate question" msgstr "дупликат питање" -#: const/__init__.py:10 +#: const/__init__.py:11 msgid "question is off-topic or not relevant" msgstr "питање се одаљило од теме или није релевантно" -#: const/__init__.py:11 +#: const/__init__.py:12 msgid "too subjective and argumentative" msgstr "превише субјективно и полемичко" -#: const/__init__.py:12 +#: const/__init__.py:13 msgid "not a real question" msgstr "у суштини није питање" -#: const/__init__.py:13 +#: const/__init__.py:14 msgid "the question is answered, right answer was accepted" msgstr "питање је одговорено, прави одговор је прихваћен" -#: const/__init__.py:14 +#: const/__init__.py:15 msgid "question is not relevant or outdated" msgstr "питање није релевантно или је застарело" -#: const/__init__.py:15 +#: const/__init__.py:16 msgid "question contains offensive or malicious remarks" msgstr "питање садржи увредљиве или злонамерне примедбе" -#: const/__init__.py:16 +#: const/__init__.py:17 msgid "spam or advertising" msgstr "спам или реклама" -#: const/__init__.py:17 +#: const/__init__.py:18 msgid "too localized" msgstr "превише локализовано" -#: const/__init__.py:40 +#: const/__init__.py:41 msgid "newest" msgstr "најновија" -#: const/__init__.py:41 skins/default/templates/users.html:25 -#: skins/default/templates/users.html:26 +#: const/__init__.py:42 skins/default/templates/users.html:26 msgid "oldest" msgstr "стари" -#: const/__init__.py:42 +#: const/__init__.py:43 msgid "active" msgstr "активна" -#: const/__init__.py:43 +#: const/__init__.py:44 msgid "inactive" msgstr "не активнa" -#: const/__init__.py:44 +#: const/__init__.py:45 msgid "hottest" msgstr "hottest" -#: const/__init__.py:45 +#: const/__init__.py:46 msgid "coldest" msgstr "coldest" -#: const/__init__.py:46 +#: const/__init__.py:47 msgid "most voted" msgstr "са највише гласова" -#: const/__init__.py:47 +#: const/__init__.py:48 msgid "least voted" msgstr "са најмање гласова" -#: const/__init__.py:48 +#: const/__init__.py:49 msgid "relevance" msgstr "релевантности" -#: const/__init__.py:55 skins/default/templates/questions.html:14 -#: skins/default/templates/user_inbox.html:47 +#: const/__init__.py:57 skins/default/templates/main_page/tab_bar.html:10 +#: skins/default/templates/user_profile/user_inbox.html:50 msgid "all" msgstr "свa" -#: const/__init__.py:56 skins/default/templates/questions.html:19 +#: const/__init__.py:58 skins/default/templates/main_page/tab_bar.html:15 msgid "unanswered" msgstr "неодговорена" -#: const/__init__.py:57 skins/default/templates/questions.html:25 +#: const/__init__.py:59 msgid "favorite" msgstr "омиљена" -#: const/__init__.py:70 +#: const/__init__.py:64 +#, fuzzy +msgid "list" +msgstr "Списак ознака" + +#: const/__init__.py:65 +msgid "cloud" +msgstr "" + +#: const/__init__.py:78 #, fuzzy msgid "Question has no answers" msgstr "Питања на која сте одговорили" -#: const/__init__.py:71 +#: const/__init__.py:79 #, fuzzy msgid "Question has no accepted answers" msgstr "Питања на која сте одговорили" -#: const/__init__.py:111 +#: const/__init__.py:121 #, fuzzy msgid "asked a question" msgstr "поставите питање" -#: const/__init__.py:112 +#: const/__init__.py:122 #, fuzzy msgid "answered a question" msgstr "неодговорена" -#: const/__init__.py:113 +#: const/__init__.py:123 msgid "commented question" msgstr "коментарисано питање" -#: const/__init__.py:114 +#: const/__init__.py:124 msgid "commented answer" msgstr "коментарисан одговор" -#: const/__init__.py:115 +#: const/__init__.py:125 msgid "edited question" msgstr "измењено питање" -#: const/__init__.py:116 +#: const/__init__.py:126 msgid "edited answer" msgstr "измењен одговор" -#: const/__init__.py:117 +#: const/__init__.py:127 msgid "received award" msgstr "примљен беџ" -#: const/__init__.py:118 +#: const/__init__.py:128 msgid "marked best answer" msgstr "означен најбољи одговор" -#: const/__init__.py:119 +#: const/__init__.py:129 #, fuzzy msgid "upvoted" msgstr "upvoted" -#: const/__init__.py:120 +#: const/__init__.py:130 #, fuzzy msgid "downvoted" msgstr "downvoted" -#: const/__init__.py:121 +#: const/__init__.py:131 msgid "canceled vote" msgstr "гласање је отказано" -#: const/__init__.py:122 +#: const/__init__.py:132 msgid "deleted question" msgstr "обрисано питање" -#: const/__init__.py:123 +#: const/__init__.py:133 msgid "deleted answer" msgstr "обрисан одговор" -#: const/__init__.py:124 +#: const/__init__.py:134 msgid "marked offensive" msgstr "означено увредљивим" -#: const/__init__.py:125 +#: const/__init__.py:135 msgid "updated tags" msgstr "ажуриране ознаке" -#: const/__init__.py:126 +#: const/__init__.py:136 msgid "selected favorite" msgstr "" -#: const/__init__.py:127 +#: const/__init__.py:137 msgid "completed user profile" msgstr "" -#: const/__init__.py:128 +#: const/__init__.py:138 msgid "email update sent to user" msgstr "ажурирање је послато на корисникову е-пошту" -#: const/__init__.py:129 +#: const/__init__.py:141 +#, fuzzy +msgid "reminder about unanswered questions sent" +msgstr "погледајте питања без одговора" + +#: const/__init__.py:143 msgid "mentioned in the post" msgstr "" -#: const/__init__.py:180 +#: const/__init__.py:194 msgid "question_answered" msgstr "одговорено питање" -#: const/__init__.py:181 +#: const/__init__.py:195 msgid "question_commented" msgstr "коментарисано питање" -#: const/__init__.py:182 +#: const/__init__.py:196 #, fuzzy msgid "answer_commented" msgstr "одговор коментарисао" -#: const/__init__.py:183 +#: const/__init__.py:197 msgid "answer_accepted" msgstr "прихваћен одговор" -#: const/__init__.py:187 +#: const/__init__.py:201 msgid "[closed]" msgstr "[затворено]" -#: const/__init__.py:188 +#: const/__init__.py:202 msgid "[deleted]" msgstr "[обрисано]" -#: const/__init__.py:189 views/readers.py:549 +#: const/__init__.py:203 views/readers.py:614 msgid "initial version" msgstr "почетна верзија" -#: const/__init__.py:190 +#: const/__init__.py:204 #, fuzzy msgid "retagged" msgstr "ретаговано" -#: const/__init__.py:195 -msgid "exclude ignored tags" +#: const/__init__.py:212 +msgid "off" +msgstr "" + +#: const/__init__.py:213 +#, fuzzy +msgid "exclude ignored" msgstr "занемари игнорисане ознаке" -#: const/__init__.py:196 -msgid "allow only selected tags" -msgstr "дозволи само изабране тагове" +#: const/__init__.py:214 +#, fuzzy +msgid "only selected" +msgstr "Појединачно одабрани" -#: const/__init__.py:200 +#: const/__init__.py:218 msgid "instantly" msgstr "" -#: const/__init__.py:201 +#: const/__init__.py:219 msgid "daily" msgstr "дневно" -#: const/__init__.py:202 +#: const/__init__.py:220 msgid "weekly" msgstr "недељно" -#: const/__init__.py:203 +#: const/__init__.py:221 msgid "no email" msgstr "" +#: const/__init__.py:228 +msgid "identicon" +msgstr "" + +#: const/__init__.py:229 +#, fuzzy +msgid "mystery-man" +msgstr "јуче" + +#: const/__init__.py:230 +msgid "monsterid" +msgstr "" + +#: const/__init__.py:231 +#, fuzzy +msgid "wavatar" +msgstr "Како да промените своју слику (gravatar) и шта је gravatar?" + +#: const/__init__.py:232 +msgid "retro" +msgstr "" + +#: const/__init__.py:279 skins/default/templates/badges.html:37 +msgid "gold" +msgstr "злато" + +#: const/__init__.py:280 skins/default/templates/badges.html:46 +msgid "silver" +msgstr "сребро" + +#: const/__init__.py:281 skins/default/templates/badges.html:53 +msgid "bronze" +msgstr "бронза" + +#: const/__init__.py:293 +msgid "None" +msgstr "" + +#: const/__init__.py:294 +msgid "Gravatar" +msgstr "" + +#: const/__init__.py:295 +msgid "Uploaded Avatar" +msgstr "" + +#: const/message_keys.py:15 +#, fuzzy +msgid "most relevant questions" +msgstr "ask a question interesting to this community" + +#: const/message_keys.py:16 +#, fuzzy +msgid "click to see most relevant questions" +msgstr "questions with most answers" + +#: const/message_keys.py:17 +#, fuzzy +msgid "by relevance" +msgstr "релевантности" + +#: const/message_keys.py:18 +msgid "click to see the oldest questions" +msgstr "кликните да бисте видели најстарија питања" + #: const/message_keys.py:19 -#, python-format -msgid "First time here? Check out the FAQ!" -msgstr "Први пут сте овде? Погледајте ЧПП!" +#, fuzzy +msgid "by date" +msgstr "Ажурирајте" + +#: const/message_keys.py:20 +msgid "click to see the newest questions" +msgstr "кликните да бисте видели најновији питања" + +#: const/message_keys.py:21 +#, fuzzy +msgid "click to see the least recently updated questions" +msgstr "кликните да бисте видели недавно ажурирана питања" + +#: const/message_keys.py:22 +#, fuzzy +msgid "by activity" +msgstr "активна" -#: deps/django_authopenid/forms.py:116 deps/django_authopenid/views.py:137 +#: const/message_keys.py:23 +msgid "click to see the most recently updated questions" +msgstr "кликните да бисте видели недавно ажурирана питања" + +#: const/message_keys.py:24 +#, fuzzy +msgid "click to see the least answered questions" +msgstr "кликните да бисте видели најстарија питања" + +#: const/message_keys.py:25 +#, fuzzy +msgid "by answers" +msgstr "одговори" + +#: const/message_keys.py:26 +#, fuzzy +msgid "click to see the most answered questions" +msgstr "кликните да бисте видели најновији питања" + +#: const/message_keys.py:27 +msgid "click to see least voted questions" +msgstr "least voted questions" + +#: const/message_keys.py:28 +#, fuzzy +msgid "by votes" +msgstr "гласај/" + +#: const/message_keys.py:29 +#, fuzzy +msgid "click to see most voted questions" +msgstr "least voted questions" + +#: deps/django_authopenid/backends.py:88 +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 msgid "i-names are not supported" msgstr "i-names нису подржанa" -#: deps/django_authopenid/forms.py:237 +#: deps/django_authopenid/forms.py:233 #, fuzzy, python-format msgid "Please enter your %(username_token)s" msgstr "Молимо Вас да унесете корисничко име" -#: deps/django_authopenid/forms.py:263 +#: deps/django_authopenid/forms.py:259 #, fuzzy msgid "Please, enter your user name" msgstr "Молимо Вас да унесете корисничко име" -#: deps/django_authopenid/forms.py:267 +#: deps/django_authopenid/forms.py:263 #, fuzzy msgid "Please, enter your password" msgstr "Молимо Вас да унесете шифру" -#: deps/django_authopenid/forms.py:274 deps/django_authopenid/forms.py:278 +#: deps/django_authopenid/forms.py:270 deps/django_authopenid/forms.py:274 #, fuzzy msgid "Please, enter your new password" msgstr "Молимо Вас да унесете шифру" -#: deps/django_authopenid/forms.py:289 +#: deps/django_authopenid/forms.py:285 msgid "Passwords did not match" msgstr "" -#: deps/django_authopenid/forms.py:301 +#: deps/django_authopenid/forms.py:297 #, python-format msgid "Please choose password > %(len)s characters" msgstr "" -#: deps/django_authopenid/forms.py:336 +#: deps/django_authopenid/forms.py:335 msgid "Current password" msgstr "Тренутна шифра" -#: deps/django_authopenid/forms.py:347 +#: deps/django_authopenid/forms.py:346 msgid "" "Old password is incorrect. Please enter the correct " "password." msgstr "Стара шифра није исправна. Молимо Вас да унесете исправну шифру." -#: deps/django_authopenid/forms.py:400 +#: deps/django_authopenid/forms.py:399 msgid "Sorry, we don't have this email address in the database" msgstr "" @@ -1330,216 +2280,211 @@ msgstr "Ваше корисничко име (обавезно)" msgid "Incorrect username." msgstr "Погрешно корисничко име." -#: deps/django_authopenid/urls.py:10 deps/django_authopenid/urls.py:11 -#: deps/django_authopenid/urls.py:12 deps/django_authopenid/urls.py:15 -#: deps/django_authopenid/urls.py:18 setup_templates/settings.py:182 +#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12 +#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:202 msgid "signin/" msgstr "пријава/" -#: deps/django_authopenid/urls.py:11 -msgid "newquestion/" -msgstr "новопитање/" - -#: deps/django_authopenid/urls.py:12 -msgid "newanswer/" -msgstr "новиодговор/" - -#: deps/django_authopenid/urls.py:13 +#: deps/django_authopenid/urls.py:10 msgid "signout/" msgstr "одјава/" -#: deps/django_authopenid/urls.py:15 +#: deps/django_authopenid/urls.py:12 msgid "complete/" msgstr "complete/" -#: deps/django_authopenid/urls.py:18 +#: deps/django_authopenid/urls.py:15 #, fuzzy msgid "complete-oauth/" msgstr "complete/" -#: deps/django_authopenid/urls.py:22 +#: deps/django_authopenid/urls.py:19 msgid "register/" msgstr "register/" -#: deps/django_authopenid/urls.py:24 +#: deps/django_authopenid/urls.py:21 msgid "signup/" msgstr "signup/" -#: deps/django_authopenid/urls.py:32 +#: deps/django_authopenid/urls.py:25 +msgid "logout/" +msgstr "одјава/" + +#: deps/django_authopenid/urls.py:30 #, fuzzy msgid "recover/" msgstr "отворипоново/" -#: deps/django_authopenid/util.py:196 +#: deps/django_authopenid/util.py:378 #, fuzzy, python-format msgid "%(site)s user name and password" msgstr "Молимо Вас да унесете корисничко име и шифру" -#: deps/django_authopenid/util.py:202 -#: skins/default/templates/authopenid/signin.html:124 +#: deps/django_authopenid/util.py:384 +#: skins/default/templates/authopenid/signin.html:108 msgid "Create a password-protected account" msgstr "" -#: deps/django_authopenid/util.py:203 +#: deps/django_authopenid/util.py:385 #, fuzzy msgid "Change your password" msgstr "Промени шифру" -#: deps/django_authopenid/util.py:265 +#: deps/django_authopenid/util.py:473 msgid "Sign in with Yahoo" msgstr "" -#: deps/django_authopenid/util.py:272 +#: deps/django_authopenid/util.py:480 #, fuzzy msgid "AOL screen name" msgstr "Корисничко име" -#: deps/django_authopenid/util.py:280 +#: deps/django_authopenid/util.py:488 #, fuzzy msgid "OpenID url" msgstr "OpenID URL:" -#: deps/django_authopenid/util.py:297 -#, fuzzy -msgid "MyOpenid user name" -msgstr "по корисничком имену" - -#: deps/django_authopenid/util.py:305 deps/django_authopenid/util.py:313 +#: deps/django_authopenid/util.py:517 #, fuzzy msgid "Flickr user name" msgstr "корисничко име" -#: deps/django_authopenid/util.py:321 +#: deps/django_authopenid/util.py:525 #, fuzzy msgid "Technorati user name" msgstr "Одаберете корисничко име" -#: deps/django_authopenid/util.py:329 +#: deps/django_authopenid/util.py:533 msgid "WordPress blog name" msgstr "" -#: deps/django_authopenid/util.py:337 +#: deps/django_authopenid/util.py:541 msgid "Blogger blog name" msgstr "" -#: deps/django_authopenid/util.py:345 +#: deps/django_authopenid/util.py:549 msgid "LiveJournal blog name" msgstr "" -#: deps/django_authopenid/util.py:353 +#: deps/django_authopenid/util.py:557 #, fuzzy msgid "ClaimID user name" msgstr "корисничко име" -#: deps/django_authopenid/util.py:361 +#: deps/django_authopenid/util.py:565 #, fuzzy msgid "Vidoop user name" msgstr "корисничко име" -#: deps/django_authopenid/util.py:369 +#: deps/django_authopenid/util.py:573 #, fuzzy msgid "Verisign user name" msgstr "корисничко име" -#: deps/django_authopenid/util.py:393 +#: deps/django_authopenid/util.py:608 #, fuzzy, python-format msgid "Change your %(provider)s password" msgstr "Промени шифру" -#: deps/django_authopenid/util.py:397 +#: deps/django_authopenid/util.py:612 #, python-format msgid "Click to see if your %(provider)s signin still works for %(site_name)s" msgstr "" -#: deps/django_authopenid/util.py:406 +#: deps/django_authopenid/util.py:621 #, python-format msgid "Create password for %(provider)s" msgstr "" -#: deps/django_authopenid/util.py:410 +#: deps/django_authopenid/util.py:625 #, fuzzy, python-format msgid "Connect your %(provider)s account to %(site_name)s" msgstr "New user signup" -#: deps/django_authopenid/util.py:419 +#: deps/django_authopenid/util.py:634 #, fuzzy, python-format msgid "Signin with %(provider)s user name and password" msgstr "Молимо Вас да унесете корисничко име и шифру" -#: deps/django_authopenid/util.py:426 +#: deps/django_authopenid/util.py:641 #, python-format msgid "Sign in with your %(provider)s account" msgstr "" -#: deps/django_authopenid/views.py:144 +#: deps/django_authopenid/views.py:158 #, python-format msgid "OpenID %(openid_url)s is invalid" msgstr "OpenID %(openid_url)s није исправан" -#: deps/django_authopenid/views.py:256 deps/django_authopenid/views.py:399 -#: deps/django_authopenid/views.py:427 +#: deps/django_authopenid/views.py:270 deps/django_authopenid/views.py:415 +#: deps/django_authopenid/views.py:443 #, 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:349 +#: deps/django_authopenid/views.py:365 #, fuzzy msgid "Your new password saved" msgstr "Ваша шифра је измењена" -#: deps/django_authopenid/views.py:511 +#: deps/django_authopenid/views.py:469 +msgid "The login password combination was not correct" +msgstr "" + +#: deps/django_authopenid/views.py:573 msgid "Please click any of the icons below to sign in" msgstr "" -#: deps/django_authopenid/views.py:513 +#: deps/django_authopenid/views.py:575 msgid "Account recovery email sent" msgstr "" -#: deps/django_authopenid/views.py:516 +#: deps/django_authopenid/views.py:578 msgid "Please add one or more login methods." msgstr "" -#: deps/django_authopenid/views.py:518 +#: deps/django_authopenid/views.py:580 msgid "If you wish, please add, remove or re-validate your login methods" msgstr "" -#: deps/django_authopenid/views.py:520 +#: deps/django_authopenid/views.py:582 msgid "Please wait a second! Your account is recovered, but ..." msgstr "" -#: deps/django_authopenid/views.py:522 +#: deps/django_authopenid/views.py:584 msgid "Sorry, this account recovery key has expired or is invalid" msgstr "" -#: deps/django_authopenid/views.py:578 +#: deps/django_authopenid/views.py:657 #, python-format msgid "Login method %(provider_name)s does not exist" msgstr "" -#: deps/django_authopenid/views.py:584 +#: deps/django_authopenid/views.py:663 #, fuzzy msgid "Oops, sorry - there was some error - please try again" msgstr "унета шифра не одговара, покушајте поново" -#: deps/django_authopenid/views.py:675 +#: deps/django_authopenid/views.py:754 #, python-format msgid "Your %(provider)s login works fine" msgstr "" -#: deps/django_authopenid/views.py:973 deps/django_authopenid/views.py:979 +#: deps/django_authopenid/views.py:1065 deps/django_authopenid/views.py:1071 #, python-format msgid "your email needs to be validated see %(details_url)s" msgstr "" "Your email needs to be validated. Please see details here." -#: deps/django_authopenid/views.py:1000 -msgid "Email verification subject line" -msgstr "П&О форум / Верификација е-поште" +#: deps/django_authopenid/views.py:1092 +#, python-format +msgid "Recover your %(site)s account" +msgstr "" -#: deps/django_authopenid/views.py:1065 +#: deps/django_authopenid/views.py:1162 msgid "Please check your email and visit the enclosed link." msgstr "" @@ -1548,24 +2493,24 @@ msgstr "" msgid "Site" msgstr "наслов" -#: deps/livesettings/values.py:107 +#: deps/livesettings/values.py:106 msgid "Base Settings" msgstr "" -#: deps/livesettings/values.py:214 +#: deps/livesettings/values.py:213 msgid "Default value: \"\"" msgstr "" -#: deps/livesettings/values.py:221 +#: deps/livesettings/values.py:220 msgid "Default value: " msgstr "" -#: deps/livesettings/values.py:224 +#: deps/livesettings/values.py:223 #, python-format msgid "Default value: %s" msgstr "" -#: deps/livesettings/values.py:589 +#: deps/livesettings/values.py:601 #, fuzzy, python-format msgid "Allowed image file types are %(types)s" msgstr "дозвољени типови датотека су '%(file_types)s'" @@ -1583,7 +2528,7 @@ msgstr "Локација" #: deps/livesettings/templates/livesettings/group_settings.html:11 #: deps/livesettings/templates/livesettings/site_settings.html:23 -#: skins/default/templates/authopenid/signin.html:142 +#: skins/default/templates/authopenid/signin.html:132 msgid "Change password" msgstr "Промени шифру" @@ -1646,53 +2591,51 @@ msgstr "" msgid "Uncollapse all" msgstr "" -#: deps/recaptcha_django/__init__.py:19 deps/recaptcha_django/__init__.py:80 -msgid "Unknown error." -msgstr "" - -#: deps/recaptcha_django/__init__.py:20 deps/recaptcha_django/__init__.py:21 -msgid "ReCAPTCHA is wrongly configured." -msgstr "" - -#: deps/recaptcha_django/__init__.py:22 -msgid "Bad reCAPTCHA challenge parameter." -msgstr "" +#: importers/stackexchange/management/commands/load_stackexchange.py:141 +msgid "Congratulations, you are now an Administrator" +msgstr "Честитамо, сада сте администратор" -#: deps/recaptcha_django/__init__.py:23 -msgid "The CAPTCHA solution was incorrect." +#: 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 "" -#: deps/recaptcha_django/__init__.py:24 -msgid "Bad reCAPTCHA verification parameters." +#: management/commands/post_emailed_questions.py:35 +msgid "" +"

        To ask by email, please:

        \n" +"
          \n" +"
        • Format the subject line as: [Tag1; Tag2] Question title
        • \n" +"
        • Type details of your question into the email body
        • \n" +"
        \n" +"

        Note that tags may consist of more than one word, and tags\n" +"may be separated by a semicolon or a comma

        \n" msgstr "" -#: deps/recaptcha_django/__init__.py:25 -msgid "Provided reCAPTCHA API keys are not valid for this domain." +#: management/commands/post_emailed_questions.py:55 +#, python-format +msgid "" +"

        Sorry, there was an error posting your question please contact the " +"%(site)s administrator

        " msgstr "" -#: deps/recaptcha_django/__init__.py:26 -msgid "ReCAPTCHA could not be reached." +#: management/commands/post_emailed_questions.py:61 +#, python-format +msgid "" +"

        Sorry, in order to post questions on %(site)s by email, please register first

        " msgstr "" -#: deps/recaptcha_django/__init__.py:73 -msgid "Invalid request" +#: management/commands/post_emailed_questions.py:69 +msgid "" +"

        Sorry, your question could not be posted due to insufficient privileges " +"of your user account

        " msgstr "" -#: importers/stackexchange/management/commands/load_stackexchange.py:125 -msgid "Congratulations, you are now an Administrator" -msgstr "Честитамо, сада сте администратор" - -#: management/commands/send_email_alerts.py:105 -#, python-format -msgid "\" and \"%s\"" -msgstr "" - -#: management/commands/send_email_alerts.py:108 -#, fuzzy -msgid "\" and more" -msgstr "Сазнајте више" - -#: management/commands/send_email_alerts.py:113 +#: management/commands/send_email_alerts.py:411 #, python-format msgid "%(question_count)d updated question about %(topics)s" msgid_plural "%(question_count)d updated questions about %(topics)s" @@ -1700,7 +2643,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: management/commands/send_email_alerts.py:467 +#: 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" @@ -1709,42 +2652,42 @@ msgstr[1] "" "

        %(name)s,

        Следећих %(num)d питања је ажурирано на П&О форуму:

        " msgstr[2] "" -#: management/commands/send_email_alerts.py:484 +#: management/commands/send_email_alerts.py:438 msgid "new question" msgstr "ново питање" -#: management/commands/send_email_alerts.py:501 +#: 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:513 +#: 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:519 +#: 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:525 +#: 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:530 +#: management/commands/send_email_alerts.py:490 #, fuzzy, python-format msgid "" -"go to %(email_settings_link)s to change frequency of email updates or %" -"(admin_email)s administrator" +"go to %(email_settings_link)s to change frequency of email updates or " +"%(admin_email)s administrator" msgstr "" "

        Please remember that you can always adjust " "frequency of the email updates or turn them off entirely.
        If you believe " @@ -1752,487 +2695,63 @@ msgstr "" "administrator at %(email)s.

        Sincerely,

        Your friendly Q&A forum " "server.

        " -#: migrations/0005_install_badges.py:11 -msgid "Disciplined" -msgstr "Дисциплинован" - -#: migrations/0005_install_badges.py:11 -msgid "disciplined" -msgstr "дисциплинован" - -#: migrations/0005_install_badges.py:11 -msgid "Deleted own post with score of 3 or higher" -msgstr "Обрисао сопствени пост са резултатом од 3 или више" - -#: migrations/0005_install_badges.py:12 -msgid "Peer Pressure" -msgstr "" - -#: migrations/0005_install_badges.py:12 -msgid "peer-pressure" -msgstr "" - -#: migrations/0005_install_badges.py:12 -msgid "Deleted own post with score of -3 or lower" -msgstr "Обрисао сопствени пост са резултатом од -3 или мање" - -#: migrations/0005_install_badges.py:13 -msgid "Nice answer" -msgstr "Користан одговор" - -#: migrations/0005_install_badges.py:13 -msgid "nice-answer" -msgstr "користан-одговор" - -#: migrations/0005_install_badges.py:13 -msgid "Answer voted up 10 times" -msgstr "" - -#: migrations/0005_install_badges.py:14 -msgid "Nice Question" -msgstr "Добро питање" - -#: migrations/0005_install_badges.py:14 -msgid "nice-question" -msgstr "добро-питање" - -#: migrations/0005_install_badges.py:14 -msgid "Question voted up 10 times" -msgstr "" - -#: migrations/0005_install_badges.py:15 -msgid "Pundit" -msgstr "" - -#: migrations/0005_install_badges.py:15 -msgid "pundit" -msgstr "" - -#: migrations/0005_install_badges.py:15 -#, fuzzy -msgid "Left 10 comments with score of 10 or more" -msgstr "Написао/ла 10 коментара са резултатом од 10 или више" - -#: migrations/0005_install_badges.py:16 -msgid "Popular Question" -msgstr "" - -#: migrations/0005_install_badges.py:16 -msgid "popular-question" -msgstr "" - -#: migrations/0005_install_badges.py:16 -msgid "Asked a question with 1,000 views" -msgstr "" - -#: migrations/0005_install_badges.py:17 -msgid "Citizen patrol" -msgstr "" - -#: migrations/0005_install_badges.py:17 -msgid "citizen-patrol" -msgstr "" - -#: migrations/0005_install_badges.py:17 -msgid "First flagged post" -msgstr "Први означени пост" - -#: migrations/0005_install_badges.py:18 -msgid "Cleanup" -msgstr "Чишћење" - -#: migrations/0005_install_badges.py:18 -msgid "cleanup" -msgstr "чишћење" - -#: migrations/0005_install_badges.py:18 -msgid "First rollback" -msgstr "" - -#: migrations/0005_install_badges.py:19 -msgid "Critic" -msgstr "Критичар" - -#: migrations/0005_install_badges.py:19 -msgid "critic" -msgstr "критичар" - -#: migrations/0005_install_badges.py:19 -msgid "First down vote" -msgstr "" - -#: migrations/0005_install_badges.py:20 -msgid "Editor" -msgstr "Уредник" - -#: migrations/0005_install_badges.py:20 -msgid "editor" -msgstr "уредник" - -#: migrations/0005_install_badges.py:20 -msgid "First edit" -msgstr "" - -#: migrations/0005_install_badges.py:21 -msgid "Organizer" -msgstr "" - -#: migrations/0005_install_badges.py:21 -msgid "organizer" -msgstr "" - -#: migrations/0005_install_badges.py:21 -msgid "First retag" -msgstr "" - -#: migrations/0005_install_badges.py:22 -msgid "Scholar" -msgstr "Ученик" - -#: migrations/0005_install_badges.py:22 -msgid "scholar" -msgstr "ученик" - -#: migrations/0005_install_badges.py:22 -msgid "First accepted answer on your own question" -msgstr "" - -#: migrations/0005_install_badges.py:23 -msgid "Student" -msgstr "Студент" - -#: migrations/0005_install_badges.py:23 -msgid "student" -msgstr "студент" - -#: migrations/0005_install_badges.py:23 -msgid "Asked first question with at least one up vote" -msgstr "" - -#: migrations/0005_install_badges.py:24 -msgid "Supporter" -msgstr "" - -#: migrations/0005_install_badges.py:24 -msgid "supporter" -msgstr "" - -#: migrations/0005_install_badges.py:24 -msgid "First up vote" -msgstr "" - -#: migrations/0005_install_badges.py:25 -msgid "Teacher" -msgstr "Наставник" - -#: migrations/0005_install_badges.py:25 -msgid "teacher" -msgstr "наставник" - -#: migrations/0005_install_badges.py:25 -msgid "Answered first question with at least one up vote" -msgstr "" - -#: migrations/0005_install_badges.py:26 -msgid "Autobiographer" -msgstr "Аутобиограф" - -#: migrations/0005_install_badges.py:26 -msgid "autobiographer" -msgstr "аутобиограф" - -#: migrations/0005_install_badges.py:26 -msgid "Completed all user profile fields" -msgstr "" - -#: migrations/0005_install_badges.py:27 -msgid "Self-Learner" -msgstr "Самоук" - -#: migrations/0005_install_badges.py:27 -msgid "self-learner" -msgstr "самоук" - -#: migrations/0005_install_badges.py:27 -msgid "Answered your own question with at least 3 up votes" -msgstr "" - -#: migrations/0005_install_badges.py:28 -msgid "Great Answer" -msgstr "Савршен Одговор" - -#: migrations/0005_install_badges.py:28 -msgid "great-answer" -msgstr "савршен-одговор" - -#: migrations/0005_install_badges.py:28 -msgid "Answer voted up 100 times" -msgstr "" - -#: migrations/0005_install_badges.py:29 -msgid "Great Question" -msgstr "Добро Питање" - -#: migrations/0005_install_badges.py:29 -msgid "great-question" -msgstr "добро-питање" - -#: migrations/0005_install_badges.py:29 -msgid "Question voted up 100 times" -msgstr "" - -#: migrations/0005_install_badges.py:30 -msgid "Stellar Question" -msgstr "" - -#: migrations/0005_install_badges.py:30 -msgid "stellar-question" -msgstr "" - -#: migrations/0005_install_badges.py:30 -msgid "Question favorited by 100 users" -msgstr "" - -#: migrations/0005_install_badges.py:31 -msgid "Famous question" -msgstr "" - -#: migrations/0005_install_badges.py:31 -msgid "famous-question" -msgstr "" - -#: migrations/0005_install_badges.py:31 -msgid "Asked a question with 10,000 views" -msgstr "" - -#: migrations/0005_install_badges.py:32 -msgid "Alpha" -msgstr "" - -#: migrations/0005_install_badges.py:32 -msgid "alpha" -msgstr "" - -#: migrations/0005_install_badges.py:32 -msgid "Actively participated in the private alpha" -msgstr "" - -#: migrations/0005_install_badges.py:33 -msgid "Good Answer" -msgstr "Добар Одговор" - -#: migrations/0005_install_badges.py:33 -msgid "good-answer" -msgstr "добар-одговор" - -#: migrations/0005_install_badges.py:33 -msgid "Answer voted up 25 times" -msgstr "" - -#: migrations/0005_install_badges.py:34 -msgid "Good Question" -msgstr "" - -#: migrations/0005_install_badges.py:34 -msgid "good-question" -msgstr "" - -#: migrations/0005_install_badges.py:34 -msgid "Question voted up 25 times" -msgstr "" - -#: migrations/0005_install_badges.py:35 -msgid "Favorite Question" -msgstr "" - -#: migrations/0005_install_badges.py:35 -msgid "favorite-question" -msgstr "" - -#: migrations/0005_install_badges.py:35 -msgid "Question favorited by 25 users" -msgstr "" - -#: migrations/0005_install_badges.py:36 -msgid "Civic duty" -msgstr "" - -#: migrations/0005_install_badges.py:36 -msgid "civic-duty" -msgstr "" - -#: migrations/0005_install_badges.py:36 -msgid "Voted 300 times" -msgstr "" - -#: migrations/0005_install_badges.py:37 -msgid "Strunk & White" -msgstr "" - -#: migrations/0005_install_badges.py:37 -msgid "strunk-and-white" -msgstr "" - -#: migrations/0005_install_badges.py:37 -msgid "Edited 100 entries" -msgstr "" - -#: migrations/0005_install_badges.py:38 -msgid "Generalist" -msgstr "" - -#: migrations/0005_install_badges.py:38 -msgid "generalist" -msgstr "" - -#: migrations/0005_install_badges.py:38 -msgid "Active in many different tags" -msgstr "" - -#: migrations/0005_install_badges.py:39 -msgid "Expert" -msgstr "" - -#: migrations/0005_install_badges.py:39 -#, fuzzy -msgid "expert" -msgstr "текст" - -#: migrations/0005_install_badges.py:39 -msgid "Very active in one tag" -msgstr "" - -#: migrations/0005_install_badges.py:40 -msgid "Yearling" -msgstr "" - -#: migrations/0005_install_badges.py:40 -msgid "yearling" -msgstr "" - -#: migrations/0005_install_badges.py:40 -msgid "Active member for a year" -msgstr "" - -#: migrations/0005_install_badges.py:41 -msgid "Notable Question" -msgstr "" - -#: migrations/0005_install_badges.py:41 -msgid "notable-question" -msgstr "" - -#: migrations/0005_install_badges.py:41 -msgid "Asked a question with 2,500 views" -msgstr "" - -#: migrations/0005_install_badges.py:42 -msgid "Enlightened" -msgstr "" - -#: migrations/0005_install_badges.py:42 -msgid "enlightened" -msgstr "" - -#: migrations/0005_install_badges.py:42 -msgid "First answer was accepted with at least 10 up votes" -msgstr "" - -#: migrations/0005_install_badges.py:43 -msgid "Beta" -msgstr "" - -#: migrations/0005_install_badges.py:43 -msgid "beta" -msgstr "" - -#: migrations/0005_install_badges.py:43 -msgid "Actively participated in the private beta" -msgstr "" - -#: migrations/0005_install_badges.py:44 -msgid "Guru" -msgstr "" - -#: migrations/0005_install_badges.py:44 -msgid "guru" -msgstr "" - -#: migrations/0005_install_badges.py:44 -msgid "Accepted answer and voted up 40 times" -msgstr "" - -#: migrations/0005_install_badges.py:45 -msgid "Necromancer" -msgstr "" - -#: migrations/0005_install_badges.py:45 -msgid "necromancer" -msgstr "" - -#: migrations/0005_install_badges.py:45 -msgid "Answered a question more than 60 days later with at least 5 votes" -msgstr "" - -#: migrations/0005_install_badges.py:46 -msgid "Taxonomist" -msgstr "" - -#: migrations/0005_install_badges.py:46 -msgid "taxonomist" -msgstr "" - -#: migrations/0005_install_badges.py:46 -msgid "Created a tag used by 50 questions" -msgstr "" +#: management/commands/send_unanswered_question_reminders.py:80 +#, python-format +msgid "%(question_count)d unanswered question about %(topics)s" +msgid_plural "%(question_count)d unanswered questions about %(topics)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: models/__init__.py:169 +#: models/__init__.py:316 msgid "" "Sorry, you cannot accept or unaccept best answers because your account is " "blocked" msgstr "" -#: models/__init__.py:174 +#: models/__init__.py:320 msgid "" "Sorry, you cannot accept or unaccept best answers because your account is " "suspended" msgstr "" -#: models/__init__.py:180 +#: models/__init__.py:333 +#, python-format msgid "" -"Sorry, you cannot accept or unaccept your own answer to your own question" +">%(points)s points required to accept or unaccept your own answer to your " +"own question" msgstr "" -#: models/__init__.py:187 +#: models/__init__.py:347 #, python-format msgid "" -"Sorry, only original author of the question - %(username)s - can accept the " -"best answer" +"Sorry, only original author of the question - %(username)s - can accept or " +"unaccept the best answer" msgstr "" -#: models/__init__.py:210 +#: models/__init__.py:375 msgid "cannot vote for own posts" msgstr "" -#: models/__init__.py:213 +#: models/__init__.py:378 msgid "Sorry your account appears to be blocked " msgstr "" -#: models/__init__.py:218 +#: models/__init__.py:383 msgid "Sorry your account appears to be suspended " msgstr "" -#: models/__init__.py:228 +#: models/__init__.py:393 #, python-format msgid ">%(points)s points required to upvote" msgstr "" -#: models/__init__.py:234 +#: models/__init__.py:399 #, python-format msgid ">%(points)s points required to downvote" msgstr "" -#: models/__init__.py:249 +#: models/__init__.py:414 #, fuzzy msgid "Sorry, blocked users cannot upload files" msgstr "" @@ -2240,7 +2759,7 @@ msgstr "" "until this issue is resolved. Please contact the forum administrator to " "reach a resolution." -#: models/__init__.py:250 +#: models/__init__.py:415 #, fuzzy msgid "Sorry, suspended users cannot upload files" msgstr "" @@ -2248,13 +2767,13 @@ 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:252 +#: models/__init__.py:417 #, python-format msgid "" "uploading images is limited to users with >%(min_rep)s reputation points" msgstr "нажалост, слање датотека на сервер захтева да имате карму >%(min_rep)s" -#: models/__init__.py:271 models/__init__.py:331 models/__init__.py:1950 +#: models/__init__.py:436 models/__init__.py:503 models/__init__.py:918 #, fuzzy msgid "blocked users cannot post" msgstr "" @@ -2262,7 +2781,7 @@ msgstr "" "until this issue is resolved. Please contact the forum administrator to " "reach a resolution." -#: models/__init__.py:272 models/__init__.py:1953 +#: models/__init__.py:437 models/__init__.py:921 #, fuzzy msgid "suspended users cannot post" msgstr "" @@ -2270,62 +2789,68 @@ 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:297 +#: models/__init__.py:464 +#, python-format msgid "" -"Sorry, comments (except the last one) are editable only within 10 minutes " -"from posting" -msgstr "" +"Sorry, comments (except the last one) are editable only within %(minutes)s " +"minute from posting" +msgid_plural "" +"Sorry, comments (except the last one) are editable only within %(minutes)s " +"minutes from posting" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: models/__init__.py:303 +#: models/__init__.py:476 msgid "Sorry, but only post owners or moderators can edit comments" msgstr "" -#: models/__init__.py:317 +#: models/__init__.py:489 msgid "" "Sorry, since your account is suspended you can comment only your own posts" msgstr "" -#: models/__init__.py:321 +#: models/__init__.py:493 #, 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:349 +#: models/__init__.py:521 msgid "" -"This post has been deleted and can be seen only by post ownwers, site " +"This post has been deleted and can be seen only by post owners, site " "administrators and moderators" msgstr "" -#: models/__init__.py:366 +#: models/__init__.py:538 msgid "" "Sorry, only moderators, site administrators and post owners can edit deleted " "posts" msgstr "" -#: models/__init__.py:381 +#: models/__init__.py:553 msgid "Sorry, since your account is blocked you cannot edit posts" msgstr "" -#: models/__init__.py:385 +#: models/__init__.py:557 msgid "Sorry, since your account is suspended you can edit only your own posts" msgstr "" -#: models/__init__.py:390 +#: models/__init__.py:562 #, python-format msgid "" "Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required" msgstr "" -#: models/__init__.py:397 +#: models/__init__.py:569 #, python-format msgid "" "Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is " "required" msgstr "" -#: models/__init__.py:460 +#: models/__init__.py:632 msgid "" "Sorry, cannot delete your question since it has an upvoted answer posted by " "someone else" @@ -2336,61 +2861,61 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: models/__init__.py:475 +#: models/__init__.py:647 msgid "Sorry, since your account is blocked you cannot delete posts" msgstr "" -#: models/__init__.py:479 +#: models/__init__.py:651 msgid "" "Sorry, since your account is suspended you can delete only your own posts" msgstr "" -#: models/__init__.py:483 +#: models/__init__.py:655 #, python-format msgid "" "Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s " "is required" msgstr "" -#: models/__init__.py:503 +#: models/__init__.py:675 msgid "Sorry, since your account is blocked you cannot close questions" msgstr "" -#: models/__init__.py:507 +#: models/__init__.py:679 msgid "Sorry, since your account is suspended you cannot close questions" msgstr "" -#: models/__init__.py:511 +#: models/__init__.py:683 #, python-format msgid "" "Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is " "required" msgstr "" -#: models/__init__.py:520 +#: models/__init__.py:692 #, python-format msgid "" "Sorry, to close own question a minimum reputation of %(min_rep)s is required" msgstr "" -#: models/__init__.py:544 +#: models/__init__.py:716 #, python-format msgid "" -"Sorry, only administrators, moderators or post owners with reputation > %" -"(min_rep)s can reopen questions." +"Sorry, only administrators, moderators or post owners with reputation > " +"%(min_rep)s can reopen questions." msgstr "" -#: models/__init__.py:550 +#: models/__init__.py:722 #, python-format msgid "" "Sorry, to reopen own question a minimum reputation of %(min_rep)s is required" msgstr "" -#: models/__init__.py:570 +#: models/__init__.py:742 msgid "cannot flag message as offensive twice" msgstr "" -#: models/__init__.py:575 +#: models/__init__.py:747 #, fuzzy msgid "blocked users cannot flag posts" msgstr "" @@ -2398,7 +2923,7 @@ msgstr "" "until this issue is resolved. Please contact the forum administrator to " "reach a resolution." -#: models/__init__.py:577 +#: models/__init__.py:749 #, fuzzy msgid "suspended users cannot flag posts" msgstr "" @@ -2406,94 +2931,142 @@ 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:579 +#: models/__init__.py:751 #, python-format msgid "need > %(min_rep)s points to flag spam" msgstr "" -#: models/__init__.py:598 +#: models/__init__.py:770 #, python-format msgid "%(max_flags_per_day)s exceeded" msgstr "" -#: models/__init__.py:613 +#: models/__init__.py:785 msgid "" "Sorry, only question owners, site administrators and moderators can retag " "deleted questions" msgstr "" -#: models/__init__.py:620 +#: models/__init__.py:792 msgid "Sorry, since your account is blocked you cannot retag questions" msgstr "" -#: models/__init__.py:624 +#: models/__init__.py:796 msgid "" "Sorry, since your account is suspended you can retag only your own questions" msgstr "" -#: models/__init__.py:628 +#: models/__init__.py:800 #, python-format msgid "" "Sorry, to retag questions a minimum reputation of %(min_rep)s is required" msgstr "" -#: models/__init__.py:647 +#: models/__init__.py:819 msgid "Sorry, since your account is blocked you cannot delete comment" msgstr "" -#: models/__init__.py:651 +#: models/__init__.py:823 msgid "" "Sorry, since your account is suspended you can delete only your own comments" msgstr "" -#: models/__init__.py:655 +#: models/__init__.py:827 #, python-format msgid "Sorry, to delete comments reputation of %(min_rep)s is required" msgstr "" -#: models/__init__.py:678 +#: models/__init__.py:850 #, fuzzy msgid "cannot revoke old vote" msgstr "гласање је отказано" -#: models/__init__.py:1166 views/users.py:388 +#: models/__init__.py:1325 utils/functions.py:70 +#, python-format +msgid "on %(date)s" +msgstr "" + +#: models/__init__.py:1327 +msgid "in two days" +msgstr "" + +#: models/__init__.py:1329 +msgid "tomorrow" +msgstr "" + +#: models/__init__.py:1331 +#, fuzzy, python-format +msgid "in %(hr)d hour" +msgid_plural "in %(hr)d hours" +msgstr[0] "пре %(hr)d сат" +msgstr[1] "пре %(hr)d сати" +msgstr[2] "" + +#: models/__init__.py:1333 +#, fuzzy, python-format +msgid "in %(min)d min" +msgid_plural "in %(min)d mins" +msgstr[0] "пре %(min)d минут" +msgstr[1] "пре %(min)d минута" +msgstr[2] "" + +#: models/__init__.py:1334 +#, python-format +msgid "%(days)d day" +msgid_plural "%(days)d days" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: models/__init__.py:1336 +#, 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:1501 skins/default/templates/feedback_email.txt:9 +msgid "Anonymous" +msgstr "" + +#: models/__init__.py:1597 views/users.py:365 #, fuzzy msgid "Site Adminstrator" msgstr "" "Sincerely,\n" "Q&A Forum Administrator" -#: models/__init__.py:1168 views/users.py:390 +#: models/__init__.py:1599 views/users.py:367 msgid "Forum Moderator" msgstr "" -#: models/__init__.py:1170 views/users.py:392 +#: models/__init__.py:1601 views/users.py:369 msgid "Suspended User" msgstr "" -#: models/__init__.py:1172 views/users.py:394 +#: models/__init__.py:1603 views/users.py:371 msgid "Blocked User" msgstr "" -#: models/__init__.py:1174 views/users.py:396 +#: models/__init__.py:1605 views/users.py:373 #, fuzzy msgid "Registered User" msgstr "Регистровани корисник" -#: models/__init__.py:1176 +#: models/__init__.py:1607 msgid "Watched User" msgstr "" -#: models/__init__.py:1178 +#: models/__init__.py:1609 msgid "Approved User" msgstr "" -#: models/__init__.py:1234 +#: models/__init__.py:1718 #, python-format msgid "%(username)s karma is %(reputation)s" msgstr "" -#: models/__init__.py:1244 +#: models/__init__.py:1728 #, python-format msgid "one gold badge" msgid_plural "%(count)d gold badges" @@ -2501,7 +3074,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: models/__init__.py:1251 +#: models/__init__.py:1735 #, fuzzy, python-format msgid "one silver badge" msgid_plural "%(count)d silver badges" @@ -2515,7 +3088,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:1258 +#: models/__init__.py:1742 #, fuzzy, python-format msgid "one bronze badge" msgid_plural "%(count)d bronze badges" @@ -2529,412 +3102,598 @@ msgstr[2] "" "If you are an active participant in this community, you will be recognized " "with this badge." -#: models/__init__.py:1269 +#: models/__init__.py:1753 #, python-format msgid "%(item1)s and %(item2)s" msgstr "" -#: models/__init__.py:1273 +#: models/__init__.py:1757 #, python-format msgid "%(user)s has %(badges)s" msgstr "" -#: models/__init__.py:1566 models/__init__.py:1572 models/__init__.py:1577 -#: models/__init__.py:1582 +#: models/__init__.py:2164 models/__init__.py:2170 models/__init__.py:2175 +#: models/__init__.py:2180 #, python-format msgid "Re: \"%(title)s\"" msgstr "" -#: models/__init__.py:1587 models/__init__.py:1592 +#: models/__init__.py:2185 models/__init__.py:2190 #, fuzzy, python-format msgid "Question: \"%(title)s\"" msgstr "Ознаке" -#: models/__init__.py:1773 +#: models/__init__.py:2371 #, python-format msgid "" "Congratulations, you have received a badge '%(badge_name)s'. Check out your profile." msgstr "" -#: models/question.py:687 -#, python-format -msgid "%(author)s modified the question" +#: models/__init__.py:2550 views/commands.py:396 +msgid "Your tag subscription was saved, thanks!" msgstr "" -#: models/question.py:691 -#, python-format -msgid "%(people)s posted %(new_answer_count)s new answers" +#: models/answer.py:105 +msgid "" +"Sorry, the answer you are looking for is no longer available, because the " +"parent question has been removed" msgstr "" -#: models/question.py:696 -#, python-format -msgid "%(people)s commented the question" +#: models/answer.py:112 +#, fuzzy +msgid "Sorry, this answer has been removed and is no longer accessible" +msgstr "овај одговор је изабран као исправан" + +#: models/badges.py:129 +#, fuzzy, python-format +msgid "Deleted own post with %(votes)s or more upvotes" +msgstr "Обрисао сопствени пост са резултатом од -3 или мање" + +#: models/badges.py:133 +msgid "Disciplined" +msgstr "Дисциплинован" + +#: models/badges.py:151 +#, fuzzy, python-format +msgid "Deleted own post with %(votes)s or more downvotes" +msgstr "Обрисао сопствени пост са резултатом од -3 или мање" + +#: models/badges.py:155 +msgid "Peer Pressure" msgstr "" -#: models/question.py:701 +#: models/badges.py:174 #, python-format -msgid "%(people)s commented answers" +msgid "Received at least %(votes)s upvote for an answer for the first time" msgstr "" -#: models/question.py:703 -#, python-format -msgid "%(people)s commented an answer" +#: models/badges.py:178 +msgid "Teacher" +msgstr "Наставник" + +#: models/badges.py:218 +msgid "Supporter" msgstr "" -#: models/repute.py:16 skins/default/templates/badges.html:43 -msgid "gold" -msgstr "злато" +#: models/badges.py:219 +#, fuzzy +msgid "First upvote" +msgstr "са највише гласова" -#: models/repute.py:17 skins/default/templates/badges.html:52 -msgid "silver" -msgstr "сребро" +#: models/badges.py:227 +msgid "Critic" +msgstr "Критичар" -#: models/repute.py:18 skins/default/templates/badges.html:59 -msgid "bronze" -msgstr "бронза" +#: models/badges.py:228 +#, fuzzy +msgid "First downvote" +msgstr "downvoted" -#: models/repute.py:150 -#, python-format -msgid "Changed by moderator. Reason: %(reason)s" +#: models/badges.py:237 +msgid "Civic Duty" msgstr "" -#: models/repute.py:161 +#: models/badges.py:238 #, python-format -msgid "" -"%(points)s points were added for %(username)s's contribution to question %" -"(question_title)s" +msgid "Voted %(num)s times" msgstr "" -#: models/repute.py:166 +#: models/badges.py:252 #, python-format -msgid "" -"%(points)s points were subtracted for %(username)s's contribution to " -"question %(question_title)s" +msgid "Answered own question with at least %(num)s up votes" msgstr "" -#: models/tag.py:91 -msgid "interesting" -msgstr "" +#: models/badges.py:256 +msgid "Self-Learner" +msgstr "Самоук" -#: models/tag.py:91 -msgid "ignored" -msgstr "" +#: models/badges.py:304 +#, fuzzy +msgid "Nice Answer" +msgstr "Користан одговор" -#: models/user.py:233 -msgid "Entire forum" +#: models/badges.py:309 models/badges.py:321 models/badges.py:333 +#, python-format +msgid "Answer voted up %(num)s times" msgstr "" -#: models/user.py:234 -msgid "Questions that I asked" -msgstr "Питања која сте поставили" +#: models/badges.py:316 +msgid "Good Answer" +msgstr "Добар Одговор" -#: models/user.py:235 -msgid "Questions that I answered" -msgstr "Питања на која сте одговорили" +#: models/badges.py:328 +msgid "Great Answer" +msgstr "Савршен Одговор" -#: models/user.py:236 -msgid "Individually selected questions" -msgstr "" +#: models/badges.py:340 +msgid "Nice Question" +msgstr "Добро питање" -#: models/user.py:237 -msgid "Mentions and comment responses" +#: models/badges.py:345 models/badges.py:357 models/badges.py:369 +#, python-format +msgid "Question voted up %(num)s times" msgstr "" -#: models/user.py:240 -msgid "Instantly" +#: models/badges.py:352 +msgid "Good Question" msgstr "" -#: models/user.py:241 -msgid "Daily" +#: models/badges.py:364 +msgid "Great Question" +msgstr "Добро Питање" + +#: models/badges.py:376 +msgid "Student" +msgstr "Студент" + +#: models/badges.py:381 +msgid "Asked first question with at least one up vote" msgstr "" -#: models/user.py:242 -msgid "Weekly" +#: models/badges.py:414 +msgid "Popular Question" msgstr "" -#: models/user.py:243 -msgid "No email" +#: models/badges.py:418 models/badges.py:429 models/badges.py:441 +#, python-format +msgid "Asked a question with %(views)s views" msgstr "" -#: skins/default/templates/404.jinja.html:3 -#: skins/default/templates/404.jinja.html:11 -msgid "Page not found" +#: models/badges.py:425 +msgid "Notable Question" msgstr "" -#: skins/default/templates/404.jinja.html:15 -msgid "Sorry, could not find the page you requested." -msgstr "Нажалост, страница коју сте тражили није пронађена." +#: models/badges.py:436 +#, fuzzy +msgid "Famous Question" +msgstr "Добро Питање" -#: skins/default/templates/404.jinja.html:17 -msgid "This might have happened for the following reasons:" -msgstr "" +#: models/badges.py:450 +#, fuzzy +msgid "Asked a question and accepted an answer" +msgstr "Питања на која сте одговорили" -#: skins/default/templates/404.jinja.html:19 -msgid "this question or answer has been deleted;" -msgstr "ово питање или одговор је избрисано;" +#: models/badges.py:453 +msgid "Scholar" +msgstr "Ученик" -#: skins/default/templates/404.jinja.html:20 -msgid "url has error - please check it;" +#: models/badges.py:495 +msgid "Enlightened" msgstr "" -#: skins/default/templates/404.jinja.html:21 -msgid "" -"the page you tried to visit is protected or you don't have sufficient " -"points, see" +#: models/badges.py:499 +#, python-format +msgid "First answer was accepted with %(num)s or more votes" msgstr "" -#: skins/default/templates/404.jinja.html:21 -#: skins/default/templates/footer.html:6 -#: skins/default/templates/header.html:57 -#: skins/default/templates/question_edit_tips.html:16 -msgid "faq" -msgstr "чпп" - -#: skins/default/templates/404.jinja.html:22 -msgid "if you believe this error 404 should not have occured, please" +#: models/badges.py:507 +msgid "Guru" msgstr "" -#: skins/default/templates/404.jinja.html:23 -msgid "report this problem" +#: models/badges.py:510 +#, python-format +msgid "Answer accepted with %(num)s or more votes" msgstr "" -#: skins/default/templates/404.jinja.html:32 -#: skins/default/templates/500.jinja.html:13 -msgid "back to previous page" -msgstr "назад на предходну страну" - -#: skins/default/templates/404.jinja.html:33 -#: skins/default/templates/questions.html:13 -msgid "see all questions" +#: models/badges.py:518 +#, python-format +msgid "" +"Answered a question more than %(days)s days later with at least %(votes)s " +"votes" msgstr "" -#: skins/default/templates/404.jinja.html:34 -msgid "see all tags" +#: models/badges.py:525 +msgid "Necromancer" msgstr "" -#: skins/default/templates/500.jinja.html:3 -#: skins/default/templates/500.jinja.html:6 -msgid "Internal server error" +#: models/badges.py:548 +msgid "Citizen Patrol" msgstr "" -#: skins/default/templates/500.jinja.html:10 -msgid "system error log is recorded, error will be fixed as soon as possible" -msgstr "" +#: models/badges.py:551 +msgid "First flagged post" +msgstr "Први означени пост" -#: skins/default/templates/500.jinja.html:11 -msgid "please report the error to the site administrators if you wish" -msgstr "" +#: models/badges.py:563 +msgid "Cleanup" +msgstr "Чишћење" -#: skins/default/templates/500.jinja.html:14 -msgid "see latest questions" +#: models/badges.py:566 +msgid "First rollback" msgstr "" -#: skins/default/templates/500.jinja.html:15 -msgid "see tags" +#: models/badges.py:577 +msgid "Pundit" msgstr "" -#: skins/default/templates/about.html:3 skins/default/templates/about.html:6 -msgid "About" -msgstr "O нама" - -#: skins/default/templates/answer_edit.html:4 -#: skins/default/templates/answer_edit.html:10 -msgid "Edit answer" -msgstr "Измените одговор" - -#: skins/default/templates/answer_edit.html:10 -#: skins/default/templates/question_edit.html:10 -#: skins/default/templates/question_retag.html:6 -#: skins/default/templates/revisions.html:7 -msgid "back" -msgstr "назад" +#: models/badges.py:580 +#, fuzzy +msgid "Left 10 comments with score of 10 or more" +msgstr "Написао/ла 10 коментара са резултатом од 10 или више" -#: skins/default/templates/answer_edit.html:15 -#: skins/default/templates/question_edit.html:14 -msgid "revision" -msgstr "ревизија" +#: models/badges.py:612 +msgid "Editor" +msgstr "Уредник" -#: skins/default/templates/answer_edit.html:18 -#: skins/default/templates/question_edit.html:19 -msgid "select revision" -msgstr "изаберите ревизију" +#: models/badges.py:615 +msgid "First edit" +msgstr "" -#: skins/default/templates/answer_edit.html:22 -#: skins/default/templates/question_edit.html:28 -msgid "Save edit" -msgstr "Сачувајте промену" +#: models/badges.py:623 +msgid "Associate Editor" +msgstr "" -#: skins/default/templates/answer_edit.html:23 -#: skins/default/templates/close.html:19 -#: skins/default/templates/feedback.html:45 -#: skins/default/templates/question_edit.html:29 -#: skins/default/templates/question_retag.html:26 -#: skins/default/templates/reopen.html:30 -#: skins/default/templates/user_edit.html:76 -#: skins/default/templates/authopenid/changeemail.html:38 -msgid "Cancel" -msgstr "Откажите" +#: models/badges.py:627 +#, python-format +msgid "Edited %(num)s entries" +msgstr "" -#: skins/default/templates/answer_edit.html:59 -#: skins/default/templates/answer_edit.html:62 -#: skins/default/templates/ask.html:36 skins/default/templates/ask.html:39 -#: skins/default/templates/macros.html:398 -#: skins/default/templates/question.html:456 -#: skins/default/templates/question.html:459 -#: skins/default/templates/question_edit.html:63 -#: skins/default/templates/question_edit.html:66 -msgid "hide preview" +#: models/badges.py:634 +msgid "Organizer" msgstr "" -#: skins/default/templates/answer_edit.html:62 -#: skins/default/templates/ask.html:39 -#: skins/default/templates/question.html:459 -#: skins/default/templates/question_edit.html:66 -msgid "show preview" +#: models/badges.py:637 +msgid "First retag" msgstr "" -#: skins/default/templates/answer_edit_tips.html:3 -msgid "answer tips" -msgstr "Савети" +#: models/badges.py:644 +msgid "Autobiographer" +msgstr "Аутобиограф" -#: skins/default/templates/answer_edit_tips.html:6 -msgid "please make your answer relevant to this community" +#: models/badges.py:647 +msgid "Completed all user profile fields" msgstr "" -#: skins/default/templates/answer_edit_tips.html:9 -msgid "try to give an answer, rather than engage into a discussion" +#: models/badges.py:663 +#, python-format +msgid "Question favorited by %(num)s users" msgstr "" -#: skins/default/templates/answer_edit_tips.html:12 -msgid "please try to provide details" +#: models/badges.py:689 +msgid "Stellar Question" msgstr "" -#: skins/default/templates/answer_edit_tips.html:15 -#: skins/default/templates/question_edit_tips.html:12 -msgid "be clear and concise" -msgstr "будите јасни и кратки" - -#: skins/default/templates/answer_edit_tips.html:19 -#: skins/default/templates/question_edit_tips.html:16 -msgid "see frequently asked questions" -msgstr "погледајте често постављана питања" - -#: skins/default/templates/answer_edit_tips.html:25 -#: skins/default/templates/question_edit_tips.html:22 -msgid "Markdown tips" -msgstr "Markdown основе" +#: models/badges.py:698 +msgid "Favorite Question" +msgstr "" -#: skins/default/templates/answer_edit_tips.html:29 -#: skins/default/templates/question_edit_tips.html:26 -msgid "*italic*" +#: models/badges.py:710 +msgid "Enthusiast" msgstr "" -#: skins/default/templates/answer_edit_tips.html:32 -#: skins/default/templates/question_edit_tips.html:29 -msgid "**bold**" +#: models/badges.py:714 +#, python-format +msgid "Visited site every day for %(num)s days in a row" msgstr "" -#: skins/default/templates/answer_edit_tips.html:36 -#: skins/default/templates/question_edit_tips.html:33 +#: models/badges.py:732 #, fuzzy -msgid "*italic* or _italic_" -msgstr "*укошено* или _укошено_" +msgid "Commentator" +msgstr "Локација" -#: skins/default/templates/answer_edit_tips.html:39 -#: skins/default/templates/question_edit_tips.html:36 -msgid "**bold** or __bold__" -msgstr "**подебљано** или __подебљано__" +#: models/badges.py:736 +#, python-format +msgid "Posted %(num_comments)s comments" +msgstr "" -#: skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/question_edit_tips.html:40 -msgid "link" -msgstr "линк" +#: models/badges.py:752 +msgid "Taxonomist" +msgstr "" -#: skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:40 -#: skins/default/templates/question_edit_tips.html:45 -msgid "text" -msgstr "текст" +#: models/badges.py:756 +#, python-format +msgid "Created a tag used by %(num)s questions" +msgstr "" -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:45 -msgid "image" -msgstr "слика" +#: models/badges.py:776 +msgid "Expert" +msgstr "" -#: skins/default/templates/answer_edit_tips.html:51 -#: skins/default/templates/question_edit_tips.html:49 -msgid "numbered list:" +#: models/badges.py:779 +msgid "Very active in one tag" msgstr "" -#: skins/default/templates/answer_edit_tips.html:56 -#: skins/default/templates/question_edit_tips.html:54 -msgid "basic HTML tags are also supported" +#: models/meta.py:112 +msgid "" +"Sorry, the comment you are looking for is no longer accessible, because the " +"parent question has been removed" msgstr "" -#: skins/default/templates/answer_edit_tips.html:60 -#: skins/default/templates/question_edit_tips.html:58 -msgid "learn more about Markdown" +#: models/meta.py:119 +msgid "" +"Sorry, the comment you are looking for is no longer accessible, because the " +"parent answer has been removed" msgstr "" -#: skins/default/templates/ask.html:3 -msgid "Ask a question" -msgstr "Поставите питање" +#: models/question.py:72 +#, python-format +msgid "\" and \"%s\"" +msgstr "" -#: skins/default/templates/ask_form.html:7 -msgid "login to post question info" +#: models/question.py:75 +#, fuzzy +msgid "\" and more" +msgstr "Сазнајте више" + +#: models/question.py:452 +msgid "Sorry, this question has been deleted and is no longer accessible" +msgstr "" + +#: models/question.py:908 +#, python-format +msgid "%(author)s modified the question" +msgstr "" + +#: models/question.py:912 +#, python-format +msgid "%(people)s posted %(new_answer_count)s new answers" +msgstr "" + +#: models/question.py:917 +#, python-format +msgid "%(people)s commented the question" +msgstr "" + +#: models/question.py:922 +#, python-format +msgid "%(people)s commented answers" +msgstr "" + +#: models/question.py:924 +#, python-format +msgid "%(people)s commented an answer" +msgstr "" + +#: models/repute.py:142 +#, python-format +msgid "Changed by moderator. Reason: %(reason)s" msgstr "" -"You are welcome to start submitting your question " -"anonymously. 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/ask_form.html:11 +#: models/repute.py:153 #, python-format msgid "" -"must have valid %(email)s to post, \n" -" see %(email_validation_faq_url)s\n" -" " +"%(points)s points were added for %(username)s's contribution to question " +"%(question_title)s" msgstr "" -"Looks like your email address, %(email)s has not " -"yet been validated. To post messages you must verify your email, " -"please see more details here." -"
        You can submit your question now and validate email after that. Your " -"question will saved as pending meanwhile. " -#: skins/default/templates/ask_form.html:27 -#, fuzzy -msgid "Login/signup to post your question" -msgstr "Login/Signup to Post" +#: models/repute.py:158 +#, python-format +msgid "" +"%(points)s points were subtracted for %(username)s's contribution to " +"question %(question_title)s" +msgstr "" -#: skins/default/templates/ask_form.html:29 -msgid "Ask your question" -msgstr "Поставите Ваше Питање" +#: models/tag.py:151 +msgid "interesting" +msgstr "" + +#: models/tag.py:151 +msgid "ignored" +msgstr "" + +#: models/user.py:264 +msgid "Entire forum" +msgstr "" + +#: models/user.py:265 +msgid "Questions that I asked" +msgstr "Питања која сте поставили" + +#: models/user.py:266 +msgid "Questions that I answered" +msgstr "Питања на која сте одговорили" + +#: models/user.py:267 +msgid "Individually selected questions" +msgstr "" + +#: models/user.py:268 +msgid "Mentions and comment responses" +msgstr "" + +#: models/user.py:271 +msgid "Instantly" +msgstr "" + +#: models/user.py:272 +msgid "Daily" +msgstr "" + +#: models/user.py:273 +msgid "Weekly" +msgstr "" + +#: models/user.py:274 +msgid "No email" +msgstr "" + +#: skins/default/templates/404.jinja.html:3 +#: skins/default/templates/404.jinja.html:10 +msgid "Page not found" +msgstr "" + +#: skins/default/templates/404.jinja.html:13 +msgid "Sorry, could not find the page you requested." +msgstr "Нажалост, страница коју сте тражили није пронађена." + +#: skins/default/templates/404.jinja.html:15 +msgid "This might have happened for the following reasons:" +msgstr "" + +#: skins/default/templates/404.jinja.html:17 +msgid "this question or answer has been deleted;" +msgstr "ово питање или одговор је избрисано;" + +#: skins/default/templates/404.jinja.html:18 +msgid "url has error - please check it;" +msgstr "" + +#: skins/default/templates/404.jinja.html:19 +msgid "" +"the page you tried to visit is protected or you don't have sufficient " +"points, see" +msgstr "" + +#: skins/default/templates/404.jinja.html:19 +#: skins/default/templates/blocks/footer.html:5 +#: skins/default/templates/blocks/header_meta_links.html:13 +#: skins/default/templates/blocks/question_edit_tips.html:15 +msgid "faq" +msgstr "чпп" + +#: skins/default/templates/404.jinja.html:20 +msgid "if you believe this error 404 should not have occured, please" +msgstr "" + +#: skins/default/templates/404.jinja.html:21 +msgid "report this problem" +msgstr "" + +#: skins/default/templates/404.jinja.html:30 +#: skins/default/templates/500.jinja.html:11 +msgid "back to previous page" +msgstr "назад на предходну страну" + +#: skins/default/templates/404.jinja.html:31 +#: skins/default/templates/main_page/tab_bar.html:9 +msgid "see all questions" +msgstr "" + +#: skins/default/templates/404.jinja.html:32 +msgid "see all tags" +msgstr "" + +#: skins/default/templates/500.jinja.html:3 +#: skins/default/templates/500.jinja.html:5 +msgid "Internal server error" +msgstr "" + +#: skins/default/templates/500.jinja.html:8 +msgid "system error log is recorded, error will be fixed as soon as possible" +msgstr "" + +#: skins/default/templates/500.jinja.html:9 +msgid "please report the error to the site administrators if you wish" +msgstr "" + +#: skins/default/templates/500.jinja.html:12 +msgid "see latest questions" +msgstr "" + +#: skins/default/templates/500.jinja.html:13 +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" +msgstr "Измените одговор" + +#: skins/default/templates/answer_edit.html:10 +#: skins/default/templates/question_edit.html:9 +#: skins/default/templates/question_retag.html:5 +#: skins/default/templates/revisions.html:7 +msgid "back" +msgstr "назад" + +#: skins/default/templates/answer_edit.html:14 +msgid "revision" +msgstr "ревизија" + +#: skins/default/templates/answer_edit.html:17 +#: skins/default/templates/question_edit.html:16 +msgid "select revision" +msgstr "изаберите ревизију" + +#: skins/default/templates/answer_edit.html:21 +#: skins/default/templates/question_edit.html:27 +msgid "Save edit" +msgstr "Сачувајте промену" + +#: skins/default/templates/answer_edit.html:22 +#: skins/default/templates/close.html:16 +#: skins/default/templates/feedback.html:42 +#: skins/default/templates/question_edit.html:28 +#: skins/default/templates/question_retag.html:22 +#: skins/default/templates/reopen.html:27 +#: skins/default/templates/subscribe_for_tags.html:16 +#: skins/default/templates/authopenid/changeemail.html:38 +#: skins/default/templates/user_profile/user_edit.html:84 +msgid "Cancel" +msgstr "Откажите" + +#: skins/default/templates/answer_edit.html:60 +#: skins/default/templates/answer_edit.html:63 +#: skins/default/templates/ask.html:46 skins/default/templates/ask.html:49 +#: skins/default/templates/macros.html:698 +#: skins/default/templates/question.html:562 +#: skins/default/templates/question.html:565 +#: skins/default/templates/question_edit.html:72 +#: skins/default/templates/question_edit.html:75 +msgid "hide preview" +msgstr "" + +#: skins/default/templates/answer_edit.html:63 +#: skins/default/templates/ask.html:49 +#: skins/default/templates/question.html:565 +#: skins/default/templates/question_edit.html:75 +msgid "show preview" +msgstr "" -#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:11 -#: skins/default/templates/badges.html:28 -#: skins/default/templates/user_recent.html:13 -#: skins/default/templates/user_stats.html:88 +#: skins/default/templates/ask.html:4 +msgid "Ask a question" +msgstr "Поставите питање" + +#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:8 +#: skins/default/templates/user_profile/user_recent.html:16 +#: skins/default/templates/user_profile/user_stats.html:110 #, python-format msgid "%(name)s" msgstr "" -#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:7 +#: skins/default/templates/badge.html:4 msgid "Badge" msgstr "" -#: skins/default/templates/badge.html:11 -#: skins/default/templates/badges.html:27 -#: skins/default/templates/badges.html:31 -#: skins/default/templates/user_recent.html:13 -#: skins/default/templates/user_stats.html:88 +#: skins/default/templates/badge.html:6 +#, python-format +msgid "Badge \"%(name)s\"" +msgstr "" + +#: skins/default/templates/badge.html:8 +#: skins/default/templates/user_profile/user_recent.html:16 +#: skins/default/templates/user_profile/user_stats.html:108 #, python-format msgid "%(description)s" msgstr "" -#: skins/default/templates/badge.html:16 +#: skins/default/templates/badge.html:13 msgid "user received this badge:" msgid_plural "users received this badge:" msgstr[0] "" @@ -2945,125 +3704,99 @@ msgstr[2] "" msgid "Badges summary" msgstr "" -#: skins/default/templates/badges.html:6 +#: skins/default/templates/badges.html:5 msgid "Badges" msgstr "" -#: skins/default/templates/badges.html:10 +#: skins/default/templates/badges.html:7 msgid "Community gives you awards for your questions, answers and votes." msgstr "" "If your questions and answers are highly voted, your contribution to this " "Q&A community will be recognized with the variety of badges." -#: skins/default/templates/badges.html:11 -#, python-format +#: skins/default/templates/badges.html:8 +#, 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. Give us feedback at " +"%(feedback_faq_url)s.\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 feedback" -#: skins/default/templates/badges.html:27 -#, python-format -msgid "%(type)s" -msgstr "" - -#: skins/default/templates/badges.html:40 +#: skins/default/templates/badges.html:35 msgid "Community badges" msgstr "Беџеви - нивои" -#: skins/default/templates/badges.html:43 +#: skins/default/templates/badges.html:37 msgid "gold badge: the highest honor and is very rare" msgstr "" -#: skins/default/templates/badges.html:46 +#: 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 " "profound knowledge and ability in addition to your active participation." -#: skins/default/templates/badges.html:51 +#: skins/default/templates/badges.html:45 msgid "" "silver badge: occasionally awarded for the very high quality contributions" msgstr "" -#: skins/default/templates/badges.html:55 +#: 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:58 +#: skins/default/templates/badges.html:52 msgid "bronze badge: often given as a special honor" msgstr "" -#: skins/default/templates/badges.html:62 +#: 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:6 +#: skins/default/templates/close.html:3 skins/default/templates/close.html:5 msgid "Close question" msgstr "Затвори питање" -#: skins/default/templates/close.html:9 +#: skins/default/templates/close.html:6 msgid "Close the question" msgstr "Затвори питање" -#: skins/default/templates/close.html:14 +#: skins/default/templates/close.html:11 msgid "Reasons" msgstr "Разлози" -#: skins/default/templates/close.html:18 +#: skins/default/templates/close.html:15 msgid "OK to close" msgstr "" -#: skins/default/templates/editor_data.html:8 -#, 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)d карактера" -msgstr[1] "свака ознака мора имати мање од %(max_chars)d карактера" -msgstr[2] "" - -#: skins/default/templates/editor_data.html:10 -#, fuzzy, python-format -msgid "please use %(tag_count)s tag" -msgid_plural "please use %(tag_count)s tags or less" -msgstr[0] "користите %(tag_count)d ознаку или мање" -msgstr[1] "користите %(tag_count)d ознака или мање" -msgstr[2] "" - -#: skins/default/templates/editor_data.html:11 -#, fuzzy, python-format -msgid "" -"please use up to %(tag_count)s tags, less than %(max_chars)s characters each" -msgstr "до 5 ознака, мање од 20 карактера у свакој" - -#: skins/default/templates/faq.html:3 skins/default/templates/faq.html.py:6 +#: skins/default/templates/faq.html:3 +#: skins/default/templates/faq_static.html:3 +#: skins/default/templates/faq_static.html:5 msgid "FAQ" msgstr "" -#: skins/default/templates/faq.html:6 +#: skins/default/templates/faq_static.html:5 msgid "Frequently Asked Questions " msgstr "Често постављана питања" -#: skins/default/templates/faq.html:11 +#: skins/default/templates/faq_static.html:6 msgid "What kinds of questions can I ask here?" msgstr "" -#: skins/default/templates/faq.html:12 +#: skins/default/templates/faq_static.html:7 msgid "" "Most importanly - questions should be relevant to this " "community." msgstr "" -#: skins/default/templates/faq.html:13 +#: 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." @@ -3071,21 +3804,21 @@ 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.html:15 +#: skins/default/templates/faq_static.html:10 msgid "What questions should I avoid asking?" msgstr "What kinds of questions should be avoided?" -#: skins/default/templates/faq.html:16 +#: skins/default/templates/faq_static.html:11 msgid "" "Please avoid asking questions that are not relevant to this community, too " "subjective and argumentative." msgstr "" -#: skins/default/templates/faq.html:20 +#: skins/default/templates/faq_static.html:13 msgid "What should I avoid in my answers?" msgstr "" -#: skins/default/templates/faq.html:21 +#: 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 " @@ -3096,19 +3829,19 @@ msgstr "" "they tend to dilute the essense of questions and answers. For the brief " "discussions please use commenting facility." -#: skins/default/templates/faq.html:24 +#: skins/default/templates/faq_static.html:15 msgid "Who moderates this community?" msgstr "" -#: skins/default/templates/faq.html:25 +#: skins/default/templates/faq_static.html:16 msgid "The short answer is: you." msgstr "" -#: skins/default/templates/faq.html:26 +#: skins/default/templates/faq_static.html:17 msgid "This website is moderated by the users." msgstr "" -#: skins/default/templates/faq.html:27 +#: skins/default/templates/faq_static.html:18 msgid "" "The reputation system allows users earn the authorization to perform a " "variety of moderation tasks." @@ -3116,11 +3849,11 @@ msgstr "" "Karma system allows users to earn rights to perform a variety of moderation " "tasks" -#: skins/default/templates/faq.html:32 +#: skins/default/templates/faq_static.html:20 msgid "How does reputation system work?" msgstr "Како систем карме функционише?" -#: skins/default/templates/faq.html:33 +#: skins/default/templates/faq_static.html:21 msgid "Rep system summary" msgstr "" "When a question or answer is upvoted, the user who posted them will gain " @@ -3128,87 +3861,70 @@ 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/faq.html:34 +#: 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 %" -"(REP_GAIN_FOR_RECEIVING_UPVOTE)s points, each vote against will " +"it will be downvoted. Each vote in favor will generate " +"%(REP_GAIN_FOR_RECEIVING_UPVOTE)s points, each vote against will " "subtract %(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s points. There " "is a limit of %(MAX_REP_GAIN_PER_USER_PER_DAY)s 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 "" -#: skins/default/templates/faq.html:44 -#: skins/default/templates/user_votes.html:10 +#: skins/default/templates/faq_static.html:32 +#: skins/default/templates/user_profile/user_votes.html:13 msgid "upvote" msgstr "" -#: skins/default/templates/faq.html:49 +#: skins/default/templates/faq_static.html:37 msgid "use tags" msgstr "" -#: skins/default/templates/faq.html:54 +#: skins/default/templates/faq_static.html:42 msgid "add comments" msgstr "" -#: skins/default/templates/faq.html:58 -#: skins/default/templates/user_votes.html:12 +#: skins/default/templates/faq_static.html:46 +#: skins/default/templates/user_profile/user_votes.html:15 msgid "downvote" msgstr "" -#: skins/default/templates/faq.html:61 +#: skins/default/templates/faq_static.html:49 +#, fuzzy +msgid " accept own answer to own questions" +msgstr "погледајте питања без одговора" + +#: skins/default/templates/faq_static.html:53 msgid "open and close own questions" msgstr "" -#: skins/default/templates/faq.html:65 +#: skins/default/templates/faq_static.html:57 #, fuzzy msgid "retag other's questions" msgstr "најновија питања" -#: skins/default/templates/faq.html:70 +#: skins/default/templates/faq_static.html:62 msgid "edit community wiki questions" msgstr "" -#: skins/default/templates/faq.html:75 +#: skins/default/templates/faq_static.html:67 #, fuzzy msgid "\"edit any answer" msgstr "измењен одговор" -#: skins/default/templates/faq.html:79 +#: skins/default/templates/faq_static.html:71 #, fuzzy msgid "\"delete any comment" msgstr "избриши овај коментар" -#: skins/default/templates/faq.html:86 -msgid "how to validate email title" -msgstr "Како да потврдите е-пошту и зашто?" - -#: skins/default/templates/faq.html:88 -#, python-format -msgid "" -"how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)s" -msgstr "" -"

        How? If you have just set or changed your " -"email address - check your email and click the included link.
        The link contains a key generated specifically for you. You can " -"also and check your email again.

        Why? Email validation is required to make sure that " -"only you can post messages on your behalf and to " -"minimize spam posts.
        With email you can " -"subscribe for updates on the most interesting questions. " -"Also, when you sign up for the first time - create a unique gravatar personal image.

        " - -#: skins/default/templates/faq.html:93 +#: skins/default/templates/faq_static.html:74 msgid "what is gravatar" msgstr "Како да промените своју слику (gravatar) и шта је gravatar?" -#: skins/default/templates/faq.html:94 +#: skins/default/templates/faq_static.html:75 msgid "gravatar faq info" msgstr "" "

        The picture that appears on the users profiles is called " @@ -3225,45 +3941,45 @@ msgstr "" "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.

        " -#: skins/default/templates/faq.html:97 +#: skins/default/templates/faq_static.html:76 msgid "To register, do I need to create new password?" msgstr "" -#: skins/default/templates/faq.html:98 +#: skins/default/templates/faq_static.html:77 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.html:99 +#: skins/default/templates/faq_static.html:78 #, fuzzy msgid "\"Login now!\"" msgstr "Одјава" -#: skins/default/templates/faq.html:103 +#: skins/default/templates/faq_static.html:80 msgid "Why other people can edit my questions/answers?" msgstr "" -#: skins/default/templates/faq.html:104 +#: skins/default/templates/faq_static.html:81 msgid "Goal of this site is..." msgstr "" -#: skins/default/templates/faq.html:104 +#: skins/default/templates/faq_static.html:81 msgid "" "So questions and answers can be edited like wiki pages by experienced users " "of this site and this improves the overall quality of the knowledge base " "content." msgstr "" -#: skins/default/templates/faq.html:105 +#: skins/default/templates/faq_static.html:82 msgid "If this approach is not for you, we respect your choice." msgstr "" -#: skins/default/templates/faq.html:109 +#: skins/default/templates/faq_static.html:84 msgid "Still have questions?" msgstr "" -#: skins/default/templates/faq.html:110 +#: skins/default/templates/faq_static.html:85 #, python-format msgid "" "Please ask your question at %(ask_question_url)s, help make our community " @@ -3272,171 +3988,89 @@ msgstr "" "Please ask your question, help make our " "community better!" -#: skins/default/templates/faq.html:112 skins/default/templates/header.html:78 -msgid "questions" -msgstr "питања" - -#: skins/default/templates/faq.html:112 -msgid "." -msgstr "" - #: skins/default/templates/feedback.html:3 msgid "Feedback" msgstr "" -#: skins/default/templates/feedback.html:6 +#: skins/default/templates/feedback.html:5 msgid "Give us your feedback!" msgstr "" -#: skins/default/templates/feedback.html:12 +#: skins/default/templates/feedback.html:9 #, python-format msgid "" "\n" -" Dear %(user_name)s, we look " -"forward to hearing your feedback. \n" -" Please type and send us your message below.\n" -" " +" Dear %(user_name)s, we look forward " +"to hearing your feedback. \n" +" Please type and send us your message below.\n" +" " msgstr "" -#: skins/default/templates/feedback.html:19 +#: skins/default/templates/feedback.html:16 msgid "" "\n" -" Dear visitor, we look forward to " +" Dear visitor, we look forward to " "hearing your feedback.\n" -" Please type and send us your message below.\n" -" " +" Please type and send us your message below.\n" +" " msgstr "" -#: skins/default/templates/feedback.html:28 +#: skins/default/templates/feedback.html:25 #, fuzzy msgid "(please enter a valid email)" msgstr "унесите валидну е-пошту" -#: skins/default/templates/feedback.html:36 +#: skins/default/templates/feedback.html:33 msgid "(this field is required)" msgstr "" -#: skins/default/templates/feedback.html:44 +#: skins/default/templates/feedback.html:41 msgid "Send Feedback" msgstr "" -#: skins/default/templates/feedback_email.txt:3 +#: skins/default/templates/feedback_email.txt:2 #, python-format msgid "" "\n" -"Hello, this is a %(site_title)s forum feedback message\n" +"Hello, this is a %(site_title)s forum feedback message.\n" msgstr "" -#: skins/default/templates/feedback_email.txt:9 -msgid "Sender is" +#: skins/default/templates/import_data.html:2 +#: skins/default/templates/import_data.html:4 +msgid "Import StackExchange data" msgstr "" -#: skins/default/templates/feedback_email.txt:11 -#: skins/default/templates/feedback_email.txt:14 -msgid "email" +#: skins/default/templates/import_data.html:13 +msgid "" +"Warning: if your database is not empty, please back it up\n" +" before attempting this operation." msgstr "" -#: skins/default/templates/feedback_email.txt:13 -msgid "anonymous" +#: skins/default/templates/import_data.html:16 +msgid "" +"Upload your stackexchange dump .zip file, then wait until\n" +" the data import completes. This process may take several minutes.\n" +" Please note that feedback will be printed in plain text.\n" +" " msgstr "" -#: skins/default/templates/feedback_email.txt:19 -msgid "Message body:" +#: skins/default/templates/import_data.html:25 +msgid "Import data" msgstr "" -#: skins/default/templates/footer.html:5 -#: skins/default/templates/header.html:56 -msgid "about" -msgstr "о нама" - -#: skins/default/templates/footer.html:7 -msgid "privacy policy" -msgstr "политика приватности" - -#: skins/default/templates/footer.html:16 -msgid "give feedback" -msgstr "сугестије и žалбе" +#: 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: python manage." +"py load_stackexchange path/to/your-data.zip" +msgstr "" -#: skins/default/templates/header.html:12 -#, fuzzy, python-format -msgid "responses for %(username)s" -msgstr "Одаберете корисничко име" +#: skins/default/templates/instant_notification.html:1 +#, python-format +msgid "

        Dear %(receiving_user_name)s,

        " +msgstr "" -#: skins/default/templates/header.html:15 -#, python-format -msgid "you have a new response" -msgid_plural "you nave %(response_count)s new responses" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: skins/default/templates/header.html:18 -#, fuzzy -msgid "no new responses yet" -msgstr "одговори" - -#: skins/default/templates/header.html:30 -#: skins/default/templates/header.html:31 -#, python-format -msgid "%(new)s new flagged posts and %(seen)s previous" -msgstr "" - -#: skins/default/templates/header.html:33 -#: skins/default/templates/header.html:34 -#, fuzzy, python-format -msgid "%(new)s new flagged posts" -msgstr "Први означени пост" - -#: skins/default/templates/header.html:39 -#: skins/default/templates/header.html:40 -#, fuzzy, python-format -msgid "%(seen)s flagged posts" -msgstr "Први означени пост" - -#: skins/default/templates/header.html:52 -msgid "logout" -msgstr "одјава" - -#: skins/default/templates/header.html:54 -msgid "login" -msgstr "пријава" - -#: skins/default/templates/header.html:59 -#, fuzzy -msgid "settings" -msgstr "ресетујте ознаке" - -#: skins/default/templates/header.html:68 -msgid "back to home page" -msgstr "назад на почетну страну" - -#: skins/default/templates/header.html:69 -#, python-format -msgid "%(site)s logo" -msgstr "" - -#: skins/default/templates/header.html:88 -msgid "users" -msgstr "корисници" - -#: skins/default/templates/header.html:93 -msgid "badges" -msgstr "беџеви" - -#: skins/default/templates/header.html:98 -msgid "ask a question" -msgstr "поставите питање" - -#: skins/default/templates/input_bar.html:32 -msgid "search" -msgstr "" - -#: skins/default/templates/instant_notification.html:1 -#, python-format -msgid "

        Dear %(receiving_user_name)s,

        " -msgstr "" - -#: skins/default/templates/instant_notification.html:3 +#: skins/default/templates/instant_notification.html:3 #, python-format msgid "" "\n" @@ -3502,98 +4136,117 @@ msgstr "" "Sincerely,\n" "Q&A Forum Administrator" -#: skins/default/templates/logout.html:3 skins/default/templates/logout.html:6 -msgid "Logout" +#: skins/default/templates/macros.html:25 +#, fuzzy, python-format +msgid "Share this question on %(site)s" +msgstr "Поново отворите ово питање" + +#: skins/default/templates/macros.html:36 +#, python-format +msgid "follow %(alias)s" msgstr "" -#: skins/default/templates/logout.html:9 -msgid "" -"As a registered user you can login with your OpenID, log out of the site or " -"permanently remove your account." +#: skins/default/templates/macros.html:39 +#, python-format +msgid "unfollow %(alias)s" msgstr "" -"Clicking Logout will log you out from the forumbut will not " -"sign you off from your OpenID provider.

        If you wish to sign off " -"completely - please make sure to log out from your OpenID provider as well." -#: skins/default/templates/logout.html:10 -msgid "Logout now" -msgstr "Одјава" +#: skins/default/templates/macros.html:40 +#, python-format +msgid "following %(alias)s" +msgstr "" -#: skins/default/templates/macros.html:26 +#: skins/default/templates/macros.html:63 msgid "karma:" msgstr "" -#: skins/default/templates/macros.html:30 +#: skins/default/templates/macros.html:67 #, fuzzy msgid "badges:" msgstr "беџеви" -#: skins/default/templates/macros.html:52 -#: skins/default/templates/macros.html:53 +#: skins/default/templates/macros.html:143 +#: skins/default/templates/macros.html:144 msgid "previous" msgstr "претходна" -#: skins/default/templates/macros.html:64 +#: skins/default/templates/macros.html:155 msgid "current page" msgstr "" -#: skins/default/templates/macros.html:66 -#: skins/default/templates/macros.html:73 +#: skins/default/templates/macros.html:157 +#: skins/default/templates/macros.html:164 #, python-format msgid "page number %(num)s" msgstr "страна %(num)s" -#: skins/default/templates/macros.html:77 +#: skins/default/templates/macros.html:168 msgid "next page" msgstr "следећа странa" -#: skins/default/templates/macros.html:88 +#: skins/default/templates/macros.html:179 msgid "posts per page" msgstr "постова по страни" -#: skins/default/templates/macros.html:119 templatetags/extra_tags.py:56 +#: skins/default/templates/macros.html:211 templatetags/extra_tags.py:43 #, python-format msgid "%(username)s gravatar image" msgstr "%(username)s gravatar слика" -#: skins/default/templates/macros.html:142 +#: skins/default/templates/macros.html:220 +#, fuzzy, python-format +msgid "%(username)s's website is %(url)s" +msgstr "кориснички профил" + +#: skins/default/templates/macros.html:232 +#, fuzzy +msgid "anonymous user" +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." + +#: skins/default/templates/macros.html:260 msgid "this post is marked as community wiki" msgstr "" -#: skins/default/templates/macros.html:145 +#: skins/default/templates/macros.html:263 #, python-format msgid "" "This post is a wiki.\n" " Anyone with karma >%(wiki_min_rep)s is welcome to improve it." msgstr "" -#: skins/default/templates/macros.html:151 +#: skins/default/templates/macros.html:269 msgid "asked" msgstr "питано" -#: skins/default/templates/macros.html:153 +#: skins/default/templates/macros.html:271 msgid "answered" msgstr "" -#: skins/default/templates/macros.html:155 +#: skins/default/templates/macros.html:273 msgid "posted" msgstr "" -#: skins/default/templates/macros.html:185 +#: skins/default/templates/macros.html:303 msgid "updated" msgstr "" -#: skins/default/templates/macros.html:210 -#: skins/default/templates/unused/questions_ajax.html:23 views/readers.py:237 +#: skins/default/templates/macros.html:379 +#, python-format +msgid "see questions tagged '%(tag)s'" +msgstr "" + +#: skins/default/templates/macros.html:424 views/readers.py:239 #, fuzzy -msgid "vote" -msgid_plural "votes" -msgstr[0] "гласај/" -msgstr[1] "гласај/" -msgstr[2] "гласај/" +msgid "view" +msgid_plural "views" +msgstr[0] "преглед" +msgstr[1] "преглед" +msgstr[2] "преглед" -#: skins/default/templates/macros.html:227 -#: skins/default/templates/unused/questions_ajax.html:43 views/readers.py:240 +#: skins/default/templates/macros.html:441 views/readers.py:236 #, fuzzy msgid "answer" msgid_plural "answers" @@ -3601,43 +4254,32 @@ msgstr[0] "одговор" msgstr[1] "одговор" msgstr[2] "одговор" -#: skins/default/templates/macros.html:239 -#: skins/default/templates/unused/questions_ajax.html:55 views/readers.py:243 +#: skins/default/templates/macros.html:452 views/readers.py:233 #, fuzzy -msgid "view" -msgid_plural "views" -msgstr[0] "преглед" -msgstr[1] "преглед" -msgstr[2] "преглед" +msgid "vote" +msgid_plural "votes" +msgstr[0] "гласај/" +msgstr[1] "гласај/" +msgstr[2] "гласај/" -#: skins/default/templates/macros.html:251 -#: skins/default/templates/question.html:88 -#: skins/default/templates/tags.html:38 -#: skins/default/templates/unused/question_list.html:64 -#: skins/default/templates/unused/question_summary_list_roll.html:52 -#: skins/default/templates/unused/questions_ajax.html:68 -#, python-format -msgid "see questions tagged '%(tag)s'" -msgstr "" +#: skins/default/templates/macros.html:491 +msgid "delete this comment" +msgstr "избриши овај коментар" -#: skins/default/templates/macros.html:272 -#: skins/default/templates/question.html:94 -#: skins/default/templates/question.html:247 +#: skins/default/templates/macros.html:502 +#: skins/default/templates/question.html:79 +#: skins/default/templates/question.html:235 #: skins/default/templates/revisions.html:37 msgid "edit" msgstr "" -#: skins/default/templates/macros.html:277 -msgid "delete this comment" -msgstr "избриши овај коментар" - -#: skins/default/templates/macros.html:295 -#: skins/default/templates/macros.html:303 -#: skins/default/templates/question.html:423 +#: skins/default/templates/macros.html:520 +#: skins/default/templates/macros.html:528 +#: skins/default/templates/question.html:511 msgid "add comment" msgstr "унесите коментар" -#: skins/default/templates/macros.html:296 +#: skins/default/templates/macros.html:521 #, python-format msgid "see %(counter)s more" msgid_plural "see %(counter)s more" @@ -3645,119 +4287,150 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: skins/default/templates/macros.html:298 +#: skins/default/templates/macros.html:523 #, python-format msgid "see %(counter)s more comment" msgid_plural "" "see %(counter)s more comments\n" -" " +" " msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: skins/default/templates/macros.html:375 +#: skins/default/templates/macros.html:661 +#, fuzzy +msgid "one of these is required" +msgstr "ово поље је обавезно" + +#: skins/default/templates/macros.html:673 msgid "(required)" msgstr "(обавезно)" -#: skins/default/templates/macros.html:396 +#: skins/default/templates/macros.html:696 msgid "Toggle the real time Markdown editor preview" msgstr "" +#: skins/default/templates/macros.html:708 +#, fuzzy, python-format +msgid "responses for %(username)s" +msgstr "Одаберете корисничко име" + +#: skins/default/templates/macros.html:711 +#, python-format +msgid "you have a new response" +msgid_plural "you have %(response_count)s new responses" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: skins/default/templates/macros.html:714 +#, fuzzy +msgid "no new responses yet" +msgstr "одговори" + +#: skins/default/templates/macros.html:729 +#: skins/default/templates/macros.html:730 +#, python-format +msgid "%(new)s new flagged posts and %(seen)s previous" +msgstr "" + +#: skins/default/templates/macros.html:732 +#: skins/default/templates/macros.html:733 +#, fuzzy, python-format +msgid "%(new)s new flagged posts" +msgstr "Први означени пост" + +#: skins/default/templates/macros.html:738 +#: skins/default/templates/macros.html:739 +#, fuzzy, python-format +msgid "%(seen)s flagged posts" +msgstr "Први означени пост" + +#: skins/default/templates/main_page.html:11 +msgid "Questions" +msgstr "Питања" + #: skins/default/templates/privacy.html:3 -#: skins/default/templates/privacy.html:6 +#: skins/default/templates/privacy.html:5 msgid "Privacy policy" msgstr "" -#: skins/default/templates/question.html:30 -#: skins/default/templates/question.html:31 -#: skins/default/templates/question.html:46 -#: skins/default/templates/question.html:48 +#: skins/default/templates/question.html:26 +#: skins/default/templates/question.html:27 +#: skins/default/templates/question.html:42 +#: skins/default/templates/question.html:44 msgid "i like this post (click again to cancel)" msgstr "" -#: skins/default/templates/question.html:33 -#: skins/default/templates/question.html:50 -#: skins/default/templates/question.html:198 +#: skins/default/templates/question.html:29 +#: skins/default/templates/question.html:46 +#: skins/default/templates/question.html:186 msgid "current number of votes" msgstr "" -#: skins/default/templates/question.html:42 -#: skins/default/templates/question.html:43 -#: skins/default/templates/question.html:55 -#: skins/default/templates/question.html:56 +#: skins/default/templates/question.html:38 +#: skins/default/templates/question.html:39 +#: skins/default/templates/question.html:51 +#: skins/default/templates/question.html:52 msgid "i dont like this post (click again to cancel)" msgstr "" -#: skins/default/templates/question.html:60 -#: skins/default/templates/question.html:61 -msgid "mark this question as favorite (click again to cancel)" -msgstr "" - -#: skins/default/templates/question.html:67 -#: skins/default/templates/question.html:68 -msgid "remove favorite mark from this question (click again to restore mark)" -msgstr "" - -#: skins/default/templates/question.html:74 -#, fuzzy -msgid "Share this question on twitter" -msgstr "Поново отворите ово питање" - -#: skins/default/templates/question.html:75 -msgid "Share this question on facebook" -msgstr "" - -#: skins/default/templates/question.html:97 +#: skins/default/templates/question.html:82 #, fuzzy msgid "retag" msgstr "ретаговано" -#: skins/default/templates/question.html:104 +#: skins/default/templates/question.html:89 msgid "reopen" msgstr "" -#: skins/default/templates/question.html:108 +#: skins/default/templates/question.html:93 msgid "close" msgstr "затвори" -#: skins/default/templates/question.html:113 -#: skins/default/templates/question.html:251 +#: skins/default/templates/question.html:98 +#: skins/default/templates/question.html:239 msgid "" "report as offensive (i.e containing spam, advertising, malicious text, etc.)" msgstr "" -#: skins/default/templates/question.html:114 -#: skins/default/templates/question.html:252 +#: skins/default/templates/question.html:99 +#: skins/default/templates/question.html:240 msgid "flag offensive" msgstr "означи увредљивим" -#: skins/default/templates/question.html:121 -#: skins/default/templates/question.html:262 -#: skins/default/templates/authopenid/signin.html:175 +#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:250 +msgid "undelete" +msgstr "undelete" + +#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:250 +#: skins/default/templates/authopenid/signin.html:166 msgid "delete" msgstr "избриши" -#: skins/default/templates/question.html:156 +#: skins/default/templates/question.html:143 #, python-format msgid "" "The question has been closed for the following reason \"%(close_reason)s\" by" msgstr "" -#: skins/default/templates/question.html:158 +#: skins/default/templates/question.html:145 #, python-format msgid "close date %(closed_at)s" msgstr "датум затварања %(closed_at)s" -#: skins/default/templates/question.html:166 +#: skins/default/templates/question.html:151 #, 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" "(one comment)" @@ -3765,82 +4438,99 @@ msgstr[1] "" "\n" "(%(comment_count)s comments)" -#: skins/default/templates/question.html:174 +#: skins/default/templates/question.html:159 msgid "oldest answers will be shown first" msgstr "" -#: skins/default/templates/question.html:174 +#: skins/default/templates/question.html:160 msgid "oldest answers" msgstr "стара" -#: skins/default/templates/question.html:176 +#: skins/default/templates/question.html:162 msgid "newest answers will be shown first" msgstr "" -#: skins/default/templates/question.html:176 +#: skins/default/templates/question.html:163 msgid "newest answers" msgstr "нова" -#: skins/default/templates/question.html:178 +#: skins/default/templates/question.html:165 msgid "most voted answers will be shown first" msgstr "" -#: skins/default/templates/question.html:178 +#: skins/default/templates/question.html:166 msgid "popular answers" msgstr "популарна" -#: skins/default/templates/question.html:196 -#: skins/default/templates/question.html:197 +#: skins/default/templates/question.html:184 +#: skins/default/templates/question.html:185 msgid "i like this answer (click again to cancel)" msgstr "свиђа ми се овај одговор (кликните поново да бисте отказали)" -#: skins/default/templates/question.html:207 -#: skins/default/templates/question.html:208 +#: skins/default/templates/question.html:195 +#: skins/default/templates/question.html:196 msgid "i dont like this answer (click again to cancel)" msgstr "не свиђа ми се овај одговор (кликните поново да бисте отказали)" -#: skins/default/templates/question.html:216 -#: skins/default/templates/question.html:217 +#: skins/default/templates/question.html:204 +#: skins/default/templates/question.html:205 msgid "mark this answer as favorite (click again to undo)" msgstr "означи овај одговор као омиљени (кликните поново да бисте отказали)" -#: skins/default/templates/question.html:226 -#: skins/default/templates/question.html:227 +#: skins/default/templates/question.html:214 +#: skins/default/templates/question.html:215 #, fuzzy, python-format msgid "%(question_author)s has selected this answer as correct" msgstr "аутор питања је изабрао овај одговор као прави" -#: skins/default/templates/question.html:242 +#: skins/default/templates/question.html:230 msgid "answer permanent link" msgstr "трајни линк одговора" -#: skins/default/templates/question.html:243 +#: skins/default/templates/question.html:231 msgid "permanent link" msgstr "трајни линк" -#: skins/default/templates/question.html:262 -msgid "undelete" -msgstr "undelete" +#: skins/default/templates/question.html:256 +#, fuzzy +msgid "swap with question" +msgstr "Одговорите на питање" + +#: skins/default/templates/question.html:297 +#, python-format +msgid "" +"Know someone who can answer? Share a link " +"to this question via" +msgstr "" + +#: skins/default/templates/question.html:303 +#, fuzzy +msgid " or" +msgstr "или" + +#: skins/default/templates/question.html:305 +msgid "email" +msgstr "" -#: skins/default/templates/question.html:309 -#: skins/default/templates/question.html:311 +#: skins/default/templates/question.html:320 +#: skins/default/templates/question.html:322 msgid "Notify me once a day when there are any new answers" msgstr "" "Notify me once a day by email when there are any new " "answers or updates" -#: skins/default/templates/question.html:313 +#: skins/default/templates/question.html:324 msgid "Notify me weekly when there are any new answers" msgstr "" "Notify me weekly when there are any new answers or updates" -#: skins/default/templates/question.html:315 +#: skins/default/templates/question.html:326 #, fuzzy msgid "Notify me immediately when there are any new answers" msgstr "" "Notify me weekly when there are any new answers or updates" -#: skins/default/templates/question.html:318 +#: skins/default/templates/question.html:329 #, python-format msgid "" "You can always adjust frequency of email updates from your %(profile_url)s" @@ -3848,21 +4538,26 @@ msgstr "" "(note: you can always change how often you receive updates)" -#: skins/default/templates/question.html:323 +#: skins/default/templates/question.html:334 msgid "once you sign in you will be able to subscribe for any updates here" msgstr "" "Here (once you log in) you will be able to sign " "up for the periodic email updates about this question." -#: skins/default/templates/question.html:333 +#: skins/default/templates/question.html:344 +#, fuzzy +msgid "Login/Signup to Answer" +msgstr "Login/Signup to Post" + +#: skins/default/templates/question.html:352 msgid "Your answer" msgstr "Ваш одговор" -#: skins/default/templates/question.html:335 +#: skins/default/templates/question.html:354 msgid "Be the first one to answer this question!" msgstr "Будите први који ћете дати одговор на ово питање!" -#: skins/default/templates/question.html:341 +#: skins/default/templates/question.html:360 msgid "you can answer anonymously and then login" msgstr "" "Please start posting your answer anonymously " @@ -3871,7 +4566,7 @@ msgstr "" "answer, for discussions, please use comments and " "please do remember to vote (after you log in)!" -#: skins/default/templates/question.html:345 +#: skins/default/templates/question.html:364 msgid "answer your own question only to give an answer" msgstr "" "You are welcome to answer your own question, " @@ -3881,7 +4576,7 @@ msgstr "" "forget to vote :) for the answers that you liked (or perhaps did " "not like)! " -#: skins/default/templates/question.html:347 +#: skins/default/templates/question.html:366 msgid "please only give an answer, no discussions" msgstr "" "Please try to give a substantial answer. If " @@ -3891,286 +4586,163 @@ msgstr "" "please don't forget to vote - it really helps to select the " "best questions and answers!" -#: skins/default/templates/question.html:354 +#: skins/default/templates/question.html:373 msgid "Login/Signup to Post Your Answer" msgstr "" -#: skins/default/templates/question.html:357 +#: skins/default/templates/question.html:376 +#: skins/default/templates/question.html:389 msgid "Answer Your Own Question" msgstr "Одговорите на ваше питање" -#: skins/default/templates/question.html:359 +#: skins/default/templates/question.html:378 msgid "Answer the question" msgstr "Одговорите на питање" -#: skins/default/templates/question.html:373 -msgid "Question tags" +#: skins/default/templates/question.html:397 +#, fuzzy +msgid "Question tools" msgstr "Ознаке" -#: skins/default/templates/question.html:378 -#: skins/default/templates/questions.html:222 -#: skins/default/templates/tag_selector.html:9 -#: skins/default/templates/tag_selector.html:26 +#: skins/default/templates/question.html:400 +#, fuzzy +msgid "click to unfollow this question" +msgstr "questions with most answers" + +#: skins/default/templates/question.html:401 +msgid "Following" +msgstr "" + +#: skins/default/templates/question.html:402 +msgid "Unfollow" +msgstr "" + +#: skins/default/templates/question.html:406 +#, fuzzy +msgid "click to follow this question" +msgstr "questions with most answers" + +#: skins/default/templates/question.html:407 +msgid "Follow" +msgstr "" + +#: skins/default/templates/question.html:414 #, python-format -msgid "see questions tagged '%(tag_name)s'" +msgid "%(count)s follower" +msgid_plural "%(count)s followers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: skins/default/templates/question.html:420 +#, fuzzy +msgid "email the updates" +msgstr "Задњи пут ажурирано" + +#: skins/default/templates/question.html:423 +msgid "" +"Here (once you log in) you will be able to sign up for the " +"periodic email updates about this question." +msgstr "" + +#: skins/default/templates/question.html:428 +msgid "subscribe to this question rss feed" +msgstr "" + +#: skins/default/templates/question.html:429 +msgid "subsribe to rss feed" msgstr "" -#: skins/default/templates/question.html:384 +#: skins/default/templates/question.html:438 +msgid "Question tags" +msgstr "Ознаке" + +#: skins/default/templates/question.html:460 +msgid "Stats:" +msgstr "" + +#: skins/default/templates/question.html:462 msgid "question asked" msgstr "Питано" -#: skins/default/templates/question.html:387 +#: skins/default/templates/question.html:465 msgid "question was seen" msgstr "Прегледано" -#: skins/default/templates/question.html:387 +#: skins/default/templates/question.html:465 msgid "times" msgstr "пута" -#: skins/default/templates/question.html:390 +#: skins/default/templates/question.html:468 msgid "last updated" msgstr "Задњи пут ажурирано" -#: skins/default/templates/question.html:397 +#: skins/default/templates/question.html:477 msgid "Related questions" msgstr "Слична питања" #: skins/default/templates/question_edit.html:4 -#: skins/default/templates/question_edit.html:10 +#: skins/default/templates/question_edit.html:9 msgid "Edit question" msgstr "Измени питање" -#: skins/default/templates/question_edit_tips.html:3 -msgid "question tips" -msgstr "Савети" - -#: skins/default/templates/question_edit_tips.html:6 -msgid "please ask a relevant question" -msgstr "ask a question interesting to this community" - -#: skins/default/templates/question_edit_tips.html:9 -msgid "please try provide enough details" -msgstr "provide enough details" - #: skins/default/templates/question_retag.html:3 -#: skins/default/templates/question_retag.html:6 +#: skins/default/templates/question_retag.html:5 msgid "Change tags" msgstr "Промените ознаке" -#: skins/default/templates/question_retag.html:25 +#: skins/default/templates/question_retag.html:21 #, fuzzy msgid "Retag" msgstr "ознаке" -#: skins/default/templates/question_retag.html:34 +#: skins/default/templates/question_retag.html:28 msgid "Why use and modify tags?" msgstr "" -#: skins/default/templates/question_retag.html:36 +#: skins/default/templates/question_retag.html:30 msgid "Tags help to keep the content better organized and searchable" msgstr "" -#: skins/default/templates/question_retag.html:38 +#: skins/default/templates/question_retag.html:32 msgid "tag editors receive special awards from the community" msgstr "" -#: skins/default/templates/question_retag.html:79 +#: skins/default/templates/question_retag.html:59 msgid "up to 5 tags, less than 20 characters each" msgstr "до 5 ознака, мање од 20 карактера у свакој" -#: skins/default/templates/questions.html:4 -msgid "Questions" -msgstr "Питања" - -#: skins/default/templates/questions.html:9 -msgid "In:" -msgstr "Прикажи:" +#: skins/default/templates/reopen.html:3 skins/default/templates/reopen.html:5 +msgid "Reopen question" +msgstr "" -#: skins/default/templates/questions.html:18 -msgid "see unanswered questions" -msgstr "погледајте питања без одговора" +#: skins/default/templates/reopen.html:6 +#, fuzzy +msgid "Title" +msgstr "наслов" -#: skins/default/templates/questions.html:24 -msgid "see your favorite questions" -msgstr "погледајте Ваша омиљена питања" +#: skins/default/templates/reopen.html:11 +#, python-format +msgid "" +"This question has been closed by \n" +" %(closed_by_username)s\n" +msgstr "" -#: skins/default/templates/questions.html:29 -msgid "Sort by:" -msgstr "Сортирај:" +#: skins/default/templates/reopen.html:16 +#, fuzzy +msgid "Close reason:" +msgstr "Затвори питање" -#: skins/default/templates/questions.html:97 -#: skins/default/templates/questions.html:100 -msgid "subscribe to the questions feed" +#: skins/default/templates/reopen.html:19 +msgid "When:" msgstr "" -#: skins/default/templates/questions.html:101 -msgid "rss feed" -msgstr "" - -#: skins/default/templates/questions.html:105 -#, fuzzy, python-format -msgid "" -"\n" -" %(q_num)s question\n" -" " -msgid_plural "" -"\n" -" %(q_num)s questions\n" -" " -msgstr[0] "" -"\n" -"

        %(q_num)s

        question

        " -msgstr[1] "" -"\n" -"
        %(q_num)s

        questions

        " - -#: skins/default/templates/questions.html:111 views/readers.py:157 -#, fuzzy, python-format -msgid "%(q_num)s question" -msgid_plural "%(q_num)s questions" -msgstr[0] "Једно питање" -msgstr[1] "%(q_num)s питања" -msgstr[2] "" - -#: skins/default/templates/questions.html:114 -#, python-format -msgid "with %(author_name)s's contributions" -msgstr "" - -#: skins/default/templates/questions.html:117 -msgid "tagged" -msgstr "означено" - -#: skins/default/templates/questions.html:122 -msgid "Search tips:" -msgstr "Савети за претраживање:" - -#: skins/default/templates/questions.html:125 -msgid "reset author" -msgstr "ресетујте аутора" - -#: skins/default/templates/questions.html:127 -#: skins/default/templates/questions.html:130 -#: skins/default/templates/questions.html:168 -#: skins/default/templates/questions.html:171 -#, fuzzy -msgid " or " -msgstr "или" - -#: skins/default/templates/questions.html:128 -msgid "reset tags" -msgstr "ресетујте ознаке" - -#: skins/default/templates/questions.html:131 -#: skins/default/templates/questions.html:134 -msgid "start over" -msgstr "крените изпочетка" - -#: skins/default/templates/questions.html:136 -msgid " - to expand, or dig in by adding more tags and revising the query." -msgstr "" - -#: skins/default/templates/questions.html:139 -msgid "Search tip:" -msgstr "Савет за претраживање:" - -#: skins/default/templates/questions.html:139 -msgid "add tags and a query to focus your search" -msgstr "додајте ознаке и упит да сузите претрагу" - -#: skins/default/templates/questions.html:154 -#: skins/default/templates/unused/questions_ajax.html:79 -msgid "There are no unanswered questions here" -msgstr "" - -#: skins/default/templates/questions.html:157 -#: skins/default/templates/unused/questions_ajax.html:82 -msgid "No favorite questions here. " -msgstr "Овде нема омиљених питања." - -#: skins/default/templates/questions.html:158 -#: skins/default/templates/unused/questions_ajax.html:83 -msgid "Please start (bookmark) some questions when you visit them" -msgstr "" - -#: skins/default/templates/questions.html:163 -#: skins/default/templates/unused/questions_ajax.html:88 -msgid "You can expand your search by " -msgstr "" - -#: skins/default/templates/questions.html:166 -#: skins/default/templates/unused/questions_ajax.html:92 -msgid "resetting author" -msgstr "" - -#: skins/default/templates/questions.html:169 -#: skins/default/templates/unused/questions_ajax.html:96 -msgid "resetting tags" -msgstr "" - -#: skins/default/templates/questions.html:172 -#: skins/default/templates/questions.html:175 -#: skins/default/templates/unused/questions_ajax.html:100 -#: skins/default/templates/unused/questions_ajax.html:104 -msgid "starting over" -msgstr "" - -#: skins/default/templates/questions.html:180 -#: skins/default/templates/unused/questions_ajax.html:109 -msgid "Please always feel free to ask your question!" -msgstr "" - -#: skins/default/templates/questions.html:184 -#: skins/default/templates/unused/questions_ajax.html:113 -msgid "Did not find what you were looking for?" -msgstr "" - -#: skins/default/templates/questions.html:185 -#: skins/default/templates/unused/questions_ajax.html:114 -msgid "Please, post your question!" -msgstr "" - -#: skins/default/templates/questions.html:200 -#, fuzzy -msgid "Contributors" -msgstr "Сарадници" - -#: skins/default/templates/questions.html:217 -msgid "Related tags" -msgstr "Ознаке" - -#: skins/default/templates/reopen.html:3 skins/default/templates/reopen.html:6 -msgid "Reopen question" -msgstr "" - -#: skins/default/templates/reopen.html:9 -#, fuzzy -msgid "Title" -msgstr "наслов" - -#: skins/default/templates/reopen.html:14 -#, python-format -msgid "" -"This question has been closed by \n" -" %(closed_by_username)s\n" -" " -msgstr "" - -#: skins/default/templates/reopen.html:19 -#, fuzzy -msgid "Close reason:" -msgstr "Затвори питање" - #: skins/default/templates/reopen.html:22 -msgid "When:" -msgstr "" - -#: skins/default/templates/reopen.html:25 #, fuzzy msgid "Reopen this question?" msgstr "Поново отворите ово питање" -#: skins/default/templates/reopen.html:29 +#: skins/default/templates/reopen.html:26 msgid "Reopen this question" msgstr "Поново отворите ово питање" @@ -4188,1111 +4760,1486 @@ msgstr "" msgid "revision %(number)s" msgstr "ревизије/" -#: skins/default/templates/tag_selector.html:3 -msgid "Interesting tags" -msgstr "Занимљиве ознаке" - -#: skins/default/templates/tag_selector.html:13 -#, python-format -msgid "remove '%(tag_name)s' from the list of interesting tags" -msgstr "уклоните '%(tag_name)s' са листе занимљивих ознака" - -#: skins/default/templates/tag_selector.html:19 -#: skins/default/templates/tag_selector.html:36 -#: skins/default/templates/user_moderate.html:35 -msgid "Add" -msgstr "Додајте" - -#: skins/default/templates/tag_selector.html:20 -msgid "Ignored tags" -msgstr "Игнорисане ознаке" +#: skins/default/templates/subscribe_for_tags.html:3 +#: skins/default/templates/subscribe_for_tags.html:5 +msgid "Subscribe for tags" +msgstr "" -#: skins/default/templates/tag_selector.html:30 -#, python-format -msgid "remove '%(tag_name)s' from the list of ignored tags" -msgstr "уклоните '%(tag_name)s' са листе игнорисаних ознака" +#: skins/default/templates/subscribe_for_tags.html:6 +#, fuzzy +msgid "Please, subscribe for the following tags:" +msgstr "Питање је затворено из следећих разлога" -#: skins/default/templates/tag_selector.html:39 -msgid "keep ignored questions hidden" -msgstr "сакрите игнорисана питања" +#: skins/default/templates/subscribe_for_tags.html:15 +msgid "Subscribe" +msgstr "" -#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:8 +#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:11 msgid "Tag list" msgstr "Списак ознака" -#: skins/default/templates/tags.html:14 +#: skins/default/templates/tags.html:9 +#, python-format +msgid "Tags, matching \"%(stag)s\"" +msgstr "" + +#: skins/default/templates/tags.html:19 msgid "sorted alphabetically" msgstr "сортирано по алфабету" -#: skins/default/templates/tags.html:15 +#: skins/default/templates/tags.html:20 msgid "by name" msgstr "по имену" -#: skins/default/templates/tags.html:20 +#: skins/default/templates/tags.html:25 msgid "sorted by frequency of tag use" msgstr "" -#: skins/default/templates/tags.html:21 +#: skins/default/templates/tags.html:26 msgid "by popularity" msgstr "по популарности" -#: skins/default/templates/tags.html:27 -#, python-format -msgid "" -"All tags matching '%(stag)s'" -msgstr "" - -#: skins/default/templates/tags.html:30 +#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:56 msgid "Nothing found" msgstr "Ништа није пронађено" -#: skins/default/templates/user.html:14 -#, fuzzy, python-format -msgid "%(username)s's profile" -msgstr "кориснички профил" - -#: skins/default/templates/user_edit.html:4 -msgid "Edit user profile" -msgstr "Измените корисников профил" +#: skins/default/templates/users.html:4 skins/default/templates/users.html:7 +msgid "Users" +msgstr "Корисници" -#: skins/default/templates/user_edit.html:7 -msgid "edit profile" -msgstr "измените профил" +#: skins/default/templates/users.html:13 +msgid "see people with the highest reputation" +msgstr "" -#: skins/default/templates/user_edit.html:17 -#: skins/default/templates/user_info.html:11 -msgid "change picture" -msgstr "промените слику" +#: skins/default/templates/users.html:14 +#: skins/default/templates/user_profile/user_info.html:25 +msgid "reputation" +msgstr "карма" -#: skins/default/templates/user_edit.html:20 -msgid "Registered user" -msgstr "Регистровани корисник" +#: skins/default/templates/users.html:19 +msgid "see people who joined most recently" +msgstr "" -#: skins/default/templates/user_edit.html:27 -msgid "Screen Name" -msgstr "Корисничко, (видљиво) име" +#: skins/default/templates/users.html:20 +msgid "recent" +msgstr "нови" -#: skins/default/templates/user_edit.html:75 -#: skins/default/templates/user_email_subscriptions.html:18 -msgid "Update" -msgstr "Ажурирајте" +#: skins/default/templates/users.html:25 +msgid "see people who joined the site first" +msgstr "" -#: skins/default/templates/user_email_subscriptions.html:4 -msgid "Email subscription settings" +#: skins/default/templates/users.html:31 +msgid "see people sorted by name" msgstr "" -#: skins/default/templates/user_email_subscriptions.html:5 -msgid "email subscription settings info" +#: skins/default/templates/users.html:32 +msgid "by username" +msgstr "по корисничком имену" + +#: skins/default/templates/users.html:37 +#, python-format +msgid "users matching query %(suser)s:" msgstr "" -"Adjust frequency of email updates. Receive " -"updates on interesting questions by email,
        help the community by answering questions of your colleagues. If you do not wish to " -"receive emails - select 'no email' on all items below.
        Updates are only " -"sent when there is any new activity on selected items." -#: skins/default/templates/user_email_subscriptions.html:19 -msgid "Stop sending email" -msgstr "Stop Email" +#: skins/default/templates/users.html:40 +msgid "Nothing found." +msgstr "Ништа није пронађено." -#: skins/default/templates/user_inbox.html:31 -#, fuzzy -msgid "Sections:" -msgstr "питања" +#: skins/default/templates/authopenid/changeemail.html:2 +#: skins/default/templates/authopenid/changeemail.html:8 +#: skins/default/templates/authopenid/changeemail.html:36 +msgid "Change email" +msgstr "Change Email" -#: skins/default/templates/user_inbox.html:35 -#, python-format -msgid "forum responses (%(re_count)s)" +#: skins/default/templates/authopenid/changeemail.html:10 +msgid "Save your email address" msgstr "" -#: skins/default/templates/user_inbox.html:40 +#: skins/default/templates/authopenid/changeemail.html:15 #, python-format -msgid "flagged items (%(flag_count)s)" +msgid "change %(email)s info" msgstr "" +"Enter your new email into the box below if " +"you'd like to use another email for update subscriptions." +"
        Currently you are using %(email)s" -#: skins/default/templates/user_inbox.html:46 -#, fuzzy -msgid "select:" -msgstr "избриши" - -#: skins/default/templates/user_inbox.html:48 -#, fuzzy -msgid "seen" -msgstr "последњи пут виђен" - -#: skins/default/templates/user_inbox.html:49 -#, fuzzy -msgid "new" -msgstr "најновија" +#: skins/default/templates/authopenid/changeemail.html:17 +#, python-format +msgid "here is why email is required, see %(gravatar_faq_url)s" +msgstr "" +"Please enter your email address in the box below. Valid email address is required on this Q&A forum. If you like, " +"you can receive updates on interesting questions or entire " +"forum via email. Also, your email is used to create a unique gravatar image for your " +"account. Email addresses are never shown or otherwise shared with anybody " +"else." -#: skins/default/templates/user_inbox.html:50 -#, fuzzy -msgid "none" -msgstr "бронза" +#: skins/default/templates/authopenid/changeemail.html:29 +msgid "Your new Email" +msgstr "" +"Your new Email: (will not be shown to " +"anyone, must be valid)" -#: skins/default/templates/user_inbox.html:51 -#, fuzzy -msgid "mark as seen" -msgstr "последњи пут виђен" +#: skins/default/templates/authopenid/changeemail.html:29 +msgid "Your Email" +msgstr "" +"Your Email (must be valid, never shown to others)" -#: skins/default/templates/user_inbox.html:52 -#, fuzzy -msgid "mark as new" -msgstr "означен најбољи одговор" +#: skins/default/templates/authopenid/changeemail.html:36 +msgid "Save Email" +msgstr "" -#: skins/default/templates/user_inbox.html:53 -msgid "dismiss" +#: skins/default/templates/authopenid/changeemail.html:45 +msgid "Validate email" msgstr "" -#: skins/default/templates/user_info.html:18 -#: skins/default/templates/users.html:13 skins/default/templates/users.html:14 -msgid "reputation" -msgstr "карма" +#: skins/default/templates/authopenid/changeemail.html:48 +#, python-format +msgid "validate %(email)s info or go to %(change_email_url)s" +msgstr "" +"An email with a validation link has been sent to " +"%(email)s. Please follow the emailed link with your " +"web browser. Email validation is necessary to help insure the proper use of " +"email on Q&A. If you would like to use " +"another email, please change it again." -#: skins/default/templates/user_info.html:30 -msgid "manage login methods" +#: skins/default/templates/authopenid/changeemail.html:52 +msgid "Email not changed" msgstr "" -#: skins/default/templates/user_info.html:34 -msgid "update profile" -msgstr "ажурирајте профил" +#: skins/default/templates/authopenid/changeemail.html:55 +#, python-format +msgid "old %(email)s kept, if you like go to %(change_email_url)s" +msgstr "" +"Your email address %(email)s has not been changed." +" If you decide to change it later - you can always do it by editing " +"it in your user profile or by using the previous form again." -#: skins/default/templates/user_info.html:46 -msgid "real name" -msgstr "право име" +#: skins/default/templates/authopenid/changeemail.html:59 +msgid "Email changed" +msgstr "" -#: skins/default/templates/user_info.html:51 -msgid "member for" -msgstr "члан од" - -#: skins/default/templates/user_info.html:56 -msgid "last seen" -msgstr "последњи пут виђен" - -#: skins/default/templates/user_info.html:62 -msgid "user website" -msgstr "корисников веб сајт" - -#: skins/default/templates/user_info.html:68 -msgid "location" -msgstr "локација" - -#: skins/default/templates/user_info.html:75 -msgid "age" -msgstr "старост" +#: skins/default/templates/authopenid/changeemail.html:62 +#, python-format +msgid "your current %(email)s can be used for this" +msgstr "" +"Your email address is now set to %(email)s. " +"Updates on the questions that you like most will be sent to this address. " +"Email notifications are sent once a day or less frequently - only when there " +"are any news." -#: skins/default/templates/user_info.html:76 -msgid "age unit" -msgstr "година" +#: skins/default/templates/authopenid/changeemail.html:66 +msgid "Email verified" +msgstr "" -#: skins/default/templates/user_info.html:83 -msgid "todays unused votes" -msgstr "данашњи неискоришћени гласови" +#: skins/default/templates/authopenid/changeemail.html:69 +msgid "thanks for verifying email" +msgstr "" +"Thank you for verifying your email! Now " +"you can ask and answer questions. Also if " +"you find a very interesting question you can subscribe for the " +"updates - then will be notified about changes once a day or less frequently." -#: skins/default/templates/user_info.html:84 -msgid "votes left" -msgstr "преостало гласова" +#: skins/default/templates/authopenid/changeemail.html:73 +msgid "email key not sent" +msgstr "Validation email not sent" -#: skins/default/templates/user_moderate.html:5 +#: skins/default/templates/authopenid/changeemail.html:76 #, python-format -msgid "%(username)s's current status is \"%(status)s\"" -msgstr "" - -#: skins/default/templates/user_moderate.html:8 -msgid "User status changed" +msgid "email key not sent %(email)s change email here %(change_link)s" msgstr "" +"Your current email address %(email)s has been " +"validated before so the new key was not sent. You can change email used for update subscriptions if " +"necessary." -#: skins/default/templates/user_moderate.html:15 +#: skins/default/templates/authopenid/complete.html:21 +#: skins/default/templates/authopenid/complete.html:23 #, fuzzy -msgid "Save" -msgstr "Сачувајте промену" +msgid "Registration" +msgstr "карма" -#: skins/default/templates/user_moderate.html:21 +#: skins/default/templates/authopenid/complete.html:27 #, python-format -msgid "Your current reputation is %(reputation)s points" +msgid "register new %(provider)s account info, see %(gravatar_faq_url)s" msgstr "" +"

        You are here for the first time with your " +"%(provider)s login. Please create your screen name " +"and save your email address. Saved email address will let " +"you subscribe for the updates on the most interesting " +"questions and will be used to create and retrieve your unique avatar image - " +"gravatar.

        " -#: skins/default/templates/user_moderate.html:23 +#: skins/default/templates/authopenid/complete.html:30 #, python-format -msgid "User's current reputation is %(reputation)s points" +msgid "" +"%(username)s already exists, choose another name for \n" +" %(provider)s. Email is required too, see " +"%(gravatar_faq_url)s\n" +" " msgstr "" +"

        Oops... looks like screen name %(username)s is " +"already used in another account.

        Please choose another screen " +"name to use with your %(provider)s login. Also, a valid email address is " +"required on the Q&A forum. Your email is " +"used to create a unique gravatar image for your account. If you like, you can receive " +"updates on the interesting questions or entire forum by email. " +"Email addresses are never shown or otherwise shared with anybody else.

        " -#: skins/default/templates/user_moderate.html:27 -#, fuzzy -msgid "User reputation changed" -msgstr "корисникова карма" - -#: skins/default/templates/user_moderate.html:34 -msgid "Subtract" +#: skins/default/templates/authopenid/complete.html:34 +#, python-format +msgid "" +"register new external %(provider)s account info, see %(gravatar_faq_url)s" msgstr "" +"

        You are here for the first time with your " +"%(provider)s login.

        You can either keep your screen " +"name the same as your %(provider)s login name or choose some other " +"nickname.

        Also, please save a valid email address. " +"With the email you can subscribe for the updates on the " +"most interesting questions. Email address is also used to create and " +"retrieve your unique avatar image - gravatar.

        " -#: skins/default/templates/user_moderate.html:39 +#: skins/default/templates/authopenid/complete.html:37 #, python-format -msgid "Send message to %(username)s" +msgid "register new Facebook connect account info, see %(gravatar_faq_url)s" msgstr "" +"

        You are here for the first time with your " +"Facebook login. Please create your screen name and " +"save your email address. Saved email address will let you " +"subscribe for the updates on the most interesting questions " +"and will be used to create and retrieve your unique avatar image - gravatar.

        " -#: skins/default/templates/user_moderate.html:40 -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." +#: skins/default/templates/authopenid/complete.html:40 +msgid "This account already exists, please use another." msgstr "" -#: skins/default/templates/user_moderate.html:42 -#, fuzzy -msgid "Message sent" -msgstr "поруке/" +#: skins/default/templates/authopenid/complete.html:59 +msgid "Screen name label" +msgstr "Screen Name (will be shown to others)" -#: skins/default/templates/user_moderate.html:60 -#, fuzzy -msgid "Send message" -msgstr "поруке/" +#: skins/default/templates/authopenid/complete.html:66 +msgid "Email address label" +msgstr "" +"Email Address (will not be shared with " +"anyone, must be valid)" -#: skins/default/templates/user_reputation.html:7 -msgid "Your karma change log." -msgstr "Евиденција промене Ваше карме." +#: skins/default/templates/authopenid/complete.html:72 +#: skins/default/templates/authopenid/signup_with_password.html:36 +msgid "receive updates motivational blurb" +msgstr "" +"Receive forum updates by email - this will help our " +"community grow and become more useful.
        By default Q&A forum sends up to one email digest per " +"week - only when there is anything new.
        If you like, please " +"adjust this now or any time later from your user account." -#: skins/default/templates/user_reputation.html:9 -#, python-format -msgid "%(user_name)s's karma change log" +#: skins/default/templates/authopenid/complete.html:76 +#: skins/default/templates/authopenid/signup_with_password.html:40 +msgid "please select one of the options above" msgstr "" -#: skins/default/templates/user_stats.html:7 -#, python-format -msgid "%(counter)s Question" -msgid_plural "%(counter)s Questions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: skins/default/templates/authopenid/complete.html:79 +msgid "Tag filter tool will be your right panel, once you log in." +msgstr "" -#: skins/default/templates/user_stats.html:12 -#, python-format -msgid "%(counter)s Answer" -msgid_plural "%(counter)s Answers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: skins/default/templates/authopenid/complete.html:80 +msgid "create account" +msgstr "Signup" -#: skins/default/templates/user_stats.html:20 -#, python-format -msgid "the answer has been voted for %(answer_score)s times" +#: skins/default/templates/authopenid/confirm_email.txt:1 +msgid "Thank you for registering at our Q&A forum!" msgstr "" -#: skins/default/templates/user_stats.html:20 -msgid "this answer has been selected as correct" -msgstr "овај одговор је изабран као исправан" +#: skins/default/templates/authopenid/confirm_email.txt:3 +msgid "Your account details are:" +msgstr "" -#: skins/default/templates/user_stats.html:30 -#, python-format -msgid "(%(comment_count)s comment)" -msgid_plural "the answer has been commented %(comment_count)s times" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: skins/default/templates/authopenid/confirm_email.txt:5 +msgid "Username:" +msgstr "Корисничко име:" -#: skins/default/templates/user_stats.html:40 -#, python-format -msgid "%(cnt)s Vote" -msgid_plural "%(cnt)s Votes " -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: skins/default/templates/authopenid/confirm_email.txt:6 +msgid "Password:" +msgstr "Шифра:" -#: skins/default/templates/user_stats.html:46 -msgid "thumb up" -msgstr "палац горе" +#: skins/default/templates/authopenid/confirm_email.txt:8 +msgid "Please sign in here:" +msgstr "" -#: skins/default/templates/user_stats.html:47 -msgid "user has voted up this many times" +#: skins/default/templates/authopenid/confirm_email.txt:11 +#: skins/default/templates/authopenid/email_validation.txt:13 +msgid "" +"Sincerely,\n" +"Forum Administrator" msgstr "" +"Sincerely,\n" +"Q&A Forum Administrator" -#: skins/default/templates/user_stats.html:50 -msgid "thumb down" -msgstr "палац доле" +#: skins/default/templates/authopenid/email_validation.txt:1 +msgid "Greetings from the Q&A forum" +msgstr "Поздрав од П&О форума" -#: skins/default/templates/user_stats.html:51 -msgid "user voted down this many times" +#: skins/default/templates/authopenid/email_validation.txt:3 +msgid "To make use of the Forum, please follow the link below:" msgstr "" -#: skins/default/templates/user_stats.html:59 -#, python-format -msgid "%(counter)s Tag" -msgid_plural "%(counter)s Tags" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: skins/default/templates/authopenid/email_validation.txt:7 +msgid "Following the link above will help us verify your email address." +msgstr "" -#: skins/default/templates/user_stats.html:67 -#, python-format +#: skins/default/templates/authopenid/email_validation.txt:9 msgid "" -"see other questions with %(view_user)s's contributions tagged '%(tag_name)s' " +"If you beleive that this message was sent in mistake - \n" +"no further action is needed. Just ingore this email, we apologize\n" +"for any inconvenience" msgstr "" -#: skins/default/templates/user_stats.html:81 -#, python-format -msgid "%(counter)s Badge" -msgid_plural "%(counter)s Badges" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: skins/default/templates/user_tabs.html:5 -msgid "User profile" +#: skins/default/templates/authopenid/logout.html:3 +msgid "Logout" msgstr "" -#: skins/default/templates/user_tabs.html:6 -msgid "overview" -msgstr "преглед" - -#: skins/default/templates/user_tabs.html:9 views/users.py:753 -msgid "comments and answers to others questions" +#: skins/default/templates/authopenid/logout.html:5 +msgid "You have successfully logged out" msgstr "" -#: skins/default/templates/user_tabs.html:10 -msgid "inbox" +#: skins/default/templates/authopenid/logout.html: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 "" -#: skins/default/templates/user_tabs.html:13 -msgid "graph of user reputation" -msgstr "Graph of user karma" - -#: skins/default/templates/user_tabs.html:14 -msgid "reputation history" -msgstr "karma history" - -#: skins/default/templates/user_tabs.html:16 -msgid "questions that user selected as his/her favorite" +#: skins/default/templates/authopenid/macros.html:53 +msgid "Please enter your user name, then sign in" msgstr "" -#: skins/default/templates/user_tabs.html:17 -msgid "favorites" -msgstr "омиљена" - -#: skins/default/templates/user_tabs.html:19 -msgid "recent activity" -msgstr "недавне активности" +#: skins/default/templates/authopenid/macros.html:54 +#: skins/default/templates/authopenid/signin.html:90 +msgid "(or select another login method above)" +msgstr "" -#: skins/default/templates/user_tabs.html:20 +#: skins/default/templates/authopenid/macros.html:56 #, fuzzy -msgid "activity" -msgstr "активна" +msgid "Sign in" +msgstr "пријава/" -#: skins/default/templates/user_tabs.html:23 views/users.py:818 -msgid "user vote record" -msgstr "" +#: skins/default/templates/authopenid/signin.html:4 +msgid "User login" +msgstr "User login" -#: skins/default/templates/user_tabs.html:24 -msgid "casted votes" -msgstr "votes" +#: skins/default/templates/authopenid/signin.html:14 +#, fuzzy, python-format +msgid "" +"\n" +" Your answer to %(title)s %(summary)s will be posted once you log in\n" +" " +msgstr "" +"\n" +"Your answer to \"%(title)s %(summary)s...\" is saved and will be " +"posted once you log in." -#: skins/default/templates/user_tabs.html:28 views/users.py:928 -msgid "email subscription settings" +#: skins/default/templates/authopenid/signin.html:21 +#, fuzzy, python-format +msgid "" +"Your question \n" +" %(title)s %(summary)s will be posted once you log in\n" +" " msgstr "" +"Your question \"%(title)s %(summary)s...\" is saved and will be " +"posted once you log in." -#: skins/default/templates/user_tabs.html:29 -#, fuzzy -msgid "subscriptions" -msgstr "питања" - -#: skins/default/templates/user_tabs.html:33 views/users.py:216 -#, fuzzy -msgid "moderate this user" -msgstr "Модеришите овог корисника" +#: skins/default/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." +msgstr "" -#: skins/default/templates/user_tabs.html:34 -#, fuzzy -msgid "moderation" -msgstr "Локација" +#: skins/default/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 "" -#: skins/default/templates/users.html:4 skins/default/templates/users.html:7 -msgid "Users" -msgstr "Корисници" +#: skins/default/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 "" -#: skins/default/templates/users.html:19 skins/default/templates/users.html:20 -msgid "recent" -msgstr "нови" +#: skins/default/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 "" -#: skins/default/templates/users.html:31 skins/default/templates/users.html:32 -msgid "by username" -msgstr "по корисничком имену" +#: skins/default/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 "" -#: skins/default/templates/users.html:38 -#, python-format -msgid "users matching query %(suser)s:" +#: skins/default/templates/authopenid/signin.html:42 +msgid "" +"Please check your email and visit the enclosed link to re-connect to your " +"account" msgstr "" -#: skins/default/templates/users.html:41 -msgid "Nothing found." -msgstr "Ништа није пронађено." +#: skins/default/templates/authopenid/signin.html:87 +#, fuzzy +msgid "Please enter your user name and password, then sign in" +msgstr "Молимо Вас да унесете корисничко име и шифру" -#: skins/default/templates/users_questions.html:9 -#: skins/default/templates/users_questions.html:17 -#, fuzzy, python-format -msgid "this questions was selected as favorite %(cnt)s time" -msgid_plural "this questions was selected as favorite %(cnt)s times" -msgstr[0] "овај одговор је изабран као исправан" -msgstr[1] "овај одговор је изабран као исправан" -msgstr[2] "овај одговор је изабран као исправан" +#: skins/default/templates/authopenid/signin.html:93 +msgid "Login failed, please try again" +msgstr "" -#: skins/default/templates/users_questions.html:10 +#: skins/default/templates/authopenid/signin.html:97 #, fuzzy -msgid "thumb-up on" -msgstr "палац-горе да" +msgid "Login or email" +msgstr "Пријављивање није успело." -#: skins/default/templates/users_questions.html:18 -#, fuzzy -msgid "thumb-up off" -msgstr "палац-горе не" +#: skins/default/templates/authopenid/signin.html:101 +msgid "Password" +msgstr "" -#: skins/default/templates/authopenid/changeemail.html:2 -#: skins/default/templates/authopenid/changeemail.html:8 -#: skins/default/templates/authopenid/changeemail.html:36 -msgid "Change email" -msgstr "Change Email" +#: skins/default/templates/authopenid/signin.html:106 +msgid "Login" +msgstr "Пријава" -#: skins/default/templates/authopenid/changeemail.html:10 -msgid "Save your email address" +#: skins/default/templates/authopenid/signin.html:113 +msgid "To change your password - please enter the new one twice, then submit" msgstr "" -#: skins/default/templates/authopenid/changeemail.html:15 -#, python-format -msgid "change %(email)s info" -msgstr "" -"Enter your new email into the box below if " -"you'd like to use another email for update subscriptions." -"
        Currently you are using %(email)s" +#: skins/default/templates/authopenid/signin.html:117 +#, fuzzy +msgid "New password" +msgstr "Нова шифра је креирана" -#: skins/default/templates/authopenid/changeemail.html:17 -#, python-format -msgid "here is why email is required, see %(gravatar_faq_url)s" -msgstr "" -"Please enter your email address in the box below. Valid email address is required on this Q&A forum. If you like, " -"you can receive updates on interesting questions or entire " -"forum via email. Also, your email is used to create a unique gravatar image for your account. " -"Email addresses are never shown or otherwise shared with anybody else." +#: skins/default/templates/authopenid/signin.html:124 +#, fuzzy +msgid "Please, retype" +msgstr "молимo Вас, поново откуцајте шифру" -#: skins/default/templates/authopenid/changeemail.html:29 -msgid "Your new Email" +#: skins/default/templates/authopenid/signin.html:146 +msgid "Here are your current login methods" msgstr "" -"Your new Email: (will not be shown to " -"anyone, must be valid)" -#: skins/default/templates/authopenid/changeemail.html:29 -msgid "Your Email" +#: skins/default/templates/authopenid/signin.html:150 +msgid "provider" msgstr "" -"Your Email (must be valid, never shown to others)" -#: skins/default/templates/authopenid/changeemail.html:36 -msgid "Save Email" +#: skins/default/templates/authopenid/signin.html:151 +#, fuzzy +msgid "last used" +msgstr "последњи пут виђен" + +#: skins/default/templates/authopenid/signin.html:152 +msgid "delete, if you like" msgstr "" -#: skins/default/templates/authopenid/changeemail.html:45 -msgid "Validate email" +#: skins/default/templates/authopenid/signin.html:168 +#, fuzzy +msgid "cannot be deleted" +msgstr "Налог је избрисан." + +#: skins/default/templates/authopenid/signin.html:181 +msgid "Still have trouble signing in?" msgstr "" -#: skins/default/templates/authopenid/changeemail.html:48 -#, python-format -msgid "validate %(email)s info or go to %(change_email_url)s" +#: skins/default/templates/authopenid/signin.html:186 +msgid "Please, enter your email address below and obtain a new key" msgstr "" -"An email with a validation link has been sent to %" -"(email)s. Please follow the emailed link with your " -"web browser. Email validation is necessary to help insure the proper use of " -"email on Q&A. If you would like to use " -"another email, please change it again." -#: skins/default/templates/authopenid/changeemail.html:52 -msgid "Email not changed" +#: skins/default/templates/authopenid/signin.html:188 +msgid "Please, enter your email address below to recover your account" msgstr "" -#: skins/default/templates/authopenid/changeemail.html:55 -#, python-format -msgid "old %(email)s kept, if you like go to %(change_email_url)s" +#: skins/default/templates/authopenid/signin.html:191 +msgid "recover your account via email" msgstr "" -"Your email address %(email)s has not been changed." -" If you decide to change it later - you can always do it by editing " -"it in your user profile or by using the previous form again." -#: skins/default/templates/authopenid/changeemail.html:59 -msgid "Email changed" +#: skins/default/templates/authopenid/signin.html:202 +msgid "Send a new recovery key" msgstr "" -#: skins/default/templates/authopenid/changeemail.html:62 -#, python-format -msgid "your current %(email)s can be used for this" +#: skins/default/templates/authopenid/signin.html:204 +msgid "Recover your account via email" msgstr "" -"Your email address is now set to %(email)s. " -"Updates on the questions that you like most will be sent to this address. " -"Email notifications are sent once a day or less frequently - only when there " -"are any news." -#: skins/default/templates/authopenid/changeemail.html:66 -msgid "Email verified" +#: skins/default/templates/authopenid/signin.html:216 +msgid "Why use OpenID?" +msgstr "Зашто користити OpenID?" + +#: skins/default/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/default/templates/authopenid/signin.html:222 +msgid "reuse openid" +msgstr "You can safely re-use the same login for all OpenID-enabled websites." + +#: skins/default/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/default/templates/authopenid/changeemail.html:69 -msgid "thanks for verifying email" +#: skins/default/templates/authopenid/signin.html:228 +msgid "openid is supported open standard" +msgstr "OpenID is based on an open standard, supported by many organizations." + +#: skins/default/templates/authopenid/signin.html:232 +msgid "Find out more" +msgstr "Сазнајте више" + +#: skins/default/templates/authopenid/signin.html:233 +msgid "Get OpenID" msgstr "" -"Thank you for verifying your email! Now " -"you can ask and answer questions. Also if " -"you find a very interesting question you can subscribe for the " -"updates - then will be notified about changes once a day or less frequently." -#: skins/default/templates/authopenid/changeemail.html:73 -msgid "email key not sent" -msgstr "Validation email not sent" +#: skins/default/templates/authopenid/signup_with_password.html:4 +msgid "Signup" +msgstr "" -#: skins/default/templates/authopenid/changeemail.html:76 -#, python-format -msgid "email key not sent %(email)s change email here %(change_link)s" +#: skins/default/templates/authopenid/signup_with_password.html:10 +msgid "Please register by clicking on any of the icons below" msgstr "" -"Your current email address %(email)s has been " -"validated before so the new key was not sent. You can change email used for update subscriptions if necessary." -#: skins/default/templates/authopenid/complete.html:21 -#: skins/default/templates/authopenid/complete.html:24 +#: skins/default/templates/authopenid/signup_with_password.html:23 #, fuzzy -msgid "Registration" -msgstr "карма" +msgid "or create a new user name and password here" +msgstr "Молимо Вас да унесете корисничко име и шифру" -#: skins/default/templates/authopenid/complete.html:29 -#, python-format -msgid "register new %(provider)s account info, see %(gravatar_faq_url)s" +#: skins/default/templates/authopenid/signup_with_password.html:25 +msgid "Create login name and password" msgstr "" -"

        You are here for the first time with your %" -"(provider)s login. Please create your screen name " -"and save your email address. Saved email address will let " -"you subscribe for the updates on the most interesting " -"questions and will be used to create and retrieve your unique avatar image - " -"gravatar.

        " -#: skins/default/templates/authopenid/complete.html:32 -#, python-format -msgid "" -"%(username)s already exists, choose another name for \n" -" %(provider)s. Email is required too, see %" -"(gravatar_faq_url)s\n" -" " +#: skins/default/templates/authopenid/signup_with_password.html:26 +msgid "Traditional signup info" msgstr "" -"

        Oops... looks like screen name %(username)s is " -"already used in another account.

        Please choose another screen " -"name to use with your %(provider)s login. Also, a valid email address is " -"required on the Q&A forum. Your email is " -"used to create a unique gravatar image for your account. If you like, you can receive " -"updates on the interesting questions or entire forum by email. " -"Email addresses are never shown or otherwise shared with anybody else.

        " +"If you prefer, create your forum login name and " +"password here. However, please keep in mind that we also support " +"OpenID login method. With OpenID you can " +"simply reuse your external login (e.g. Gmail or AOL) without ever sharing " +"your login details with anyone and having to remember yet another password." -#: skins/default/templates/authopenid/complete.html:36 -#, python-format +#: skins/default/templates/authopenid/signup_with_password.html:44 msgid "" -"register new external %(provider)s account info, see %(gravatar_faq_url)s" +"Please read and type in the two words below to help us prevent automated " +"account creation." msgstr "" -"

        You are here for the first time with your %" -"(provider)s login.

        You can either keep your screen " -"name the same as your %(provider)s login name or choose some other " -"nickname.

        Also, please save a valid email address. " -"With the email you can subscribe for the updates on the " -"most interesting questions. Email address is also used to create and " -"retrieve your unique avatar image - gravatar.

        " -#: skins/default/templates/authopenid/complete.html:39 -#, python-format -msgid "register new Facebook connect account info, see %(gravatar_faq_url)s" +#: skins/default/templates/authopenid/signup_with_password.html:47 +msgid "Create Account" msgstr "" -"

        You are here for the first time with your " -"Facebook login. Please create your screen name and " -"save your email address. Saved email address will let you " -"subscribe for the updates on the most interesting questions " -"and will be used to create and retrieve your unique avatar image - gravatar.

        " -#: skins/default/templates/authopenid/complete.html:42 -msgid "This account already exists, please use another." +#: skins/default/templates/authopenid/signup_with_password.html:49 +msgid "or" +msgstr "или" + +#: skins/default/templates/authopenid/signup_with_password.html:50 +msgid "return to OpenID login" msgstr "" -#: skins/default/templates/authopenid/complete.html:61 -msgid "Screen name label" -msgstr "Screen Name (will be shown to others)" +#: skins/default/templates/avatar/add.html:3 +#, fuzzy +msgid "add avatar" +msgstr "Како да промените своју слику (gravatar) и шта је gravatar?" -#: skins/default/templates/authopenid/complete.html:68 -msgid "Email address label" -msgstr "" -"Email Address (will not be shared with " -"anyone, must be valid)" +#: skins/default/templates/avatar/add.html:5 +#, fuzzy +msgid "Change avatar" +msgstr "Промените ознаке" -#: skins/default/templates/authopenid/complete.html:74 -#: skins/default/templates/authopenid/signup_with_password.html:17 -msgid "receive updates motivational blurb" +#: skins/default/templates/avatar/add.html:6 +#: skins/default/templates/avatar/change.html:7 +msgid "Your current avatar: " msgstr "" -"Receive forum updates by email - this will help our " -"community grow and become more useful.
        By default Q&A forum sends up to one email digest per " -"week - only when there is anything new.
        If you like, please " -"adjust this now or any time later from your user account." -#: skins/default/templates/authopenid/complete.html:78 -#: skins/default/templates/authopenid/signup_with_password.html:21 -msgid "please select one of the options above" +#: skins/default/templates/avatar/add.html:9 +#: skins/default/templates/avatar/change.html:11 +msgid "You haven't uploaded an avatar yet. Please upload one now." msgstr "" -#: skins/default/templates/authopenid/complete.html:81 -msgid "Tag filter tool will be your right panel, once you log in." +#: skins/default/templates/avatar/add.html:13 +msgid "Upload New Image" msgstr "" -#: skins/default/templates/authopenid/complete.html:82 -msgid "create account" -msgstr "Signup" +#: skins/default/templates/avatar/change.html:4 +#, fuzzy +msgid "change avatar" +msgstr "промене су сачуване" -#: skins/default/templates/authopenid/confirm_email.txt:1 -msgid "Thank you for registering at our Q&A forum!" +#: skins/default/templates/avatar/change.html:17 +msgid "Choose new Default" msgstr "" -#: skins/default/templates/authopenid/confirm_email.txt:3 -msgid "Your account details are:" +#: skins/default/templates/avatar/change.html:22 +#, fuzzy +msgid "Upload" +msgstr "upload/" + +#: skins/default/templates/avatar/confirm_delete.html:3 +#, fuzzy +msgid "delete avatar" +msgstr "обрисан одговор" + +#: skins/default/templates/avatar/confirm_delete.html:5 +msgid "Please select the avatars that you would like to delete." msgstr "" -#: skins/default/templates/authopenid/confirm_email.txt:5 -msgid "Username:" -msgstr "Корисничко име:" +#: skins/default/templates/avatar/confirm_delete.html:7 +#, python-format +msgid "" +"You have no avatars to delete. Please upload one now." +msgstr "" -#: skins/default/templates/authopenid/confirm_email.txt:6 -msgid "Password:" -msgstr "Шифра:" +#: skins/default/templates/avatar/confirm_delete.html:13 +#, fuzzy +msgid "Delete These" +msgstr "обрисан одговор" -#: skins/default/templates/authopenid/confirm_email.txt:8 -msgid "Please sign in here:" +#: skins/default/templates/blocks/answer_edit_tips.html:3 +msgid "answer tips" +msgstr "Савети" + +#: skins/default/templates/blocks/answer_edit_tips.html:6 +msgid "please make your answer relevant to this community" msgstr "" -#: skins/default/templates/authopenid/confirm_email.txt:11 -#: skins/default/templates/authopenid/email_validation.txt:13 -msgid "" -"Sincerely,\n" -"Forum Administrator" +#: skins/default/templates/blocks/answer_edit_tips.html:9 +msgid "try to give an answer, rather than engage into a discussion" msgstr "" -"Sincerely,\n" -"Q&A Forum Administrator" -#: skins/default/templates/authopenid/email_validation.txt:1 -msgid "Greetings from the Q&A forum" -msgstr "Поздрав од П&О форума" +#: skins/default/templates/blocks/answer_edit_tips.html:12 +msgid "please try to provide details" +msgstr "" -#: skins/default/templates/authopenid/email_validation.txt:3 -msgid "To make use of the Forum, please follow the link below:" +#: skins/default/templates/blocks/answer_edit_tips.html:15 +#: skins/default/templates/blocks/question_edit_tips.html:11 +msgid "be clear and concise" +msgstr "будите јасни и кратки" + +#: skins/default/templates/blocks/answer_edit_tips.html:19 +#: skins/default/templates/blocks/question_edit_tips.html:15 +msgid "see frequently asked questions" +msgstr "погледајте често постављана питања" + +#: skins/default/templates/blocks/answer_edit_tips.html:25 +#: skins/default/templates/blocks/question_edit_tips.html:20 +msgid "Markdown tips" +msgstr "Markdown основе" + +#: skins/default/templates/blocks/answer_edit_tips.html:29 +#: skins/default/templates/blocks/question_edit_tips.html:24 +msgid "*italic*" msgstr "" -#: skins/default/templates/authopenid/email_validation.txt:7 -msgid "Following the link above will help us verify your email address." +#: skins/default/templates/blocks/answer_edit_tips.html:32 +#: skins/default/templates/blocks/question_edit_tips.html:27 +msgid "**bold**" msgstr "" -#: skins/default/templates/authopenid/email_validation.txt:9 +#: skins/default/templates/blocks/answer_edit_tips.html:36 +#: skins/default/templates/blocks/question_edit_tips.html:31 +#, fuzzy +msgid "*italic* or _italic_" +msgstr "*укошено* или _укошено_" + +#: skins/default/templates/blocks/answer_edit_tips.html:39 +#: skins/default/templates/blocks/question_edit_tips.html:34 +msgid "**bold** or __bold__" +msgstr "**подебљано** или __подебљано__" + +#: skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/question_edit_tips.html:38 +msgid "link" +msgstr "линк" + +#: skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:38 +#: skins/default/templates/blocks/question_edit_tips.html:43 +msgid "text" +msgstr "текст" + +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:43 +msgid "image" +msgstr "слика" + +#: skins/default/templates/blocks/answer_edit_tips.html:51 +#: skins/default/templates/blocks/question_edit_tips.html:47 +msgid "numbered list:" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:56 +#: skins/default/templates/blocks/question_edit_tips.html:52 +msgid "basic HTML tags are also supported" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:60 +#: skins/default/templates/blocks/question_edit_tips.html:56 +msgid "learn more about Markdown" +msgstr "" + +#: skins/default/templates/blocks/ask_form.html:6 +msgid "login to post question info" +msgstr "" +"You are welcome to start submitting your question " +"anonymously. 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/blocks/ask_form.html:10 +#, python-format 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" +"must have valid %(email)s to post, \n" +" see %(email_validation_faq_url)s\n" +" " msgstr "" +"Looks like your email address, %(email)s has not " +"yet been validated. To post messages you must verify your email, " +"please see more details here." +"
        You can submit your question now and validate email after that. Your " +"question will saved as pending meanwhile. " -#: skins/default/templates/authopenid/signin.html:3 -msgid "User login" -msgstr "User login" +#: skins/default/templates/blocks/ask_form.html:34 +#, fuzzy +msgid "Login/signup to post your question" +msgstr "Login/Signup to Post" -#: skins/default/templates/authopenid/signin.html:11 -#, fuzzy, python-format +#: skins/default/templates/blocks/ask_form.html:36 +msgid "Ask your question" +msgstr "Поставите Ваше Питање" + +#: skins/default/templates/blocks/bottom_scripts.html:7 +#, python-format msgid "" -"\n" -" Your answer to %(title)s %(summary)s will be posted once you log in\n" -" " +"Please note: %(app_name)s requires javascript to work properly, please " +"enable javascript in your browser, here is how" msgstr "" -"\n" -"Your answer to \"%(title)s %(summary)s...\" is saved and will be " -"posted once you log in." -#: skins/default/templates/authopenid/signin.html:18 +#: skins/default/templates/blocks/editor_data.html:5 +#, 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)d карактера" +msgstr[1] "свака ознака мора имати мање од %(max_chars)d карактера" +msgstr[2] "" + +#: skins/default/templates/blocks/editor_data.html:7 +#, fuzzy, python-format +msgid "please use %(tag_count)s tag" +msgid_plural "please use %(tag_count)s tags or less" +msgstr[0] "користите %(tag_count)d ознаку или мање" +msgstr[1] "користите %(tag_count)d ознака или мање" +msgstr[2] "" + +#: skins/default/templates/blocks/editor_data.html:8 #, fuzzy, python-format msgid "" -"Your question \n" -" %(title)s %(summary)s will be posted once you log in\n" -" " +"please use up to %(tag_count)s tags, less than %(max_chars)s characters each" +msgstr "до 5 ознака, мање од 20 карактера у свакој" + +#: skins/default/templates/blocks/footer.html:4 +#: skins/default/templates/blocks/header_meta_links.html:12 +msgid "about" +msgstr "о нама" + +#: skins/default/templates/blocks/footer.html:6 +msgid "privacy policy" +msgstr "политика приватности" + +#: skins/default/templates/blocks/footer.html:15 +msgid "give feedback" +msgstr "сугестије и žалбе" + +#: skins/default/templates/blocks/footer.html:41 +#, python-format +msgid "Content on this site is licensed under a %(license)s" msgstr "" -"Your question \"%(title)s %(summary)s...\" is saved and will be " -"posted once you log in." -#: skins/default/templates/authopenid/signin.html:25 -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." +#: skins/default/templates/blocks/header.html:8 +msgid "back to home page" +msgstr "назад на почетну страну" + +#: skins/default/templates/blocks/header.html:9 +#, python-format +msgid "%(site)s logo" msgstr "" -#: skins/default/templates/authopenid/signin.html:28 -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." +#: skins/default/templates/blocks/header.html:20 +msgid "questions" +msgstr "питања" + +#: skins/default/templates/blocks/header.html:30 +msgid "users" +msgstr "корисници" + +#: skins/default/templates/blocks/header.html:35 +msgid "badges" +msgstr "беџеви" + +#: skins/default/templates/blocks/header.html:40 +msgid "ask a question" +msgstr "поставите питање" + +#: skins/default/templates/blocks/header_meta_links.html:8 +msgid "logout" +msgstr "одјава" + +#: skins/default/templates/blocks/header_meta_links.html:10 +msgid "login" +msgstr "пријава" + +#: skins/default/templates/blocks/header_meta_links.html:15 +#, fuzzy +msgid "settings" +msgstr "ресетујте ознаке" + +#: skins/default/templates/blocks/input_bar.html:34 +msgid "search" msgstr "" -#: skins/default/templates/authopenid/signin.html:30 -msgid "" -"Please add a more permanent login method by clicking one of the icons below, " -"to avoid logging in via email each time." +#: skins/default/templates/blocks/question_edit_tips.html:3 +msgid "question tips" +msgstr "Савети" + +#: skins/default/templates/blocks/question_edit_tips.html:5 +msgid "please ask a relevant question" +msgstr "ask a question interesting to this community" + +#: skins/default/templates/blocks/question_edit_tips.html:8 +msgid "please try provide enough details" +msgstr "provide enough details" + +#: skins/default/templates/blocks/tag_selector.html:4 +msgid "Interesting tags" +msgstr "Занимљиве ознаке" + +#: skins/default/templates/blocks/tag_selector.html:18 +#: skins/default/templates/blocks/tag_selector.html:34 +#: skins/default/templates/user_profile/user_moderate.html:40 +msgid "Add" +msgstr "Додајте" + +#: skins/default/templates/blocks/tag_selector.html:20 +msgid "Ignored tags" +msgstr "Игнорисане ознаке" + +#: skins/default/templates/blocks/tag_selector.html:36 +msgid "Display tag filter" +msgstr "" + +#: skins/default/templates/main_page/content.html:13 +msgid "Did not find what you were looking for?" +msgstr "" + +#: skins/default/templates/main_page/content.html:14 +msgid "Please, post your question!" +msgstr "" + +#: skins/default/templates/main_page/headline.html:7 +msgid "subscribe to the questions feed" +msgstr "" + +#: skins/default/templates/main_page/headline.html:8 +msgid "rss feed" +msgstr "" + +#: skins/default/templates/main_page/headline.html:12 views/readers.py:131 +#, fuzzy, python-format +msgid "%(q_num)s question, tagged" +msgid_plural "%(q_num)s questions, tagged" +msgstr[0] "Једно питање" +msgstr[1] "%(q_num)s питања" +msgstr[2] "" + +#: skins/default/templates/main_page/headline.html:14 views/readers.py:139 +#, fuzzy, python-format +msgid "%(q_num)s question" +msgid_plural "%(q_num)s questions" +msgstr[0] "Једно питање" +msgstr[1] "%(q_num)s питања" +msgstr[2] "" + +#: skins/default/templates/main_page/headline.html:17 +#, python-format +msgid "with %(author_name)s's contributions" +msgstr "" + +#: skins/default/templates/main_page/headline.html:28 +msgid "Search tips:" +msgstr "Савети за претраживање:" + +#: skins/default/templates/main_page/headline.html:31 +msgid "reset author" +msgstr "ресетујте аутора" + +#: skins/default/templates/main_page/headline.html:33 +#: skins/default/templates/main_page/headline.html:36 +#: 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:34 +msgid "reset tags" +msgstr "ресетујте ознаке" + +#: skins/default/templates/main_page/headline.html:37 +#: skins/default/templates/main_page/headline.html:40 +msgid "start over" +msgstr "крените изпочетка" + +#: skins/default/templates/main_page/headline.html:42 +msgid " - to expand, or dig in by adding more tags and revising the query." +msgstr "" + +#: skins/default/templates/main_page/headline.html:45 +msgid "Search tip:" +msgstr "Савет за претраживање:" + +#: skins/default/templates/main_page/headline.html:45 +msgid "add tags and a query to focus your search" +msgstr "додајте ознаке и упит да сузите претрагу" + +#: skins/default/templates/main_page/nothing_found.html:4 +msgid "There are no unanswered questions here" +msgstr "" + +#: skins/default/templates/main_page/nothing_found.html:7 +#, fuzzy +msgid "No questions here. " +msgstr "Овде нема омиљених питања." + +#: skins/default/templates/main_page/nothing_found.html:8 +msgid "Please star (bookmark) some questions or follow some users." +msgstr "" + +#: skins/default/templates/main_page/nothing_found.html:13 +msgid "You can expand your search by " +msgstr "" + +#: skins/default/templates/main_page/nothing_found.html:16 +msgid "resetting author" +msgstr "" + +#: skins/default/templates/main_page/nothing_found.html:19 +msgid "resetting tags" +msgstr "" + +#: skins/default/templates/main_page/nothing_found.html:22 +#: skins/default/templates/main_page/nothing_found.html:25 +msgid "starting over" +msgstr "" + +#: skins/default/templates/main_page/nothing_found.html:30 +msgid "Please always feel free to ask your question!" +msgstr "" + +#: skins/default/templates/main_page/sidebar.html:8 +#, fuzzy +msgid "Contributors" +msgstr "Сарадници" + +#: skins/default/templates/main_page/sidebar.html:25 +msgid "Related tags" +msgstr "Ознаке" + +#: skins/default/templates/main_page/tab_bar.html:5 +msgid "In:" +msgstr "Прикажи:" + +#: skins/default/templates/main_page/tab_bar.html:14 +msgid "see unanswered questions" +msgstr "погледајте питања без одговора" + +#: skins/default/templates/main_page/tab_bar.html:20 +#, fuzzy +msgid "see your followed questions" +msgstr "погледајте Ваша омиљена питања" + +#: skins/default/templates/main_page/tab_bar.html:21 +msgid "followed" +msgstr "" + +#: skins/default/templates/main_page/tab_bar.html:25 +msgid "Sort by:" +msgstr "Сортирај:" + +#: skins/default/templates/user_profile/user.html:13 +#, fuzzy, python-format +msgid "%(username)s's profile" +msgstr "кориснички профил" + +#: skins/default/templates/user_profile/user_edit.html:4 +msgid "Edit user profile" +msgstr "Измените корисников профил" + +#: skins/default/templates/user_profile/user_edit.html:7 +msgid "edit profile" +msgstr "измените профил" + +#: skins/default/templates/user_profile/user_edit.html:17 +#: skins/default/templates/user_profile/user_info.html:15 +msgid "change picture" +msgstr "промените слику" + +#: skins/default/templates/user_profile/user_edit.html:20 +msgid "Registered user" +msgstr "Регистровани корисник" + +#: skins/default/templates/user_profile/user_edit.html:27 +msgid "Screen Name" +msgstr "Корисничко, (видљиво) име" + +#: skins/default/templates/user_profile/user_edit.html:83 +#: skins/default/templates/user_profile/user_email_subscriptions.html:21 +msgid "Update" +msgstr "Ажурирајте" + +#: skins/default/templates/user_profile/user_email_subscriptions.html:4 +#: skins/default/templates/user_profile/user_tabs.html:42 +#, fuzzy +msgid "subscriptions" +msgstr "питања" + +#: skins/default/templates/user_profile/user_email_subscriptions.html:7 +msgid "Email subscription settings" msgstr "" -#: skins/default/templates/authopenid/signin.html:34 -msgid "" -"Click on one of the icons below to add a new login method or re-validate an " -"existing one." -msgstr "" +#: skins/default/templates/user_profile/user_email_subscriptions.html:8 +msgid "email subscription settings info" +msgstr "" +"Adjust frequency of email updates. Receive " +"updates on interesting questions by email,
        help the community by answering questions of your colleagues. If you do not wish to " +"receive emails - select 'no email' on all items below.
        Updates are only " +"sent when there is any new activity on selected items." + +#: skins/default/templates/user_profile/user_email_subscriptions.html:22 +msgid "Stop sending email" +msgstr "Stop Email" + +#: skins/default/templates/user_profile/user_favorites.html:4 +#: skins/default/templates/user_profile/user_tabs.html:27 +#, fuzzy +msgid "followed questions" +msgstr "Сва питања" + +#: skins/default/templates/user_profile/user_inbox.html:18 +#: skins/default/templates/user_profile/user_tabs.html:12 +msgid "inbox" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:34 +#, fuzzy +msgid "Sections:" +msgstr "питања" + +#: skins/default/templates/user_profile/user_inbox.html:38 +#, python-format +msgid "forum responses (%(re_count)s)" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:43 +#, python-format +msgid "flagged items (%(flag_count)s)" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:49 +#, fuzzy +msgid "select:" +msgstr "избриши" + +#: skins/default/templates/user_profile/user_inbox.html:51 +#, fuzzy +msgid "seen" +msgstr "последњи пут виђен" + +#: skins/default/templates/user_profile/user_inbox.html:52 +#, fuzzy +msgid "new" +msgstr "најновија" + +#: skins/default/templates/user_profile/user_inbox.html:53 +#, fuzzy +msgid "none" +msgstr "бронза" + +#: skins/default/templates/user_profile/user_inbox.html:54 +#, fuzzy +msgid "mark as seen" +msgstr "последњи пут виђен" + +#: skins/default/templates/user_profile/user_inbox.html:55 +#, fuzzy +msgid "mark as new" +msgstr "означен најбољи одговор" -#: skins/default/templates/authopenid/signin.html:36 -msgid "" -"You don't have a method to log in right now, please add one or more by " -"clicking any of the icons below." +#: skins/default/templates/user_profile/user_inbox.html:56 +msgid "dismiss" msgstr "" -#: skins/default/templates/authopenid/signin.html:39 -msgid "" -"Please check your email and visit the enclosed link to re-connect to your " -"account" +#: skins/default/templates/user_profile/user_info.html:19 +msgid "remove" msgstr "" -#: skins/default/templates/authopenid/signin.html:86 -msgid "Please enter your user name, then sign in" -msgstr "" +#: skins/default/templates/user_profile/user_info.html:36 +msgid "update profile" +msgstr "ажурирајте профил" -#: skins/default/templates/authopenid/signin.html:87 -#: skins/default/templates/authopenid/signin.html:109 -msgid "(or select another login method above)" +#: skins/default/templates/user_profile/user_info.html:40 +msgid "manage login methods" msgstr "" -#: skins/default/templates/authopenid/signin.html:89 -#, fuzzy -msgid "Sign in" -msgstr "пријава/" +#: skins/default/templates/user_profile/user_info.html:53 +msgid "real name" +msgstr "право име" -#: skins/default/templates/authopenid/signin.html:107 -#, fuzzy -msgid "Please enter your user name and password, then sign in" -msgstr "Молимо Вас да унесете корисничко име и шифру" +#: skins/default/templates/user_profile/user_info.html:58 +msgid "member for" +msgstr "члан од" -#: skins/default/templates/authopenid/signin.html:111 -msgid "Login failed, please try again" -msgstr "" +#: skins/default/templates/user_profile/user_info.html:63 +msgid "last seen" +msgstr "последњи пут виђен" -#: skins/default/templates/authopenid/signin.html:114 -msgid "Login name" -msgstr "" +#: skins/default/templates/user_profile/user_info.html:69 +msgid "user website" +msgstr "корисников веб сајт" -#: skins/default/templates/authopenid/signin.html:118 -msgid "Password" -msgstr "" +#: skins/default/templates/user_profile/user_info.html:75 +msgid "location" +msgstr "локација" -#: skins/default/templates/authopenid/signin.html:122 -msgid "Login" -msgstr "Пријава" +#: skins/default/templates/user_profile/user_info.html:82 +msgid "age" +msgstr "старост" -#: skins/default/templates/authopenid/signin.html:129 -msgid "To change your password - please enter the new one twice, then submit" -msgstr "" +#: skins/default/templates/user_profile/user_info.html:83 +msgid "age unit" +msgstr "година" -#: skins/default/templates/authopenid/signin.html:132 -#, fuzzy -msgid "New password" -msgstr "Нова шифра је креирана" +#: skins/default/templates/user_profile/user_info.html:90 +msgid "todays unused votes" +msgstr "данашњи неискоришћени гласови" + +#: skins/default/templates/user_profile/user_info.html:91 +msgid "votes left" +msgstr "преостало гласова" -#: skins/default/templates/authopenid/signin.html:137 +#: skins/default/templates/user_profile/user_moderate.html:4 +#: skins/default/templates/user_profile/user_tabs.html:48 #, fuzzy -msgid "Please, retype" -msgstr "молимo Вас, поново откуцајте шифру" +msgid "moderation" +msgstr "Локација" -#: skins/default/templates/authopenid/signin.html:156 -msgid "Here are your current login methods" +#: skins/default/templates/user_profile/user_moderate.html:8 +#, python-format +msgid "%(username)s's current status is \"%(status)s\"" msgstr "" -#: skins/default/templates/authopenid/signin.html:160 -msgid "provider" +#: skins/default/templates/user_profile/user_moderate.html:11 +msgid "User status changed" msgstr "" -#: skins/default/templates/authopenid/signin.html:161 +#: skins/default/templates/user_profile/user_moderate.html:20 #, fuzzy -msgid "last used" -msgstr "последњи пут виђен" - -#: skins/default/templates/authopenid/signin.html:162 -msgid "delete, if you like" -msgstr "" +msgid "Save" +msgstr "Сачувајте промену" -#: skins/default/templates/authopenid/signin.html:187 -msgid "Still have trouble signing in?" +#: skins/default/templates/user_profile/user_moderate.html:26 +#, python-format +msgid "Your current reputation is %(reputation)s points" msgstr "" -#: skins/default/templates/authopenid/signin.html:192 -msgid "Please, enter your email address below and obtain a new key" +#: skins/default/templates/user_profile/user_moderate.html:28 +#, python-format +msgid "User's current reputation is %(reputation)s points" msgstr "" -#: skins/default/templates/authopenid/signin.html:194 -msgid "Please, enter your email address below to recover your account" -msgstr "" +#: skins/default/templates/user_profile/user_moderate.html:32 +#, fuzzy +msgid "User reputation changed" +msgstr "корисникова карма" -#: skins/default/templates/authopenid/signin.html:197 -msgid "recover your account via email" +#: skins/default/templates/user_profile/user_moderate.html:39 +msgid "Subtract" msgstr "" -#: skins/default/templates/authopenid/signin.html:208 -msgid "Send a new recovery key" +#: skins/default/templates/user_profile/user_moderate.html:44 +#, python-format +msgid "Send message to %(username)s" msgstr "" -#: skins/default/templates/authopenid/signin.html:210 -msgid "Recover your account via email" +#: skins/default/templates/user_profile/user_moderate.html:45 +msgid "" +"An email will be sent to the user with 'reply-to' field set to your email " +"address. Please make sure that your address is entered correctly." msgstr "" -#: skins/default/templates/authopenid/signin.html:221 -msgid "Why use OpenID?" -msgstr "Зашто користити OpenID?" - -#: skins/default/templates/authopenid/signin.html:224 -msgid "with openid it is easier" -msgstr "With the OpenID you don't need to create new username and password." +#: skins/default/templates/user_profile/user_moderate.html:47 +#, fuzzy +msgid "Message sent" +msgstr "поруке/" -#: skins/default/templates/authopenid/signin.html:227 -msgid "reuse openid" -msgstr "You can safely re-use the same login for all OpenID-enabled websites." +#: skins/default/templates/user_profile/user_moderate.html:65 +#, fuzzy +msgid "Send message" +msgstr "поруке/" -#: skins/default/templates/authopenid/signin.html:230 -msgid "openid is widely adopted" +#: skins/default/templates/user_profile/user_moderate.html:75 +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 "" -"There are > 160,000,000 OpenID account in use. Over 10,000 sites are OpenID-" -"enabled." - -#: skins/default/templates/authopenid/signin.html:233 -msgid "openid is supported open standard" -msgstr "OpenID is based on an open standard, supported by many organizations." -#: skins/default/templates/authopenid/signin.html:237 -msgid "Find out more" -msgstr "Сазнајте више" +#: skins/default/templates/user_profile/user_moderate.html:78 +msgid "" +"Moderators have the same privileges as administrators, but cannot add or " +"remove user status of 'moderator' or 'administrator'." +msgstr "" -#: skins/default/templates/authopenid/signin.html:238 -msgid "Get OpenID" +#: skins/default/templates/user_profile/user_moderate.html:81 +msgid "'Approved' status means the same as regular user." msgstr "" -#: skins/default/templates/authopenid/signup_with_password.html:3 -msgid "Signup" +#: skins/default/templates/user_profile/user_moderate.html:84 +#, fuzzy +msgid "Suspended users can only edit or delete their own 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." -#: skins/default/templates/authopenid/signup_with_password.html:6 -msgid "Create login name and password" +#: skins/default/templates/user_profile/user_moderate.html:87 +msgid "" +"Blocked users can only login and send feedback to the site administrators." msgstr "" -#: skins/default/templates/authopenid/signup_with_password.html:8 -msgid "Traditional signup info" +#: skins/default/templates/user_profile/user_network.html:5 +#: skins/default/templates/user_profile/user_tabs.html:18 +msgid "network" msgstr "" -"If you prefer, create your forum login name and " -"password here. However, please keep in mind that we also support " -"OpenID login method. With OpenID you can " -"simply reuse your external login (e.g. Gmail or AOL) without ever sharing " -"your login details with anyone and having to remember yet another password." -#: skins/default/templates/authopenid/signup_with_password.html:24 +#: 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[1] "" +msgstr[2] "" + +#: 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[1] "" +msgstr[2] "" + +#: skins/default/templates/user_profile/user_network.html:19 msgid "" -"Please read and type in the two words below to help us prevent automated " -"account creation." +"Your network is empty. Would you like to follow someone? - Just visit their " +"profiles and click \"follow\"" msgstr "" -#: skins/default/templates/authopenid/signup_with_password.html:26 -msgid "Create Account" -msgstr "" +#: skins/default/templates/user_profile/user_network.html:21 +#, fuzzy, python-format +msgid "%(username)s's network is empty" +msgstr "кориснички профил" -#: skins/default/templates/authopenid/signup_with_password.html:27 -msgid "or" -msgstr "или" +#: skins/default/templates/user_profile/user_recent.html:4 +#: skins/default/templates/user_profile/user_tabs.html:31 +#, fuzzy +msgid "activity" +msgstr "активна" -#: skins/default/templates/authopenid/signup_with_password.html:28 -msgid "return to OpenID login" +#: skins/default/templates/user_profile/user_recent.html:21 +#: skins/default/templates/user_profile/user_recent.html:28 +msgid "source" msgstr "" -#: skins/default/templates/unused/email_base.html:8 -msgid "home" +#: skins/default/templates/user_profile/user_reputation.html:4 +msgid "karma" msgstr "" -#: skins/default/templates/unused/notarobot.html:3 -msgid "Please prove that you are a Human Being" -msgstr "" +#: skins/default/templates/user_profile/user_reputation.html:11 +msgid "Your karma change log." +msgstr "Евиденција промене Ваше карме." -#: skins/default/templates/unused/notarobot.html:10 -msgid "I am a Human Being" +#: skins/default/templates/user_profile/user_reputation.html:13 +#, python-format +msgid "%(user_name)s's karma change log" msgstr "" -#: skins/default/templates/unused/question_counter_widget.html:78 -msgid "Please decide if you like this question or not by voting" -msgstr "" +#: skins/default/templates/user_profile/user_stats.html:5 +#: skins/default/templates/user_profile/user_tabs.html:7 +msgid "overview" +msgstr "преглед" -#: skins/default/templates/unused/question_counter_widget.html:84 -#, fuzzy -msgid "" -"\n" -" vote\n" -" " -msgid_plural "" -"\n" -" votes\n" -" " +#: skins/default/templates/user_profile/user_stats.html:11 +#, python-format +msgid "%(counter)s Question" +msgid_plural "%(counter)s Questions" msgstr[0] "" -"\n" -"глас\n" -" " msgstr[1] "" -"\n" -"гласова" msgstr[2] "" -#: skins/default/templates/unused/question_counter_widget.html:93 -#: skins/default/templates/unused/question_list.html:23 -#: skins/default/templates/unused/questions_ajax.html:27 -msgid "this answer has been accepted to be correct" -msgstr "" - -#: skins/default/templates/unused/question_counter_widget.html:99 -#, fuzzy -msgid "" -"\n" -" answer \n" -" " -msgid_plural "" -"\n" -" answers \n" -" " +#: skins/default/templates/user_profile/user_stats.html:16 +#, python-format +msgid "%(counter)s Answer" +msgid_plural "%(counter)s Answers" msgstr[0] "" -"\n" -"одговор\n" -" " msgstr[1] "" -"\n" -"одговора" msgstr[2] "" -#: skins/default/templates/unused/question_counter_widget.html:111 -#, fuzzy -msgid "" -"\n" -" view\n" -" " -msgid_plural "" -"\n" -" views\n" -" " +#: 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)" +msgid_plural "the answer has been commented %(comment_count)s times" msgstr[0] "" -"\n" -"pregled" msgstr[1] "" -"\n" -"pregleda" msgstr[2] "" -#: skins/default/templates/unused/question_list.html:15 -#, fuzzy -msgid "" -"\n" -" vote\n" -" " -msgid_plural "" -"\n" -" votes\n" -" " +#: skins/default/templates/user_profile/user_stats.html:44 +#, python-format +msgid "%(cnt)s Vote" +msgid_plural "%(cnt)s Votes " msgstr[0] "" -"\n" -"глас\n" -" " msgstr[1] "" -"\n" -"гласова" msgstr[2] "" -#: skins/default/templates/unused/question_list.html:35 -#, fuzzy -msgid "" -"\n" -" answer \n" -" " -msgid_plural "" -"\n" -" answers \n" -" " +#: skins/default/templates/user_profile/user_stats.html:50 +msgid "thumb up" +msgstr "палац горе" + +#: skins/default/templates/user_profile/user_stats.html:51 +msgid "user has voted up this many times" +msgstr "" + +#: skins/default/templates/user_profile/user_stats.html:54 +msgid "thumb down" +msgstr "палац доле" + +#: skins/default/templates/user_profile/user_stats.html:55 +msgid "user voted down this many times" +msgstr "" + +#: skins/default/templates/user_profile/user_stats.html:63 +#, python-format +msgid "%(counter)s Tag" +msgid_plural "%(counter)s Tags" msgstr[0] "" -"\n" -"одговор\n" -" " msgstr[1] "" -"\n" -"одговора" msgstr[2] "" -#: skins/default/templates/unused/question_list.html:47 -#, fuzzy -msgid "" -"\n" -" view\n" -" " -msgid_plural "" -"\n" -" views\n" -" " +#: skins/default/templates/user_profile/user_stats.html:99 +#, python-format +msgid "%(counter)s Badge" +msgid_plural "%(counter)s Badges" msgstr[0] "" -"\n" -"pregled" msgstr[1] "" -"\n" -"pregleda" msgstr[2] "" -#: skins/default/templates/unused/question_summary_list_roll.html:13 -msgid "answers" -msgstr "одговори" +#: skins/default/templates/user_profile/user_stats.html:122 +#, fuzzy +msgid "Answer to:" +msgstr "Савети" -#: skins/default/templates/unused/question_summary_list_roll.html:14 -msgid "votes" +#: skins/default/templates/user_profile/user_tabs.html:5 +msgid "User profile" msgstr "" -#: skins/default/templates/unused/question_summary_list_roll.html:15 -msgid "views" +#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:772 +msgid "comments and answers to others questions" msgstr "" -#: templatetags/extra_filters.py:168 templatetags/extra_filters_jinja.py:234 -msgid "no items in counter" -msgstr "без" +#: skins/default/templates/user_profile/user_tabs.html:16 +msgid "followers and followed users" +msgstr "" -#: templatetags/extra_tags.py:155 views/readers.py:187 -#, python-format -msgid "%(badge_count)d %(badge_level)s badge" -msgid_plural "%(badge_count)d %(badge_level)s badges" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: skins/default/templates/user_profile/user_tabs.html:21 +msgid "graph of user reputation" +msgstr "Graph of user karma" -#: templatetags/extra_tags.py:178 templatetags/extra_tags.py:225 -#: templatetags/extra_tags.py:229 -msgid "reputation points" -msgstr "карма" +#: skins/default/templates/user_profile/user_tabs.html:23 +msgid "reputation history" +msgstr "karma history" -#: templatetags/extra_tags.py:221 -#, python-format -msgid "your karma is %(reputation)s" +#: 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:847 +msgid "user vote record" msgstr "" -#: templatetags/extra_tags.py:237 +#: skins/default/templates/user_profile/user_tabs.html:36 +msgid "casted votes" +msgstr "votes" + +#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:960 +msgid "email subscription settings" +msgstr "" + +#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:224 #, fuzzy -msgid "badges: " -msgstr "беџеви" +msgid "moderate this user" +msgstr "Модеришите овог корисника" + +#: skins/default/templates/user_profile/user_votes.html:4 +msgid "votes" +msgstr "" -#: utils/decorators.py:82 views/commands.py:132 views/commands.py:149 +#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:240 +msgid "no items in counter" +msgstr "без" + +#: utils/decorators.py:90 views/commands.py:112 views/commands.py:132 msgid "Oops, apologies - there was some error" msgstr "" +#: utils/decorators.py:109 +#, fuzzy +msgid "Please login to post" +msgstr "User login" + +#: utils/decorators.py:205 +msgid "Spam was detected on your post, sorry for if this is a mistake" +msgstr "" + #: utils/forms.py:32 msgid "this field is required" msgstr "ово поље је обавезно" @@ -5365,20 +6312,15 @@ msgstr "молимo Вас, поново откуцајте шифру" msgid "sorry, entered passwords did not match, please try again" msgstr "унета шифра не одговара, покушајте поново" -#: utils/functions.py:63 -#, python-format -msgid "on %(date)s" -msgstr "" - -#: utils/functions.py:67 +#: utils/functions.py:74 msgid "2 days ago" msgstr "пре 2 дана" -#: utils/functions.py:69 +#: utils/functions.py:76 msgid "yesterday" msgstr "јуче" -#: utils/functions.py:71 +#: utils/functions.py:79 #, fuzzy, python-format msgid "%(hr)d hour ago" msgid_plural "%(hr)d hours ago" @@ -5386,7 +6328,7 @@ msgstr[0] "пре %(hr)d сат" msgstr[1] "пре %(hr)d сати" msgstr[2] "" -#: utils/functions.py:73 +#: utils/functions.py:85 #, fuzzy, python-format msgid "%(min)d min ago" msgid_plural "%(min)d mins ago" @@ -5394,7 +6336,19 @@ msgstr[0] "пре %(min)d минут" msgstr[1] "пре %(min)d минута" msgstr[2] "" -#: views/commands.py:42 +#: views/avatar_views.py:99 +msgid "Successfully uploaded a new avatar." +msgstr "" + +#: views/avatar_views.py:140 +msgid "Successfully updated your avatar." +msgstr "" + +#: views/avatar_views.py:180 +msgid "Successfully deleted the requested avatars." +msgstr "" + +#: views/commands.py:39 #, fuzzy msgid "anonymous users cannot vote" msgstr "" @@ -5402,69 +6356,89 @@ msgstr "" "until this issue is resolved. You can, however edit your existing posts. " "Please contact the forum administrator to reach a resolution." -#: views/commands.py:62 +#: views/commands.py:59 msgid "Sorry you ran out of votes for today" msgstr "" -#: views/commands.py:68 +#: views/commands.py:65 #, python-format msgid "You have %(votes_left)s votes left for today" msgstr "" -#: views/commands.py:139 +#: views/commands.py:122 msgid "Sorry, but anonymous users cannot access the inbox" msgstr "" -#: views/commands.py:209 +#: views/commands.py:192 msgid "Sorry, something is not right here..." msgstr "" -#: views/commands.py:224 +#: views/commands.py:207 msgid "Sorry, but anonymous users cannot accept answers" msgstr "" -#: views/commands.py:305 +#: views/commands.py:288 #, python-format msgid "subscription saved, %(email)s needs validation, see %(details_url)s" msgstr "" "Ваша претплата је сачувана, али е-пошту %(email)s је потребно проверити, " "погледајте
        овде за више информација" -#: views/commands.py:313 +#: views/commands.py:295 msgid "email update frequency has been set to daily" msgstr "" -#: views/commands.py:371 +#: views/commands.py:400 +#, python-format +msgid "Tag subscription was canceled (undo)." +msgstr "" + +#: views/commands.py:409 +#, python-format +msgid "Please sign in to subscribe for: %(tags)s" +msgstr "" + +#: views/commands.py:542 #, fuzzy -msgid "Bad request" -msgstr "у суштини није питање" +msgid "Please sign in to vote" +msgstr "са најмање гласова" -#: views/meta.py:58 +#: views/meta.py:83 msgid "Q&A forum feedback" msgstr "П&О форум сугестије" -#: views/meta.py:59 +#: views/meta.py:84 msgid "Thanks for the feedback!" msgstr "Хвала на сугестији!" -#: views/meta.py:69 +#: views/meta.py:92 msgid "We look forward to hearing your feedback! Please, give it next time :)" msgstr "" -#: views/readers.py:432 -msgid "Sorry, this question has been deleted and is no longer accessible" +#: views/readers.py:177 +#, python-format +msgid "%(badge_count)d %(badge_level)s badge" +msgid_plural "%(badge_count)d %(badge_level)s badges" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: views/readers.py:441 +msgid "" +"Sorry, the comment you are looking for has been deleted and is no longer " +"accessible" msgstr "" -#: views/users.py:217 +#: views/users.py:225 #, fuzzy msgid "moderate user" msgstr "moderate-user/" -#: views/users.py:401 +#: views/users.py:380 msgid "user profile" msgstr "кориснички профил" -#: views/users.py:402 +#: views/users.py:381 msgid "user profile overview" msgstr "преглед корисниковог профила" @@ -5476,71 +6450,86 @@ msgstr "недавне активности корисника" msgid "profile - recent activity" msgstr "профил - недавне активности" -#: views/users.py:754 +#: views/users.py:773 msgid "profile - responses" msgstr "профил - одговори" -#: views/users.py:819 +#: views/users.py:848 msgid "profile - votes" msgstr "профил - гласови" -#: views/users.py:857 +#: views/users.py:883 msgid "user reputation in the community" msgstr "корисникова карма" -#: views/users.py:858 +#: views/users.py:884 msgid "profile - user reputation" msgstr "профил - корисникова карма" -#: views/users.py:886 +#: views/users.py:911 msgid "users favorite questions" msgstr "омиљена питања корисника" -#: views/users.py:887 +#: views/users.py:912 msgid "profile - favorite questions" msgstr "профил - омиљена питања" -#: views/users.py:907 views/users.py:911 +#: views/users.py:932 views/users.py:936 msgid "changes saved" msgstr "промене су сачуване" -#: views/users.py:917 +#: views/users.py:942 msgid "email updates canceled" msgstr "" -#: views/users.py:929 +#: views/users.py:961 msgid "profile - email subscriptions" msgstr "профил - претплата е-поштом" -#: views/writers.py:56 +#: views/writers.py:58 msgid "Sorry, anonymous users cannot upload files" msgstr "" -#: views/writers.py:65 +#: views/writers.py:68 #, python-format msgid "allowed file types are '%(file_types)s'" msgstr "дозвољени типови датотека су '%(file_types)s'" -#: views/writers.py:88 +#: views/writers.py:91 #, fuzzy, python-format msgid "maximum upload file size is %(file_size)sK" msgstr "максимална величина датотеке за слање на сервер је %sK" -#: views/writers.py:96 +#: views/writers.py:99 #, fuzzy msgid "Error uploading file. Please contact the site administrator. Thank you." msgstr "" "Грешка при слању датотеке. Молимо Вас да контактирате администратора сајта. " "Хвала Вам. %s" -#: views/writers.py:452 +#: views/writers.py:191 +#, fuzzy +msgid "Please log in to ask questions" +msgstr "" +"You are welcome to start submitting your question " +"anonymously. 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/writers.py:492 +#, fuzzy +msgid "Please log in to answer questions" +msgstr "погледајте питања без одговора" + +#: views/writers.py:598 #, python-format msgid "" "Sorry, you appear to be logged out and cannot post comments. Please sign in." msgstr "" -#: views/writers.py:497 +#: views/writers.py:646 #, fuzzy msgid "Sorry, anonymous users cannot edit comments" msgstr "" @@ -5548,17 +6537,323 @@ 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:505 +#: views/writers.py:654 #, python-format msgid "" "Sorry, you appear to be logged out and cannot delete comments. Please sign in." msgstr "" -#: views/writers.py:526 +#: views/writers.py:675 msgid "sorry, we seem to have some technical difficulties" msgstr "" +#~ msgid "community wiki" +#~ msgstr "вики" + +#~ msgid "Location" +#~ msgstr "Локација" + +#~ msgid "command/" +#~ msgstr "command/" + +#~ msgid "mark-tag/" +#~ msgstr "означи-ознаку/" + +#~ msgid "interesting/" +#~ msgstr "занимљиво/" + +#~ msgid "ignored/" +#~ msgstr "игнорисано/" + +#~ msgid "unmark-tag/" +#~ msgstr "unmark-tag/" + +#~ msgid "search/" +#~ msgstr "претрага/" + +#, fuzzy +#~ msgid "Askbot" +#~ msgstr "O нама" + +#~ msgid "allow only selected tags" +#~ msgstr "дозволи само изабране тагове" + +#~ msgid "First time here? Check out the FAQ!" +#~ msgstr "Први пут сте овде? Погледајте ЧПП!" + +#~ msgid "newquestion/" +#~ msgstr "новопитање/" + +#~ msgid "newanswer/" +#~ msgstr "новиодговор/" + +#, fuzzy +#~ msgid "MyOpenid user name" +#~ msgstr "по корисничком имену" + +#~ msgid "Email verification subject line" +#~ msgstr "П&О форум / Верификација е-поште" + +#~ msgid "disciplined" +#~ msgstr "дисциплинован" + +#~ msgid "Deleted own post with score of 3 or higher" +#~ msgstr "Обрисао сопствени пост са резултатом од 3 или више" + +#~ msgid "nice-answer" +#~ msgstr "користан-одговор" + +#~ msgid "nice-question" +#~ msgstr "добро-питање" + +#~ msgid "cleanup" +#~ msgstr "чишћење" + +#~ msgid "critic" +#~ msgstr "критичар" + +#~ msgid "editor" +#~ msgstr "уредник" + +#~ msgid "scholar" +#~ msgstr "ученик" + +#~ msgid "student" +#~ msgstr "студент" + +#~ msgid "teacher" +#~ msgstr "наставник" + +#~ msgid "autobiographer" +#~ msgstr "аутобиограф" + +#~ msgid "self-learner" +#~ msgstr "самоук" + +#~ msgid "great-answer" +#~ msgstr "савршен-одговор" + +#~ msgid "great-question" +#~ msgstr "добро-питање" + +#~ msgid "good-answer" +#~ msgstr "добар-одговор" + +#, fuzzy +#~ msgid "expert" +#~ msgstr "текст" + +#~ msgid "About" +#~ msgstr "O нама" + +#~ msgid "" +#~ "must have valid %(email)s to post, \n" +#~ " see %(email_validation_faq_url)s\n" +#~ " " +#~ msgstr "" +#~ "Looks like your email address, %(email)s has not " +#~ "yet been validated. To post messages you must verify your email, " +#~ "please see more details here." +#~ "
        You can submit your question now and validate email after that. Your " +#~ "question will saved as pending meanwhile. " + +#~ msgid "how to validate email title" +#~ msgstr "Како да потврдите е-пошту и зашто?" + +#~ msgid "" +#~ "how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)" +#~ "s" +#~ msgstr "" +#~ "

        How? If you have just set or " +#~ "changed your email address - check your email and click the " +#~ "included link.
        The link contains a key generated specifically " +#~ "for you. You can also and check your " +#~ "email again.

        Why? Email " +#~ "validation is required to make sure that only you can post " +#~ "messages on your behalf and to minimize spam " +#~ "posts.
        With email you can subscribe for updates on " +#~ "the most interesting questions. Also, when you sign up for the first time " +#~ "- create a unique gravatar personal image.

        " + +#~ msgid "" +#~ "As a registered user you can login with your OpenID, log out of the site " +#~ "or permanently remove your account." +#~ msgstr "" +#~ "Clicking Logout will log you out from the forumbut will " +#~ "not sign you off from your OpenID provider.

        If you wish to sign off " +#~ "completely - please make sure to log out from your OpenID provider as " +#~ "well." + +#~ msgid "Logout now" +#~ msgstr "Одјава" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " %(q_num)s question\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " %(q_num)s questions\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "

        %(q_num)s

        question

        " +#~ msgstr[1] "" +#~ "\n" +#~ "
        %(q_num)s

        questions

        " + +#~ msgid "tagged" +#~ msgstr "означено" + +#~ msgid "remove '%(tag_name)s' from the list of interesting tags" +#~ msgstr "уклоните '%(tag_name)s' са листе занимљивих ознака" + +#~ msgid "remove '%(tag_name)s' from the list of ignored tags" +#~ msgstr "уклоните '%(tag_name)s' са листе игнорисаних ознака" + +#~ msgid "keep ignored questions hidden" +#~ msgstr "сакрите игнорисана питања" + +#~ msgid "favorites" +#~ msgstr "омиљена" + +#, fuzzy +#~ msgid "this questions was selected as favorite %(cnt)s time" +#~ msgid_plural "this questions was selected as favorite %(cnt)s times" +#~ msgstr[0] "овај одговор је изабран као исправан" +#~ msgstr[1] "овај одговор је изабран као исправан" +#~ msgstr[2] "овај одговор је изабран као исправан" + +#, fuzzy +#~ msgid "thumb-up on" +#~ msgstr "палац-горе да" + +#, fuzzy +#~ msgid "thumb-up off" +#~ msgstr "палац-горе не" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " vote\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " votes\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "глас\n" +#~ " " +#~ msgstr[1] "" +#~ "\n" +#~ "гласова" +#~ msgstr[2] "" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " answer \n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " answers \n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "одговор\n" +#~ " " +#~ msgstr[1] "" +#~ "\n" +#~ "одговора" +#~ msgstr[2] "" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " view\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " views\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "pregled" +#~ msgstr[1] "" +#~ "\n" +#~ "pregleda" +#~ msgstr[2] "" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " vote\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " votes\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "глас\n" +#~ " " +#~ msgstr[1] "" +#~ "\n" +#~ "гласова" +#~ msgstr[2] "" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " answer \n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " answers \n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "одговор\n" +#~ " " +#~ msgstr[1] "" +#~ "\n" +#~ "одговора" +#~ msgstr[2] "" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " view\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " views\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "pregled" +#~ msgstr[1] "" +#~ "\n" +#~ "pregleda" +#~ msgstr[2] "" + +#~ msgid "reputation points" +#~ msgstr "карма" + +#, fuzzy +#~ msgid "badges: " +#~ msgstr "беџеви" + +#, fuzzy +#~ msgid "Bad request" +#~ msgstr "у суштини није питање" + #~ msgid "comments/" #~ msgstr "коментари/" @@ -5579,9 +6874,6 @@ msgstr "" #~ msgid "This account is inactive." #~ msgstr "Овај налог је неактиван." -#~ msgid "Login failed." -#~ msgstr "Пријављивање није успело." - #~ msgid "" #~ "Please enter a valid username and password. Note that " #~ "both fields are case-sensitive." @@ -5645,9 +6937,6 @@ msgstr "" #~ msgid "OpenID %s is now associated with your account." #~ msgstr "OpenID %s је сада повезан са Вашим налогом." -#~ msgid "Account deleted." -#~ msgstr "Налог је избрисан." - #~ msgid "Request for new password" #~ msgstr "Захтев за нову шифру" @@ -5699,20 +6988,6 @@ msgstr "" #~ msgid "Change OpenID" #~ msgstr "Промени OpenID" -#~ msgid "Delete account" -#~ msgstr "Избриши налог" - -#~ msgid "" -#~ "must have valid %(email)s to post, \n" -#~ " see %(email_validation_faq_url)s\n" -#~ " " -#~ msgstr "" -#~ "Looks like your email address, %(email)s has not " -#~ "yet been validated. To post messages you must verify your email, " -#~ "please see more details here." -#~ "
        You can submit your question now and validate email after that. Your " -#~ "question will saved as pending meanwhile. " - #~ msgid "books" #~ msgstr "књиге" @@ -5758,30 +7033,12 @@ msgstr "" #~ msgid "Search results" #~ msgstr "Резултати претраге" -#~ msgid "All questions" -#~ msgstr "Сва питања" - -#~ msgid "click to see the newest questions" -#~ msgstr "кликните да бисте видели најновији питања" - -#~ msgid "click to see the oldest questions" -#~ msgstr "кликните да бисте видели најстарија питања" - -#~ msgid "click to see the most recently updated questions" -#~ msgstr "кликните да бисте видели недавно ажурирана питања" - -#~ msgid "click to see hottest questions" -#~ msgstr "questions with most answers" - #~ msgid "click to see coldest questions" #~ msgstr "questions with fewest answers" #~ msgid "more answers" #~ msgstr "са више одговора" -#~ msgid "click to see least voted questions" -#~ msgstr "least voted questions" - #~ msgid "popular" #~ msgstr "популарна" @@ -5792,9 +7049,6 @@ msgstr "" #~ msgstr[1] "%(q_num)s питања" #~ msgstr[2] "" -#~ msgid "The question was closed for the following reason " -#~ msgstr "Питање је затворено из следећих разлога" - #~ msgid "date closed" #~ msgstr "датум затварања" @@ -5889,9 +7143,6 @@ msgstr "" #~ msgid "Create account" #~ msgstr "Отворите налог" -#~ msgid "favorite questions" -#~ msgstr "омиљена питања" - #~ msgid "Email Validation" #~ msgstr "Валидација е-поште" @@ -5904,10 +7155,6 @@ msgstr "" #~ msgid "books/" #~ msgstr "књиге/" -#, fuzzy -#~ msgid "please login" -#~ msgstr "User login" - #, fuzzy #~ msgid " One question found" #~ msgid_plural "%(q_num)s questions found" diff --git a/askbot/locale/sr/LC_MESSAGES/djangojs.mo b/askbot/locale/sr/LC_MESSAGES/djangojs.mo new file mode 100644 index 00000000..2c8ecbcf Binary files /dev/null and b/askbot/locale/sr/LC_MESSAGES/djangojs.mo differ diff --git a/askbot/locale/sr/LC_MESSAGES/djangojs.po b/askbot/locale/sr/LC_MESSAGES/djangojs.po new file mode 100644 index 00000000..91b621d4 --- /dev/null +++ b/askbot/locale/sr/LC_MESSAGES/djangojs.po @@ -0,0 +1,66 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: 0.7\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-10-08 02:31-0500\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: skins/default/media/js/post.js:532 +msgid "Follow" +msgstr "" + +#: skins/default/media/js/post.js:541 skins/default/media/js/post.js.py:550 +#, perl-format +msgid "%s follower" +msgid_plural "%s followers" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/media/js/post.js:546 +msgid "

        Following
        Unfollow
        " +msgstr "" + +#: skins/default/media/js/post.js:1613 +msgid "Please enter question title (>10 characters)" +msgstr "" + +#: skins/default/media/js/tag_selector.js:15 +msgid "Tag \"\" matches:" +msgstr "" + +#: skins/default/media/js/tag_selector.js:84 +#, perl-format +msgid "and %s more, not shown..." +msgstr "" + +#: skins/default/media/js/user.js:129 +msgid "Please signin to follow %(username)s" +msgstr "" + +#: skins/default/media/js/user.js:161 +#, perl-format +msgid "unfollow %s" +msgstr "" + +#: skins/default/media/js/user.js:164 +#, perl-format +msgid "following %s" +msgstr "" + +#: skins/default/media/js/user.js:170 +#, perl-format +msgid "follow %s" +msgstr "" diff --git a/askbot/locale/tr/LC_MESSAGES/django.mo b/askbot/locale/tr/LC_MESSAGES/django.mo index f48fa783..5e511994 100644 Binary files a/askbot/locale/tr/LC_MESSAGES/django.mo and b/askbot/locale/tr/LC_MESSAGES/django.mo differ diff --git a/askbot/locale/tr/LC_MESSAGES/django.po b/askbot/locale/tr/LC_MESSAGES/django.po index 3c2fb2c5..ccc9abaf 100644 --- a/askbot/locale/tr/LC_MESSAGES/django.po +++ b/askbot/locale/tr/LC_MESSAGES/django.po @@ -5,93 +5,119 @@ # msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: 0.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-11-29 16:38-0600\n" +"POT-Creation-Date: 2011-10-08 02:31-0500\n" "PO-Revision-Date: 2010-09-08 06:14\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Translated-Using: django-rosetta 0.5.6\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" -#: exceptions.py:9 +#: exceptions.py:13 #, fuzzy msgid "Sorry, but anonymous visitors cannot access this function" msgstr "üye girişi yapmadan oy kullanamazsınız" -#: feed.py:22 +#: feed.py:26 feed.py:100 msgid " - " msgstr "-" -#: feed.py:22 +#: feed.py:26 +#, fuzzy +msgid "Individual question feed" +msgstr "Seçtiğim sorular" + +#: feed.py:100 msgid "latest questions" msgstr "en son sorulanlar" -#: forms.py:54 skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:40 -#: skins/default/templates/question_edit_tips.html:45 +#: forms.py:74 +#, fuzzy +msgid "select country" +msgstr "Hesabı sil" + +#: forms.py:83 +msgid "Country" +msgstr "" + +#: forms.py:91 +#, fuzzy +msgid "Country field is required" +msgstr "bu alanın doldurulması gereklidir" + +#: forms.py:104 skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:38 +#: skins/default/templates/blocks/question_edit_tips.html:43 msgid "title" msgstr "başlık" -#: forms.py:55 +#: forms.py:105 msgid "please enter a descriptive title for your question" msgstr "Sorunuz için açıklayıcı bir başlık girin" -#: forms.py:60 +#: forms.py:110 msgid "title must be > 10 characters" msgstr "başlık en az 10 karakter olmalı" -#: forms.py:69 +#: forms.py:119 msgid "content" msgstr "içerik" -#: forms.py:75 +#: forms.py:125 msgid "question content must be > 10 characters" msgstr "soru içeriği en az 10 karakter olmalı" -#: forms.py:84 skins/default/templates/header.html:83 +#: forms.py:134 skins/default/templates/macros.html:660 +#: skins/default/templates/macros.html:672 +#: skins/default/templates/blocks/header.html:25 msgid "tags" msgstr "etiketler" -#: forms.py:86 +#: forms.py:136 msgid "" "Tags are short keywords, with no spaces within. Up to five tags can be used." msgstr "" "Etiketler kısa anahtar kelimelerdir ve bir soru için en fazla 5 etiket " "yazabilirsiniz." -#: forms.py:93 skins/default/templates/question_retag.html:78 +#: forms.py:164 skins/default/templates/question_retag.html:58 msgid "tags are required" msgstr "etiket yazmalısınız" -#: forms.py:102 +#: forms.py:173 #, python-format msgid "please use %(tag_count)d tag or less" msgid_plural "please use %(tag_count)d tags or less" msgstr[0] "En fazla %(tag_count)d etiket kullanabilirsiniz" msgstr[1] "En fazla %(tag_count)d etiket kullanabilirsiniz" -#: forms.py:111 +#: forms.py:181 +#, python-format +msgid "At least one of the following tags is required : %(tags)s" +msgstr "" + +#: forms.py:190 #, 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:119 +#: forms.py:198 msgid "use-these-chars-in-tags" msgstr "bu-yazıları-etiket-olarak-kullan" -#: forms.py:130 -#: skins/default/templates/unused/question_summary_list_roll.html:26 -#: skins/default/templates/unused/question_summary_list_roll.html:38 -msgid "community wiki" -msgstr "topluluk wikisi" +#: forms.py:233 +msgid "community wiki (karma is not awarded & many others can edit wiki post)" +msgstr "" -#: forms.py:131 +#: forms.py:234 msgid "" "if you choose community wiki option, the question and answer do not generate " "points and name of author will not be shown" @@ -99,11 +125,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:147 +#: forms.py:250 msgid "update summary:" msgstr "güncelleme özeti:" -#: forms.py:148 +#: forms.py:251 msgid "" "enter a brief summary of your revision (e.g. fixed spelling, grammar, " "improved style, this field is optional)" @@ -111,286 +137,440 @@ msgstr "" "Yaptığınız düzeltmenin özetini giriniz. (sabit yazım, dilbilgisi, gelişmiş " "stil gibi, bu alan isteğe bağlı)" -#: forms.py:161 +#: forms.py:327 msgid "Enter number of points to add or subtract" msgstr "" -#: forms.py:175 const/__init__.py:219 +#: forms.py:341 const/__init__.py:245 msgid "approved" msgstr "" -#: forms.py:176 const/__init__.py:220 +#: forms.py:342 const/__init__.py:246 msgid "watched" msgstr "" -#: forms.py:177 const/__init__.py:221 +#: forms.py:343 const/__init__.py:247 #, fuzzy msgid "suspended" msgstr "güncellendi" -#: forms.py:178 const/__init__.py:222 +#: forms.py:344 const/__init__.py:248 msgid "blocked" msgstr "" -#: forms.py:180 const/__init__.py:218 +#: forms.py:346 +#, fuzzy +msgid "administrator" +msgstr "Saygılarımızla,
        Site yönetimi" + +#: forms.py:347 const/__init__.py:244 #, fuzzy msgid "moderator" msgstr "yoneticiler/" -#: forms.py:200 +#: forms.py:367 #, fuzzy msgid "Change status to" msgstr "Etiket değiştir" -#: forms.py:227 +#: forms.py:394 msgid "which one?" msgstr "" -#: forms.py:248 +#: forms.py:415 #, fuzzy msgid "Cannot change own status" msgstr "kendi yazılarınıza oy veremezsiniz" -#: forms.py:254 +#: forms.py:421 msgid "Cannot turn other user to moderator" msgstr "" -#: forms.py:261 +#: forms.py:428 msgid "Cannot change status of another moderator" msgstr "" -#: forms.py:267 +#: forms.py:434 +#, fuzzy +msgid "Cannot change status to admin" +msgstr "kendi yazılarınıza oy veremezsiniz" + +#: forms.py:440 #, python-format -msgid "If you wish to change %(username)s's status, " +msgid "" +"If you wish to change %(username)s's status, please make a meaningful " +"selection." msgstr "" -#: forms.py:276 +#: forms.py:449 #, fuzzy msgid "Subject line" msgstr "Tema seç" -#: forms.py:283 +#: forms.py:456 #, fuzzy msgid "Message text" msgstr "Mesajınız:" -#: forms.py:360 +#: forms.py:542 msgid "Your name:" msgstr "Adınız:" -#: forms.py:361 +#: forms.py:543 msgid "Email (not shared with anyone):" msgstr "E-mail (kimse görmeyecektir):" -#: forms.py:362 +#: forms.py:544 msgid "Your message:" msgstr "Mesajınız:" -#: forms.py:449 -msgid "this email does not have to be linked to gravatar" +#: forms.py:581 +#, fuzzy +msgid "ask anonymously" +msgstr "anonim" + +#: forms.py:583 +msgid "Check if you do not want to reveal your name when asking this question" +msgstr "" + +#: forms.py:743 +msgid "" +"You have asked this question anonymously, if you decide to reveal your " +"identity, please check this box." +msgstr "" + +#: forms.py:747 +msgid "reveal identity" +msgstr "" + +#: forms.py:805 +msgid "" +"Sorry, only owner of the anonymous question can reveal his or her identity, " +"please uncheck the box" +msgstr "" + +#: forms.py:818 +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:856 +#, fuzzy +msgid "this email will be linked to gravatar" msgstr "Bu e-mail gravatar bağlantılı olmak zorunda değildir" -#: forms.py:456 +#: forms.py:863 msgid "Real name" msgstr "Gerçek isim" -#: forms.py:463 +#: forms.py:870 msgid "Website" msgstr "Website" -#: forms.py:470 -msgid "Location" -msgstr "Yer" +#: forms.py:877 +msgid "City" +msgstr "" + +#: forms.py:886 +msgid "Show country" +msgstr "" -#: forms.py:477 +#: forms.py:891 msgid "Date of birth" msgstr "Doğum tarihi" -#: forms.py:478 +#: forms.py:892 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:484 +#: forms.py:898 msgid "Profile" msgstr "Profil" -#: forms.py:493 +#: forms.py:907 msgid "Screen name" msgstr "Görünen isim" -#: forms.py:518 forms.py:519 +#: forms.py:938 forms.py:939 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:525 +#: forms.py:946 msgid "Choose email tag filter" msgstr "E-mail etiketi için filtre seç" -#: forms.py:564 +#: forms.py:993 msgid "Asked by me" msgstr "Tarafımdan sorulan" -#: forms.py:567 +#: forms.py:996 msgid "Answered by me" msgstr "Tarafımdan cevaplanan" -#: forms.py:570 +#: forms.py:999 msgid "Individually selected" msgstr "Tek tek seçilmiş" -#: forms.py:573 +#: forms.py:1002 msgid "Entire forum (tag filtered)" msgstr "Tüm forum (etiket ile filtrelenmiş)" -#: forms.py:577 +#: forms.py:1006 msgid "Comments and posts mentioning me" msgstr "Benim hakkımdaki gönderiler" -#: forms.py:635 +#: forms.py:1085 msgid "okay, let's try!" msgstr "tamam, bir deneyelim!" -#: forms.py:636 +#: forms.py:1086 msgid "no community email please, thanks" msgstr "toplu e-mail istemiyorum, teşekkürler" -#: forms.py:640 +#: forms.py:1090 msgid "please choose one of the options above" msgstr "lütfen yukarıdaki seçeneklerden birini seçin " -#: urls.py:42 +#: urls.py:53 msgid "about/" msgstr "hakkimizda/" -#: urls.py:43 conf/site_settings.py:79 +#: urls.py:54 msgid "faq/" msgstr "sss/" -#: urls.py:44 +#: urls.py:55 msgid "privacy/" msgstr "gizlilik/" -#: urls.py:45 -msgid "logout/" -msgstr "guvenli-cikis/" - -#: urls.py:47 urls.py:52 +#: urls.py:57 urls.py:62 msgid "answers/" msgstr "cevaplar/" -#: urls.py:47 urls.py:68 urls.py:164 +#: urls.py:57 urls.py:83 urls.py:198 msgid "edit/" msgstr "duzenle/" -#: urls.py:52 urls.py:98 +#: urls.py:62 urls.py:113 msgid "revisions/" msgstr "duzeltmeler/" -#: urls.py:58 urls.py:63 urls.py:68 urls.py:73 urls.py:78 urls.py:83 -#: urls.py:88 urls.py:93 urls.py:98 +#: urls.py:68 urls.py:78 urls.py:83 urls.py:88 urls.py:93 urls.py:98 +#: urls.py:103 urls.py:108 urls.py:113 urls.py:285 +#: skins/default/templates/question.html:508 msgid "questions/" msgstr "sorular/" -#: urls.py:63 +#: urls.py:78 msgid "ask/" msgstr "sor/" -#: urls.py:73 +#: urls.py:88 #, fuzzy msgid "retag/" msgstr "etiketler/" -#: urls.py:78 +#: urls.py:93 msgid "close/" msgstr "kapat/" -#: urls.py:83 +#: urls.py:98 msgid "reopen/" msgstr "yenidenac/" -#: urls.py:88 +#: urls.py:103 msgid "answer/" msgstr "cevap/" -#: urls.py:93 +#: urls.py:108 skins/default/templates/question.html:508 msgid "vote/" msgstr "oy/" -#: urls.py:114 -msgid "command/" -msgstr "komut/" - -#: urls.py:130 -msgid "question/" -msgstr "soru/" - -#: urls.py:135 +#: urls.py:144 msgid "tags/" msgstr "etiketler/" -#: urls.py:140 urls.py:146 -msgid "mark-tag/" -msgstr "etiket/" - -#: urls.py:140 -msgid "interesting/" -msgstr "ilginc/" - -#: urls.py:146 -msgid "ignored/" -msgstr "yoksayildi/" - -#: urls.py:152 -msgid "unmark-tag/" -msgstr "etiket-isaretini-kaldir/" +#: urls.py:187 +msgid "subscribe-for-tags/" +msgstr "" -#: urls.py:158 urls.py:164 urls.py:169 +#: urls.py:192 urls.py:198 urls.py:204 urls.py:212 +#: skins/default/templates/main_page/javascript.html:23 msgid "users/" msgstr "kullanicilar/" -#: urls.py:174 urls.py:179 +#: urls.py:205 +#, fuzzy +msgid "subscriptions/" +msgstr "e-mail abonelikleri" + +#: urls.py:217 +msgid "users/update_has_custom_avatar/" +msgstr "" + +#: urls.py:222 urls.py:227 msgid "badges/" msgstr "rozetler/" -#: urls.py:184 +#: urls.py:232 msgid "messages/" msgstr "mesajlar/" -#: urls.py:184 +#: urls.py:232 msgid "markread/" msgstr "okundu-yap/" -#: urls.py:199 +#: urls.py:248 msgid "upload/" msgstr "yukle/" -#: urls.py:200 -msgid "search/" -msgstr "arama-yap/" - -#: urls.py:201 +#: urls.py:249 msgid "feedback/" msgstr "geribildirim/" -#: urls.py:202 setup_templates/settings.py:182 -#: skins/default/templates/authopenid/signin.html:249 +#: urls.py:291 skins/default/templates/question.html:506 +#: skins/default/templates/main_page/javascript.html:22 +msgid "question/" +msgstr "soru/" + +#: urls.py:298 setup_templates/settings.py:202 +#: skins/default/templates/authopenid/providers_javascript.html:7 msgid "account/" msgstr "hesap/" -#: conf/email.py:12 +#: conf/badges.py:12 +#, fuzzy +msgid "Badge settings" +msgstr "Temel Ayarlar" + +#: conf/badges.py:21 +msgid "Disciplined: minimum upvotes for deleted post" +msgstr "" + +#: conf/badges.py:30 +msgid "Peer Pressure: minimum downvotes for deleted post" +msgstr "" + +#: conf/badges.py:39 +msgid "Teacher: minimum upvotes for the answer" +msgstr "" + +#: conf/badges.py:48 +msgid "Nice Answer: minimum upvotes for the answer" +msgstr "" + +#: conf/badges.py:57 +msgid "Good Answer: minimum upvotes for the answer" +msgstr "" + +#: conf/badges.py:66 +msgid "Great Answer: minimum upvotes for the answer" +msgstr "" + +#: conf/badges.py:75 +msgid "Nice Question: minimum upvotes for the question" +msgstr "" + +#: conf/badges.py:84 +msgid "Good Question: minimum upvotes for the question" +msgstr "" + +#: conf/badges.py:93 +msgid "Great Question: minimum upvotes for the question" +msgstr "" + +#: conf/badges.py:102 +#, fuzzy +msgid "Popular Question: minimum views" +msgstr "Popüler Soru" + +#: conf/badges.py:111 +#, fuzzy +msgid "Notable Question: minimum views" +msgstr "Önemli Soru " + +#: conf/badges.py:120 +#, fuzzy +msgid "Famous Question: minimum views" +msgstr "Ünlü soru" + +#: conf/badges.py:129 +msgid "Self-Learner: minimum answer upvotes" +msgstr "" + +#: conf/badges.py:138 +msgid "Civic Duty: minimum votes" +msgstr "" + +#: conf/badges.py:147 +msgid "Enlightened Duty: minimum upvotes" +msgstr "" + +#: conf/badges.py:156 +msgid "Guru: minimum upvotes" +msgstr "" + +#: conf/badges.py:165 +msgid "Necromancer: minimum upvotes" +msgstr "" + +#: conf/badges.py:174 +msgid "Necromancer: minimum delay in days" +msgstr "" + +#: conf/badges.py:183 +msgid "Associate Editor: minimum number of edits" +msgstr "" + +#: conf/badges.py:192 +#, fuzzy +msgid "Favorite Question: minimum stars" +msgstr "Favori Soru" + +#: conf/badges.py:201 +#, fuzzy +msgid "Stellar Question: minimum stars" +msgstr "Bomba soru" + +#: conf/badges.py:210 +msgid "Commentator: minimum comments" +msgstr "" + +#: conf/badges.py:219 +msgid "Taxonomist: minimum tag use count" +msgstr "" + +#: conf/badges.py:228 +msgid "Enthusiast: minimum days" +msgstr "" + +#: conf/email.py:14 msgid "Email and email alert settings" msgstr "E-posta ve e-posta uyarı ayarları" -#: conf/email.py:20 +#: conf/email.py:22 +#, fuzzy +msgid "Prefix for the email subject line" +msgstr "Hoşgeldiniz mesajının konusu" + +#: conf/email.py:24 +msgid "" +"This setting takes default from the django settingEMAIL_SUBJECT_PREFIX. A " +"value entered here will overridethe default." +msgstr "" + +#: conf/email.py:36 msgid "Maximum number of news entries in an email alert" msgstr "Bir e-posta bildirisindeki maksimum haber sayısı" -#: conf/email.py:30 +#: conf/email.py:46 msgid "Default news notification frequency" msgstr "Varsayılan haber uyarı sıklığı" -#: conf/email.py:32 +#: conf/email.py:48 msgid "" "This option currently defines default frequency of emailed updates in the " "following five categories: questions asked by user, answered by user, " @@ -402,34 +582,78 @@ msgstr "" "sorulan sorular, cevaplanan sorular, yıldızlanan sorular, tüm forum (seçilen " "etiketler için) ve kullanıcı hakkındaki soru ve yorumlar" -#: conf/email.py:47 +#: conf/email.py:62 +#, fuzzy +msgid "Send periodic reminders about unanswered questions" +msgstr "Harika! Cevapsız bir soru bile kalmamış..." + +#: conf/email.py:64 +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) and an IMAP server with a dedicated inbox " +"must be configured " +msgstr "" + +#: conf/email.py:78 +#, fuzzy +msgid "Days before starting to send reminders about unanswered questions" +msgstr "Harika! Cevapsız bir soru bile kalmamış..." + +#: conf/email.py:89 +msgid "" +"How often to send unanswered question reminders (in days between the " +"reminders sent)." +msgstr "" + +#: conf/email.py:101 +msgid "Max. number of reminders to send about unanswered questions" +msgstr "" + +#: conf/email.py:113 msgid "Require email verification before allowing to post" msgstr "Gönderiye izin vermeden önce e-posta doğrulaması iste" -#: conf/email.py:48 +#: conf/email.py:114 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:57 +#: conf/email.py:123 msgid "Allow only one account per email address" msgstr "Bir e-posta adresi ile tek kullanıcıya izin ver" -#: conf/email.py:66 +#: conf/email.py:132 msgid "Fake email for anonymous user" msgstr "Anonim kullanıcı için geçersiz e-posta adresi" -#: conf/email.py:67 +#: conf/email.py:133 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:76 +#: conf/email.py:142 #, fuzzy -msgid "Prefix for the email subject line" -msgstr "Hoşgeldiniz mesajının konusu" +msgid "Allow posting questions by email" +msgstr "soru bilgisi göndermek için giriş yapın" + +#: conf/email.py:144 +msgid "" +"Before enabling this setting - please fill out IMAP settings in the settings." +"py file" +msgstr "" + +#: conf/email.py:155 +msgid "Replace space in emailed tags with dash" +msgstr "" + +#: conf/email.py:157 +msgid "" +"This setting applies to tags written in the subject line of questions asked " +"by email" +msgstr "" -#: conf/external_keys.py:11 +#: conf/external_keys.py:10 msgid "Keys to connect the site with external services like Facebook, etc." msgstr "Siteyi Facebook, vb. gibi servisler ile bağlamak için gerekli kodlar" @@ -438,104 +662,128 @@ msgid "Google site verification key" msgstr "Google site doğrulama anahtarı" #: conf/external_keys.py:20 -#, python-format +#, fuzzy, python-format msgid "" -"This key helps google index your site please obtain is at google webmasters tools site" +"This key helps google index your site please obtain is at google webmasters tools site" msgstr "" "Bu anahtar sitenizin Google tarafından endekslenmesine yardımcı olur. Lütfen " "google webmasters adresinden " "temin edin." -#: conf/external_keys.py:34 +#: conf/external_keys.py:35 msgid "Google Analytics key" msgstr "Google Analytics anahtarı" -#: conf/external_keys.py:36 -#, python-format +#: conf/external_keys.py:37 +#, fuzzy, python-format msgid "" -"Obtain is at Google Analytics site, if you wish " -"to use Google Analytics to monitor your site" +"Obtain is at Google Analytics site, if you wish to " +"use Google Analytics to monitor your site" msgstr "" "Sitenizi Google Analytics ile takip etmek istiyorsanız, anahtarınızı Google Analytics 'ten temin edebilirsiniz" -#: conf/external_keys.py:49 +#: conf/external_keys.py:50 msgid "Enable recaptcha (keys below are required)" msgstr "" -#: conf/external_keys.py:58 +#: conf/external_keys.py:59 msgid "Recaptcha public key" msgstr "Recaptcha genel anahtarı" -#: conf/external_keys.py:66 +#: conf/external_keys.py:67 msgid "Recaptcha private key" msgstr "Recaptcha gizli anahtarı" -#: conf/external_keys.py:68 +#: conf/external_keys.py:69 +#, fuzzy, 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 recaptcha.net" +"robots. Please get this and a public key at the %(url)s" msgstr "" "Recaptcha gerçek insanları spam robotlarından ayırarak spamı engelleyen bir " "servistir. Anahtarını recaptcha.net " "adresinden temin edebilirsiniz" -#: conf/external_keys.py:80 +#: conf/external_keys.py:81 msgid "Facebook public API key" msgstr "Facebook genel anahtarı" -#: conf/external_keys.py:82 +#: conf/external_keys.py:83 +#, fuzzy, python-format msgid "" "Facebook API key and Facebook secret allow to use Facebook Connect login " -"method at your site. Please obtain these keys at facebook create app site" +"method at your site. Please obtain these keys at facebook create app site" msgstr "" "Facebook API anahtarları sitenize Facebook Connect yöntemiyle giris " "yapılabilmesini sağlar. Anahtarları facebook create app adresinden temin " "edebilirsiniz" -#: conf/external_keys.py:95 +#: conf/external_keys.py:96 msgid "Facebook secret key" msgstr "Facbook gizli anahtarı" -#: conf/external_keys.py:103 +#: conf/external_keys.py:104 msgid "Twitter consumer key" msgstr "" -#: conf/external_keys.py:105 conf/external_keys.py:126 +#: conf/external_keys.py:106 +#, python-format msgid "" -"Please register your forum at twitter applications site" +"Please register your forum at twitter applications site" msgstr "" -#: conf/external_keys.py:116 +#: conf/external_keys.py:117 msgid "Twitter consumer secret" msgstr "" -#: conf/external_keys.py:124 +#: conf/external_keys.py:125 msgid "LinkedIn consumer key" msgstr "" -#: conf/external_keys.py:137 +#: conf/external_keys.py:127 +#, python-format +msgid "" +"Please register your forum at LinkedIn developer site" +msgstr "" + +#: conf/external_keys.py:138 msgid "LinkedIn consumer secret" msgstr "" -#: conf/external_keys.py:145 -msgid "User LDAP authentication for the password login" +#: conf/external_keys.py:146 +msgid "ident.ca consumer key" +msgstr "" + +#: conf/external_keys.py:148 +#, python-format +msgid "" +"Please register your forum at Identi.ca applications " +"site" +msgstr "" + +#: conf/external_keys.py:159 +msgid "ident.ca consumer secret" +msgstr "" + +#: conf/external_keys.py:167 +msgid "Use LDAP authentication for the password login" msgstr "" -#: conf/external_keys.py:154 +#: conf/external_keys.py:176 msgid "LDAP service provider name" msgstr "" -#: conf/external_keys.py:162 +#: conf/external_keys.py:184 msgid "URL for the LDAP service" msgstr "" -#: conf/external_keys.py:170 +#: conf/external_keys.py:192 #, fuzzy msgid "Explain how to change LDAP password" msgstr "Hesabınız: Şifremi değiştir" @@ -557,11 +805,25 @@ msgstr "" "kullanarak \"hakkında\" sayfasını kontrol edin." #: conf/flatpages.py:30 +#, fuzzy +msgid "Text of the Q&A forum FAQ page (html format)" +msgstr "Soru/Cevap forumu hakkındaki sayfa (html formatında)" + +#: conf/flatpages.py:33 +#, fuzzy +msgid "" +"Save, then use HTML validator on " +"the \"faq\" page to check your input." +msgstr "" +"Kaydedin ve HTML doğrulayıcı " +"kullanarak \"hakkında\" sayfasını kontrol edin." + +#: conf/flatpages.py:44 msgid "Text of the Q&A forum Privacy Policy (html format)" msgstr "" "Soru/Cevap forumu gizlilik politikası hakkındaki sayfa (html formatında)" -#: conf/flatpages.py:33 +#: conf/flatpages.py:47 msgid "" "Save, then use HTML validator on " "the \"privacy\" page to check your input." @@ -569,150 +831,414 @@ msgstr "" "Kaydedin ve HTML doğrulayıcı " "kullanarak \"gizlilik\" sayfasını kontrol edin." -#: conf/forum_data_rules.py:12 -msgid "Settings for askbot data entry and display" +#: conf/forum_data_rules.py:11 +#, fuzzy +msgid "Data entry and display" msgstr "askbot veri girişi ve görüntüleme ayarları" #: conf/forum_data_rules.py:20 +#, python-format +msgid "" +"Enable embedding videos. Note: please read read this first." +msgstr "" + +#: conf/forum_data_rules.py:31 msgid "Check to enable community wiki feature" msgstr "topluluk wiki özelliğini aktif ediniz" -#: conf/forum_data_rules.py:29 -msgid "Maximum length of tag (number of characters)" -msgstr "etiketin maksimum uzunluğu (karakter sayısı)" - -#: conf/forum_data_rules.py:39 -msgid "Default max number of comments to display under posts" +#: conf/forum_data_rules.py:40 +msgid "Allow asking questions anonymously" msgstr "" -#: conf/forum_data_rules.py:50 -#, python-format -msgid "Maximum comment length, must be < %(max_len)s" +#: conf/forum_data_rules.py:42 +msgid "" +"Users do not accrue reputation for anonymous questions and their identity is " +"not revealed until they change their mind" msgstr "" -#: conf/forum_data_rules.py:60 -msgid "Minimum length of search term for Ajax search" +#: conf/forum_data_rules.py:54 +msgid "Allow posting before logging in" msgstr "" -#: conf/forum_data_rules.py:61 -msgid "Must match the corresponding database backend setting" +#: conf/forum_data_rules.py:56 +msgid "" +"Check if you want to allow users start posting questions or answers before " +"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 "" -#: conf/forum_data_rules.py:70 -msgid "Maximum number of tags per question" -msgstr "soru başına maksimum etiket sayısı" +#: conf/forum_data_rules.py:71 +#, fuzzy +msgid "Allow swapping answer with question" +msgstr "Cevabı yayınla" -#: conf/forum_data_rules.py:82 -msgid "Number of questions to list by default" -msgstr "Soru listesinin varsayılan uzunluğu (soru sayısı)" +#: conf/forum_data_rules.py:73 +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 "" -#: conf/forum_data_rules.py:92 -msgid "What should \"unanswered question\" mean?" -msgstr "\"Cevaplanmamış soru\" ne anlama gelmeli?" +#: conf/forum_data_rules.py:85 +msgid "Maximum length of tag (number of characters)" +msgstr "etiketin maksimum uzunluğu (karakter sayısı)" -#: conf/markup.py:15 -msgid "Markup formatting" +#: conf/forum_data_rules.py:93 +#, fuzzy +msgid "Mandatory tags" +msgstr "güncellenmiş etiketler" + +#: conf/forum_data_rules.py:96 +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/markup.py:29 -msgid "Enable code-friendly Markdown" +#: conf/forum_data_rules.py:108 +msgid "Force lowercase the tags" msgstr "" -#: conf/markup.py:31 +#: conf/forum_data_rules.py:110 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 " -"\"MathJax support\" implicitly turns this feature on, because underscores " -"are heavily used in LaTeX input." +"Attention: after checking this, please back up the database, and run a " +"management command: python manage.py fix_question_tags to " +"globally rename the tags" msgstr "" -#: conf/markup.py:46 -msgid "Mathjax support (rendering of LaTeX)" +#: conf/forum_data_rules.py:124 +msgid "Format of tag list" msgstr "" -#: conf/markup.py:48 -#, python-format +#: conf/forum_data_rules.py:126 msgid "" -"If you enable this feature, mathjax must be " -"installed in directory %(dir)s" +"Select the format to show tags in, either as a simple list, or as a tag cloud" msgstr "" -#: conf/markup.py:63 -msgid "Base url of MathJax deployment" -msgstr "" +#: conf/forum_data_rules.py:138 +#, fuzzy +msgid "Use wildcard tags" +msgstr "İlgili etiketler" -#: conf/markup.py:65 +#: conf/forum_data_rules.py:140 msgid "" -"Note - MathJax is not included with askbot - you should " -"deploy it yourself, preferably at a separate domain and enter url pointing " -"to the \"mathjax\" directory (for example: http://mysite.com/mathjax)" +"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/minimum_reputation.py:11 -msgid "Minimum reputation required to perform actions" -msgstr "Bir eylemleri gerçekleştirmek için gerekli minimum itibar" +#: conf/forum_data_rules.py:153 +msgid "Default max number of comments to display under posts" +msgstr "" -#: conf/minimum_reputation.py:20 -msgid "Upvote" -msgstr "Beğendim" +#: conf/forum_data_rules.py:164 +#, python-format +msgid "Maximum comment length, must be < %(max_len)s" +msgstr "" -#: conf/minimum_reputation.py:29 -msgid "Downvote" -msgstr "Beğenmedim" +#: conf/forum_data_rules.py:174 +msgid "Limit time to edit comments" +msgstr "" + +#: conf/forum_data_rules.py:176 +msgid "If unchecked, there will be no time limit to edit the comments" +msgstr "" + +#: conf/forum_data_rules.py:187 +msgid "Minutes allowed to edit a comment" +msgstr "" + +#: conf/forum_data_rules.py:188 +msgid "To enable this setting, check the previous one" +msgstr "" + +#: conf/forum_data_rules.py:197 +msgid "Save comment by pressing key" +msgstr "" + +#: conf/forum_data_rules.py:206 +msgid "Minimum length of search term for Ajax search" +msgstr "" + +#: conf/forum_data_rules.py:207 +msgid "Must match the corresponding database backend setting" +msgstr "" + +#: conf/forum_data_rules.py:216 +msgid "Do not make text query sticky in search" +msgstr "" + +#: conf/forum_data_rules.py:218 +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:231 +msgid "Maximum number of tags per question" +msgstr "soru başına maksimum etiket sayısı" + +#: conf/forum_data_rules.py:243 +msgid "Number of questions to list by default" +msgstr "Soru listesinin varsayılan uzunluğu (soru sayısı)" + +#: conf/forum_data_rules.py:253 +msgid "What should \"unanswered question\" mean?" +msgstr "\"Cevaplanmamış soru\" ne anlama gelmeli?" + +#: conf/license.py:12 +#, fuzzy +msgid "License settings" +msgstr "Temel Ayarlar" + +#: conf/license.py:19 +msgid "Show license clause in the site footer" +msgstr "" + +#: conf/license.py:28 +msgid "Short name for the license" +msgstr "" + +#: conf/license.py:37 +msgid "Full name of the license" +msgstr "" + +#: conf/license.py:38 +msgid "Creative Commons Attribution Share Alike 3.0" +msgstr "" + +#: conf/license.py:46 +msgid "Add link to the license page" +msgstr "" + +#: conf/license.py:55 +#, fuzzy +msgid "License homepage" +msgstr "anasayfaya geri dön" + +#: conf/license.py:57 +msgid "URL of the official page with all the license legal clauses" +msgstr "" + +#: conf/license.py:67 +msgid "Use license logo" +msgstr "" + +#: conf/license.py:76 +msgid "License logo image" +msgstr "" + +#: conf/login_providers.py:12 +msgid "Login provider setings" +msgstr "" + +#: conf/login_providers.py:20 +msgid "" +"Show alternative login provider buttons on the password \"Sign Up\" page" +msgstr "" + +#: conf/login_providers.py:29 +msgid "Always display local login form and hide \"Askbot\" button." +msgstr "" + +#: conf/login_providers.py:38 +msgid "Activate to allow login with self-hosted wordpress site" +msgstr "" + +#: conf/login_providers.py:39 +msgid "" +"to activate this feature you must fill out the wordpress xml-rpc setting " +"bellow" +msgstr "" + +#: conf/login_providers.py:48 +msgid "" +"Fill it with the wordpress url to the xml-rpc, normally http://mysite.com/" +"xmlrpc.php" +msgstr "" + +#: conf/login_providers.py:49 +msgid "" +"To enable, go to Settings->Writing->Remote Publishing and check the box for " +"XML-RPC" +msgstr "" + +#: conf/login_providers.py:60 +msgid "Upload your icon" +msgstr "" + +#: conf/login_providers.py:90 +#, python-format +msgid "Activate %(provider)s login" +msgstr "" + +#: conf/login_providers.py:95 +#, python-format +msgid "" +"Note: to really enable %(provider)s login some additional parameters will " +"need to be set in the \"External keys\" section" +msgstr "" + +#: conf/markup.py:14 +msgid "Markup formatting" +msgstr "" + +#: conf/markup.py:39 +msgid "Enable code-friendly Markdown" +msgstr "" + +#: conf/markup.py:41 +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 " +"\"MathJax support\" implicitly turns this feature on, because underscores " +"are heavily used in LaTeX input." +msgstr "" + +#: conf/markup.py:56 +msgid "Mathjax support (rendering of LaTeX)" +msgstr "" + +#: conf/markup.py:58 +#, python-format +msgid "" +"If you enable this feature, mathjax must be " +"installed on your server in its own directory." +msgstr "" + +#: conf/markup.py:72 +msgid "Base url of MathJax deployment" +msgstr "" + +#: conf/markup.py:74 +msgid "" +"Note - MathJax is not included with askbot - 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 "" + +#: conf/markup.py:89 +msgid "Enable autolinking with specific patterns" +msgstr "" + +#: conf/markup.py:91 +msgid "" +"If you enable this feature, the application will be able to detect patterns " +"and auto link to URLs" +msgstr "" + +#: conf/markup.py:104 +msgid "Regexes to detect the link patterns" +msgstr "" + +#: conf/markup.py:106 +msgid "" +"Enter valid regular expressions for the patters, one per line. For example " +"to detect a bug pattern like #bug123, use the following regex: #bug(\\d+). " +"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 "" + +#: conf/markup.py:125 +msgid "URLs for autolinking" +msgstr "" + +#: conf/markup.py:127 +msgid "" +"Here, please enter url templates for the patterns entered in the previous " +"setting, also one entry per line. Make sure that number of lines in " +"this setting and the previous one are the same 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 "" + +#: conf/minimum_reputation.py:11 +msgid "Minimum reputation required to perform actions" +msgstr "Bir eylemleri gerçekleştirmek için gerekli minimum itibar" + +#: conf/minimum_reputation.py:20 +msgid "Upvote" +msgstr "Beğendim" + +#: conf/minimum_reputation.py:29 +msgid "Downvote" +msgstr "Beğenmedim" #: conf/minimum_reputation.py:38 +#, fuzzy +msgid "Answer own question immediately" +msgstr "Kendi soruna cevap yaz!" + +#: conf/minimum_reputation.py:47 +#, fuzzy +msgid "Accept own answer" +msgstr "herhangi bir cevabı değiştir" + +#: conf/minimum_reputation.py:56 msgid "Flag offensive" msgstr "Uygunsuz olarak işaretle" -#: conf/minimum_reputation.py:47 +#: conf/minimum_reputation.py:65 msgid "Leave comments" msgstr "Yorum ekle" -#: conf/minimum_reputation.py:56 +#: conf/minimum_reputation.py:74 msgid "Delete comments posted by others" msgstr "Başkaları tarafından yapılan yorumları silebilme" -#: conf/minimum_reputation.py:65 +#: conf/minimum_reputation.py:83 #, fuzzy msgid "Delete questions and answers posted by others" msgstr "Başkaları tarafından sorulmuş soruları kapat" -#: conf/minimum_reputation.py:74 +#: conf/minimum_reputation.py:92 msgid "Upload files" msgstr "Dosya yükle" -#: conf/minimum_reputation.py:83 +#: conf/minimum_reputation.py:101 msgid "Close own questions" msgstr "Kendi sorunu kapat" -#: conf/minimum_reputation.py:92 +#: conf/minimum_reputation.py:110 msgid "Retag questions posted by other people" msgstr "Başkaları tarafından sorulan soruların etiketini değiştirebilme" -#: conf/minimum_reputation.py:101 +#: conf/minimum_reputation.py:119 msgid "Reopen own questions" msgstr "Soruyu yeniden aç" -#: conf/minimum_reputation.py:110 +#: conf/minimum_reputation.py:128 msgid "Edit community wiki posts" msgstr "Sitenin wiki sorularını değiştir" -#: conf/minimum_reputation.py:119 +#: conf/minimum_reputation.py:137 msgid "Edit posts authored by other people" msgstr "Başkaları tarafından yazılanları değiştirebilme" -#: conf/minimum_reputation.py:128 +#: conf/minimum_reputation.py:146 msgid "View offensive flags" msgstr "Uygunsuz olarak işaretlenmiş olanları görüntüle" -#: conf/minimum_reputation.py:137 +#: conf/minimum_reputation.py:155 msgid "Close questions asked by others" msgstr "Başkaları tarafından sorulmuş soruları kapat" -#: conf/minimum_reputation.py:146 +#: conf/minimum_reputation.py:164 msgid "Lock posts" msgstr "Gönderileri kilitle" +#: conf/minimum_reputation.py:173 +msgid "Remove rel=nofollow from own homepage" +msgstr "" + +#: conf/minimum_reputation.py:175 +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 "" + #: conf/reputation_changes.py:12 #, fuzzy msgid "Reputation loss and gain rules" @@ -776,55 +1302,169 @@ msgstr "" msgid "Loss for post owner when upvote is canceled" msgstr "Olumlu oyun iptal edilmesinin gönderi sahibinden götürüsü" -#: conf/site_settings.py:13 +#: conf/sidebar_main.py:11 +msgid "Sidebar widget settings - main page" +msgstr "" + +#: conf/sidebar_main.py:18 conf/sidebar_profile.py:18 +#: conf/sidebar_question.py:18 +msgid "Custom sidebar header" +msgstr "" + +#: conf/sidebar_main.py:21 conf/sidebar_profile.py:21 +#: conf/sidebar_question.py:21 +msgid "" +"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." +msgstr "" + +#: conf/sidebar_main.py:34 +msgid "Show avatar block in sidebar" +msgstr "" + +#: conf/sidebar_main.py:36 +msgid "Uncheck this if you want to hide the avatar block from the sidebar " +msgstr "" + +#: conf/sidebar_main.py:47 +msgid "Limit how many avatars will be displayed on the sidebar" +msgstr "" + +#: conf/sidebar_main.py:57 +msgid "Show tag selector in sidebar" +msgstr "" + +#: conf/sidebar_main.py:59 +msgid "" +"Uncheck this if you want to hide the options for choosing interesting and " +"ignored tags " +msgstr "" + +#: conf/sidebar_main.py:70 +msgid "Show tag list/cloud in sidebar" +msgstr "" + +#: conf/sidebar_main.py:72 +msgid "" +"Uncheck this if you want to hide the tag cloud or tag list from the sidebar " +msgstr "" + +#: conf/sidebar_main.py:83 conf/sidebar_profile.py:34 +#: conf/sidebar_question.py:74 +msgid "Custom sidebar footer" +msgstr "" + +#: conf/sidebar_main.py:86 conf/sidebar_profile.py:37 +#: conf/sidebar_question.py:77 +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 "" + +#: conf/sidebar_profile.py:11 +msgid "Sidebar widget settings - profile page" +msgstr "" + +#: conf/sidebar_question.py:11 +msgid "Sidebar widget settings - question page" +msgstr "" + +#: conf/sidebar_question.py:34 +msgid "Show tag list in sidebar" +msgstr "" + +#: conf/sidebar_question.py:36 +msgid "Uncheck this if you want to hide the tag list from the sidebar " +msgstr "" + +#: conf/sidebar_question.py:47 +msgid "Show meta information in sidebar" +msgstr "" + +#: conf/sidebar_question.py:49 +msgid "" +"Uncheck this if you want to hide the meta information about the question " +"(post date, views, last updated). " +msgstr "" + +#: conf/sidebar_question.py:61 +#, fuzzy +msgid "Show related questions in sidebar" +msgstr "İlgili sorular" + +#: conf/sidebar_question.py:63 +#, fuzzy +msgid "Uncheck this if you want to hide the list of related questions. " +msgstr "güncel olmayan soruları görmek için tıklayın" + +#: conf/site_modes.py:63 +#, fuzzy +msgid "Site modes" +msgstr "Siteler" + +#: conf/site_modes.py:72 +msgid "Activate a \"Bootstrap\" mode" +msgstr "" + +#: conf/site_modes.py:74 +msgid "" +"Bootstrap mode lowers reputation and certain badge thresholds, to values, " +"more suitable for the smaller communities, WARNING: your " +"current value for Minimum reputation, Bagde Settings and Vote Rules will be " +"changed after you modify this setting." +msgstr "" + +#: conf/site_settings.py:11 msgid "Q&A forum website parameters and urls" msgstr "Soru/Cevap sitesi parametreleri ve URL'leri" -#: conf/site_settings.py:21 +#: conf/site_settings.py:19 msgid "Site title for the Q&A forum" msgstr "Soru & Cevap sitesi için site başlığı" -#: conf/site_settings.py:30 +#: conf/site_settings.py:28 msgid "Comma separated list of Q&A site keywords" msgstr "Soru/Cevap sitesinin virgülle ayrılmış olarak anahtar kelimeleri" -#: conf/site_settings.py:40 +#: conf/site_settings.py:37 msgid "Copyright message to show in the footer" msgstr "Sayfa altlığında gösterilecek telif notu" -#: conf/site_settings.py:50 +#: conf/site_settings.py:47 msgid "Site description for the search engines" msgstr "Arama motorları için site tanımı" -#: conf/site_settings.py:58 -msgid "Askbot" -msgstr "Askbot" - -#: conf/site_settings.py:59 +#: conf/site_settings.py:56 msgid "Short name for your Q&A forum" msgstr "Soru/Cevap forumunun kısa adı" -#: conf/site_settings.py:69 +#: conf/site_settings.py:66 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:82 -msgid "Link shown in the greeting message shown to the anonymous user" +#: conf/site_settings.py:77 +#, fuzzy +msgid "Check to enable greeting for anonymous user" +msgstr "Anonim kullanıcı için geçersiz e-posta adresi" + +#: conf/site_settings.py:88 +#, 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:85 -msgid "" -"If you change this url from the default - then you will also probably want " -"to adjust translation of the following string: " +#: conf/site_settings.py:92 +msgid "Use HTML to format the message " msgstr "" -"Eğer bu URL'i varsayılandan başka bir şeye değiştirdiyseniz, aşağıdaki " -"cümleciği de tercüme etmek isteyebilirsiniz:" -#: conf/site_settings.py:98 +#: conf/site_settings.py:101 msgid "Feedback site URL" msgstr "Geri bildirim adresi" -#: conf/site_settings.py:100 +#: conf/site_settings.py:103 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" @@ -938,24 +1578,34 @@ msgstr "Kabul edilen için arkaplan rengi" msgid "Foreground color for accepted answer" msgstr "Kabul edilen cevap için önplan rengi" -#: conf/skin_general_settings.py:15 +#: conf/skin_general_settings.py:14 #, fuzzy msgid "Skin and User Interface settings" msgstr "Tema: genel ayarlar" -#: conf/skin_general_settings.py:22 +#: conf/skin_general_settings.py:21 msgid "Q&A site logo" msgstr "" -#: conf/skin_general_settings.py:24 +#: conf/skin_general_settings.py:23 msgid "To change the logo, select new file, then submit this whole form." msgstr "" -#: conf/skin_general_settings.py:38 +#: conf/skin_general_settings.py:37 +msgid "Show logo" +msgstr "" + +#: 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 msgid "Site favicon" msgstr "" -#: conf/skin_general_settings.py:40 +#: conf/skin_general_settings.py:53 #, python-format msgid "" "A small 16x16 or 32x32 pixel icon image used to distinguish your site in the " @@ -963,64 +1613,229 @@ msgid "" "href=\"%(favicon_info_url)s\">this page." msgstr "" -#: conf/skin_general_settings.py:56 +#: conf/skin_general_settings.py:71 msgid "Password login button" msgstr "" -#: conf/skin_general_settings.py:58 +#: conf/skin_general_settings.py:73 msgid "" "An 88x38 pixel image that is used on the login screen for the password login " "button." msgstr "" -#: conf/skin_general_settings.py:73 +#: conf/skin_general_settings.py:88 msgid "Show all UI functions to all users" msgstr "" -#: conf/skin_general_settings.py:75 +#: conf/skin_general_settings.py:90 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:90 +#: conf/skin_general_settings.py:105 msgid "Select skin" msgstr "Tema seç" -#: conf/skin_general_settings.py:99 -msgid "Skin media revision number" -msgstr "Tema medya dosyaları versiyon numarası" +#: conf/skin_general_settings.py:116 +msgid "Customize HTML " +msgstr "" + +#: conf/skin_general_settings.py:125 +msgid "Custom portion of the HTML " +msgstr "" -#: conf/skin_general_settings.py:101 +#: conf/skin_general_settings.py:127 msgid "" -"Increment this number when you change image in skin media or stylesheet. " -"This helps avoid showing your users outdated images from their browser cache." +"To use this option, check \"Customize HTML <HEAD>\" " +"above. Contents of this box will be inserted into the <HEAD> portion " +"of the HTML output, where elements such as <script>, <link>, <" +"meta> may be added. Please, keep in mind that adding external javascript " +"to the <HEAD> 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. Note: if you do use this setting, " +"please test the site with the W3C HTML validator service." msgstr "" -"Tema dosyalarında değişiklik yaptığınızda bu sayıyı arttırarak " -"kullanıcıların tarayıcılarının kaşesinde kalmış eski imajları görmelerini " -"engellersiniz." -#: conf/social_sharing.py:10 -msgid "Sharing content on social networks" +#: conf/skin_general_settings.py:149 +msgid "Custom header additions" msgstr "" -#: conf/social_sharing.py:18 -msgid "Check to enable sharing of questions on Twitter and Facebook" +#: conf/skin_general_settings.py:151 +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 " +"headerin the HTML format. When customizing the site header (as well as " +"footer and the HTML <HEAD>), use the HTML validation service to make " +"sure that your input is valid and works well in all browsers." msgstr "" -#: conf/user_settings.py:10 -msgid "User policy settings" -msgstr "Kullanıcı idare ayarları" +#: conf/skin_general_settings.py:166 +msgid "Site footer mode" +msgstr "" -#: conf/user_settings.py:18 -msgid "Allow editing user screen name" -msgstr "Kullanıcı adının değiştirilmesine izin ver" +#: conf/skin_general_settings.py:168 +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/user_settings.py:28 -msgid "Minimum allowed length for screen name" +#: conf/skin_general_settings.py:185 +msgid "Custom footer (HTML format)" +msgstr "" + +#: conf/skin_general_settings.py:187 +msgid "" +"To enable this function, please select option 'customize' " +"in the \"Site footer mode\" above. Use this area to enter contents of the " +"footer in the HTML format. When customizing the site footer (as well as the " +"header and HTML <HEAD>), use the HTML validation service to make sure " +"that your input is valid and works well in all browsers." +msgstr "" + +#: conf/skin_general_settings.py:202 +msgid "Apply custom style sheet (CSS)" +msgstr "" + +#: conf/skin_general_settings.py:204 +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:216 +msgid "Custom style sheet (CSS)" +msgstr "" + +#: conf/skin_general_settings.py:218 +msgid "" +"To use this function, 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 \"<forum url>/custom.css\", where the \"<forum url> part " +"depends (default is empty string) on the url configuration in your urls.py." +msgstr "" + +#: conf/skin_general_settings.py:234 +msgid "Add custom javascript" +msgstr "" + +#: conf/skin_general_settings.py:237 +msgid "Check to enable javascript that you can enter in the next field" +msgstr "" + +#: conf/skin_general_settings.py:247 +msgid "Custom javascript" +msgstr "" + +#: conf/skin_general_settings.py:249 +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 \"<forum url>/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 (to " +"enable your custom code, check \"Add custom javascript\" option " +"above)." +msgstr "" + +#: conf/skin_general_settings.py:267 +msgid "Skin media revision number" +msgstr "Tema medya dosyaları versiyon numarası" + +#: conf/skin_general_settings.py:269 +msgid "Will be set automatically but you can modify it if necessary." +msgstr "" + +#: conf/skin_general_settings.py:280 +msgid "Hash to update the media revision number automatically." +msgstr "" + +#: conf/skin_general_settings.py:284 +msgid "Will be set automatically, it is not necesary to modify manually." +msgstr "" + +#: conf/social_sharing.py:10 +msgid "Sharing content on social networks" +msgstr "" + +#: conf/social_sharing.py:18 +#, fuzzy +msgid "Check to enable sharing of questions on Twitter" +msgstr "Bu soruyu tekrar aç" + +#: conf/social_sharing.py:27 +msgid "Check to enable sharing of questions on Facebook" +msgstr "" + +#: conf/social_sharing.py:36 +msgid "Check to enable sharing of questions on LinkedIn" +msgstr "" + +#: conf/social_sharing.py:45 +msgid "Check to enable sharing of questions on Identi.ca" +msgstr "" + +#: conf/social_sharing.py:54 +msgid "Check to enable sharing of questions on Google+" +msgstr "" + +#: conf/spam_and_moderation.py:9 +msgid "Spam control and content moderation" +msgstr "" + +#: conf/spam_and_moderation.py:16 +msgid "Enable Akismet spam detection(keys below are required)" +msgstr "" + +#: conf/spam_and_moderation.py:19 +#, python-format +msgid "To get an Akismet key please visit Akismet site" +msgstr "" + +#: conf/spam_and_moderation.py:29 +msgid "Akismet key for spam detection" +msgstr "" + +#: conf/user_settings.py:11 +#, fuzzy +msgid "User settings" +msgstr "Kullanıcı idare ayarları" + +#: conf/user_settings.py:19 +msgid "Allow editing user screen name" +msgstr "Kullanıcı adının değiştirilmesine izin ver" + +#: conf/user_settings.py:28 +#, fuzzy +msgid "Allow account recovery by email" +msgstr "Bir e-posta adresi ile tek kullanıcıya izin ver" + +#: conf/user_settings.py:37 +msgid "Allow adding and removing login methods" +msgstr "" + +#: conf/user_settings.py:47 +msgid "Minimum allowed length for screen name" msgstr "Görünen isim için en az kelime uzunluğu" +#: conf/user_settings.py:57 +msgid "Default Gravatar icon type" +msgstr "" + +#: conf/user_settings.py:59 +msgid "" +"This option allows you to set the default avatar type for email addresses " +"without associated gravatar images. For more information, please visit this page." +msgstr "" + +#: conf/user_settings.py:69 +#, fuzzy +msgid "Name for the Anonymous user" +msgstr "Anonim kullanıcı için geçersiz e-posta adresi" + #: conf/vote_rules.py:13 msgid "Limits applicable to votes and moderation flags" msgstr "Oylama ve işaretlemeler için limitler" @@ -1042,291 +1857,429 @@ msgid "Number of days to allow canceling votes" msgstr "Oyların iptali edilebilmesi için gün sayısı" #: conf/vote_rules.py:58 +#, fuzzy +msgid "Number of days required before answering own question" +msgstr "Oyların iptali edilebilmesi için gün sayısı" + +#: conf/vote_rules.py:67 msgid "Number of flags required to automatically hide posts" msgstr "" "Gönderiyi otomatik olarak gizlemek için gerekli olumsuz bildirim sayısı" -#: conf/vote_rules.py:67 +#: conf/vote_rules.py:76 msgid "Number of flags required to automatically delete posts" msgstr "Gönderiyi otomatik olarak silmek için gerekli olumsuz bildirim sayısı" -#: const/__init__.py:9 +#: const/__init__.py:10 msgid "duplicate question" msgstr "yinelenen soru" -#: const/__init__.py:10 +#: const/__init__.py:11 msgid "question is off-topic or not relevant" msgstr "soru konu dışı veya alakalısız" -#: const/__init__.py:11 +#: const/__init__.py:12 msgid "too subjective and argumentative" msgstr "çok öznel ve tartışmacı" -#: const/__init__.py:12 +#: const/__init__.py:13 msgid "not a real question" msgstr "gerçek bir soru değil" -#: const/__init__.py:13 +#: const/__init__.py:14 msgid "the question is answered, right answer was accepted" msgstr "soru cevabı doğru kabul edildi" -#: const/__init__.py:14 +#: const/__init__.py:15 msgid "question is not relevant or outdated" msgstr "soru, ilgisiz veya eskimiş" -#: const/__init__.py:15 +#: const/__init__.py:16 msgid "question contains offensive or malicious remarks" msgstr "soru saldırgan ya da kötü niyetli sözler içeriyor" -#: const/__init__.py:16 +#: const/__init__.py:17 msgid "spam or advertising" msgstr "spam ya da reklam" -#: const/__init__.py:17 +#: const/__init__.py:18 msgid "too localized" msgstr "çok dar kapsamlı" -#: const/__init__.py:40 +#: const/__init__.py:41 msgid "newest" msgstr "en yeni" -#: const/__init__.py:41 skins/default/templates/users.html:25 -#: skins/default/templates/users.html:26 +#: const/__init__.py:42 skins/default/templates/users.html:26 msgid "oldest" msgstr "en eski" -#: const/__init__.py:42 +#: const/__init__.py:43 msgid "active" msgstr "aktif" -#: const/__init__.py:43 +#: const/__init__.py:44 msgid "inactive" msgstr "hareketsiz" -#: const/__init__.py:44 +#: const/__init__.py:45 msgid "hottest" msgstr "sıcak" -#: const/__init__.py:45 +#: const/__init__.py:46 msgid "coldest" msgstr "soğuk" -#: const/__init__.py:46 +#: const/__init__.py:47 msgid "most voted" msgstr "en çok oy alan" -#: const/__init__.py:47 +#: const/__init__.py:48 msgid "least voted" msgstr "En az oy" -#: const/__init__.py:48 +#: const/__init__.py:49 msgid "relevance" msgstr "ilgi" -#: const/__init__.py:55 skins/default/templates/questions.html:14 -#: skins/default/templates/user_inbox.html:47 +#: const/__init__.py:57 skins/default/templates/main_page/tab_bar.html:10 +#: skins/default/templates/user_profile/user_inbox.html:50 msgid "all" msgstr "tümü" -#: const/__init__.py:56 skins/default/templates/questions.html:19 +#: const/__init__.py:58 skins/default/templates/main_page/tab_bar.html:15 msgid "unanswered" msgstr "cevapsız" -#: const/__init__.py:57 skins/default/templates/questions.html:25 +#: const/__init__.py:59 msgid "favorite" msgstr "favori" -#: const/__init__.py:70 +#: const/__init__.py:64 +#, fuzzy +msgid "list" +msgstr "Etiket listesi" + +#: const/__init__.py:65 +msgid "cloud" +msgstr "" + +#: const/__init__.py:78 msgid "Question has no answers" msgstr "Cevapsız soru" -#: const/__init__.py:71 +#: const/__init__.py:79 msgid "Question has no accepted answers" msgstr "Kabul edilmiş cevabı olmayan soru" -#: const/__init__.py:111 +#: const/__init__.py:121 msgid "asked a question" msgstr "bir soru sordu" -#: const/__init__.py:112 +#: const/__init__.py:122 msgid "answered a question" msgstr "bir soru cevapladı" -#: const/__init__.py:113 +#: const/__init__.py:123 msgid "commented question" msgstr "soruya yorum yazıldı" -#: const/__init__.py:114 +#: const/__init__.py:124 msgid "commented answer" msgstr "cevaba yorum yazıldı" -#: const/__init__.py:115 +#: const/__init__.py:125 msgid "edited question" msgstr "soru düzeltilmiş" -#: const/__init__.py:116 +#: const/__init__.py:126 msgid "edited answer" msgstr "cevap düzeltilmiş" -#: const/__init__.py:117 +#: const/__init__.py:127 msgid "received award" msgstr "alınan ödül" -#: const/__init__.py:118 +#: const/__init__.py:128 msgid "marked best answer" msgstr "en iyi cevap olarak işaretlenmiş" -#: const/__init__.py:119 +#: const/__init__.py:129 msgid "upvoted" msgstr "beğendim" -#: const/__init__.py:120 +#: const/__init__.py:130 msgid "downvoted" msgstr "beğenmedim" -#: const/__init__.py:121 +#: const/__init__.py:131 msgid "canceled vote" msgstr "oy iptal" -#: const/__init__.py:122 +#: const/__init__.py:132 msgid "deleted question" msgstr "silinmiş bir soru" -#: const/__init__.py:123 +#: const/__init__.py:133 msgid "deleted answer" msgstr "silinmiş cevap" -#: const/__init__.py:124 +#: const/__init__.py:134 msgid "marked offensive" msgstr "saldırgan olarak işaretlenmiş" -#: const/__init__.py:125 +#: const/__init__.py:135 msgid "updated tags" msgstr "güncellenmiş etiketler" -#: const/__init__.py:126 +#: const/__init__.py:136 msgid "selected favorite" msgstr "favori olarak seçilmiş" -#: const/__init__.py:127 +#: const/__init__.py:137 msgid "completed user profile" msgstr "tamamlanmış kullanıcı profili" -#: const/__init__.py:128 +#: const/__init__.py:138 msgid "email update sent to user" msgstr "kullanıcıya e-mail güncelleme gönder" -#: const/__init__.py:129 +#: const/__init__.py:141 +#, fuzzy +msgid "reminder about unanswered questions sent" +msgstr "cevapsız sorular gör" + +#: const/__init__.py:143 msgid "mentioned in the post" msgstr "gönderide belirtilmiş" -#: const/__init__.py:180 +#: const/__init__.py:194 msgid "question_answered" msgstr "cevaplanmış_soru" -#: const/__init__.py:181 +#: const/__init__.py:195 msgid "question_commented" msgstr "yorumlanmış soru" -#: const/__init__.py:182 +#: const/__init__.py:196 msgid "answer_commented" msgstr "yorumlanmış soru" -#: const/__init__.py:183 +#: const/__init__.py:197 msgid "answer_accepted" msgstr "kabul edilmiş soru" -#: const/__init__.py:187 +#: const/__init__.py:201 msgid "[closed]" msgstr "[kapatıldı]" -#: const/__init__.py:188 +#: const/__init__.py:202 msgid "[deleted]" msgstr "[silindi]" -#: const/__init__.py:189 views/readers.py:549 +#: const/__init__.py:203 views/readers.py:614 msgid "initial version" msgstr "ilk versiyon" -#: const/__init__.py:190 +#: const/__init__.py:204 msgid "retagged" msgstr "yeniden etiketlendi" -#: const/__init__.py:195 -msgid "exclude ignored tags" +#: const/__init__.py:212 +msgid "off" +msgstr "" + +#: const/__init__.py:213 +#, fuzzy +msgid "exclude ignored" msgstr "dışlanmış etiketleri dikkate al" -#: const/__init__.py:196 -msgid "allow only selected tags" -msgstr "sadece seçilmiş etiketlere izin ver" +#: const/__init__.py:214 +#, fuzzy +msgid "only selected" +msgstr "Tek tek seçilmiş" -#: const/__init__.py:200 +#: const/__init__.py:218 msgid "instantly" msgstr "anında" -#: const/__init__.py:201 +#: const/__init__.py:219 msgid "daily" msgstr "günlük" -#: const/__init__.py:202 +#: const/__init__.py:220 msgid "weekly" msgstr "haftalık" -#: const/__init__.py:203 +#: const/__init__.py:221 msgid "no email" msgstr "e-mail yok" +#: const/__init__.py:228 +msgid "identicon" +msgstr "" + +#: const/__init__.py:229 +#, fuzzy +msgid "mystery-man" +msgstr "dün" + +#: const/__init__.py:230 +msgid "monsterid" +msgstr "" + +#: const/__init__.py:231 +#, fuzzy +msgid "wavatar" +msgstr "Gravatar nedir?" + +#: const/__init__.py:232 +msgid "retro" +msgstr "" + +#: const/__init__.py:279 skins/default/templates/badges.html:37 +msgid "gold" +msgstr "altın" + +#: const/__init__.py:280 skins/default/templates/badges.html:46 +msgid "silver" +msgstr "gümüş" + +#: const/__init__.py:281 skins/default/templates/badges.html:53 +msgid "bronze" +msgstr "bronz" + +#: const/__init__.py:293 +msgid "None" +msgstr "" + +#: const/__init__.py:294 +msgid "Gravatar" +msgstr "" + +#: const/__init__.py:295 +msgid "Uploaded Avatar" +msgstr "" + +#: const/message_keys.py:15 +#, fuzzy +msgid "most relevant questions" +msgstr "lütfen ilgili bir soru sorunuz" + +#: const/message_keys.py:16 +#, fuzzy +msgid "click to see most relevant questions" +msgstr "en çok oylanan soruları gör" + +#: const/message_keys.py:17 +#, fuzzy +msgid "by relevance" +msgstr "ilgi" + +#: const/message_keys.py:18 +msgid "click to see the oldest questions" +msgstr "eski soruları görmek için tıklayın" + #: const/message_keys.py:19 -#, python-format -msgid "First time here? Check out the FAQ!" +#, fuzzy +msgid "by date" +msgstr "Güncelleme" + +#: const/message_keys.py:20 +msgid "click to see the newest questions" +msgstr "yeni soruları görmek için tıklayın" + +#: const/message_keys.py:21 +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 +#, fuzzy +msgid "by activity" +msgstr "aktif" + +#: const/message_keys.py:23 +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 +#, fuzzy +msgid "click to see the least answered questions" +msgstr "eski soruları görmek için tıklayın" + +#: const/message_keys.py:25 +#, fuzzy +msgid "by answers" +msgstr "cevaplar" + +#: const/message_keys.py:26 +#, fuzzy +msgid "click to see the most answered questions" +msgstr "en çok oylanan soruları gör" + +#: const/message_keys.py:27 +msgid "click to see least voted questions" +msgstr "en az oylanan soruları gör" + +#: const/message_keys.py:28 +#, fuzzy +msgid "by votes" +msgstr "oy" + +#: const/message_keys.py:29 +msgid "click to see most voted questions" +msgstr "en çok oylanan soruları gör" + +#: deps/django_authopenid/backends.py:88 +msgid "" +"Welcome! Please set email address (important!) in your profile and adjust " +"screen name, if necessary." msgstr "" -"İlk defa mı buradasınız? Sıkça sorulan sorular SSS " -"kısmını ziyaret edebilirsiniz." -#: deps/django_authopenid/forms.py:116 deps/django_authopenid/views.py:137 +#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:151 msgid "i-names are not supported" msgstr "i-name girişleri desteklenmiyor" -#: deps/django_authopenid/forms.py:237 +#: deps/django_authopenid/forms.py:233 #, fuzzy, python-format msgid "Please enter your %(username_token)s" msgstr "Lütfen kullanıcı adı girin" -#: deps/django_authopenid/forms.py:263 +#: deps/django_authopenid/forms.py:259 #, fuzzy msgid "Please, enter your user name" msgstr "Lütfen kullanıcı adı girin" -#: deps/django_authopenid/forms.py:267 +#: deps/django_authopenid/forms.py:263 #, fuzzy msgid "Please, enter your password" msgstr "Lütfen şifrenizi girin" -#: deps/django_authopenid/forms.py:274 deps/django_authopenid/forms.py:278 +#: deps/django_authopenid/forms.py:270 deps/django_authopenid/forms.py:274 #, fuzzy msgid "Please, enter your new password" msgstr "Lütfen şifrenizi girin" -#: deps/django_authopenid/forms.py:289 +#: deps/django_authopenid/forms.py:285 msgid "Passwords did not match" msgstr "" -#: deps/django_authopenid/forms.py:301 +#: deps/django_authopenid/forms.py:297 #, python-format msgid "Please choose password > %(len)s characters" msgstr "" -#: deps/django_authopenid/forms.py:336 +#: deps/django_authopenid/forms.py:335 msgid "Current password" msgstr "Şu anki şifre" -#: deps/django_authopenid/forms.py:347 +#: deps/django_authopenid/forms.py:346 msgid "" "Old password is incorrect. Please enter the correct " "password." msgstr "Eski şifre doğru değil. Lütfen eski şifrenizi tekrar girin." -#: deps/django_authopenid/forms.py:400 +#: deps/django_authopenid/forms.py:399 msgid "Sorry, we don't have this email address in the database" msgstr "" @@ -1338,214 +2291,209 @@ msgstr "Kullanıcı adınız (gerekli)" msgid "Incorrect username." msgstr "Hatalı kullanıcı adı." -#: deps/django_authopenid/urls.py:10 deps/django_authopenid/urls.py:11 -#: deps/django_authopenid/urls.py:12 deps/django_authopenid/urls.py:15 -#: deps/django_authopenid/urls.py:18 setup_templates/settings.py:182 +#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12 +#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:202 msgid "signin/" msgstr "giriş/" -#: deps/django_authopenid/urls.py:11 -msgid "newquestion/" -msgstr "yeni-soru/" - -#: deps/django_authopenid/urls.py:12 -msgid "newanswer/" -msgstr "yeni-cevap/" - -#: deps/django_authopenid/urls.py:13 +#: deps/django_authopenid/urls.py:10 msgid "signout/" msgstr "cikis/" -#: deps/django_authopenid/urls.py:15 +#: deps/django_authopenid/urls.py:12 msgid "complete/" msgstr "tamamlandi/" -#: deps/django_authopenid/urls.py:18 +#: deps/django_authopenid/urls.py:15 #, fuzzy msgid "complete-oauth/" msgstr "tamamlandi/" -#: deps/django_authopenid/urls.py:22 +#: deps/django_authopenid/urls.py:19 msgid "register/" msgstr "kayit/" -#: deps/django_authopenid/urls.py:24 +#: deps/django_authopenid/urls.py:21 msgid "signup/" msgstr "kayit/" -#: deps/django_authopenid/urls.py:32 +#: deps/django_authopenid/urls.py:25 +msgid "logout/" +msgstr "guvenli-cikis/" + +#: deps/django_authopenid/urls.py:30 #, fuzzy msgid "recover/" msgstr "yenidenac/" -#: deps/django_authopenid/util.py:196 +#: deps/django_authopenid/util.py:378 #, fuzzy, python-format msgid "%(site)s user name and password" msgstr "Lütfen kullanıcı adınızı ve şifrenizi girin" -#: deps/django_authopenid/util.py:202 -#: skins/default/templates/authopenid/signin.html:124 +#: deps/django_authopenid/util.py:384 +#: skins/default/templates/authopenid/signin.html:108 msgid "Create a password-protected account" msgstr "" -#: deps/django_authopenid/util.py:203 +#: deps/django_authopenid/util.py:385 #, fuzzy msgid "Change your password" msgstr "Şifre değiştir" -#: deps/django_authopenid/util.py:265 +#: deps/django_authopenid/util.py:473 msgid "Sign in with Yahoo" msgstr "" -#: deps/django_authopenid/util.py:272 +#: deps/django_authopenid/util.py:480 #, fuzzy msgid "AOL screen name" msgstr "Görünen isim" -#: deps/django_authopenid/util.py:280 +#: deps/django_authopenid/util.py:488 #, fuzzy msgid "OpenID url" msgstr "OpenID adresi:" -#: deps/django_authopenid/util.py:297 -#, fuzzy -msgid "MyOpenid user name" -msgstr "kullanıcı tarafından" - -#: deps/django_authopenid/util.py:305 deps/django_authopenid/util.py:313 +#: deps/django_authopenid/util.py:517 #, fuzzy msgid "Flickr user name" msgstr "kullanıcı adı" -#: deps/django_authopenid/util.py:321 +#: deps/django_authopenid/util.py:525 #, fuzzy msgid "Technorati user name" msgstr "bir kullanıcı adı seçin" -#: deps/django_authopenid/util.py:329 +#: deps/django_authopenid/util.py:533 msgid "WordPress blog name" msgstr "" -#: deps/django_authopenid/util.py:337 +#: deps/django_authopenid/util.py:541 msgid "Blogger blog name" msgstr "" -#: deps/django_authopenid/util.py:345 +#: deps/django_authopenid/util.py:549 msgid "LiveJournal blog name" msgstr "" -#: deps/django_authopenid/util.py:353 +#: deps/django_authopenid/util.py:557 #, fuzzy msgid "ClaimID user name" msgstr "kullanıcı adı" -#: deps/django_authopenid/util.py:361 +#: deps/django_authopenid/util.py:565 #, fuzzy msgid "Vidoop user name" msgstr "kullanıcı adı" -#: deps/django_authopenid/util.py:369 +#: deps/django_authopenid/util.py:573 #, fuzzy msgid "Verisign user name" msgstr "kullanıcı adı" -#: deps/django_authopenid/util.py:393 +#: deps/django_authopenid/util.py:608 #, fuzzy, python-format msgid "Change your %(provider)s password" msgstr "Şifre değiştir" -#: deps/django_authopenid/util.py:397 +#: deps/django_authopenid/util.py:612 #, python-format msgid "Click to see if your %(provider)s signin still works for %(site_name)s" msgstr "" -#: deps/django_authopenid/util.py:406 +#: deps/django_authopenid/util.py:621 #, python-format msgid "Create password for %(provider)s" msgstr "" -#: deps/django_authopenid/util.py:410 +#: deps/django_authopenid/util.py:625 #, fuzzy, python-format msgid "Connect your %(provider)s account to %(site_name)s" msgstr "Bu siteye OpenID hesabınızla giriş yapın" -#: deps/django_authopenid/util.py:419 +#: deps/django_authopenid/util.py:634 #, fuzzy, python-format msgid "Signin with %(provider)s user name and password" msgstr "Lütfen kullanıcı adınızı ve şifrenizi girin" -#: deps/django_authopenid/util.py:426 +#: deps/django_authopenid/util.py:641 #, python-format msgid "Sign in with your %(provider)s account" msgstr "" -#: deps/django_authopenid/views.py:144 +#: deps/django_authopenid/views.py:158 #, python-format msgid "OpenID %(openid_url)s is invalid" msgstr "OpenID %(openid_url)s geçersiz" -#: deps/django_authopenid/views.py:256 deps/django_authopenid/views.py:399 -#: deps/django_authopenid/views.py:427 +#: deps/django_authopenid/views.py:270 deps/django_authopenid/views.py:415 +#: deps/django_authopenid/views.py:443 #, 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:349 +#: deps/django_authopenid/views.py:365 #, fuzzy msgid "Your new password saved" msgstr "Şifreniz değiştirildi" -#: deps/django_authopenid/views.py:511 +#: deps/django_authopenid/views.py:469 +msgid "The login password combination was not correct" +msgstr "" + +#: deps/django_authopenid/views.py:573 msgid "Please click any of the icons below to sign in" msgstr "" -#: deps/django_authopenid/views.py:513 +#: deps/django_authopenid/views.py:575 msgid "Account recovery email sent" msgstr "" -#: deps/django_authopenid/views.py:516 +#: deps/django_authopenid/views.py:578 msgid "Please add one or more login methods." msgstr "" -#: deps/django_authopenid/views.py:518 +#: deps/django_authopenid/views.py:580 msgid "If you wish, please add, remove or re-validate your login methods" msgstr "" -#: deps/django_authopenid/views.py:520 +#: deps/django_authopenid/views.py:582 msgid "Please wait a second! Your account is recovered, but ..." msgstr "" -#: deps/django_authopenid/views.py:522 +#: deps/django_authopenid/views.py:584 msgid "Sorry, this account recovery key has expired or is invalid" msgstr "" -#: deps/django_authopenid/views.py:578 +#: deps/django_authopenid/views.py:657 #, python-format msgid "Login method %(provider_name)s does not exist" msgstr "" -#: deps/django_authopenid/views.py:584 +#: deps/django_authopenid/views.py:663 #, 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:675 +#: deps/django_authopenid/views.py:754 #, python-format msgid "Your %(provider)s login works fine" msgstr "" -#: deps/django_authopenid/views.py:973 deps/django_authopenid/views.py:979 +#: deps/django_authopenid/views.py:1065 deps/django_authopenid/views.py:1071 #, 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:1000 -msgid "Email verification subject line" -msgstr "E-posta doğrulama mesajı konusu" +#: deps/django_authopenid/views.py:1092 +#, fuzzy, python-format +msgid "Recover your %(site)s account" +msgstr "Hesabınıza yeni bir şifre verin." -#: deps/django_authopenid/views.py:1065 +#: deps/django_authopenid/views.py:1162 msgid "Please check your email and visit the enclosed link." msgstr "" @@ -1553,24 +2501,24 @@ msgstr "" msgid "Site" msgstr "Site" -#: deps/livesettings/values.py:107 +#: deps/livesettings/values.py:106 msgid "Base Settings" msgstr "Temel Ayarlar" -#: deps/livesettings/values.py:214 +#: deps/livesettings/values.py:213 msgid "Default value: \"\"" msgstr "Varsayılan değer: \"\"" -#: deps/livesettings/values.py:221 +#: deps/livesettings/values.py:220 msgid "Default value: " msgstr "Varsayılan değer:" -#: deps/livesettings/values.py:224 +#: deps/livesettings/values.py:223 #, python-format msgid "Default value: %s" msgstr "Varsayılan değer: %s" -#: deps/livesettings/values.py:589 +#: deps/livesettings/values.py:601 #, fuzzy, python-format msgid "Allowed image file types are %(types)s" msgstr "izin verilen dosya türleri '%(file_types)s'" @@ -1586,7 +2534,7 @@ msgstr "Belgelendirme" #: deps/livesettings/templates/livesettings/group_settings.html:11 #: deps/livesettings/templates/livesettings/site_settings.html:23 -#: skins/default/templates/authopenid/signin.html:142 +#: skins/default/templates/authopenid/signin.html:132 msgid "Change password" msgstr "Şifre değiştir" @@ -1646,60 +2594,58 @@ msgstr "Grup ayarları: %(name)s" msgid "Uncollapse all" msgstr "Hepsini kapat" -#: deps/recaptcha_django/__init__.py:19 deps/recaptcha_django/__init__.py:80 -msgid "Unknown error." -msgstr "Bilinmeyen hata." - -#: deps/recaptcha_django/__init__.py:20 deps/recaptcha_django/__init__.py:21 -msgid "ReCAPTCHA is wrongly configured." -msgstr "Hatalı ReCAPTCHA konfigürasyonu" - -#: deps/recaptcha_django/__init__.py:22 -msgid "Bad reCAPTCHA challenge parameter." -msgstr "Kötü ReCAPTCHA parametresi" - -#: deps/recaptcha_django/__init__.py:23 -msgid "The CAPTCHA solution was incorrect." -msgstr "CAPTCHA çözümü yanlış" - -#: deps/recaptcha_django/__init__.py:24 -msgid "Bad reCAPTCHA verification parameters." -msgstr "Geçersiz reCAPTCHA doğrulama parametreleri" - -#: deps/recaptcha_django/__init__.py:25 -msgid "Provided reCAPTCHA API keys are not valid for this domain." -msgstr "Temin edilen reCAPTCHA parametreleri bu site için geçerli değil." - -#: deps/recaptcha_django/__init__.py:26 -msgid "ReCAPTCHA could not be reached." -msgstr "ReCAPTCHA servisine ulaşılamadı" - -#: deps/recaptcha_django/__init__.py:73 -msgid "Invalid request" -msgstr "Geçersiz talep" - -#: importers/stackexchange/management/commands/load_stackexchange.py:125 +#: importers/stackexchange/management/commands/load_stackexchange.py:141 msgid "Congratulations, you are now an Administrator" msgstr "Tebrikler, artık sitemizde yönetici oldunuz..." -#: management/commands/send_email_alerts.py:105 -#, python-format -msgid "\" and \"%s\"" +#: 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/send_email_alerts.py:108 -#, fuzzy -msgid "\" and more" -msgstr "Daha fazla bilgi" +#: management/commands/post_emailed_questions.py:35 +msgid "" +"

        To ask by email, please:

        \n" +"
          \n" +"
        • Format the subject line as: [Tag1; Tag2] Question title
        • \n" +"
        • Type details of your question into the email body
        • \n" +"
        \n" +"

        Note that tags may consist of more than one word, and tags\n" +"may be separated by a semicolon or a comma

        \n" +msgstr "" -#: management/commands/send_email_alerts.py:113 +#: management/commands/post_emailed_questions.py:55 #, 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] "" +msgid "" +"

        Sorry, there was an error posting your question please contact the " +"%(site)s administrator

        " +msgstr "" -#: management/commands/send_email_alerts.py:467 +#: management/commands/post_emailed_questions.py:61 +#, python-format +msgid "" +"

        Sorry, in order to post questions on %(site)s by email, please register first

        " +msgstr "" + +#: management/commands/post_emailed_questions.py:69 +msgid "" +"

        Sorry, your question could not be posted due to insufficient privileges " +"of your user account

        " +msgstr "" + +#: management/commands/send_email_alerts.py:411 +#, 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" @@ -1710,11 +2656,11 @@ msgstr[1] "" "

        Dear %(name)s,

        The following %(num)d questions have been updated on " "the Q&A forum:

        " -#: management/commands/send_email_alerts.py:484 +#: management/commands/send_email_alerts.py:438 msgid "new question" msgstr "yeni soru" -#: management/commands/send_email_alerts.py:501 +#: 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 " @@ -1724,7 +2670,7 @@ msgstr "" "burada olani biteni anlatın. Belki buradaki soruları cevaplayabilecek veya " "soru sorarak askbot'tan faydalanabilecek birilerini tanıyorsunuzdur." -#: management/commands/send_email_alerts.py:513 +#: 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 " @@ -1733,7 +2679,7 @@ 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:519 +#: 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 " @@ -1742,17 +2688,17 @@ 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:525 +#: 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:530 +#: management/commands/send_email_alerts.py:490 #, fuzzy, python-format msgid "" -"go to %(email_settings_link)s to change frequency of email updates or %" -"(admin_email)s administrator" +"go to %(email_settings_link)s to change frequency of email updates or " +"%(admin_email)s administrator" msgstr "" "

        Please remember that you can always adjust " "frequency of the email updates or turn them off entirely.
        If you believe " @@ -1760,565 +2706,146 @@ msgstr "" "administrator at %(email)s.

        Sincerely,

        Your friendly Q&A forum " "server.

        " -#: migrations/0005_install_badges.py:11 -msgid "Disciplined" -msgstr "Disiplinli" - -#: migrations/0005_install_badges.py:11 -msgid "disciplined" -msgstr "disiplinli" - -#: migrations/0005_install_badges.py:11 -msgid "Deleted own post with score of 3 or higher" -msgstr "3 veya daha fazla puanı olan kendi gönderisini silmiş" - -#: migrations/0005_install_badges.py:12 -msgid "Peer Pressure" -msgstr "Çevre baskısı" - -#: migrations/0005_install_badges.py:12 -msgid "peer-pressure" -msgstr "cevre-baskisi" - -#: migrations/0005_install_badges.py:12 -msgid "Deleted own post with score of -3 or lower" -msgstr "-3 veya daha az oy alan kendi gönderisini silmiş" - -#: migrations/0005_install_badges.py:13 -msgid "Nice answer" -msgstr "Güzel cevap" - -#: migrations/0005_install_badges.py:13 -msgid "nice-answer" -msgstr "guzel-cevap" - -#: migrations/0005_install_badges.py:13 -msgid "Answer voted up 10 times" -msgstr "Cevabı 10 kere olumlu oy aldı" - -#: migrations/0005_install_badges.py:14 -msgid "Nice Question" -msgstr "Güzel Soru " - -#: migrations/0005_install_badges.py:14 -msgid "nice-question" -msgstr "guzel-soru" - -#: migrations/0005_install_badges.py:14 -msgid "Question voted up 10 times" -msgstr "Sorusu 10 kere olumlu oy aldı" - -#: migrations/0005_install_badges.py:15 -msgid "Pundit" -msgstr "Üstad" - -#: migrations/0005_install_badges.py:15 -msgid "pundit" -msgstr "ustad" - -#: migrations/0005_install_badges.py:15 -msgid "Left 10 comments with score of 10 or more" -msgstr "10 veya daha yüksek puan alan 10 adet yorum yazmış" - -#: migrations/0005_install_badges.py:16 -msgid "Popular Question" -msgstr "Popüler Soru" - -#: migrations/0005_install_badges.py:16 -msgid "popular-question" -msgstr "populer-soru" - -#: migrations/0005_install_badges.py:16 -msgid "Asked a question with 1,000 views" -msgstr "1000 kere görüntülenen bir soru sordu" - -#: migrations/0005_install_badges.py:17 -msgid "Citizen patrol" -msgstr "Halk devriyesi" - -#: migrations/0005_install_badges.py:17 -msgid "citizen-patrol" -msgstr "halk-devriyesi" - -#: migrations/0005_install_badges.py:17 -msgid "First flagged post" -msgstr "İlk işaretlenen ileti" - -#: migrations/0005_install_badges.py:18 -msgid "Cleanup" -msgstr "Temizlik" - -#: migrations/0005_install_badges.py:18 -msgid "cleanup" -msgstr "temizlik" - -#: migrations/0005_install_badges.py:18 -msgid "First rollback" -msgstr "İlk geri alma" - -#: migrations/0005_install_badges.py:19 -msgid "Critic" -msgstr "Eleştirmen" - -#: migrations/0005_install_badges.py:19 -msgid "critic" -msgstr "elestirmen" - -#: migrations/0005_install_badges.py:19 -msgid "First down vote" -msgstr "İlk olumsuz oy" - -#: migrations/0005_install_badges.py:20 -msgid "Editor" -msgstr "Editör" - -#: migrations/0005_install_badges.py:20 -msgid "editor" -msgstr "editor" - -#: migrations/0005_install_badges.py:20 -msgid "First edit" -msgstr "İlk düzeltme" - -#: migrations/0005_install_badges.py:21 -msgid "Organizer" -msgstr "Organizatör" - -#: migrations/0005_install_badges.py:21 -msgid "organizer" -msgstr "organizator" - -#: migrations/0005_install_badges.py:21 -msgid "First retag" -msgstr "İlk tekrardan etiketleme" - -#: migrations/0005_install_badges.py:22 -msgid "Scholar" -msgstr "Alim" - -#: migrations/0005_install_badges.py:22 -msgid "scholar" -msgstr "alim" - -#: migrations/0005_install_badges.py:22 -msgid "First accepted answer on your own question" -msgstr "Kendi soruna verdiğin ilk kabul edilmiş cevap" - -#: migrations/0005_install_badges.py:23 -msgid "Student" -msgstr "Öğrenci" - -#: migrations/0005_install_badges.py:23 -msgid "student" -msgstr "ogrenci" - -#: migrations/0005_install_badges.py:23 -msgid "Asked first question with at least one up vote" -msgstr "En az bir olumlu oy alan sorduğun ilk soru" - -#: migrations/0005_install_badges.py:24 -msgid "Supporter" -msgstr "Taraftar" - -#: migrations/0005_install_badges.py:24 -msgid "supporter" -msgstr "taraftar" - -#: migrations/0005_install_badges.py:24 -msgid "First up vote" -msgstr "İlk olumlu oy" - -#: migrations/0005_install_badges.py:25 -msgid "Teacher" -msgstr "Öğretmen" - -#: migrations/0005_install_badges.py:25 -msgid "teacher" -msgstr "ogretmen" - -#: migrations/0005_install_badges.py:25 -msgid "Answered first question with at least one up vote" -msgstr "En az bir olumlu oy alan ilk cevabı vermiş" - -#: migrations/0005_install_badges.py:26 -msgid "Autobiographer" -msgstr "Otobiyograf" - -#: migrations/0005_install_badges.py:26 -msgid "autobiographer" -msgstr "otobiyograf" - -#: migrations/0005_install_badges.py:26 -msgid "Completed all user profile fields" -msgstr "Kullanıcı profilindeki bütün alanları doldurdu" - -#: migrations/0005_install_badges.py:27 -msgid "Self-Learner" -msgstr "Kendi öğrenen" - -#: migrations/0005_install_badges.py:27 -msgid "self-learner" -msgstr "kendi-ogrenen" - -#: migrations/0005_install_badges.py:27 -msgid "Answered your own question with at least 3 up votes" -msgstr "Kendi sorusunu cevaplayarak en az 3 olumlu oy aldı" - -#: migrations/0005_install_badges.py:28 -msgid "Great Answer" -msgstr "Harika Cevap" - -#: migrations/0005_install_badges.py:28 -msgid "great-answer" -msgstr "harika-cevap" - -#: migrations/0005_install_badges.py:28 -msgid "Answer voted up 100 times" -msgstr "100 kere olumlu oy alan cevap" - -#: migrations/0005_install_badges.py:29 -msgid "Great Question" -msgstr "Harika Soru" - -#: migrations/0005_install_badges.py:29 -msgid "great-question" -msgstr "harika-soru" - -#: migrations/0005_install_badges.py:29 -msgid "Question voted up 100 times" -msgstr "100 kere olumlu oy alan soru" - -#: migrations/0005_install_badges.py:30 -msgid "Stellar Question" -msgstr "Bomba soru" - -#: migrations/0005_install_badges.py:30 -msgid "stellar-question" -msgstr "bomba-soru" - -#: migrations/0005_install_badges.py:30 -msgid "Question favorited by 100 users" -msgstr "100 kullanıcı tarafından favori seçilen soru " - -#: migrations/0005_install_badges.py:31 -msgid "Famous question" -msgstr "Ünlü soru" - -#: migrations/0005_install_badges.py:31 -msgid "famous-question" -msgstr "ünlü-soru" - -#: migrations/0005_install_badges.py:31 -msgid "Asked a question with 10,000 views" -msgstr "10000 kez göruntülenmiş bir soru sordu" - -#: migrations/0005_install_badges.py:32 -msgid "Alpha" -msgstr "Alfa" - -#: migrations/0005_install_badges.py:32 -msgid "alpha" -msgstr "alfa" - -#: migrations/0005_install_badges.py:32 -msgid "Actively participated in the private alpha" -msgstr "Özel alfaya aktif olarak katıldı" - -#: migrations/0005_install_badges.py:33 -msgid "Good Answer" -msgstr "İyi cevap" - -#: migrations/0005_install_badges.py:33 -msgid "good-answer" -msgstr "iyi-cevap" - -#: migrations/0005_install_badges.py:33 -msgid "Answer voted up 25 times" -msgstr "25 olumlu oy alan cevap" - -#: migrations/0005_install_badges.py:34 -msgid "Good Question" -msgstr "İyi soru" - -#: migrations/0005_install_badges.py:34 -msgid "good-question" -msgstr "iyi-soru" - -#: migrations/0005_install_badges.py:34 -msgid "Question voted up 25 times" -msgstr "25 olumlu oy alan soru" - -#: migrations/0005_install_badges.py:35 -msgid "Favorite Question" -msgstr "Favori Soru" - -#: migrations/0005_install_badges.py:35 -msgid "favorite-question" -msgstr "favori-soru" - -#: migrations/0005_install_badges.py:35 -msgid "Question favorited by 25 users" -msgstr "25 kullanıcının favorisi olan soru" - -#: migrations/0005_install_badges.py:36 -msgid "Civic duty" -msgstr "Sosyal sorumluluk" - -#: migrations/0005_install_badges.py:36 -msgid "civic-duty" -msgstr "sosyal-sorumluluk" - -#: migrations/0005_install_badges.py:36 -msgid "Voted 300 times" -msgstr "300 kez oylandı." - -#: migrations/0005_install_badges.py:37 -msgid "Strunk & White" -msgstr "Dilbilimci" - -#: migrations/0005_install_badges.py:37 -msgid "strunk-and-white" -msgstr "dilbilimci" - -#: migrations/0005_install_badges.py:37 -msgid "Edited 100 entries" -msgstr "100 girdi düzenledi" - -#: migrations/0005_install_badges.py:38 -msgid "Generalist" -msgstr "Kültürlü" - -#: migrations/0005_install_badges.py:38 -msgid "generalist" -msgstr "kulturlu" - -#: migrations/0005_install_badges.py:38 -msgid "Active in many different tags" -msgstr "Bir çok etikette etkin" - -#: migrations/0005_install_badges.py:39 -msgid "Expert" -msgstr "Uzman" - -#: migrations/0005_install_badges.py:39 -msgid "expert" -msgstr "uzman" - -#: migrations/0005_install_badges.py:39 -msgid "Very active in one tag" -msgstr "Bir etikette çok etkin" - -#: migrations/0005_install_badges.py:40 -msgid "Yearling" -msgstr "Yıllanmış" - -#: migrations/0005_install_badges.py:40 -msgid "yearling" -msgstr "yillanmis" - -#: migrations/0005_install_badges.py:40 -msgid "Active member for a year" -msgstr "Bir yıldır aktif kullanıcı" - -#: migrations/0005_install_badges.py:41 -msgid "Notable Question" -msgstr "Önemli Soru " - -#: migrations/0005_install_badges.py:41 -msgid "notable-question" -msgstr "onemli-soru" - -#: migrations/0005_install_badges.py:41 -msgid "Asked a question with 2,500 views" -msgstr "2,500 kere görüntülenen bir soru sordu" - -#: migrations/0005_install_badges.py:42 -msgid "Enlightened" -msgstr "Aydınlanmış" - -#: migrations/0005_install_badges.py:42 -msgid "enlightened" -msgstr "aydinlanmis" - -#: migrations/0005_install_badges.py:42 -msgid "First answer was accepted with at least 10 up votes" -msgstr "En az 10 olumlu oyla kabul edilen cevap vermiş" - -#: migrations/0005_install_badges.py:43 -msgid "Beta" -msgstr "Beta" - -#: migrations/0005_install_badges.py:43 -msgid "beta" -msgstr "beta" - -#: migrations/0005_install_badges.py:43 -msgid "Actively participated in the private beta" -msgstr "Özel beta kullanımında aktif olarak yer aldı" - -#: migrations/0005_install_badges.py:44 -msgid "Guru" -msgstr "Guru" - -#: migrations/0005_install_badges.py:44 -msgid "guru" -msgstr "guru" - -#: migrations/0005_install_badges.py:44 -msgid "Accepted answer and voted up 40 times" -msgstr "Cevabı kabul etmiş ve 40 kere olumlu oy kullanmış" - -#: migrations/0005_install_badges.py:45 -msgid "Necromancer" -msgstr "Ölü diriltici" - -#: migrations/0005_install_badges.py:45 -msgid "necromancer" -msgstr "olu-diriltici" - -#: migrations/0005_install_badges.py:45 -msgid "Answered a question more than 60 days later with at least 5 votes" -msgstr "En az 60 gün sonra bir soruyu cevaplamış ve en az 5 oy almış" - -#: migrations/0005_install_badges.py:46 -msgid "Taxonomist" -msgstr "Taksonomist" - -#: migrations/0005_install_badges.py:46 -msgid "taxonomist" -msgstr "taksonomist" - -#: migrations/0005_install_badges.py:46 -msgid "Created a tag used by 50 questions" -msgstr "50 soruda kullanılmış etiket yarattı" +#: management/commands/send_unanswered_question_reminders.py:80 +#, python-format +msgid "%(question_count)d unanswered question about %(topics)s" +msgid_plural "%(question_count)d unanswered questions about %(topics)s" +msgstr[0] "" +msgstr[1] "" -#: models/__init__.py:169 +#: models/__init__.py:316 msgid "" "Sorry, you cannot accept or unaccept best answers because your account is " "blocked" msgstr "" -#: models/__init__.py:174 +#: models/__init__.py:320 msgid "" "Sorry, you cannot accept or unaccept best answers because your account is " "suspended" msgstr "" -#: models/__init__.py:180 -#, fuzzy +#: models/__init__.py:333 +#, fuzzy, python-format msgid "" -"Sorry, you cannot accept or unaccept your own answer to your own question" +">%(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:187 +#: models/__init__.py:347 #, python-format msgid "" -"Sorry, only original author of the question - %(username)s - can accept the " -"best answer" +"Sorry, only original author of the question - %(username)s - can accept or " +"unaccept the best answer" msgstr "" -#: models/__init__.py:210 +#: models/__init__.py:375 msgid "cannot vote for own posts" msgstr "kendi yazılarınıza oy veremezsiniz" -#: models/__init__.py:213 +#: models/__init__.py:378 msgid "Sorry your account appears to be blocked " msgstr "" -#: models/__init__.py:218 +#: models/__init__.py:383 msgid "Sorry your account appears to be suspended " msgstr "" -#: models/__init__.py:228 +#: models/__init__.py:393 #, 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:234 +#: models/__init__.py:399 #, 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:249 +#: models/__init__.py:414 #, fuzzy msgid "Sorry, blocked users cannot upload files" msgstr "Engellenen kullanıcılar ileti yapamaz" -#: models/__init__.py:250 +#: models/__init__.py:415 #, fuzzy msgid "Sorry, suspended users cannot upload files" msgstr "Dondurulan kullanıcılar ileti yapamaz" -#: models/__init__.py:252 +#: models/__init__.py:417 #, 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:271 models/__init__.py:331 models/__init__.py:1950 +#: models/__init__.py:436 models/__init__.py:503 models/__init__.py:918 msgid "blocked users cannot post" msgstr "Engellenen kullanıcılar ileti yapamaz" -#: models/__init__.py:272 models/__init__.py:1953 +#: models/__init__.py:437 models/__init__.py:921 msgid "suspended users cannot post" msgstr "Dondurulan kullanıcılar ileti yapamaz" -#: models/__init__.py:297 +#: models/__init__.py:464 +#, python-format msgid "" -"Sorry, comments (except the last one) are editable only within 10 minutes " -"from posting" -msgstr "" +"Sorry, comments (except the last one) are editable only within %(minutes)s " +"minute from posting" +msgid_plural "" +"Sorry, comments (except the last one) are editable only within %(minutes)s " +"minutes from posting" +msgstr[0] "" +msgstr[1] "" -#: models/__init__.py:303 +#: models/__init__.py:476 msgid "Sorry, but only post owners or moderators can edit comments" msgstr "" -#: models/__init__.py:317 +#: models/__init__.py:489 msgid "" "Sorry, since your account is suspended you can comment only your own posts" msgstr "" -#: models/__init__.py:321 +#: models/__init__.py:493 #, 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:349 +#: models/__init__.py:521 msgid "" -"This post has been deleted and can be seen only by post ownwers, site " +"This post has been deleted and can be seen only by post owners, site " "administrators and moderators" msgstr "" -#: models/__init__.py:366 +#: models/__init__.py:538 msgid "" "Sorry, only moderators, site administrators and post owners can edit deleted " "posts" msgstr "" -#: models/__init__.py:381 +#: models/__init__.py:553 msgid "Sorry, since your account is blocked you cannot edit posts" msgstr "" -#: models/__init__.py:385 +#: models/__init__.py:557 msgid "Sorry, since your account is suspended you can edit only your own posts" msgstr "" -#: models/__init__.py:390 +#: models/__init__.py:562 #, python-format msgid "" "Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required" msgstr "" -#: models/__init__.py:397 +#: models/__init__.py:569 #, python-format msgid "" "Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is " "required" msgstr "" -#: models/__init__.py:460 +#: models/__init__.py:632 msgid "" "Sorry, cannot delete your question since it has an upvoted answer posted by " "someone else" @@ -2328,220 +2855,578 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: models/__init__.py:475 +#: models/__init__.py:647 msgid "Sorry, since your account is blocked you cannot delete posts" msgstr "" -#: models/__init__.py:479 +#: models/__init__.py:651 msgid "" "Sorry, since your account is suspended you can delete only your own posts" msgstr "" -#: models/__init__.py:483 +#: models/__init__.py:655 #, python-format msgid "" "Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s " "is required" msgstr "" -#: models/__init__.py:503 +#: models/__init__.py:675 msgid "Sorry, since your account is blocked you cannot close questions" msgstr "" -#: models/__init__.py:507 +#: models/__init__.py:679 msgid "Sorry, since your account is suspended you cannot close questions" msgstr "" -#: models/__init__.py:511 +#: models/__init__.py:683 #, python-format msgid "" "Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is " "required" msgstr "" -#: models/__init__.py:520 +#: models/__init__.py:692 #, python-format msgid "" "Sorry, to close own question a minimum reputation of %(min_rep)s is required" msgstr "" -#: models/__init__.py:544 +#: models/__init__.py:716 #, python-format msgid "" -"Sorry, only administrators, moderators or post owners with reputation > %" -"(min_rep)s can reopen questions." +"Sorry, only administrators, moderators or post owners with reputation > " +"%(min_rep)s can reopen questions." msgstr "" -#: models/__init__.py:550 +#: models/__init__.py:722 #, python-format msgid "" "Sorry, to reopen own question a minimum reputation of %(min_rep)s is required" msgstr "" -#: models/__init__.py:570 +#: models/__init__.py:742 msgid "cannot flag message as offensive twice" msgstr "" -#: models/__init__.py:575 +#: models/__init__.py:747 #, fuzzy msgid "blocked users cannot flag posts" msgstr "Engellenen kullanıcılar ileti yapamaz" -#: models/__init__.py:577 +#: models/__init__.py:749 #, fuzzy msgid "suspended users cannot flag posts" msgstr "Dondurulan kullanıcılar ileti yapamaz" -#: models/__init__.py:579 +#: models/__init__.py:751 #, python-format msgid "need > %(min_rep)s points to flag spam" msgstr "" -#: models/__init__.py:598 +#: models/__init__.py:770 #, python-format msgid "%(max_flags_per_day)s exceeded" msgstr "" -#: models/__init__.py:613 +#: models/__init__.py:785 msgid "" "Sorry, only question owners, site administrators and moderators can retag " "deleted questions" msgstr "" -#: models/__init__.py:620 +#: models/__init__.py:792 msgid "Sorry, since your account is blocked you cannot retag questions" msgstr "" -#: models/__init__.py:624 +#: models/__init__.py:796 msgid "" "Sorry, since your account is suspended you can retag only your own questions" msgstr "" -#: models/__init__.py:628 +#: models/__init__.py:800 #, python-format msgid "" "Sorry, to retag questions a minimum reputation of %(min_rep)s is required" msgstr "" -#: models/__init__.py:647 +#: models/__init__.py:819 msgid "Sorry, since your account is blocked you cannot delete comment" msgstr "" -#: models/__init__.py:651 +#: models/__init__.py:823 msgid "" "Sorry, since your account is suspended you can delete only your own comments" msgstr "" -#: models/__init__.py:655 +#: models/__init__.py:827 #, python-format msgid "Sorry, to delete comments reputation of %(min_rep)s is required" msgstr "" -#: models/__init__.py:678 +#: models/__init__.py:850 msgid "cannot revoke old vote" msgstr "verilen bir oyu iptal edemezsiniz" -#: models/__init__.py:1166 views/users.py:388 +#: models/__init__.py:1325 utils/functions.py:70 +#, python-format +msgid "on %(date)s" +msgstr "%(date)s tarihinde" + +#: models/__init__.py:1327 +msgid "in two days" +msgstr "" + +#: models/__init__.py:1329 +msgid "tomorrow" +msgstr "" + +#: models/__init__.py:1331 +#, 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:1333 +#, 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:1334 +#, python-format +msgid "%(days)d day" +msgid_plural "%(days)d days" +msgstr[0] "" +msgstr[1] "" + +#: models/__init__.py:1336 +#, 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:1501 skins/default/templates/feedback_email.txt:9 +#, fuzzy +msgid "Anonymous" +msgstr "anonim" + +#: models/__init__.py:1597 views/users.py:365 #, fuzzy msgid "Site Adminstrator" msgstr "Saygılarımızla,
        Site yönetimi" -#: models/__init__.py:1168 views/users.py:390 +#: models/__init__.py:1599 views/users.py:367 msgid "Forum Moderator" msgstr "" -#: models/__init__.py:1170 views/users.py:392 +#: models/__init__.py:1601 views/users.py:369 #, fuzzy msgid "Suspended User" msgstr "Gönderen" -#: models/__init__.py:1172 views/users.py:394 +#: models/__init__.py:1603 views/users.py:371 msgid "Blocked User" msgstr "" -#: models/__init__.py:1174 views/users.py:396 +#: models/__init__.py:1605 views/users.py:373 #, fuzzy msgid "Registered User" msgstr "Kayıtlı kullanıcı" -#: models/__init__.py:1176 +#: models/__init__.py:1607 msgid "Watched User" msgstr "" -#: models/__init__.py:1178 +#: models/__init__.py:1609 msgid "Approved User" msgstr "" -#: models/__init__.py:1234 +#: models/__init__.py:1718 #, fuzzy, python-format msgid "%(username)s karma is %(reputation)s" msgstr "karmanız %(reputation)s" -#: models/__init__.py:1244 +#: models/__init__.py:1728 #, python-format msgid "one gold badge" msgid_plural "%(count)d gold badges" msgstr[0] "" msgstr[1] "" -#: models/__init__.py:1251 +#: models/__init__.py:1735 #, 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:1258 +#: models/__init__.py:1742 #, 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:1269 +#: models/__init__.py:1753 #, python-format msgid "%(item1)s and %(item2)s" msgstr "" -#: models/__init__.py:1273 +#: models/__init__.py:1757 #, python-format msgid "%(user)s has %(badges)s" msgstr "" -#: models/__init__.py:1566 models/__init__.py:1572 models/__init__.py:1577 -#: models/__init__.py:1582 +#: models/__init__.py:2164 models/__init__.py:2170 models/__init__.py:2175 +#: models/__init__.py:2180 #, python-format msgid "Re: \"%(title)s\"" msgstr "" -#: models/__init__.py:1587 models/__init__.py:1592 +#: models/__init__.py:2185 models/__init__.py:2190 #, fuzzy, python-format msgid "Question: \"%(title)s\"" msgstr "Etiketleri" -#: models/__init__.py:1773 +#: models/__init__.py:2371 #, python-format msgid "" "Congratulations, you have received a badge '%(badge_name)s'. Check out your profile." msgstr "" -#: models/question.py:687 -#, python-format -msgid "%(author)s modified the question" -msgstr "%(author)s soruyu düzenledi" +#: models/__init__.py:2550 views/commands.py:396 +msgid "Your tag subscription was saved, thanks!" +msgstr "" -#: models/question.py:691 -#, python-format +#: models/answer.py:105 +msgid "" +"Sorry, the answer you are looking for is no longer available, because the " +"parent question has been removed" +msgstr "" + +#: models/answer.py:112 +#, fuzzy +msgid "Sorry, this answer has been removed and is no longer accessible" +msgstr "bu soru favori olarak seçildi" + +#: models/badges.py:129 +#, fuzzy, python-format +msgid "Deleted own post with %(votes)s or more upvotes" +msgstr "-3 veya daha az oy alan kendi gönderisini silmiş" + +#: models/badges.py:133 +msgid "Disciplined" +msgstr "Disiplinli" + +#: models/badges.py:151 +#, fuzzy, python-format +msgid "Deleted own post with %(votes)s or more downvotes" +msgstr "-3 veya daha az oy alan kendi gönderisini silmiş" + +#: models/badges.py:155 +msgid "Peer Pressure" +msgstr "Çevre baskısı" + +#: models/badges.py:174 +#, python-format +msgid "Received at least %(votes)s upvote for an answer for the first time" +msgstr "" + +#: models/badges.py:178 +msgid "Teacher" +msgstr "Öğretmen" + +#: models/badges.py:218 +msgid "Supporter" +msgstr "Taraftar" + +#: models/badges.py:219 +#, fuzzy +msgid "First upvote" +msgstr "İlk olumlu oy" + +#: models/badges.py:227 +msgid "Critic" +msgstr "Eleştirmen" + +#: models/badges.py:228 +#, fuzzy +msgid "First downvote" +msgstr "İlk olumsuz oy" + +#: models/badges.py:237 +#, fuzzy +msgid "Civic Duty" +msgstr "Sosyal sorumluluk" + +#: models/badges.py:238 +#, fuzzy, python-format +msgid "Voted %(num)s times" +msgstr "300 kez oylandı." + +#: models/badges.py:252 +#, fuzzy, python-format +msgid "Answered own question with at least %(num)s up votes" +msgstr "Kendi sorusunu cevaplayarak en az 3 olumlu oy aldı" + +#: models/badges.py:256 +msgid "Self-Learner" +msgstr "Kendi öğrenen" + +#: models/badges.py:304 +#, fuzzy +msgid "Nice Answer" +msgstr "Güzel cevap" + +#: models/badges.py:309 models/badges.py:321 models/badges.py:333 +#, fuzzy, python-format +msgid "Answer voted up %(num)s times" +msgstr "Cevabı 10 kere olumlu oy aldı" + +#: models/badges.py:316 +msgid "Good Answer" +msgstr "İyi cevap" + +#: models/badges.py:328 +msgid "Great Answer" +msgstr "Harika Cevap" + +#: models/badges.py:340 +msgid "Nice Question" +msgstr "Güzel Soru " + +#: models/badges.py:345 models/badges.py:357 models/badges.py:369 +#, fuzzy, python-format +msgid "Question voted up %(num)s times" +msgstr "Sorusu 10 kere olumlu oy aldı" + +#: models/badges.py:352 +msgid "Good Question" +msgstr "İyi soru" + +#: models/badges.py:364 +msgid "Great Question" +msgstr "Harika Soru" + +#: models/badges.py:376 +msgid "Student" +msgstr "Öğrenci" + +#: models/badges.py:381 +msgid "Asked first question with at least one up vote" +msgstr "En az bir olumlu oy alan sorduğun ilk soru" + +#: models/badges.py:414 +msgid "Popular Question" +msgstr "Popüler Soru" + +#: models/badges.py:418 models/badges.py:429 models/badges.py:441 +#, fuzzy, python-format +msgid "Asked a question with %(views)s views" +msgstr "1000 kere görüntülenen bir soru sordu" + +#: models/badges.py:425 +msgid "Notable Question" +msgstr "Önemli Soru " + +#: models/badges.py:436 +#, fuzzy +msgid "Famous Question" +msgstr "Ünlü soru" + +#: models/badges.py:450 +#, fuzzy +msgid "Asked a question and accepted an answer" +msgstr "Kabul edilmiş cevabı olmayan soru" + +#: models/badges.py:453 +msgid "Scholar" +msgstr "Alim" + +#: models/badges.py:495 +msgid "Enlightened" +msgstr "Aydınlanmış" + +#: models/badges.py:499 +#, fuzzy, python-format +msgid "First answer was accepted with %(num)s or more votes" +msgstr "En az 10 olumlu oyla kabul edilen cevap vermiş" + +#: models/badges.py:507 +msgid "Guru" +msgstr "Guru" + +#: models/badges.py:510 +#, fuzzy, python-format +msgid "Answer accepted with %(num)s or more votes" +msgstr "En az 10 olumlu oyla kabul edilen cevap vermiş" + +#: models/badges.py:518 +#, fuzzy, python-format +msgid "" +"Answered a question more than %(days)s days later with at least %(votes)s " +"votes" +msgstr "En az 60 gün sonra bir soruyu cevaplamış ve en az 5 oy almış" + +#: models/badges.py:525 +msgid "Necromancer" +msgstr "Ölü diriltici" + +#: models/badges.py:548 +#, fuzzy +msgid "Citizen Patrol" +msgstr "Halk devriyesi" + +#: models/badges.py:551 +msgid "First flagged post" +msgstr "İlk işaretlenen ileti" + +#: models/badges.py:563 +msgid "Cleanup" +msgstr "Temizlik" + +#: models/badges.py:566 +msgid "First rollback" +msgstr "İlk geri alma" + +#: models/badges.py:577 +msgid "Pundit" +msgstr "Üstad" + +#: models/badges.py:580 +msgid "Left 10 comments with score of 10 or more" +msgstr "10 veya daha yüksek puan alan 10 adet yorum yazmış" + +#: models/badges.py:612 +msgid "Editor" +msgstr "Editör" + +#: models/badges.py:615 +msgid "First edit" +msgstr "İlk düzeltme" + +#: models/badges.py:623 +msgid "Associate Editor" +msgstr "" + +#: models/badges.py:627 +#, fuzzy, python-format +msgid "Edited %(num)s entries" +msgstr "100 girdi düzenledi" + +#: models/badges.py:634 +msgid "Organizer" +msgstr "Organizatör" + +#: models/badges.py:637 +msgid "First retag" +msgstr "İlk tekrardan etiketleme" + +#: models/badges.py:644 +msgid "Autobiographer" +msgstr "Otobiyograf" + +#: models/badges.py:647 +msgid "Completed all user profile fields" +msgstr "Kullanıcı profilindeki bütün alanları doldurdu" + +#: models/badges.py:663 +#, fuzzy, python-format +msgid "Question favorited by %(num)s users" +msgstr "25 kullanıcının favorisi olan soru" + +#: models/badges.py:689 +msgid "Stellar Question" +msgstr "Bomba soru" + +#: models/badges.py:698 +msgid "Favorite Question" +msgstr "Favori Soru" + +#: models/badges.py:710 +msgid "Enthusiast" +msgstr "" + +#: models/badges.py:714 +#, python-format +msgid "Visited site every day for %(num)s days in a row" +msgstr "" + +#: models/badges.py:732 +#, fuzzy +msgid "Commentator" +msgstr "Belgelendirme" + +#: models/badges.py:736 +#, fuzzy, python-format +msgid "Posted %(num_comments)s comments" +msgstr "yorum ekle" + +#: models/badges.py:752 +msgid "Taxonomist" +msgstr "Taksonomist" + +#: models/badges.py:756 +#, fuzzy, python-format +msgid "Created a tag used by %(num)s questions" +msgstr "50 soruda kullanılmış etiket yarattı" + +#: models/badges.py:776 +msgid "Expert" +msgstr "Uzman" + +#: models/badges.py:779 +msgid "Very active in one tag" +msgstr "Bir etikette çok etkin" + +#: models/meta.py:112 +msgid "" +"Sorry, the comment you are looking for is no longer accessible, because the " +"parent question has been removed" +msgstr "" + +#: models/meta.py:119 +msgid "" +"Sorry, the comment you are looking for is no longer accessible, because the " +"parent answer has been removed" +msgstr "" + +#: models/question.py:72 +#, python-format +msgid "\" and \"%s\"" +msgstr "" + +#: models/question.py:75 +#, fuzzy +msgid "\" and more" +msgstr "Daha fazla bilgi" + +#: models/question.py:452 +#, fuzzy +msgid "Sorry, this question has been deleted and is no longer accessible" +msgstr "bu soru favori olarak seçildi" + +#: models/question.py:908 +#, python-format +msgid "%(author)s modified the question" +msgstr "%(author)s soruyu düzenledi" + +#: models/question.py:912 +#, 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:696 +#: models/question.py:917 #, python-format msgid "%(people)s commented the question" msgstr "%(people)s bir soruyu yorumladı" -#: models/question.py:701 +#: models/question.py:922 #, python-format msgid "%(people)s commented answers" msgstr "" @@ -2549,109 +3434,97 @@ msgstr "" " \n" "%(people)s cevaba yorum yazdı" -#: models/question.py:703 +#: models/question.py:924 #, python-format msgid "%(people)s commented an answer" msgstr "%(people)s bir cevabı yorumladı" -#: models/repute.py:16 skins/default/templates/badges.html:43 -msgid "gold" -msgstr "altın" - -#: models/repute.py:17 skins/default/templates/badges.html:52 -msgid "silver" -msgstr "gümüş" - -#: models/repute.py:18 skins/default/templates/badges.html:59 -msgid "bronze" -msgstr "bronz" - -#: models/repute.py:150 +#: models/repute.py:142 #, python-format msgid "Changed by moderator. Reason: %(reason)s" msgstr "" -#: models/repute.py:161 +#: models/repute.py:153 #, python-format msgid "" -"%(points)s points were added for %(username)s's contribution to question %" -"(question_title)s" +"%(points)s points were added for %(username)s's contribution to question " +"%(question_title)s" msgstr "" -#: models/repute.py:166 +#: models/repute.py:158 #, python-format msgid "" "%(points)s points were subtracted for %(username)s's contribution to " "question %(question_title)s" msgstr "" -#: models/tag.py:91 +#: models/tag.py:151 msgid "interesting" msgstr "ilginç" -#: models/tag.py:91 +#: models/tag.py:151 msgid "ignored" msgstr "yoksay" -#: models/user.py:233 +#: models/user.py:264 #, fuzzy msgid "Entire forum" msgstr "Bütün askbot" -#: models/user.py:234 +#: models/user.py:265 msgid "Questions that I asked" msgstr "Sorduğum sorular" -#: models/user.py:235 +#: models/user.py:266 msgid "Questions that I answered" msgstr "Cevapladığım sorular" -#: models/user.py:236 +#: models/user.py:267 msgid "Individually selected questions" msgstr "Seçtiğim sorular" -#: models/user.py:237 +#: models/user.py:268 msgid "Mentions and comment responses" msgstr "" -#: models/user.py:240 +#: models/user.py:271 msgid "Instantly" msgstr "Anında" -#: models/user.py:241 +#: models/user.py:272 msgid "Daily" msgstr "Günlük" -#: models/user.py:242 +#: models/user.py:273 msgid "Weekly" msgstr "Haftalık" -#: models/user.py:243 +#: models/user.py:274 msgid "No email" msgstr "E-posta yok" #: skins/default/templates/404.jinja.html:3 -#: skins/default/templates/404.jinja.html:11 +#: skins/default/templates/404.jinja.html:10 msgid "Page not found" msgstr "" -#: skins/default/templates/404.jinja.html:15 +#: skins/default/templates/404.jinja.html:13 msgid "Sorry, could not find the page you requested." msgstr "Üzgünüz, istediğiniz sayfayı bulamadık." -#: skins/default/templates/404.jinja.html:17 +#: skins/default/templates/404.jinja.html:15 msgid "This might have happened for the following reasons:" msgstr "Bu durum, aşağıdaki sebeplerden dolayı olabilir:" -#: skins/default/templates/404.jinja.html:19 +#: skins/default/templates/404.jinja.html:17 msgid "this question or answer has been deleted;" msgstr "bu soru ya da cevap silindi;" -#: skins/default/templates/404.jinja.html:20 +#: skins/default/templates/404.jinja.html:18 msgid "url has error - please check it;" msgstr "adres hatası var - tekrar kontrol edin;" -#: skins/default/templates/404.jinja.html:21 +#: skins/default/templates/404.jinja.html:19 msgid "" "the page you tried to visit is protected or you don't have sufficient " "points, see" @@ -2659,61 +3532,62 @@ msgstr "" "ziyaret etmeye çalıştığınız sayfa korumalıdır ya da görmek için yeterince " "puanınız yoktur" -#: skins/default/templates/404.jinja.html:21 -#: skins/default/templates/footer.html:6 -#: skins/default/templates/header.html:57 -#: skins/default/templates/question_edit_tips.html:16 +#: skins/default/templates/404.jinja.html:19 +#: skins/default/templates/blocks/footer.html:5 +#: skins/default/templates/blocks/header_meta_links.html:13 +#: skins/default/templates/blocks/question_edit_tips.html:15 msgid "faq" msgstr "sss" -#: skins/default/templates/404.jinja.html:22 +#: skins/default/templates/404.jinja.html:20 msgid "if you believe this error 404 should not have occured, please" msgstr "Hata kodu 404: lütfen" -#: skins/default/templates/404.jinja.html:23 +#: skins/default/templates/404.jinja.html:21 msgid "report this problem" msgstr "Bu sorunu yöneticiye bildir" -#: skins/default/templates/404.jinja.html:32 -#: skins/default/templates/500.jinja.html:13 +#: skins/default/templates/404.jinja.html:30 +#: skins/default/templates/500.jinja.html:11 msgid "back to previous page" msgstr "önceki sayfaya geri dön" -#: skins/default/templates/404.jinja.html:33 -#: skins/default/templates/questions.html:13 +#: skins/default/templates/404.jinja.html:31 +#: skins/default/templates/main_page/tab_bar.html:9 msgid "see all questions" msgstr "tüm soruları gör" -#: skins/default/templates/404.jinja.html:34 +#: skins/default/templates/404.jinja.html:32 msgid "see all tags" msgstr "tüm etiketleri gör" #: skins/default/templates/500.jinja.html:3 -#: skins/default/templates/500.jinja.html:6 +#: skins/default/templates/500.jinja.html:5 msgid "Internal server error" msgstr "" -#: skins/default/templates/500.jinja.html:10 +#: skins/default/templates/500.jinja.html:8 msgid "system error log is recorded, error will be fixed as soon as possible" msgstr "" "Bu hata, sistem hata günlüğüne kayıt edildi. En kısa sürede çözümlenmesi " "için uğraşacağız." -#: skins/default/templates/500.jinja.html:11 +#: skins/default/templates/500.jinja.html:9 msgid "please report the error to the site administrators if you wish" msgstr "isterseniz hata raporunu site yöneticilerine bildirin" -#: skins/default/templates/500.jinja.html:14 +#: skins/default/templates/500.jinja.html:12 msgid "see latest questions" msgstr "son soruları gör" -#: skins/default/templates/500.jinja.html:15 +#: skins/default/templates/500.jinja.html:13 msgid "see tags" msgstr "etiketleri gör" -#: skins/default/templates/about.html:3 skins/default/templates/about.html:6 -msgid "About" -msgstr "Hakkımızda" +#: 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 @@ -2721,191 +3595,84 @@ msgid "Edit answer" msgstr "Cevapı düzenle" #: skins/default/templates/answer_edit.html:10 -#: skins/default/templates/question_edit.html:10 -#: skins/default/templates/question_retag.html:6 +#: skins/default/templates/question_edit.html:9 +#: skins/default/templates/question_retag.html:5 #: skins/default/templates/revisions.html:7 msgid "back" msgstr "geri" -#: skins/default/templates/answer_edit.html:15 -#: skins/default/templates/question_edit.html:14 +#: skins/default/templates/answer_edit.html:14 msgid "revision" msgstr "revizyon" -#: skins/default/templates/answer_edit.html:18 -#: skins/default/templates/question_edit.html:19 +#: skins/default/templates/answer_edit.html:17 +#: skins/default/templates/question_edit.html:16 msgid "select revision" msgstr "revizyon seç" -#: skins/default/templates/answer_edit.html:22 -#: skins/default/templates/question_edit.html:28 +#: skins/default/templates/answer_edit.html:21 +#: skins/default/templates/question_edit.html:27 msgid "Save edit" msgstr "Değişikliği kaydet" -#: skins/default/templates/answer_edit.html:23 -#: skins/default/templates/close.html:19 -#: skins/default/templates/feedback.html:45 -#: skins/default/templates/question_edit.html:29 -#: skins/default/templates/question_retag.html:26 -#: skins/default/templates/reopen.html:30 -#: skins/default/templates/user_edit.html:76 +#: skins/default/templates/answer_edit.html:22 +#: skins/default/templates/close.html:16 +#: skins/default/templates/feedback.html:42 +#: skins/default/templates/question_edit.html:28 +#: skins/default/templates/question_retag.html:22 +#: skins/default/templates/reopen.html:27 +#: skins/default/templates/subscribe_for_tags.html:16 #: skins/default/templates/authopenid/changeemail.html:38 +#: skins/default/templates/user_profile/user_edit.html:84 msgid "Cancel" msgstr "Iptal" -#: skins/default/templates/answer_edit.html:59 -#: skins/default/templates/answer_edit.html:62 -#: skins/default/templates/ask.html:36 skins/default/templates/ask.html:39 -#: skins/default/templates/macros.html:398 -#: skins/default/templates/question.html:456 -#: skins/default/templates/question.html:459 -#: skins/default/templates/question_edit.html:63 -#: skins/default/templates/question_edit.html:66 +#: skins/default/templates/answer_edit.html:60 +#: skins/default/templates/answer_edit.html:63 +#: skins/default/templates/ask.html:46 skins/default/templates/ask.html:49 +#: skins/default/templates/macros.html:698 +#: skins/default/templates/question.html:562 +#: skins/default/templates/question.html:565 +#: skins/default/templates/question_edit.html:72 +#: skins/default/templates/question_edit.html:75 msgid "hide preview" msgstr "önizlemeyi gizle" -#: skins/default/templates/answer_edit.html:62 -#: skins/default/templates/ask.html:39 -#: skins/default/templates/question.html:459 -#: skins/default/templates/question_edit.html:66 +#: skins/default/templates/answer_edit.html:63 +#: skins/default/templates/ask.html:49 +#: skins/default/templates/question.html:565 +#: skins/default/templates/question_edit.html:75 msgid "show preview" msgstr "önizlemeyi göster" -#: skins/default/templates/answer_edit_tips.html:3 -msgid "answer tips" -msgstr "cevap ipuçları" - -#: skins/default/templates/answer_edit_tips.html:6 -msgid "please make your answer relevant to this community" -msgstr "Cevabınızın sitemizdeki konu ile alakalı olmasına dikkat edin" +#: skins/default/templates/ask.html:4 +msgid "Ask a question" +msgstr "Soru sor" -#: skins/default/templates/answer_edit_tips.html:9 -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/badge.html:4 skins/default/templates/badge.html:8 +#: skins/default/templates/user_profile/user_recent.html:16 +#: skins/default/templates/user_profile/user_stats.html:110 +#, fuzzy, python-format +msgid "%(name)s" +msgstr "%(date)s tarihinde" -#: skins/default/templates/answer_edit_tips.html:12 -msgid "please try to provide details" -msgstr "ayrıntılarıyayınlamayı deneyin" - -#: skins/default/templates/answer_edit_tips.html:15 -#: skins/default/templates/question_edit_tips.html:12 -msgid "be clear and concise" -msgstr "sorunuzun açık ve kısa olmasına çalışın" - -#: skins/default/templates/answer_edit_tips.html:19 -#: skins/default/templates/question_edit_tips.html:16 -msgid "see frequently asked questions" -msgstr "sık sorulan soruları gör" - -#: skins/default/templates/answer_edit_tips.html:25 -#: skins/default/templates/question_edit_tips.html:22 -msgid "Markdown tips" -msgstr "İpuçları" - -#: skins/default/templates/answer_edit_tips.html:29 -#: skins/default/templates/question_edit_tips.html:26 -msgid "*italic*" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:32 -#: skins/default/templates/question_edit_tips.html:29 -msgid "**bold**" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:36 -#: skins/default/templates/question_edit_tips.html:33 -#, fuzzy -msgid "*italic* or _italic_" -msgstr "* Italik * veya __italic__" - -#: skins/default/templates/answer_edit_tips.html:39 -#: skins/default/templates/question_edit_tips.html:36 -msgid "**bold** or __bold__" -msgstr "** Kalın ** veya __bold__" - -#: skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/question_edit_tips.html:40 -msgid "link" -msgstr "bağlantı" - -#: skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:40 -#: skins/default/templates/question_edit_tips.html:45 -msgid "text" -msgstr "metin" - -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:45 -msgid "image" -msgstr "resim" - -#: skins/default/templates/answer_edit_tips.html:51 -#: skins/default/templates/question_edit_tips.html:49 -msgid "numbered list:" -msgstr "numaralandırılmış liste:" - -#: skins/default/templates/answer_edit_tips.html:56 -#: skins/default/templates/question_edit_tips.html:54 -msgid "basic HTML tags are also supported" -msgstr "temel HTML etiketleri de desteklenmektedir" - -#: skins/default/templates/answer_edit_tips.html:60 -#: skins/default/templates/question_edit_tips.html:58 -msgid "learn more about Markdown" -msgstr "Markdown hakkında daha fazla bilgi" - -#: skins/default/templates/ask.html:3 -msgid "Ask a question" -msgstr "Soru sor" - -#: skins/default/templates/ask_form.html:7 -msgid "login to post question info" -msgstr "soru bilgisi göndermek için giriş yapın" - -#: skins/default/templates/ask_form.html:11 -#, fuzzy, python-format -msgid "" -"must have valid %(email)s to post, \n" -" see %(email_validation_faq_url)s\n" -" " -msgstr "" -"Looks like your email address, %(email)s has not " -"yet been validated. To post messages you must verify your email, " -"please see more details here." -"
        You can submit your question now and validate email after that. Your " -"question will saved as pending meanwhile. " - -#: skins/default/templates/ask_form.html:27 -msgid "Login/signup to post your question" -msgstr "Soru göndermek için üye girişi yapmalısınız" - -#: skins/default/templates/ask_form.html:29 -msgid "Ask your question" -msgstr "Soruyu yayınla" +#: skins/default/templates/badge.html:4 +msgid "Badge" +msgstr "Madalya" -#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:11 -#: skins/default/templates/badges.html:28 -#: skins/default/templates/user_recent.html:13 -#: skins/default/templates/user_stats.html:88 +#: skins/default/templates/badge.html:6 #, fuzzy, python-format -msgid "%(name)s" +msgid "Badge \"%(name)s\"" msgstr "%(date)s tarihinde" -#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:7 -msgid "Badge" -msgstr "Madalya" - -#: skins/default/templates/badge.html:11 -#: skins/default/templates/badges.html:27 -#: skins/default/templates/badges.html:31 -#: skins/default/templates/user_recent.html:13 -#: skins/default/templates/user_stats.html:88 +#: skins/default/templates/badge.html:8 +#: skins/default/templates/user_profile/user_recent.html:16 +#: skins/default/templates/user_profile/user_stats.html:108 #, fuzzy, python-format msgid "%(description)s" msgstr "e-mail abonelikleri" -#: skins/default/templates/badge.html:16 +#: skins/default/templates/badge.html:13 msgid "user received this badge:" msgid_plural "users received this badge:" msgstr[0] "kullanıcı bu rozeti elde etti:" @@ -2915,111 +3682,87 @@ msgstr[1] "kullanıcılar bu rozeti elde ettiler:" msgid "Badges summary" msgstr "Madalya özeti" -#: skins/default/templates/badges.html:6 +#: skins/default/templates/badges.html:5 msgid "Badges" msgstr "Ödüller" -#: skins/default/templates/badges.html:10 +#: skins/default/templates/badges.html:7 msgid "Community gives you awards for your questions, answers and votes." msgstr "" "Sorularınız, cevaplarınız ve oylarınız için burdaki topluluk sizi " "ödüllendiriyor." -#: skins/default/templates/badges.html:11 +#: skins/default/templates/badges.html:8 #, 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. Give us feedback at " +"%(feedback_faq_url)s.\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 feedback" -#: skins/default/templates/badges.html:27 -#, fuzzy, python-format -msgid "%(type)s" -msgstr "%(date)s tarihinde" - -#: skins/default/templates/badges.html:40 +#: skins/default/templates/badges.html:35 msgid "Community badges" msgstr "Site rozetleri" -#: skins/default/templates/badges.html:43 +#: skins/default/templates/badges.html:37 msgid "gold badge: the highest honor and is very rare" msgstr "" -#: skins/default/templates/badges.html:46 +#: skins/default/templates/badges.html:40 msgid "gold badge description" msgstr "altın rozetin açıklaması" -#: skins/default/templates/badges.html:51 +#: skins/default/templates/badges.html:45 msgid "" "silver badge: occasionally awarded for the very high quality contributions" msgstr "" -#: skins/default/templates/badges.html:55 +#: skins/default/templates/badges.html:49 msgid "silver badge description" msgstr "gümüş rozetin açıklaması" -#: skins/default/templates/badges.html:58 +#: skins/default/templates/badges.html:52 msgid "bronze badge: often given as a special honor" msgstr "bronz madalya: genellikle özel bir onur olarak verilir" -#: skins/default/templates/badges.html:62 +#: 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:6 +#: skins/default/templates/close.html:3 skins/default/templates/close.html:5 msgid "Close question" msgstr "Soruyu kapat" -#: skins/default/templates/close.html:9 +#: skins/default/templates/close.html:6 msgid "Close the question" msgstr "Cevabı kapat" -#: skins/default/templates/close.html:14 +#: skins/default/templates/close.html:11 msgid "Reasons" msgstr "Nedenleri" -#: skins/default/templates/close.html:18 +#: skins/default/templates/close.html:15 msgid "OK to close" msgstr "Kapatmak için OK butonuna bas" -#: skins/default/templates/editor_data.html:8 -#, 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/editor_data.html:10 -#, 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/editor_data.html:11 -#, fuzzy, python-format -msgid "" -"please use up to %(tag_count)s tags, less than %(max_chars)s characters each" -msgstr "en fazla 5 etiket, her etiket en fazla 20 karakter" - -#: skins/default/templates/faq.html:3 skins/default/templates/faq.html.py:6 +#: skins/default/templates/faq.html:3 +#: skins/default/templates/faq_static.html:3 +#: skins/default/templates/faq_static.html:5 msgid "FAQ" msgstr "" -#: skins/default/templates/faq.html:6 +#: skins/default/templates/faq_static.html:5 msgid "Frequently Asked Questions " msgstr "Sıkça Sorulan Sorular" -#: skins/default/templates/faq.html:11 +#: skins/default/templates/faq_static.html:6 msgid "What kinds of questions can I ask here?" msgstr "Ne tür sorular sorabilirim?" -#: skins/default/templates/faq.html:12 +#: skins/default/templates/faq_static.html:7 msgid "" "Most importanly - questions should be relevant to this " "community." @@ -3027,7 +3770,7 @@ msgstr "" "En önemli sorular sitemizde önemli şeklinde " "gösterilmektedir." -#: skins/default/templates/faq.html:13 +#: 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." @@ -3035,11 +3778,11 @@ msgstr "" "Soru sormadan önce, öncelikle sitemizde bir arama yapın. Belki bu soru ve " "cevabı sitemizde bulunmaktadır." -#: skins/default/templates/faq.html:15 +#: skins/default/templates/faq_static.html:10 msgid "What questions should I avoid asking?" msgstr "Ne tür sorulardan kaçınmalıyım?" -#: skins/default/templates/faq.html:16 +#: skins/default/templates/faq_static.html:11 msgid "" "Please avoid asking questions that are not relevant to this community, too " "subjective and argumentative." @@ -3047,11 +3790,11 @@ msgstr "" "Lütfen, çok subjektif ve tartışmacı olan, sitemizle ilgili olmayan sorular " "sormaktan kaçının." -#: skins/default/templates/faq.html:20 +#: skins/default/templates/faq_static.html:13 msgid "What should I avoid in my answers?" msgstr "Cevaplarımda nelere dikkat etmeliyim?" -#: skins/default/templates/faq.html:21 +#: 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 " @@ -3061,19 +3804,19 @@ msgstr "" "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.html:24 +#: skins/default/templates/faq_static.html:15 msgid "Who moderates this community?" msgstr "Bu siteyi kimler yönetiyor?" -#: skins/default/templates/faq.html:25 +#: skins/default/templates/faq_static.html:16 msgid "The short answer is: you." msgstr "Cevabı çok açık: Sen! Yani sizlersiniz! " -#: skins/default/templates/faq.html:26 +#: skins/default/templates/faq_static.html:17 msgid "This website is moderated by the users." msgstr "Bu web sitesi, kullanıcıları tarafından yönetilmektedir." -#: skins/default/templates/faq.html:27 +#: skins/default/templates/faq_static.html:18 msgid "" "The reputation system allows users earn the authorization to perform a " "variety of moderation tasks." @@ -3081,11 +3824,11 @@ 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.html:32 +#: skins/default/templates/faq_static.html:20 msgid "How does reputation system work?" msgstr "İtibar sistemi nasıl çalışmaktadır?" -#: skins/default/templates/faq.html:33 +#: skins/default/templates/faq_static.html:21 #, fuzzy msgid "Rep system summary" msgstr "" @@ -3094,13 +3837,13 @@ 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/faq.html:34 +#: skins/default/templates/faq_static.html:22 #, fuzzy, 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 %" -"(REP_GAIN_FOR_RECEIVING_UPVOTE)s points, each vote against will " +"it will be downvoted. Each vote in favor will generate " +"%(REP_GAIN_FOR_RECEIVING_UPVOTE)s points, each vote against will " "subtract %(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s points. There " "is a limit of %(MAX_REP_GAIN_PER_USER_PER_DAY)s points that " "can be accumulated for a question or answer per day. The table below " @@ -3116,83 +3859,66 @@ msgstr "" "itibar sisteminden toplanan puanlar ile neler yapılabileceğini " "göstermektedir." -#: skins/default/templates/faq.html:44 -#: skins/default/templates/user_votes.html:10 +#: skins/default/templates/faq_static.html:32 +#: skins/default/templates/user_profile/user_votes.html:13 msgid "upvote" msgstr "beğendim" -#: skins/default/templates/faq.html:49 +#: skins/default/templates/faq_static.html:37 msgid "use tags" msgstr "etiketleri kullan" -#: skins/default/templates/faq.html:54 +#: skins/default/templates/faq_static.html:42 msgid "add comments" msgstr "yorum ekle" -#: skins/default/templates/faq.html:58 -#: skins/default/templates/user_votes.html:12 +#: skins/default/templates/faq_static.html:46 +#: skins/default/templates/user_profile/user_votes.html:15 msgid "downvote" msgstr "beğenmedim" -#: skins/default/templates/faq.html:61 +#: skins/default/templates/faq_static.html:49 +#, fuzzy +msgid " accept own answer to own questions" +msgstr "Kendi soruna verdiğin ilk kabul edilmiş cevap" + +#: skins/default/templates/faq_static.html:53 msgid "open and close own questions" msgstr "kendi sorularım açık ve kapalı " -#: skins/default/templates/faq.html:65 +#: skins/default/templates/faq_static.html:57 #, fuzzy msgid "retag other's questions" msgstr "soruları yeniden etiketle" -#: skins/default/templates/faq.html:70 +#: skins/default/templates/faq_static.html:62 msgid "edit community wiki questions" msgstr "sitenin wiki sorularını değiştir" -#: skins/default/templates/faq.html:75 +#: skins/default/templates/faq_static.html:67 #, fuzzy msgid "\"edit any answer" msgstr "herhangi bir cevabı değiştir" -#: skins/default/templates/faq.html:79 +#: skins/default/templates/faq_static.html:71 #, fuzzy msgid "\"delete any comment" msgstr "bir yorumu sil" -#: skins/default/templates/faq.html:86 -msgid "how to validate email title" -msgstr "E-mail doğrulama" - -#: skins/default/templates/faq.html:88 -#, fuzzy, python-format -msgid "" -"how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)s" -msgstr "" -"

        How? If you have just set or changed your " -"email address - check your email and click the included link.
        The link contains a key generated specifically for you. You can " -"also and check your email again.

        Why? Email validation is required to make sure that " -"only you can post messages on your behalf and to " -"minimize spam posts.
        With email you can " -"subscribe for updates on the most interesting questions. " -"Also, when you sign up for the first time - create a unique gravatar personal image.

        " - -#: skins/default/templates/faq.html:93 +#: skins/default/templates/faq_static.html:74 msgid "what is gravatar" msgstr "Gravatar nedir?" -#: skins/default/templates/faq.html:94 +#: skins/default/templates/faq_static.html:75 #, fuzzy msgid "gravatar faq info" msgstr "gravatar sss bilgi" -#: skins/default/templates/faq.html:97 +#: skins/default/templates/faq_static.html:76 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.html:98 +#: skins/default/templates/faq_static.html:77 #, fuzzy msgid "" "No, you don't have to. You can login through any service that supports " @@ -3202,22 +3928,22 @@ msgstr "" "mesela Facebook, Twitter, Google Mail, Yahoo, AOL, vb aracılığıyla da giriş " "yapabilirsiniz." -#: skins/default/templates/faq.html:99 +#: skins/default/templates/faq_static.html:78 #, fuzzy msgid "\"Login now!\"" msgstr "Şimdi giriş yap!" -#: skins/default/templates/faq.html:103 +#: skins/default/templates/faq_static.html:80 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.html:104 +#: skins/default/templates/faq_static.html:81 msgid "Goal of this site is..." msgstr "İşte bu, sitenin en önemli amaçlarından biridir..." -#: skins/default/templates/faq.html:104 +#: skins/default/templates/faq_static.html:81 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 " @@ -3227,17 +3953,17 @@ 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.html:105 +#: skins/default/templates/faq_static.html:82 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.html:109 +#: skins/default/templates/faq_static.html:84 msgid "Still have questions?" msgstr "Hala aklınıza takılan bir soru mu var?" -#: skins/default/templates/faq.html:110 +#: skins/default/templates/faq_static.html:85 #, fuzzy, python-format msgid "" "Please ask your question at %(ask_question_url)s, help make our community " @@ -3247,172 +3973,93 @@ msgstr "" "community better!Lütfen sorularınızı %(ask_question_url)s kısmına yazın. " "Böylelikle bize daha fazla yardımcı olmuş olursunuz." -#: skins/default/templates/faq.html:112 skins/default/templates/header.html:78 -msgid "questions" -msgstr "sorular" - -#: skins/default/templates/faq.html:112 -msgid "." -msgstr "." - #: skins/default/templates/feedback.html:3 msgid "Feedback" msgstr "Geri bildirim" -#: skins/default/templates/feedback.html:6 +#: skins/default/templates/feedback.html:5 msgid "Give us your feedback!" msgstr "Görüşlerinizi bize bildirin!" -#: skins/default/templates/feedback.html:12 -#, python-format +#: skins/default/templates/feedback.html:9 +#, fuzzy, python-format msgid "" "\n" -" Dear %(user_name)s, we look " -"forward to hearing your feedback. \n" -" Please type and send us your message below.\n" -" " +" Dear %(user_name)s, we look forward " +"to hearing your feedback. \n" +" Please type and send us your message below.\n" +" " msgstr "" "\n" "Sevgili %(user_name)s, sitemizle alakalı " "görüş, öneri ve eleştirilerinizi bekliyoruz. Her konuda bize yazmaktan " "çekinmeyin." -#: skins/default/templates/feedback.html:19 +#: skins/default/templates/feedback.html:16 +#, fuzzy msgid "" "\n" -" Dear visitor, we look forward to " +" Dear visitor, we look forward to " "hearing your feedback.\n" -" Please type and send us your message below.\n" -" " +" Please type and send us your message below.\n" +" " msgstr "" "\n" "Sevgili ziyaretçimiz, sitemizle alakalı " "görüş, öneri ve eleştirilerinizi bekliyoruz. Her konuda bize yazmaktan " "çekinmeyin." -#: skins/default/templates/feedback.html:28 +#: skins/default/templates/feedback.html:25 #, fuzzy msgid "(please enter a valid email)" msgstr "geçerli bir e-mail adresi girin" -#: skins/default/templates/feedback.html:36 +#: skins/default/templates/feedback.html:33 msgid "(this field is required)" msgstr "(bu alanın doldurulması gereklidir)" -#: skins/default/templates/feedback.html:44 +#: skins/default/templates/feedback.html:41 msgid "Send Feedback" msgstr "Geribildirim gönder" -#: skins/default/templates/feedback_email.txt:3 -#, python-format +#: skins/default/templates/feedback_email.txt:2 +#, fuzzy, python-format msgid "" "\n" -"Hello, this is a %(site_title)s forum feedback message\n" +"Hello, this is a %(site_title)s forum feedback message.\n" msgstr "" "\n" "Merhaba, bu bir %(site_title)s geribildirim mesajıdır.\n" -#: skins/default/templates/feedback_email.txt:9 -msgid "Sender is" -msgstr "Gönderen" - -#: skins/default/templates/feedback_email.txt:11 -#: skins/default/templates/feedback_email.txt:14 -msgid "email" -msgstr "E-mail" - -#: skins/default/templates/feedback_email.txt:13 -msgid "anonymous" -msgstr "anonim" - -#: skins/default/templates/feedback_email.txt:19 -msgid "Message body:" -msgstr "Mesajınız:" - -#: skins/default/templates/footer.html:5 -#: skins/default/templates/header.html:56 -msgid "about" -msgstr "hakkımızda" - -#: skins/default/templates/footer.html:7 -msgid "privacy policy" -msgstr "gizlilik politikası" - -#: skins/default/templates/footer.html:16 -msgid "give feedback" -msgstr "görüşlerinizi bildirin" - -#: skins/default/templates/header.html:12 -#, fuzzy, python-format -msgid "responses for %(username)s" -msgstr "bir kullanıcı adı seçin" - -#: skins/default/templates/header.html:15 -#, python-format -msgid "you have a new response" -msgid_plural "you nave %(response_count)s new responses" -msgstr[0] "Yeni bir cevabın var" -msgstr[1] "Yeni %(response_count)s cevapların var" - -#: skins/default/templates/header.html:18 -msgid "no new responses yet" -msgstr "şu an yeni cevap yok" - -#: skins/default/templates/header.html:30 -#: skins/default/templates/header.html:31 -#, python-format -msgid "%(new)s new flagged posts and %(seen)s previous" +#: skins/default/templates/import_data.html:2 +#: skins/default/templates/import_data.html:4 +msgid "Import StackExchange data" msgstr "" -#: skins/default/templates/header.html:33 -#: skins/default/templates/header.html:34 -#, fuzzy, python-format -msgid "%(new)s new flagged posts" -msgstr "İlk işaretlenen ileti" - -#: skins/default/templates/header.html:39 -#: skins/default/templates/header.html:40 -#, fuzzy, python-format -msgid "%(seen)s flagged posts" -msgstr "İlk işaretlenen ileti" - -#: skins/default/templates/header.html:52 -msgid "logout" -msgstr "çıkış" - -#: skins/default/templates/header.html:54 -msgid "login" -msgstr "giriş" - -#: skins/default/templates/header.html:59 -#, fuzzy -msgid "settings" -msgstr "Temel Ayarlar" - -#: skins/default/templates/header.html:68 -msgid "back to home page" -msgstr "anasayfaya geri dön" - -#: skins/default/templates/header.html:69 -#, python-format -msgid "%(site)s logo" +#: skins/default/templates/import_data.html:13 +msgid "" +"Warning: if your database is not empty, please back it up\n" +" before attempting this operation." msgstr "" -#: skins/default/templates/header.html:88 -msgid "users" -msgstr "kullanıcılar" - -#: skins/default/templates/header.html:93 -msgid "badges" -msgstr "rozetler" +#: skins/default/templates/import_data.html:16 +msgid "" +"Upload your stackexchange dump .zip file, then wait until\n" +" the data import completes. This process may take several minutes.\n" +" Please note that feedback will be printed in plain text.\n" +" " +msgstr "" -#: skins/default/templates/header.html:98 -msgid "ask a question" -msgstr "soru sor" +#: skins/default/templates/import_data.html:25 +msgid "Import data" +msgstr "" -#: skins/default/templates/input_bar.html:32 -msgid "search" -msgstr "ara" +#: 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: python manage." +"py load_stackexchange path/to/your-data.zip" +msgstr "" #: skins/default/templates/instant_notification.html:1 #, python-format @@ -3496,272 +4143,301 @@ msgid "" "interest in our forum!

        \n" msgstr "" "\n" -"

        Lütfen dikkat - bu uyarıların gönderim sıklığını değiştirebilirsin

        \n" +"

        Lütfen dikkat - bu uyarıların gönderim sıklığını değiştirebilirsin

        \n" #: skins/default/templates/instant_notification.html:42 #, fuzzy msgid "

        Sincerely,
        Forum Administrator

        " msgstr "Saygılarımızla,
        Site yönetimi" -#: skins/default/templates/logout.html:3 skins/default/templates/logout.html:6 -msgid "Logout" -msgstr "Çıkış" +#: skins/default/templates/macros.html:25 +#, fuzzy, python-format +msgid "Share this question on %(site)s" +msgstr "Bu soruyu tekrar aç" -#: skins/default/templates/logout.html:9 -#, fuzzy -msgid "" -"As a registered user you can login with your OpenID, log out of the site or " -"permanently remove your account." +#: skins/default/templates/macros.html:36 +#, python-format +msgid "follow %(alias)s" +msgstr "" + +#: skins/default/templates/macros.html:39 +#, python-format +msgid "unfollow %(alias)s" msgstr "" -"Clicking Logout will log you out from the forumbut will not " -"sign you off from your OpenID provider.

        If you wish to sign off " -"completely - please make sure to log out from your OpenID provider as well." -"OpenID hesaplarından birisi ile (mesela Facebook, Twitter, Googlemail, " -"Yahoo, MSN) giriş yapabilirsiniz. Şifreniz sitemizde kimse tarafından " -"görünmeyecek, sitemizde kaydedilmeyecektir. Bize güvenebilirsiniz..." -#: skins/default/templates/logout.html:10 -msgid "Logout now" -msgstr "Şimdi çıkış yap" +#: skins/default/templates/macros.html:40 +#, python-format +msgid "following %(alias)s" +msgstr "" -#: skins/default/templates/macros.html:26 +#: skins/default/templates/macros.html:63 msgid "karma:" msgstr "" -#: skins/default/templates/macros.html:30 +#: skins/default/templates/macros.html:67 #, fuzzy msgid "badges:" msgstr "rozetler:" -#: skins/default/templates/macros.html:52 -#: skins/default/templates/macros.html:53 +#: skins/default/templates/macros.html:143 +#: skins/default/templates/macros.html:144 msgid "previous" msgstr "önceki" -#: skins/default/templates/macros.html:64 +#: skins/default/templates/macros.html:155 msgid "current page" msgstr "şuanki sayfa" -#: skins/default/templates/macros.html:66 -#: skins/default/templates/macros.html:73 +#: skins/default/templates/macros.html:157 +#: skins/default/templates/macros.html:164 #, python-format msgid "page number %(num)s" msgstr "sayfa numarası %(num)s" -#: skins/default/templates/macros.html:77 +#: skins/default/templates/macros.html:168 msgid "next page" msgstr "sonraki sayfa" -#: skins/default/templates/macros.html:88 +#: skins/default/templates/macros.html:179 msgid "posts per page" msgstr "sayfa başına mesaj" -#: skins/default/templates/macros.html:119 templatetags/extra_tags.py:56 +#: skins/default/templates/macros.html:211 templatetags/extra_tags.py:43 #, python-format msgid "%(username)s gravatar image" msgstr "%(username)s Gravatar görüntüsü" -#: skins/default/templates/macros.html:142 +#: skins/default/templates/macros.html:220 +#, fuzzy, python-format +msgid "%(username)s's website is %(url)s" +msgstr "karmanız %(reputation)s" + +#: skins/default/templates/macros.html:232 +#, fuzzy +msgid "anonymous user" +msgstr "anonim" + +#: skins/default/templates/macros.html:260 msgid "this post is marked as community wiki" msgstr "" -#: skins/default/templates/macros.html:145 +#: skins/default/templates/macros.html:263 #, python-format msgid "" "This post is a wiki.\n" " Anyone with karma >%(wiki_min_rep)s is welcome to improve it." msgstr "" -#: skins/default/templates/macros.html:151 +#: skins/default/templates/macros.html:269 msgid "asked" msgstr "soruldu" -#: skins/default/templates/macros.html:153 +#: skins/default/templates/macros.html:271 msgid "answered" msgstr "cevaplandı" -#: skins/default/templates/macros.html:155 +#: skins/default/templates/macros.html:273 msgid "posted" msgstr "yollandı" -#: skins/default/templates/macros.html:185 +#: skins/default/templates/macros.html:303 msgid "updated" msgstr "güncellendi" -#: skins/default/templates/macros.html:210 -#: skins/default/templates/unused/questions_ajax.html:23 views/readers.py:237 +#: skins/default/templates/macros.html:379 +#, python-format +msgid "see questions tagged '%(tag)s'" +msgstr "'%(tag)s' etiketli sorulara bak" + +#: skins/default/templates/macros.html:424 views/readers.py:239 #, fuzzy -msgid "vote" -msgid_plural "votes" -msgstr[0] "oy/" -msgstr[1] "oy/" +msgid "view" +msgid_plural "views" +msgstr[0] "izlenme" +msgstr[1] "izlenme" -#: skins/default/templates/macros.html:227 -#: skins/default/templates/unused/questions_ajax.html:43 views/readers.py:240 +#: skins/default/templates/macros.html:441 views/readers.py:236 #, fuzzy msgid "answer" msgid_plural "answers" msgstr[0] "cevap" msgstr[1] "cevap" -#: skins/default/templates/macros.html:239 -#: skins/default/templates/unused/questions_ajax.html:55 views/readers.py:243 +#: skins/default/templates/macros.html:452 views/readers.py:233 #, fuzzy -msgid "view" -msgid_plural "views" -msgstr[0] "izlenme" -msgstr[1] "izlenme" +msgid "vote" +msgid_plural "votes" +msgstr[0] "oy/" +msgstr[1] "oy/" -#: skins/default/templates/macros.html:251 -#: skins/default/templates/question.html:88 -#: skins/default/templates/tags.html:38 -#: skins/default/templates/unused/question_list.html:64 -#: skins/default/templates/unused/question_summary_list_roll.html:52 -#: skins/default/templates/unused/questions_ajax.html:68 -#, python-format -msgid "see questions tagged '%(tag)s'" -msgstr "'%(tag)s' etiketli sorulara bak" +#: skins/default/templates/macros.html:491 +msgid "delete this comment" +msgstr "bu yorumu sil" -#: skins/default/templates/macros.html:272 -#: skins/default/templates/question.html:94 -#: skins/default/templates/question.html:247 +#: skins/default/templates/macros.html:502 +#: skins/default/templates/question.html:79 +#: skins/default/templates/question.html:235 #: skins/default/templates/revisions.html:37 msgid "edit" msgstr "değiştir" -#: skins/default/templates/macros.html:277 -msgid "delete this comment" -msgstr "bu yorumu sil" - -#: skins/default/templates/macros.html:295 -#: skins/default/templates/macros.html:303 -#: skins/default/templates/question.html:423 +#: skins/default/templates/macros.html:520 +#: skins/default/templates/macros.html:528 +#: skins/default/templates/question.html:511 msgid "add comment" msgstr "yorum ekle" -#: skins/default/templates/macros.html:296 +#: skins/default/templates/macros.html:521 #, python-format msgid "see %(counter)s more" msgid_plural "see %(counter)s more" msgstr[0] "dah fazla%(counter)sgör" msgstr[1] "daha fazla%(counter)sgör" -#: skins/default/templates/macros.html:298 +#: skins/default/templates/macros.html:523 #, fuzzy, python-format msgid "see %(counter)s more comment" msgid_plural "" "see %(counter)s more comments\n" -" " +" " msgstr[0] "" "daha fazla yorum %(counter)s görün\n" " " msgstr[1] "daha fazla yorum %(counter)s görün" -#: skins/default/templates/macros.html:375 +#: skins/default/templates/macros.html:661 +#, fuzzy +msgid "one of these is required" +msgstr "bu alanın doldurulması gereklidir" + +#: skins/default/templates/macros.html:673 msgid "(required)" msgstr "(gerekli)" -#: skins/default/templates/macros.html:396 +#: skins/default/templates/macros.html:696 msgid "Toggle the real time Markdown editor preview" msgstr "Toggle gerçek zamanlı Markdown editörü önizleme" -#: skins/default/templates/privacy.html:3 -#: skins/default/templates/privacy.html:6 -msgid "Privacy policy" -msgstr "Gizlilik politikası" +#: skins/default/templates/macros.html:708 +#, fuzzy, python-format +msgid "responses for %(username)s" +msgstr "bir kullanıcı adı seçin" -#: skins/default/templates/question.html:30 -#: skins/default/templates/question.html:31 -#: skins/default/templates/question.html:46 -#: skins/default/templates/question.html:48 -msgid "i like this post (click again to cancel)" -msgstr "bunu beğendim (iptal için tekrar tıklayın)" +#: skins/default/templates/macros.html:711 +#, fuzzy, python-format +msgid "you have a 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/question.html:33 -#: skins/default/templates/question.html:50 -#: skins/default/templates/question.html:198 -msgid "current number of votes" -msgstr "oy geçerli sayısı" +#: skins/default/templates/macros.html:714 +msgid "no new responses yet" +msgstr "şu an yeni cevap yok" -#: skins/default/templates/question.html:42 -#: skins/default/templates/question.html:43 -#: skins/default/templates/question.html:55 -#: skins/default/templates/question.html:56 -msgid "i dont like this post (click again to cancel)" -msgstr "bu yazıyı beğenmedim (iptal etmek için tekrar tıklayın)" +#: skins/default/templates/macros.html:729 +#: skins/default/templates/macros.html:730 +#, python-format +msgid "%(new)s new flagged posts and %(seen)s previous" +msgstr "" -#: skins/default/templates/question.html:60 -#: skins/default/templates/question.html:61 -msgid "mark this question as favorite (click again to cancel)" -msgstr "favorilerime ekle (iptal etmek için tıkla)" +#: skins/default/templates/macros.html:732 +#: skins/default/templates/macros.html:733 +#, fuzzy, python-format +msgid "%(new)s new flagged posts" +msgstr "İlk işaretlenen ileti" -#: skins/default/templates/question.html:67 -#: skins/default/templates/question.html:68 -msgid "remove favorite mark from this question (click again to restore mark)" -msgstr "" -"bu sorudan favori işaretini kaldır (işareti tekrar koymak için tıklayın)" +#: skins/default/templates/macros.html:738 +#: skins/default/templates/macros.html:739 +#, fuzzy, python-format +msgid "%(seen)s flagged posts" +msgstr "İlk işaretlenen ileti" -#: skins/default/templates/question.html:74 -#, fuzzy -msgid "Share this question on twitter" -msgstr "Bu soruyu tekrar aç" +#: skins/default/templates/main_page.html:11 +msgid "Questions" +msgstr "Sorular" -#: skins/default/templates/question.html:75 -msgid "Share this question on facebook" -msgstr "" +#: skins/default/templates/privacy.html:3 +#: skins/default/templates/privacy.html:5 +msgid "Privacy policy" +msgstr "Gizlilik politikası" + +#: skins/default/templates/question.html:26 +#: skins/default/templates/question.html:27 +#: skins/default/templates/question.html:42 +#: skins/default/templates/question.html:44 +msgid "i like this post (click again to cancel)" +msgstr "bunu beğendim (iptal için tekrar tıklayın)" + +#: skins/default/templates/question.html:29 +#: skins/default/templates/question.html:46 +#: skins/default/templates/question.html:186 +msgid "current number of votes" +msgstr "oy geçerli sayısı" + +#: skins/default/templates/question.html:38 +#: skins/default/templates/question.html:39 +#: skins/default/templates/question.html:51 +#: skins/default/templates/question.html:52 +msgid "i dont like this post (click again to cancel)" +msgstr "bu yazıyı beğenmedim (iptal etmek için tekrar tıklayın)" -#: skins/default/templates/question.html:97 +#: skins/default/templates/question.html:82 #, fuzzy msgid "retag" msgstr "yeniden etiketlendi" -#: skins/default/templates/question.html:104 +#: skins/default/templates/question.html:89 msgid "reopen" msgstr "yeniden aç" -#: skins/default/templates/question.html:108 +#: skins/default/templates/question.html:93 msgid "close" msgstr "kapat" -#: skins/default/templates/question.html:113 -#: skins/default/templates/question.html:251 +#: skins/default/templates/question.html:98 +#: skins/default/templates/question.html:239 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/default/templates/question.html:114 -#: skins/default/templates/question.html:252 +#: skins/default/templates/question.html:99 +#: skins/default/templates/question.html:240 msgid "flag offensive" msgstr "şikayet et" -#: skins/default/templates/question.html:121 -#: skins/default/templates/question.html:262 -#: skins/default/templates/authopenid/signin.html:175 +#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:250 +msgid "undelete" +msgstr "silineni geri al" + +#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:250 +#: skins/default/templates/authopenid/signin.html:166 msgid "delete" msgstr "sil" -#: skins/default/templates/question.html:156 +#: skins/default/templates/question.html:143 #, python-format msgid "" "The question has been closed for the following reason \"%(close_reason)s\" by" msgstr "Soru şu nedenle kapatılmış olabilir: %(close_reason)s" -#: skins/default/templates/question.html:158 +#: skins/default/templates/question.html:145 #, python-format msgid "close date %(closed_at)s" msgstr "kapatılma tarihi %(closed_at)s" -#: skins/default/templates/question.html:166 +#: skins/default/templates/question.html:151 #, 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 Cevap:" @@ -3769,78 +4445,95 @@ msgstr[1] "" "\n" "%(counter)s Cevaplar:" -#: skins/default/templates/question.html:174 +#: skins/default/templates/question.html:159 msgid "oldest answers will be shown first" msgstr "ilk önce eski cevaplar görünecek" -#: skins/default/templates/question.html:174 +#: skins/default/templates/question.html:160 msgid "oldest answers" msgstr "eski cevaplar" -#: skins/default/templates/question.html:176 +#: skins/default/templates/question.html:162 msgid "newest answers will be shown first" msgstr "yeni cevaplar ilk önce görünecek" -#: skins/default/templates/question.html:176 +#: skins/default/templates/question.html:163 msgid "newest answers" msgstr "yeni cevaplar" -#: skins/default/templates/question.html:178 +#: skins/default/templates/question.html:165 msgid "most voted answers will be shown first" msgstr "çok oy alan cevaplar önce görünsün" -#: skins/default/templates/question.html:178 +#: skins/default/templates/question.html:166 msgid "popular answers" msgstr "popüler cevaplar" -#: skins/default/templates/question.html:196 -#: skins/default/templates/question.html:197 +#: skins/default/templates/question.html:184 +#: skins/default/templates/question.html:185 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/question.html:207 -#: skins/default/templates/question.html:208 +#: skins/default/templates/question.html:195 +#: skins/default/templates/question.html:196 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/question.html:216 -#: skins/default/templates/question.html:217 +#: skins/default/templates/question.html:204 +#: skins/default/templates/question.html:205 msgid "mark this answer as favorite (click again to undo)" msgstr "bu cevabı favori olarak işaretle (geri almak için tıklayın)" -#: skins/default/templates/question.html:226 -#: skins/default/templates/question.html:227 +#: skins/default/templates/question.html:214 +#: skins/default/templates/question.html:215 #, 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/default/templates/question.html:242 +#: skins/default/templates/question.html:230 msgid "answer permanent link" msgstr "kalıcı bağlantıyı cevapla" -#: skins/default/templates/question.html:243 +#: skins/default/templates/question.html:231 msgid "permanent link" msgstr "kalıcı bağlantı" -#: skins/default/templates/question.html:262 -msgid "undelete" -msgstr "silineni geri al" +#: skins/default/templates/question.html:256 +#, fuzzy +msgid "swap with question" +msgstr "Cevabı yayınla" + +#: skins/default/templates/question.html:297 +#, python-format +msgid "" +"Know someone who can answer? Share a link " +"to this question via" +msgstr "" + +#: skins/default/templates/question.html:303 +#, fuzzy +msgid " or" +msgstr "veya" + +#: skins/default/templates/question.html:305 +msgid "email" +msgstr "E-mail" -#: skins/default/templates/question.html:309 -#: skins/default/templates/question.html:311 +#: skins/default/templates/question.html:320 +#: skins/default/templates/question.html:322 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.html:313 +#: skins/default/templates/question.html:324 msgid "Notify me weekly when there are any new answers" msgstr "Yeni cevaplar için beni haftalık olarak uyar" -#: skins/default/templates/question.html:315 +#: skins/default/templates/question.html:326 #, fuzzy msgid "Notify me immediately when there are any new answers" msgstr "Yeni cevaplar için beni haftalık olarak uyar" -#: skins/default/templates/question.html:318 +#: skins/default/templates/question.html:329 #, python-format msgid "" "You can always adjust frequency of email updates from your %(profile_url)s" @@ -3848,7 +4541,7 @@ msgstr "" "%(profile_url)s adresini kullanarak, size gelecek uyarı e-postalarının " "sıklığını değiştirebilirsiniz." -#: skins/default/templates/question.html:323 +#: skins/default/templates/question.html:334 #, fuzzy msgid "once you sign in you will be able to subscribe for any updates here" msgstr "" @@ -3856,15 +4549,20 @@ msgstr "" "up for the periodic email updates about this question.güncellemelerden " "haberdar olmak için kaydolun." -#: skins/default/templates/question.html:333 +#: skins/default/templates/question.html:344 +#, fuzzy +msgid "Login/Signup to Answer" +msgstr "Cevap yollamak için üye girişi yapmalısınız" + +#: skins/default/templates/question.html:352 msgid "Your answer" msgstr "Cevabınız" -#: skins/default/templates/question.html:335 +#: skins/default/templates/question.html:354 msgid "Be the first one to answer this question!" msgstr "Bu soruya ilk cevabı sen yaz!" -#: skins/default/templates/question.html:341 +#: skins/default/templates/question.html:360 #, fuzzy msgid "you can answer anonymously and then login" msgstr "" @@ -3875,7 +4573,7 @@ msgstr "" "please do remember to vote (after you log in)!şimdi hemen " "cevap yazabilir, yollamak için daha sonra üye girişi yapabilirsiniz." -#: skins/default/templates/question.html:345 +#: skins/default/templates/question.html:364 #, fuzzy msgid "answer your own question only to give an answer" msgstr "" @@ -3887,290 +4585,168 @@ msgstr "" "not like)! Kendi soruna cevap vermek üzeresin. Ya da sorunu daha da " "açıklamak mı istiyorsun?" -#: skins/default/templates/question.html:347 +#: skins/default/templates/question.html:366 msgid "please only give an answer, no discussions" msgstr "lütfen sadece cevap verin, tartışma yok." -#: skins/default/templates/question.html:354 +#: skins/default/templates/question.html:373 msgid "Login/Signup to Post Your Answer" msgstr "Cevap yollamak için üye girişi yapmalısınız" -#: skins/default/templates/question.html:357 +#: skins/default/templates/question.html:376 +#: skins/default/templates/question.html:389 msgid "Answer Your Own Question" msgstr "Kendi soruna cevap yaz!" -#: skins/default/templates/question.html:359 +#: skins/default/templates/question.html:378 msgid "Answer the question" msgstr "Cevabı yayınla" -#: skins/default/templates/question.html:373 -msgid "Question tags" +#: skins/default/templates/question.html:397 +#, fuzzy +msgid "Question tools" msgstr "Etiketleri" -#: skins/default/templates/question.html:378 -#: skins/default/templates/questions.html:222 -#: skins/default/templates/tag_selector.html:9 -#: skins/default/templates/tag_selector.html:26 +#: skins/default/templates/question.html:400 +#, fuzzy +msgid "click to unfollow this question" +msgstr "En ilgi çekici soruyu gormek için tıklayın" + +#: skins/default/templates/question.html:401 +msgid "Following" +msgstr "" + +#: skins/default/templates/question.html:402 +msgid "Unfollow" +msgstr "" + +#: skins/default/templates/question.html:406 +#, fuzzy +msgid "click to follow this question" +msgstr "En ilgi çekici soruyu gormek için tıklayın" + +#: skins/default/templates/question.html:407 +msgid "Follow" +msgstr "" + +#: skins/default/templates/question.html:414 #, python-format -msgid "see questions tagged '%(tag_name)s'" -msgstr "'%(tag_name)s' etiketli soruları gör" +msgid "%(count)s follower" +msgid_plural "%(count)s followers" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/templates/question.html:420 +#, fuzzy +msgid "email the updates" +msgstr "E-mail güncellemeleri iptal edildi" -#: skins/default/templates/question.html:384 +#: skins/default/templates/question.html:423 +msgid "" +"Here (once you log in) you will be able to sign up for the " +"periodic email updates about this question." +msgstr "" + +#: skins/default/templates/question.html:428 +#, fuzzy +msgid "subscribe to this question rss feed" +msgstr "soruya ve cevaplarına abone ol" + +#: skins/default/templates/question.html:429 +#, fuzzy +msgid "subsribe to rss feed" +msgstr "soruya ve cevaplarına abone ol" + +#: skins/default/templates/question.html:438 +msgid "Question tags" +msgstr "Etiketleri" + +#: skins/default/templates/question.html:460 +msgid "Stats:" +msgstr "" + +#: skins/default/templates/question.html:462 msgid "question asked" msgstr "sorulma zamanı" -#: skins/default/templates/question.html:387 +#: skins/default/templates/question.html:465 msgid "question was seen" msgstr "izlenme sayısı" -#: skins/default/templates/question.html:387 +#: skins/default/templates/question.html:465 msgid "times" msgstr "kez" -#: skins/default/templates/question.html:390 +#: skins/default/templates/question.html:468 msgid "last updated" msgstr "son güncelleme" -#: skins/default/templates/question.html:397 +#: skins/default/templates/question.html:477 msgid "Related questions" msgstr "İlgili sorular" #: skins/default/templates/question_edit.html:4 -#: skins/default/templates/question_edit.html:10 +#: skins/default/templates/question_edit.html:9 msgid "Edit question" msgstr "Soruyu düzenle" -#: skins/default/templates/question_edit_tips.html:3 -msgid "question tips" -msgstr "soru ipuçları" - -#: skins/default/templates/question_edit_tips.html:6 -msgid "please ask a relevant question" -msgstr "lütfen ilgili bir soru sorunuz" - -#: skins/default/templates/question_edit_tips.html:9 -msgid "please try provide enough details" -msgstr "yeterince ayrıntılı olmasına çalışın" - #: skins/default/templates/question_retag.html:3 -#: skins/default/templates/question_retag.html:6 +#: skins/default/templates/question_retag.html:5 msgid "Change tags" msgstr "Etiket değiştir" -#: skins/default/templates/question_retag.html:25 +#: skins/default/templates/question_retag.html:21 #, fuzzy msgid "Retag" msgstr "etiketler" -#: skins/default/templates/question_retag.html:34 +#: skins/default/templates/question_retag.html:28 msgid "Why use and modify tags?" msgstr "Neden etiket kullanıyor ve bunu değiştiriyoruz?" -#: skins/default/templates/question_retag.html:36 +#: skins/default/templates/question_retag.html:30 msgid "Tags help to keep the content better organized and searchable" msgstr "" -#: skins/default/templates/question_retag.html:38 +#: skins/default/templates/question_retag.html:32 msgid "tag editors receive special awards from the community" msgstr "etiket editörleri, sitemizden özel ödül almaktadır" -#: skins/default/templates/question_retag.html:79 +#: skins/default/templates/question_retag.html:59 msgid "up to 5 tags, less than 20 characters each" msgstr "en fazla 5 etiket, her etiket en fazla 20 karakter" -#: skins/default/templates/questions.html:4 -msgid "Questions" -msgstr "Sorular" - -#: skins/default/templates/questions.html:9 -msgid "In:" -msgstr "Sorular:" - -#: skins/default/templates/questions.html:18 -msgid "see unanswered questions" -msgstr "cevapsız sorular gör" - -#: skins/default/templates/questions.html:24 -msgid "see your favorite questions" -msgstr "beğendiğiniz soruları gör" - -#: skins/default/templates/questions.html:29 -msgid "Sort by:" -msgstr "Sıralama:" - -#: skins/default/templates/questions.html:97 -#: skins/default/templates/questions.html:100 -msgid "subscribe to the questions feed" -msgstr "soruya ve cevaplarına abone ol" - -#: skins/default/templates/questions.html:101 -msgid "rss feed" -msgstr "rss beslemesi" - -#: skins/default/templates/questions.html:105 -#, fuzzy, python-format -msgid "" -"\n" -" %(q_num)s question\n" -" " -msgid_plural "" -"\n" -" %(q_num)s questions\n" -" " -msgstr[0] "" -"\n" -"%(q_num)s soru bulundu" -msgstr[1] "" -"\n" -"%(q_num)s soru bulundu" - -#: skins/default/templates/questions.html:111 views/readers.py:157 -#, python-format -msgid "%(q_num)s question" -msgid_plural "%(q_num)s questions" -msgstr[0] "%(q_num)s soru" -msgstr[1] "%(q_num)s soru" - -#: skins/default/templates/questions.html:114 -#, python-format -msgid "with %(author_name)s's contributions" -msgstr "%(author_name)s 'ın katkılarıyla" - -#: skins/default/templates/questions.html:117 -msgid "tagged" -msgstr "etiketlendi" - -#: skins/default/templates/questions.html:122 -msgid "Search tips:" -msgstr "Arama ipuçları:" - -#: skins/default/templates/questions.html:125 -msgid "reset author" -msgstr "yazarı sil" - -#: skins/default/templates/questions.html:127 -#: skins/default/templates/questions.html:130 -#: skins/default/templates/questions.html:168 -#: skins/default/templates/questions.html:171 -#, fuzzy -msgid " or " -msgstr "veya" - -#: skins/default/templates/questions.html:128 -msgid "reset tags" -msgstr "etiketleri temizle" - -#: skins/default/templates/questions.html:131 -#: skins/default/templates/questions.html:134 -msgid "start over" -msgstr "baştan başla" - -#: skins/default/templates/questions.html:136 -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/questions.html:139 -msgid "Search tip:" -msgstr "Arama ipucu:" - -#: skins/default/templates/questions.html:139 -msgid "add tags and a query to focus your search" -msgstr "etiketleri kullanmak, arama sonucuna tam olarak odaklanmanızı sağlar" - -#: skins/default/templates/questions.html:154 -#: skins/default/templates/unused/questions_ajax.html:79 -msgid "There are no unanswered questions here" -msgstr "Harika! Cevapsız bir soru bile kalmamış..." - -#: skins/default/templates/questions.html:157 -#: skins/default/templates/unused/questions_ajax.html:82 -msgid "No favorite questions here. " -msgstr "Malesef, henüz beğenilmiş bir soru mevcut değil." - -#: skins/default/templates/questions.html:158 -#: skins/default/templates/unused/questions_ajax.html:83 -msgid "Please start (bookmark) some questions when you visit them" -msgstr "Beğendiğiniz soruları, favorilerinize ekleyebilirsiniz." - -#: skins/default/templates/questions.html:163 -#: skins/default/templates/unused/questions_ajax.html:88 -msgid "You can expand your search by " -msgstr "Ayrıntılı arama yapabilirsiniz" - -#: skins/default/templates/questions.html:166 -#: skins/default/templates/unused/questions_ajax.html:92 -msgid "resetting author" -msgstr "yazar sıfırlanıyor" - -#: skins/default/templates/questions.html:169 -#: skins/default/templates/unused/questions_ajax.html:96 -msgid "resetting tags" -msgstr "etiketler sıfırlanıyor" - -#: skins/default/templates/questions.html:172 -#: skins/default/templates/questions.html:175 -#: skins/default/templates/unused/questions_ajax.html:100 -#: skins/default/templates/unused/questions_ajax.html:104 -msgid "starting over" -msgstr "baştan başlıyor" - -#: skins/default/templates/questions.html:180 -#: skins/default/templates/unused/questions_ajax.html:109 -msgid "Please always feel free to ask your question!" -msgstr "" -"Asla soru sormaktan çekinmeyin! Sorun ki, sayenizde başkaları da öğrensin!" - -#: skins/default/templates/questions.html:184 -#: skins/default/templates/unused/questions_ajax.html:113 -msgid "Did not find what you were looking for?" -msgstr "Aradığını bulamadın mı?" - -#: skins/default/templates/questions.html:185 -#: skins/default/templates/unused/questions_ajax.html:114 -msgid "Please, post your question!" -msgstr "Hemen kendi sorunu yolla!" - -#: skins/default/templates/questions.html:200 -msgid "Contributors" -msgstr "Yazarlar" - -#: skins/default/templates/questions.html:217 -msgid "Related tags" -msgstr "İlgili etiketler" - -#: skins/default/templates/reopen.html:3 skins/default/templates/reopen.html:6 +#: skins/default/templates/reopen.html:3 skins/default/templates/reopen.html:5 msgid "Reopen question" msgstr "Soruyu yeniden aç" -#: skins/default/templates/reopen.html:9 +#: skins/default/templates/reopen.html:6 #, fuzzy msgid "Title" msgstr "başlık" -#: skins/default/templates/reopen.html:14 +#: skins/default/templates/reopen.html:11 #, python-format msgid "" "This question has been closed by \n" -" %(closed_by_username)s\n" -" " +" %(closed_by_username)s\n" msgstr "" -#: skins/default/templates/reopen.html:19 +#: skins/default/templates/reopen.html:16 #, fuzzy msgid "Close reason:" msgstr "Soruyu kapat" -#: skins/default/templates/reopen.html:22 +#: skins/default/templates/reopen.html:19 msgid "When:" msgstr "" -#: skins/default/templates/reopen.html:25 +#: skins/default/templates/reopen.html:22 #, fuzzy msgid "Reopen this question?" msgstr "Bu soruyu tekrar aç" -#: skins/default/templates/reopen.html:29 +#: skins/default/templates/reopen.html:26 msgid "Reopen this question" msgstr "Bu soruyu tekrar aç" @@ -4188,448 +4764,92 @@ msgstr "düzenlemeleri gizle/göster" msgid "revision %(number)s" msgstr "Tema medya dosyaları versiyon numarası" -#: skins/default/templates/tag_selector.html:3 -msgid "Interesting tags" -msgstr "İlginç etiketler" - -#: skins/default/templates/tag_selector.html:13 -#, python-format -msgid "remove '%(tag_name)s' from the list of interesting tags" -msgstr "ilginizi çeken etiketler kısmından '%(tag_name)s' etiketini sil" - -#: skins/default/templates/tag_selector.html:19 -#: skins/default/templates/tag_selector.html:36 -#: skins/default/templates/user_moderate.html:35 -msgid "Add" -msgstr "Ekle" - -#: skins/default/templates/tag_selector.html:20 -msgid "Ignored tags" -msgstr "Yoksayılan etiketler" +#: skins/default/templates/subscribe_for_tags.html:3 +#: skins/default/templates/subscribe_for_tags.html:5 +#, fuzzy +msgid "Subscribe for tags" +msgstr "etiketleri kullan" -#: skins/default/templates/tag_selector.html:30 -#, python-format -msgid "remove '%(tag_name)s' from the list of ignored tags" -msgstr "yoksaydığınız etiketler kısmından '%(tag_name)s' etiketini sil" +#: skins/default/templates/subscribe_for_tags.html:6 +#, fuzzy +msgid "Please, subscribe for the following tags:" +msgstr "Soru şu sebepten dolayı kaldırıldı:" -#: skins/default/templates/tag_selector.html:39 -msgid "keep ignored questions hidden" -msgstr "yoksayılan soruları gizle" +#: skins/default/templates/subscribe_for_tags.html:15 +msgid "Subscribe" +msgstr "" -#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:8 +#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:11 msgid "Tag list" msgstr "Etiket listesi" -#: skins/default/templates/tags.html:14 +#: skins/default/templates/tags.html:9 +#, python-format +msgid "Tags, matching \"%(stag)s\"" +msgstr "" + +#: skins/default/templates/tags.html:19 msgid "sorted alphabetically" msgstr "alfabetik sıraya göre" -#: skins/default/templates/tags.html:15 +#: skins/default/templates/tags.html:20 msgid "by name" msgstr "isime göre" -#: skins/default/templates/tags.html:20 +#: skins/default/templates/tags.html:25 msgid "sorted by frequency of tag use" msgstr "etiket kullanım sıklığına göre" -#: skins/default/templates/tags.html:21 +#: skins/default/templates/tags.html:26 msgid "by popularity" msgstr "popülerliğe göre" -#: skins/default/templates/tags.html:27 -#, python-format -msgid "" -"All tags matching '%(stag)s'" -msgstr "" -"Tüm etiketleri eşleştirme '%(stag)s'" - -#: skins/default/templates/tags.html:30 +#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:56 msgid "Nothing found" msgstr "Hiçbir şey bulunamadı" -#: skins/default/templates/user.html:14 -#, python-format -msgid "%(username)s's profile" -msgstr "%(username)s isimli kullanıcının profili" - -#: skins/default/templates/user_edit.html:4 -msgid "Edit user profile" -msgstr "Kullanıcı profilini düzenle" +#: skins/default/templates/users.html:4 skins/default/templates/users.html:7 +msgid "Users" +msgstr "Kullanıcılar" -#: skins/default/templates/user_edit.html:7 -msgid "edit profile" -msgstr "profil değiştir" +#: skins/default/templates/users.html:13 +msgid "see people with the highest reputation" +msgstr "" -#: skins/default/templates/user_edit.html:17 -#: skins/default/templates/user_info.html:11 -msgid "change picture" -msgstr "resim değiştir" +#: skins/default/templates/users.html:14 +#: skins/default/templates/user_profile/user_info.html:25 +msgid "reputation" +msgstr "itibar puanı" -#: skins/default/templates/user_edit.html:20 -msgid "Registered user" -msgstr "Kayıtlı kullanıcı" +#: skins/default/templates/users.html:19 +msgid "see people who joined most recently" +msgstr "" -#: skins/default/templates/user_edit.html:27 -msgid "Screen Name" -msgstr "Görünen isim" - -#: skins/default/templates/user_edit.html:75 -#: skins/default/templates/user_email_subscriptions.html:18 -msgid "Update" -msgstr "Güncelleme" - -#: skins/default/templates/user_email_subscriptions.html:4 -msgid "Email subscription settings" -msgstr "E-mail abonelik ayarları" - -#: skins/default/templates/user_email_subscriptions.html:5 -msgid "email subscription settings info" -msgstr "E-posta üyelik ayarları bilgisi" - -#: skins/default/templates/user_email_subscriptions.html:19 -msgid "Stop sending email" -msgstr "E-mail yollamayı duraklat" - -#: skins/default/templates/user_inbox.html:31 -#, fuzzy -msgid "Sections:" -msgstr "sorular" - -#: skins/default/templates/user_inbox.html:35 -#, python-format -msgid "forum responses (%(re_count)s)" -msgstr "" - -#: skins/default/templates/user_inbox.html:40 -#, python-format -msgid "flagged items (%(flag_count)s)" -msgstr "" - -#: skins/default/templates/user_inbox.html:46 -#, fuzzy -msgid "select:" -msgstr "sil" - -#: skins/default/templates/user_inbox.html:48 -#, fuzzy -msgid "seen" -msgstr "son görülme" - -#: skins/default/templates/user_inbox.html:49 -#, fuzzy -msgid "new" -msgstr "en yeni" - -#: skins/default/templates/user_inbox.html:50 -#, fuzzy -msgid "none" -msgstr "bronz" - -#: skins/default/templates/user_inbox.html:51 -#, fuzzy -msgid "mark as seen" -msgstr "son görülme" - -#: skins/default/templates/user_inbox.html:52 -#, fuzzy -msgid "mark as new" -msgstr "en iyi cevap olarak işaretlenmiş" - -#: skins/default/templates/user_inbox.html:53 -msgid "dismiss" -msgstr "" - -#: skins/default/templates/user_info.html:18 -#: skins/default/templates/users.html:13 skins/default/templates/users.html:14 -msgid "reputation" -msgstr "itibar puanı" - -#: skins/default/templates/user_info.html:30 -msgid "manage login methods" -msgstr "" - -#: skins/default/templates/user_info.html:34 -msgid "update profile" -msgstr "profilimi güncelle" - -#: skins/default/templates/user_info.html:46 -msgid "real name" -msgstr "gerçek ismi" - -#: skins/default/templates/user_info.html:51 -msgid "member for" -msgstr "üyelik başlangıcı" - -#: skins/default/templates/user_info.html:56 -msgid "last seen" -msgstr "son görülme" - -#: skins/default/templates/user_info.html:62 -msgid "user website" -msgstr "websitesi" - -#: skins/default/templates/user_info.html:68 -msgid "location" -msgstr "yer" - -#: skins/default/templates/user_info.html:75 -msgid "age" -msgstr "yaş" - -#: skins/default/templates/user_info.html:76 -msgid "age unit" -msgstr "yaşında" - -#: skins/default/templates/user_info.html:83 -msgid "todays unused votes" -msgstr "bugün kullanılmayan oy" - -#: skins/default/templates/user_info.html:84 -msgid "votes left" -msgstr "oy kullandı" - -#: skins/default/templates/user_moderate.html:5 -#, python-format -msgid "%(username)s's current status is \"%(status)s\"" -msgstr "" - -#: skins/default/templates/user_moderate.html:8 -msgid "User status changed" -msgstr "" - -#: skins/default/templates/user_moderate.html:15 -#, fuzzy -msgid "Save" -msgstr "Değişikliği kaydet" - -#: skins/default/templates/user_moderate.html:21 -#, fuzzy, python-format -msgid "Your current reputation is %(reputation)s points" -msgstr "karmanız %(reputation)s" - -#: skins/default/templates/user_moderate.html:23 -#, python-format -msgid "User's current reputation is %(reputation)s points" -msgstr "" - -#: skins/default/templates/user_moderate.html:27 -#, fuzzy -msgid "User reputation changed" -msgstr "toplulukta kullanıcının itibarı" - -#: skins/default/templates/user_moderate.html:34 -msgid "Subtract" -msgstr "" - -#: skins/default/templates/user_moderate.html:39 -#, fuzzy, python-format -msgid "Send message to %(username)s" -msgstr "bir kullanıcı adı seçin" +#: skins/default/templates/users.html:20 +msgid "recent" +msgstr "son" -#: skins/default/templates/user_moderate.html:40 -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." +#: skins/default/templates/users.html:25 +msgid "see people who joined the site first" msgstr "" -#: skins/default/templates/user_moderate.html:42 -#, fuzzy -msgid "Message sent" -msgstr "mesajlar/" - -#: skins/default/templates/user_moderate.html:60 -#, fuzzy -msgid "Send message" -msgstr "mesajlar/" - -#: skins/default/templates/user_reputation.html:7 -msgid "Your karma change log." -msgstr "Karma değişiklik kayıtları" - -#: skins/default/templates/user_reputation.html:9 -#, python-format -msgid "%(user_name)s's karma change log" -msgstr "%(user_name)s 'nin karma değişim günlüğü" - -#: skins/default/templates/user_stats.html:7 -#, fuzzy, python-format -msgid "%(counter)s Question" -msgid_plural "%(counter)s Questions" -msgstr[0] "1 Madalya" -msgstr[1] "%(counter)s Madalya" - -#: skins/default/templates/user_stats.html:12 -#, fuzzy, python-format -msgid "%(counter)s Answer" -msgid_plural "%(counter)s Answers" -msgstr[0] "1 Madalya" -msgstr[1] "%(counter)s Madalya" - -#: skins/default/templates/user_stats.html:20 -#, 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_stats.html:20 -msgid "this answer has been selected as correct" -msgstr "bu cevap doğru olarak seçildi" - -#: skins/default/templates/user_stats.html:30 -#, fuzzy, python-format -msgid "(%(comment_count)s comment)" -msgid_plural "the answer has been commented %(comment_count)s times" -msgstr[0] "yorum ekle" -msgstr[1] "yorum ekle" - -#: skins/default/templates/user_stats.html:40 -#, python-format -msgid "%(cnt)s Vote" -msgid_plural "%(cnt)s Votes " -msgstr[0] "%(cnt)s Oy" -msgstr[1] "%(cnt)s Oy" - -#: skins/default/templates/user_stats.html:46 -msgid "thumb up" -msgstr "beğen" - -#: skins/default/templates/user_stats.html:47 -msgid "user has voted up this many times" -msgstr "kullanıcılar tarafından defalarca beğendi" - -#: skins/default/templates/user_stats.html:50 -msgid "thumb down" -msgstr "beğenme" - -#: skins/default/templates/user_stats.html:51 -msgid "user voted down this many times" -msgstr "kullanıcılar tarafından defalarca beğenilmedi" - -#: skins/default/templates/user_stats.html:59 -#, python-format -msgid "%(counter)s Tag" -msgid_plural "%(counter)s Tags" -msgstr[0] "%(counter)s Etiket" -msgstr[1] "%(counter)s Etiket" - -#: skins/default/templates/user_stats.html:67 -#, python-format -msgid "" -"see other questions with %(view_user)s's contributions tagged '%(tag_name)s' " -msgstr "%(view_user)s 'nin diğer '%(tag_name)s' etiketli diğer sorularını gör" - -#: skins/default/templates/user_stats.html:81 -#, fuzzy, python-format -msgid "%(counter)s Badge" -msgid_plural "%(counter)s Badges" -msgstr[0] "1 Madalya" -msgstr[1] "%(counter)s Madalya" - -#: skins/default/templates/user_tabs.html:5 -msgid "User profile" -msgstr "Kullanıcı profili" - -#: skins/default/templates/user_tabs.html:6 -msgid "overview" -msgstr "genel bakış" - -#: skins/default/templates/user_tabs.html:9 views/users.py:753 -msgid "comments and answers to others questions" -msgstr "diğer sorulara cevaplar ve yorumlar" - -#: skins/default/templates/user_tabs.html:10 -msgid "inbox" +#: skins/default/templates/users.html:31 +msgid "see people sorted by name" msgstr "" -#: skins/default/templates/user_tabs.html:13 -msgid "graph of user reputation" -msgstr "kullanıcı itibar grafiği" - -#: skins/default/templates/user_tabs.html:14 -msgid "reputation history" -msgstr "itibar geçmişi" - -#: skins/default/templates/user_tabs.html:16 -msgid "questions that user selected as his/her favorite" -msgstr "kullanıcının favori olarak seçtiği sorular" - -#: skins/default/templates/user_tabs.html:17 -msgid "favorites" -msgstr "favoriler" - -#: skins/default/templates/user_tabs.html:19 -msgid "recent activity" -msgstr "son etkinlik" - -#: skins/default/templates/user_tabs.html:20 -#, fuzzy -msgid "activity" -msgstr "aktif" - -#: skins/default/templates/user_tabs.html:23 views/users.py:818 -msgid "user vote record" -msgstr "kullanıcı oy rekoru" - -#: skins/default/templates/user_tabs.html:24 -msgid "casted votes" -msgstr "kritik oy" - -#: skins/default/templates/user_tabs.html:28 views/users.py:928 -msgid "email subscription settings" -msgstr "E-mail abonelik ayarları" - -#: skins/default/templates/user_tabs.html:29 -#, fuzzy -msgid "subscriptions" -msgstr "e-mail abonelikleri" - -#: skins/default/templates/user_tabs.html:33 views/users.py:216 -#, fuzzy -msgid "moderate this user" -msgstr "Bu kullanıcıyı yönet" - -#: skins/default/templates/user_tabs.html:34 -#, fuzzy -msgid "moderation" -msgstr "Yer" - -#: skins/default/templates/users.html:4 skins/default/templates/users.html:7 -msgid "Users" -msgstr "Kullanıcılar" - -#: skins/default/templates/users.html:19 skins/default/templates/users.html:20 -msgid "recent" -msgstr "son" - -#: skins/default/templates/users.html:31 skins/default/templates/users.html:32 +#: skins/default/templates/users.html:32 msgid "by username" msgstr "kullanıcı tarafından" -#: skins/default/templates/users.html:38 +#: skins/default/templates/users.html:37 #, python-format msgid "users matching query %(suser)s:" msgstr "kullanıcı sorgusuna eşleşen %(suser)s :" -#: skins/default/templates/users.html:41 +#: skins/default/templates/users.html:40 msgid "Nothing found." msgstr "Hiçbir şey bulunamadı." -#: skins/default/templates/users_questions.html:9 -#: skins/default/templates/users_questions.html:17 -#, fuzzy, python-format -msgid "this questions was selected as favorite %(cnt)s time" -msgid_plural "this questions was selected as favorite %(cnt)s times" -msgstr[0] "Bu sorular favori olarak seçildi" -msgstr[1] "Bu sorular favori olarak seçildi" - -#: skins/default/templates/users_questions.html:10 -msgid "thumb-up on" -msgstr "Küçük beğeni resmi açık" - -#: skins/default/templates/users_questions.html:18 -msgid "thumb-up off" -msgstr "Küçük beğeni resmi kapalı" - #: skins/default/templates/authopenid/changeemail.html:2 #: skins/default/templates/authopenid/changeemail.html:8 #: skins/default/templates/authopenid/changeemail.html:36 @@ -4652,11 +4872,11 @@ msgstr "" "Please enter your email address in the box below. Valid email address is required on this Q&A forum. If you like, " "you can receive updates on interesting questions or entire " -"forum via email. Also, your email is used to create a unique gravatar 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" +"forum via email. Also, your email is used to create a unique gravatar 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/default/templates/authopenid/changeemail.html:29 msgid "Your new Email" @@ -4678,13 +4898,13 @@ msgstr "E-mail adresini doğrula" #, fuzzy, python-format msgid "validate %(email)s info or go to %(change_email_url)s" msgstr "" -"An email with a validation link has been sent to %" -"(email)s. Please follow the emailed link with your " +"An email with a validation link has been sent to " +"%(email)s. Please follow the emailed link with your " "web browser. Email validation is necessary to help insure the proper use of " "email on Q&A. If you would like to use " -"another email, please change it again. %(email)s adresini doğrulayın ya " -"da %(change_email_url)s adresine gidin." +"another email, please change it again. %(email)s " +"adresini doğrulayın ya da %(change_email_url)s adresine gidin." #: skins/default/templates/authopenid/changeemail.html:52 msgid "Email not changed" @@ -4696,9 +4916,10 @@ msgid "old %(email)s kept, if you like go to %(change_email_url)s" msgstr "" "Your email address %(email)s has not been changed." " If you decide to change it later - you can always do it by editing " -"it in your user profile or by using the previous form again.eski %(email)s saklansın " -"diyorsanız, %(change_email_url)s adresi size yardımcı olacaktır." +"it in your user profile or by using the previous form again.eski " +"%(email)s saklansın diyorsanız, %(change_email_url)s adresi size yardımcı " +"olacaktır." #: skins/default/templates/authopenid/changeemail.html:59 msgid "Email changed" @@ -4725,33 +4946,33 @@ msgstr "e-posta kodu gönderilmedi" #, python-format 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." +"E-mail şifresi %(email)s yollanamadı. E-mail değiştirmek için: " +"%(change_link)s adresine bakın." #: skins/default/templates/authopenid/complete.html:21 -#: skins/default/templates/authopenid/complete.html:24 +#: skins/default/templates/authopenid/complete.html:23 #, fuzzy msgid "Registration" msgstr "Kayıt" -#: skins/default/templates/authopenid/complete.html:29 +#: skins/default/templates/authopenid/complete.html:27 #, fuzzy, python-format msgid "register new %(provider)s account info, see %(gravatar_faq_url)s" msgstr "" -"

        You are here for the first time with your %" -"(provider)s login. Please create your screen name " +"

        You are here for the first time with your " +"%(provider)s login. Please create your screen name " "and save your email address. Saved email address will let " "you subscribe for the updates on the most interesting " "questions and will be used to create and retrieve your unique avatar image - " -"gravatar.

        Yeni %" -"(provider)s hesabı kayıt bilgisi için lütfen bakınız: %(gravatar_faq_url)s" +"gravatar.

        Yeni " +"%(provider)s hesabı kayıt bilgisi için lütfen bakınız: %(gravatar_faq_url)s" -#: skins/default/templates/authopenid/complete.html:32 +#: skins/default/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" +" %(provider)s. Email is required too, see " +"%(gravatar_faq_url)s\n" " " msgstr "" "

        Oops... looks like screen name %(username)s is " @@ -4761,26 +4982,26 @@ msgstr "" "used to create a unique gravatar image for your account. If you like, you can receive " "updates on the interesting questions or entire forum by email. " -"Email addresses are never shown or otherwise shared with anybody else.

        %" -"(username)s kullanıcı adı, %(provider)s için başka birisi tarafından " +"Email addresses are never shown or otherwise shared with anybody else.

        " +"%(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/default/templates/authopenid/complete.html:36 +#: skins/default/templates/authopenid/complete.html:34 #, fuzzy, python-format msgid "" "register new external %(provider)s account info, see %(gravatar_faq_url)s" msgstr "" -"

        You are here for the first time with your %" -"(provider)s login.

        You can either keep your screen " +"

        You are here for the first time with your " +"%(provider)s login.

        You can either keep your screen " "name the same as your %(provider)s login name or choose some other " "nickname.

        Also, please save a valid email address. " "With the email you can subscribe for the updates on the " "most interesting questions. Email address is also used to create and " -"retrieve your unique avatar image - gravatar.

        başka bir %(provider)s hesabı kaydetmek " -"için bakınız: %(gravatar_faq_url)s" +"retrieve your unique avatar image - gravatar.

        başka bir " +"%(provider)s hesabı kaydetmek için bakınız: %(gravatar_faq_url)s" -#: skins/default/templates/authopenid/complete.html:39 +#: skins/default/templates/authopenid/complete.html:37 #, fuzzy, python-format msgid "register new Facebook connect account info, see %(gravatar_faq_url)s" msgstr "" @@ -4788,28 +5009,28 @@ msgstr "" "Facebook login.
        Please create your screen name and " "save your email address. Saved email address will let you " "subscribe for the updates on the most interesting questions " -"and will be used to create and retrieve your unique avatar image - gravatar.

        Yeni Facebook hesabı " -"ile bağlanma kaydı bilgisi: %(gravatar_faq_url)s" +"and will be used to create and retrieve your unique avatar image - gravatar.

        Yeni Facebook " +"hesabı ile bağlanma kaydı bilgisi: %(gravatar_faq_url)s" -#: skins/default/templates/authopenid/complete.html:42 +#: skins/default/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/default/templates/authopenid/complete.html:61 +#: skins/default/templates/authopenid/complete.html:59 msgid "Screen name label" msgstr "Görünen isim etiketi" -#: skins/default/templates/authopenid/complete.html:68 +#: skins/default/templates/authopenid/complete.html:66 #, fuzzy msgid "Email address label" msgstr "" "Email Address (will not be shared with " "anyone, must be valid)" -#: skins/default/templates/authopenid/complete.html:74 -#: skins/default/templates/authopenid/signup_with_password.html:17 +#: skins/default/templates/authopenid/complete.html:72 +#: skins/default/templates/authopenid/signup_with_password.html:36 #, fuzzy msgid "receive updates motivational blurb" msgstr "" @@ -4819,17 +5040,17 @@ msgstr "" "week
        - only when there is anything new.
        If you like, please " "adjust this now or any time later from your user account." -#: skins/default/templates/authopenid/complete.html:78 -#: skins/default/templates/authopenid/signup_with_password.html:21 +#: skins/default/templates/authopenid/complete.html:76 +#: skins/default/templates/authopenid/signup_with_password.html:40 msgid "please select one of the options above" msgstr "Lütfen yukarıdaki seçeneklerden birini seçin" -#: skins/default/templates/authopenid/complete.html:81 +#: skins/default/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/default/templates/authopenid/complete.html:82 +#: skins/default/templates/authopenid/complete.html:80 msgid "create account" msgstr "hesap oluştur" @@ -4882,11 +5103,40 @@ msgstr "" "yapmanıza gerek yok.
        Bu mesajı dikkate almayın.
        Bu durum için özür " "dileriz." -#: skins/default/templates/authopenid/signin.html:3 +#: skins/default/templates/authopenid/logout.html:3 +msgid "Logout" +msgstr "Çıkış" + +#: skins/default/templates/authopenid/logout.html:5 +msgid "You have successfully logged out" +msgstr "" + +#: skins/default/templates/authopenid/logout.html: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 "" + +#: skins/default/templates/authopenid/macros.html:53 +msgid "Please enter your user name, then sign in" +msgstr "" + +#: skins/default/templates/authopenid/macros.html:54 +#: skins/default/templates/authopenid/signin.html:90 +#, fuzzy +msgid "(or select another login method above)" +msgstr "Lütfen yukarıdaki seçeneklerden birini seçin" + +#: skins/default/templates/authopenid/macros.html:56 +#, fuzzy +msgid "Sign in" +msgstr "giriş/" + +#: skins/default/templates/authopenid/signin.html:4 msgid "User login" msgstr "Kullanıcı girişi" -#: skins/default/templates/authopenid/signin.html:11 +#: skins/default/templates/authopenid/signin.html:14 #, fuzzy, python-format msgid "" "\n" @@ -4896,10 +5146,10 @@ msgstr "" "\n" "Your answer to \"%(title)s %(summary)s...\" is saved and will be " -"posted once you log in.\"%(title)s\" başlıklı soruya yazdığınız \"%" -"(summary)s\" cevabını yollamak için giriş yapmalısınız." +"posted once you log in.
        \"%(title)s\" başlıklı soruya yazdığınız " +"\"%(summary)s\" cevabını yollamak için giriş yapmalısınız." -#: skins/default/templates/authopenid/signin.html:18 +#: skins/default/templates/authopenid/signin.html:21 #, fuzzy, python-format msgid "" "Your question \n" @@ -4911,372 +5161,1082 @@ msgstr "" "posted once you log in.
        \"%(title)s\" başlıklı \"%(summary)s\" " "sorunuzu yollamak için giriş yapmalısınız." -#: skins/default/templates/authopenid/signin.html:25 +#: skins/default/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." msgstr "" -#: skins/default/templates/authopenid/signin.html:28 +#: skins/default/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 "" -#: skins/default/templates/authopenid/signin.html:30 +#: skins/default/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 "" -#: skins/default/templates/authopenid/signin.html:34 +#: skins/default/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 "" -#: skins/default/templates/authopenid/signin.html:36 +#: skins/default/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 "" -#: skins/default/templates/authopenid/signin.html:39 +#: skins/default/templates/authopenid/signin.html:42 msgid "" "Please check your email and visit the enclosed link to re-connect to your " "account" msgstr "" -#: skins/default/templates/authopenid/signin.html:86 -msgid "Please enter your user name, then sign in" -msgstr "" - #: skins/default/templates/authopenid/signin.html:87 -#: skins/default/templates/authopenid/signin.html:109 -#, fuzzy -msgid "(or select another login method above)" -msgstr "Lütfen yukarıdaki seçeneklerden birini seçin" - -#: skins/default/templates/authopenid/signin.html:89 -#, fuzzy -msgid "Sign in" -msgstr "giriş/" - -#: skins/default/templates/authopenid/signin.html:107 #, fuzzy msgid "Please enter your user name and password, then sign in" msgstr "Lütfen kullanıcı adınızı ve şifrenizi girin" -#: skins/default/templates/authopenid/signin.html:111 +#: skins/default/templates/authopenid/signin.html:93 msgid "Login failed, please try again" msgstr "" -#: skins/default/templates/authopenid/signin.html:114 -msgid "Login name" -msgstr "Kullanıcı adı" +#: skins/default/templates/authopenid/signin.html:97 +#, fuzzy +msgid "Login or email" +msgstr "e-mail yok" -#: skins/default/templates/authopenid/signin.html:118 +#: skins/default/templates/authopenid/signin.html:101 msgid "Password" msgstr "Şifre" -#: skins/default/templates/authopenid/signin.html:122 +#: skins/default/templates/authopenid/signin.html:106 msgid "Login" msgstr "Giriş" -#: skins/default/templates/authopenid/signin.html:129 +#: skins/default/templates/authopenid/signin.html:113 msgid "To change your password - please enter the new one twice, then submit" msgstr "" -#: skins/default/templates/authopenid/signin.html:132 +#: skins/default/templates/authopenid/signin.html:117 #, fuzzy msgid "New password" msgstr "Yeni şifre ayarla" -#: skins/default/templates/authopenid/signin.html:137 +#: skins/default/templates/authopenid/signin.html:124 +#, fuzzy +msgid "Please, retype" +msgstr "lütfen şifrenizi yeniden yazın" + +#: skins/default/templates/authopenid/signin.html:146 +msgid "Here are your current login methods" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:150 +msgid "provider" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:151 +#, fuzzy +msgid "last used" +msgstr "son görülme" + +#: skins/default/templates/authopenid/signin.html:152 +msgid "delete, if you like" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:168 +#, fuzzy +msgid "cannot be deleted" +msgstr "Hesap silindi." + +#: skins/default/templates/authopenid/signin.html:181 +#, fuzzy +msgid "Still have trouble signing in?" +msgstr "Hala aklınıza takılan bir soru mu var?" + +#: skins/default/templates/authopenid/signin.html:186 +msgid "Please, enter your email address below and obtain a new key" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:188 +msgid "Please, enter your email address below to recover your account" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:191 +#, fuzzy +msgid "recover your account via email" +msgstr "Hesabınıza yeni bir şifre verin." + +#: skins/default/templates/authopenid/signin.html:202 +msgid "Send a new recovery key" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:204 +#, fuzzy +msgid "Recover your account via email" +msgstr "Hesabınıza yeni bir şifre verin." + +#: skins/default/templates/authopenid/signin.html:216 +msgid "Why use OpenID?" +msgstr "Neden OpenID kullanıyoruz?" + +#: skins/default/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/default/templates/authopenid/signin.html:222 +#, fuzzy +msgid "reuse openid" +msgstr "You can safely re-use the same login for all OpenID-enabled websites." + +#: skins/default/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/default/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/default/templates/authopenid/signin.html:232 +msgid "Find out more" +msgstr "Daha fazla bilgi" + +#: skins/default/templates/authopenid/signin.html:233 +msgid "Get OpenID" +msgstr "OpenID hesabı açın" + +#: skins/default/templates/authopenid/signup_with_password.html:4 +msgid "Signup" +msgstr "Kaydol" + +#: skins/default/templates/authopenid/signup_with_password.html:10 +#, fuzzy +msgid "Please register by clicking on any of the icons below" +msgstr "Lütfen yukarıdaki seçeneklerden birini seçin" + +#: skins/default/templates/authopenid/signup_with_password.html:23 +#, fuzzy +msgid "or create a new user name and password here" +msgstr "Kullanıcı adı ve şifre oluştur" + +#: skins/default/templates/authopenid/signup_with_password.html:25 +msgid "Create login name and password" +msgstr "Kullanıcı adı ve şifre oluştur" + +#: skins/default/templates/authopenid/signup_with_password.html:26 +#, fuzzy +msgid "Traditional signup info" +msgstr "" +"If you prefer, create your forum login name and " +"password here. However, please keep in mind that we also support " +"OpenID login method. With OpenID you can " +"simply reuse your external login (e.g. Gmail or AOL) without ever sharing " +"your login details with anyone and having to remember yet another password." + +#: skins/default/templates/authopenid/signup_with_password.html:44 +msgid "" +"Please read and type in the two words below to help us prevent automated " +"account creation." +msgstr "" +"Lütfen aşağıdaki iki kelimeyi yazın. Çünkü bazı otomatik hesap " +"oluşturucular, sitemize böyle kayıt olup, gerçek olmayan içerikler " +"eklemektedir." + +#: skins/default/templates/authopenid/signup_with_password.html:47 +msgid "Create Account" +msgstr "Hesap oluştur" + +#: skins/default/templates/authopenid/signup_with_password.html:49 +msgid "or" +msgstr "veya" + +#: skins/default/templates/authopenid/signup_with_password.html:50 +msgid "return to OpenID login" +msgstr "OpenID girişine dön" + +#: skins/default/templates/avatar/add.html:3 +#, fuzzy +msgid "add avatar" +msgstr "Gravatar nedir?" + +#: skins/default/templates/avatar/add.html:5 +#, fuzzy +msgid "Change avatar" +msgstr "Etiket değiştir" + +#: skins/default/templates/avatar/add.html:6 +#: skins/default/templates/avatar/change.html:7 +#, fuzzy +msgid "Your current avatar: " +msgstr "Hesap ayrıntılarınız şöyledir:" + +#: skins/default/templates/avatar/add.html:9 +#: skins/default/templates/avatar/change.html:11 +msgid "You haven't uploaded an avatar yet. Please upload one now." +msgstr "" + +#: skins/default/templates/avatar/add.html:13 +msgid "Upload New Image" +msgstr "" + +#: skins/default/templates/avatar/change.html:4 +#, fuzzy +msgid "change avatar" +msgstr "değişiklikler kaydedildi" + +#: skins/default/templates/avatar/change.html:17 +msgid "Choose new Default" +msgstr "" + +#: skins/default/templates/avatar/change.html:22 +#, fuzzy +msgid "Upload" +msgstr "yukle/" + +#: skins/default/templates/avatar/confirm_delete.html:3 +#, fuzzy +msgid "delete avatar" +msgstr "silinmiş cevap" + +#: skins/default/templates/avatar/confirm_delete.html:5 +msgid "Please select the avatars that you would like to delete." +msgstr "" + +#: skins/default/templates/avatar/confirm_delete.html:7 +#, python-format +msgid "" +"You have no avatars to delete. Please upload one now." +msgstr "" + +#: skins/default/templates/avatar/confirm_delete.html:13 +#, fuzzy +msgid "Delete These" +msgstr "silinmiş cevap" + +#: skins/default/templates/blocks/answer_edit_tips.html:3 +msgid "answer tips" +msgstr "cevap ipuçları" + +#: skins/default/templates/blocks/answer_edit_tips.html:6 +msgid "please make your answer relevant to this community" +msgstr "Cevabınızın sitemizdeki konu ile alakalı olmasına dikkat edin" + +#: skins/default/templates/blocks/answer_edit_tips.html:9 +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/blocks/answer_edit_tips.html:12 +msgid "please try to provide details" +msgstr "ayrıntılarıyayınlamayı deneyin" + +#: skins/default/templates/blocks/answer_edit_tips.html:15 +#: skins/default/templates/blocks/question_edit_tips.html:11 +msgid "be clear and concise" +msgstr "sorunuzun açık ve kısa olmasına çalışın" + +#: skins/default/templates/blocks/answer_edit_tips.html:19 +#: skins/default/templates/blocks/question_edit_tips.html:15 +msgid "see frequently asked questions" +msgstr "sık sorulan soruları gör" + +#: skins/default/templates/blocks/answer_edit_tips.html:25 +#: skins/default/templates/blocks/question_edit_tips.html:20 +msgid "Markdown tips" +msgstr "İpuçları" + +#: skins/default/templates/blocks/answer_edit_tips.html:29 +#: skins/default/templates/blocks/question_edit_tips.html:24 +msgid "*italic*" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:32 +#: skins/default/templates/blocks/question_edit_tips.html:27 +msgid "**bold**" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:36 +#: skins/default/templates/blocks/question_edit_tips.html:31 +#, fuzzy +msgid "*italic* or _italic_" +msgstr "* Italik * veya __italic__" + +#: skins/default/templates/blocks/answer_edit_tips.html:39 +#: skins/default/templates/blocks/question_edit_tips.html:34 +msgid "**bold** or __bold__" +msgstr "** Kalın ** veya __bold__" + +#: skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/question_edit_tips.html:38 +msgid "link" +msgstr "bağlantı" + +#: skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:38 +#: skins/default/templates/blocks/question_edit_tips.html:43 +msgid "text" +msgstr "metin" + +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:43 +msgid "image" +msgstr "resim" + +#: skins/default/templates/blocks/answer_edit_tips.html:51 +#: skins/default/templates/blocks/question_edit_tips.html:47 +msgid "numbered list:" +msgstr "numaralandırılmış liste:" + +#: skins/default/templates/blocks/answer_edit_tips.html:56 +#: skins/default/templates/blocks/question_edit_tips.html:52 +msgid "basic HTML tags are also supported" +msgstr "temel HTML etiketleri de desteklenmektedir" + +#: skins/default/templates/blocks/answer_edit_tips.html:60 +#: skins/default/templates/blocks/question_edit_tips.html:56 +msgid "learn more about Markdown" +msgstr "Markdown hakkında daha fazla bilgi" + +#: skins/default/templates/blocks/ask_form.html:6 +msgid "login to post question info" +msgstr "soru bilgisi göndermek için giriş yapın" + +#: skins/default/templates/blocks/ask_form.html:10 +#, fuzzy, python-format +msgid "" +"must have valid %(email)s to post, \n" +" see %(email_validation_faq_url)s\n" +" " +msgstr "" +"Looks like your email address, %(email)s has not " +"yet been validated. To post messages you must verify your email, " +"please see more details here." +"
        You can submit your question now and validate email after that. Your " +"question will saved as pending meanwhile. " + +#: skins/default/templates/blocks/ask_form.html:34 +msgid "Login/signup to post your question" +msgstr "Soru göndermek için üye girişi yapmalısınız" + +#: skins/default/templates/blocks/ask_form.html:36 +msgid "Ask your question" +msgstr "Soruyu yayınla" + +#: skins/default/templates/blocks/bottom_scripts.html:7 +#, python-format +msgid "" +"Please note: %(app_name)s requires javascript to work properly, please " +"enable javascript in your browser, here is how" +msgstr "" + +#: skins/default/templates/blocks/editor_data.html:5 +#, 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/blocks/editor_data.html:7 +#, 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/blocks/editor_data.html:8 +#, fuzzy, python-format +msgid "" +"please use up to %(tag_count)s tags, less than %(max_chars)s characters each" +msgstr "en fazla 5 etiket, her etiket en fazla 20 karakter" + +#: skins/default/templates/blocks/footer.html:4 +#: skins/default/templates/blocks/header_meta_links.html:12 +msgid "about" +msgstr "hakkımızda" + +#: skins/default/templates/blocks/footer.html:6 +msgid "privacy policy" +msgstr "gizlilik politikası" + +#: skins/default/templates/blocks/footer.html:15 +msgid "give feedback" +msgstr "görüşlerinizi bildirin" + +#: skins/default/templates/blocks/footer.html:41 +#, python-format +msgid "Content on this site is licensed under a %(license)s" +msgstr "" + +#: skins/default/templates/blocks/header.html:8 +msgid "back to home page" +msgstr "anasayfaya geri dön" + +#: skins/default/templates/blocks/header.html:9 +#, python-format +msgid "%(site)s logo" +msgstr "" + +#: skins/default/templates/blocks/header.html:20 +msgid "questions" +msgstr "sorular" + +#: skins/default/templates/blocks/header.html:30 +msgid "users" +msgstr "kullanıcılar" + +#: skins/default/templates/blocks/header.html:35 +msgid "badges" +msgstr "rozetler" + +#: skins/default/templates/blocks/header.html:40 +msgid "ask a question" +msgstr "soru sor" + +#: skins/default/templates/blocks/header_meta_links.html:8 +msgid "logout" +msgstr "çıkış" + +#: skins/default/templates/blocks/header_meta_links.html:10 +msgid "login" +msgstr "giriş" + +#: skins/default/templates/blocks/header_meta_links.html:15 +#, fuzzy +msgid "settings" +msgstr "Temel Ayarlar" + +#: skins/default/templates/blocks/input_bar.html:34 +msgid "search" +msgstr "ara" + +#: skins/default/templates/blocks/question_edit_tips.html:3 +msgid "question tips" +msgstr "soru ipuçları" + +#: skins/default/templates/blocks/question_edit_tips.html:5 +msgid "please ask a relevant question" +msgstr "lütfen ilgili bir soru sorunuz" + +#: skins/default/templates/blocks/question_edit_tips.html:8 +msgid "please try provide enough details" +msgstr "yeterince ayrıntılı olmasına çalışın" + +#: skins/default/templates/blocks/tag_selector.html:4 +msgid "Interesting tags" +msgstr "İlginç etiketler" + +#: skins/default/templates/blocks/tag_selector.html:18 +#: skins/default/templates/blocks/tag_selector.html:34 +#: skins/default/templates/user_profile/user_moderate.html:40 +msgid "Add" +msgstr "Ekle" + +#: skins/default/templates/blocks/tag_selector.html:20 +msgid "Ignored tags" +msgstr "Yoksayılan etiketler" + +#: skins/default/templates/blocks/tag_selector.html:36 +#, fuzzy +msgid "Display tag filter" +msgstr "E-mail etiketi için filtre seç" + +#: skins/default/templates/main_page/content.html:13 +msgid "Did not find what you were looking for?" +msgstr "Aradığını bulamadın mı?" + +#: skins/default/templates/main_page/content.html:14 +msgid "Please, post your question!" +msgstr "Hemen kendi sorunu yolla!" + +#: skins/default/templates/main_page/headline.html:7 +msgid "subscribe to the questions feed" +msgstr "soruya ve cevaplarına abone ol" + +#: skins/default/templates/main_page/headline.html:8 +msgid "rss feed" +msgstr "rss beslemesi" + +#: skins/default/templates/main_page/headline.html:12 views/readers.py:131 +#, 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" + +#: skins/default/templates/main_page/headline.html:14 views/readers.py:139 +#, python-format +msgid "%(q_num)s question" +msgid_plural "%(q_num)s questions" +msgstr[0] "%(q_num)s soru" +msgstr[1] "%(q_num)s soru" + +#: skins/default/templates/main_page/headline.html:17 +#, python-format +msgid "with %(author_name)s's contributions" +msgstr "%(author_name)s 'ın katkılarıyla" + +#: skins/default/templates/main_page/headline.html:28 +msgid "Search tips:" +msgstr "Arama ipuçları:" + +#: skins/default/templates/main_page/headline.html:31 +msgid "reset author" +msgstr "yazarı sil" + +#: skins/default/templates/main_page/headline.html:33 +#: skins/default/templates/main_page/headline.html:36 +#: 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:34 +msgid "reset tags" +msgstr "etiketleri temizle" + +#: skins/default/templates/main_page/headline.html:37 +#: skins/default/templates/main_page/headline.html:40 +msgid "start over" +msgstr "baştan başla" + +#: skins/default/templates/main_page/headline.html:42 +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:45 +msgid "Search tip:" +msgstr "Arama ipucu:" + +#: skins/default/templates/main_page/headline.html:45 +msgid "add tags and a query to focus your search" +msgstr "etiketleri kullanmak, arama sonucuna tam olarak odaklanmanızı sağlar" + +#: skins/default/templates/main_page/nothing_found.html:4 +msgid "There are no unanswered questions here" +msgstr "Harika! Cevapsız bir soru bile kalmamış..." + +#: skins/default/templates/main_page/nothing_found.html:7 +#, fuzzy +msgid "No questions here. " +msgstr "Malesef, henüz beğenilmiş bir soru mevcut değil." + +#: skins/default/templates/main_page/nothing_found.html:8 +#, fuzzy +msgid "Please star (bookmark) some questions or follow some users." +msgstr "Beğendiğiniz soruları, favorilerinize ekleyebilirsiniz." + +#: skins/default/templates/main_page/nothing_found.html:13 +msgid "You can expand your search by " +msgstr "Ayrıntılı arama yapabilirsiniz" + +#: skins/default/templates/main_page/nothing_found.html:16 +msgid "resetting author" +msgstr "yazar sıfırlanıyor" + +#: skins/default/templates/main_page/nothing_found.html:19 +msgid "resetting tags" +msgstr "etiketler sıfırlanıyor" + +#: skins/default/templates/main_page/nothing_found.html:22 +#: skins/default/templates/main_page/nothing_found.html:25 +msgid "starting over" +msgstr "baştan başlıyor" + +#: skins/default/templates/main_page/nothing_found.html:30 +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/sidebar.html:8 +msgid "Contributors" +msgstr "Yazarlar" + +#: skins/default/templates/main_page/sidebar.html:25 +msgid "Related tags" +msgstr "İlgili etiketler" + +#: skins/default/templates/main_page/tab_bar.html:5 +msgid "In:" +msgstr "Sorular:" + +#: skins/default/templates/main_page/tab_bar.html:14 +msgid "see unanswered questions" +msgstr "cevapsız sorular gör" + +#: skins/default/templates/main_page/tab_bar.html:20 +#, fuzzy +msgid "see your followed questions" +msgstr "beğendiğiniz soruları gör" + +#: skins/default/templates/main_page/tab_bar.html:21 +msgid "followed" +msgstr "" + +#: skins/default/templates/main_page/tab_bar.html:25 +msgid "Sort by:" +msgstr "Sıralama:" + +#: skins/default/templates/user_profile/user.html:13 +#, python-format +msgid "%(username)s's profile" +msgstr "%(username)s isimli kullanıcının profili" + +#: skins/default/templates/user_profile/user_edit.html:4 +msgid "Edit user profile" +msgstr "Kullanıcı profilini düzenle" + +#: skins/default/templates/user_profile/user_edit.html:7 +msgid "edit profile" +msgstr "profil değiştir" + +#: skins/default/templates/user_profile/user_edit.html:17 +#: skins/default/templates/user_profile/user_info.html:15 +msgid "change picture" +msgstr "resim değiştir" + +#: skins/default/templates/user_profile/user_edit.html:20 +msgid "Registered user" +msgstr "Kayıtlı kullanıcı" + +#: skins/default/templates/user_profile/user_edit.html:27 +msgid "Screen Name" +msgstr "Görünen isim" + +#: skins/default/templates/user_profile/user_edit.html:83 +#: skins/default/templates/user_profile/user_email_subscriptions.html:21 +msgid "Update" +msgstr "Güncelleme" + +#: skins/default/templates/user_profile/user_email_subscriptions.html:4 +#: skins/default/templates/user_profile/user_tabs.html:42 +#, fuzzy +msgid "subscriptions" +msgstr "e-mail abonelikleri" + +#: skins/default/templates/user_profile/user_email_subscriptions.html:7 +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:22 +msgid "Stop sending email" +msgstr "E-mail yollamayı duraklat" + +#: skins/default/templates/user_profile/user_favorites.html:4 +#: skins/default/templates/user_profile/user_tabs.html:27 +#, fuzzy +msgid "followed questions" +msgstr "Tüm sorular" + +#: skins/default/templates/user_profile/user_inbox.html:18 +#: skins/default/templates/user_profile/user_tabs.html:12 +msgid "inbox" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:34 +#, fuzzy +msgid "Sections:" +msgstr "sorular" + +#: skins/default/templates/user_profile/user_inbox.html:38 +#, python-format +msgid "forum responses (%(re_count)s)" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:43 +#, python-format +msgid "flagged items (%(flag_count)s)" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:49 +#, fuzzy +msgid "select:" +msgstr "sil" + +#: skins/default/templates/user_profile/user_inbox.html:51 +#, fuzzy +msgid "seen" +msgstr "son görülme" + +#: skins/default/templates/user_profile/user_inbox.html:52 +#, fuzzy +msgid "new" +msgstr "en yeni" + +#: skins/default/templates/user_profile/user_inbox.html:53 +#, fuzzy +msgid "none" +msgstr "bronz" + +#: skins/default/templates/user_profile/user_inbox.html:54 +#, fuzzy +msgid "mark as seen" +msgstr "son görülme" + +#: skins/default/templates/user_profile/user_inbox.html:55 +#, fuzzy +msgid "mark as new" +msgstr "en iyi cevap olarak işaretlenmiş" + +#: skins/default/templates/user_profile/user_inbox.html:56 +msgid "dismiss" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:19 +msgid "remove" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:36 +msgid "update profile" +msgstr "profilimi güncelle" + +#: skins/default/templates/user_profile/user_info.html:40 +msgid "manage login methods" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:53 +msgid "real name" +msgstr "gerçek ismi" + +#: skins/default/templates/user_profile/user_info.html:58 +msgid "member for" +msgstr "üyelik başlangıcı" + +#: skins/default/templates/user_profile/user_info.html:63 +msgid "last seen" +msgstr "son görülme" + +#: skins/default/templates/user_profile/user_info.html:69 +msgid "user website" +msgstr "websitesi" + +#: skins/default/templates/user_profile/user_info.html:75 +msgid "location" +msgstr "yer" + +#: skins/default/templates/user_profile/user_info.html:82 +msgid "age" +msgstr "yaş" + +#: skins/default/templates/user_profile/user_info.html:83 +msgid "age unit" +msgstr "yaşında" + +#: skins/default/templates/user_profile/user_info.html:90 +msgid "todays unused votes" +msgstr "bugün kullanılmayan oy" + +#: skins/default/templates/user_profile/user_info.html:91 +msgid "votes left" +msgstr "oy kullandı" + +#: skins/default/templates/user_profile/user_moderate.html:4 +#: skins/default/templates/user_profile/user_tabs.html:48 +#, fuzzy +msgid "moderation" +msgstr "Yer" + +#: skins/default/templates/user_profile/user_moderate.html:8 +#, python-format +msgid "%(username)s's current status is \"%(status)s\"" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:11 +msgid "User status changed" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:20 +#, fuzzy +msgid "Save" +msgstr "Değişikliği kaydet" + +#: skins/default/templates/user_profile/user_moderate.html:26 +#, fuzzy, python-format +msgid "Your current reputation is %(reputation)s points" +msgstr "karmanız %(reputation)s" + +#: skins/default/templates/user_profile/user_moderate.html:28 +#, python-format +msgid "User's current reputation is %(reputation)s points" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:32 +#, fuzzy +msgid "User reputation changed" +msgstr "toplulukta kullanıcının itibarı" + +#: skins/default/templates/user_profile/user_moderate.html:39 +msgid "Subtract" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:44 +#, fuzzy, python-format +msgid "Send message to %(username)s" +msgstr "bir kullanıcı adı seçin" + +#: skins/default/templates/user_profile/user_moderate.html:45 +msgid "" +"An email will be sent to the user with 'reply-to' field set to your email " +"address. Please make sure that your address is entered correctly." +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:47 +#, fuzzy +msgid "Message sent" +msgstr "mesajlar/" + +#: skins/default/templates/user_profile/user_moderate.html:65 #, fuzzy -msgid "Please, retype" -msgstr "lütfen şifrenizi yeniden yazın" +msgid "Send message" +msgstr "mesajlar/" -#: skins/default/templates/authopenid/signin.html:156 -msgid "Here are your current login methods" +#: skins/default/templates/user_profile/user_moderate.html:75 +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 "" -#: skins/default/templates/authopenid/signin.html:160 -msgid "provider" +#: skins/default/templates/user_profile/user_moderate.html:78 +msgid "" +"Moderators have the same privileges as administrators, but cannot add or " +"remove user status of 'moderator' or 'administrator'." msgstr "" -#: skins/default/templates/authopenid/signin.html:161 -#, fuzzy -msgid "last used" -msgstr "son görülme" - -#: skins/default/templates/authopenid/signin.html:162 -msgid "delete, if you like" +#: skins/default/templates/user_profile/user_moderate.html:81 +msgid "'Approved' status means the same as regular user." msgstr "" -#: skins/default/templates/authopenid/signin.html:187 +#: skins/default/templates/user_profile/user_moderate.html:84 #, fuzzy -msgid "Still have trouble signing in?" -msgstr "Hala aklınıza takılan bir soru mu var?" +msgid "Suspended users can only edit or delete their own posts." +msgstr "Dondurulan kullanıcılar ileti yapamaz" -#: skins/default/templates/authopenid/signin.html:192 -msgid "Please, enter your email address below and obtain a new key" +#: skins/default/templates/user_profile/user_moderate.html:87 +msgid "" +"Blocked users can only login and send feedback to the site administrators." msgstr "" -#: skins/default/templates/authopenid/signin.html:194 -msgid "Please, enter your email address below to recover your account" +#: skins/default/templates/user_profile/user_network.html:5 +#: skins/default/templates/user_profile/user_tabs.html:18 +msgid "network" msgstr "" -#: skins/default/templates/authopenid/signin.html:197 -#, fuzzy -msgid "recover your account via email" -msgstr "Hesabınıza yeni bir şifre verin." - -#: skins/default/templates/authopenid/signin.html:208 -msgid "Send a new recovery key" -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[1] "" -#: skins/default/templates/authopenid/signin.html:210 -#, fuzzy -msgid "Recover your account via email" -msgstr "Hesabınıza yeni bir şifre verin." +#: 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[1] "" -#: skins/default/templates/authopenid/signin.html:221 -msgid "Why use OpenID?" -msgstr "Neden OpenID kullanıyoruz?" +#: skins/default/templates/user_profile/user_network.html:19 +msgid "" +"Your network is empty. Would you like to follow someone? - Just visit their " +"profiles and click \"follow\"" +msgstr "" -#: skins/default/templates/authopenid/signin.html:224 -#, fuzzy -msgid "with openid it is easier" -msgstr "With the OpenID you don't need to create new username and password." +#: skins/default/templates/user_profile/user_network.html:21 +#, fuzzy, python-format +msgid "%(username)s's network is empty" +msgstr "%(username)s isimli kullanıcının profili" -#: skins/default/templates/authopenid/signin.html:227 +#: skins/default/templates/user_profile/user_recent.html:4 +#: skins/default/templates/user_profile/user_tabs.html:31 #, fuzzy -msgid "reuse openid" -msgstr "You can safely re-use the same login for all OpenID-enabled websites." +msgid "activity" +msgstr "aktif" -#: skins/default/templates/authopenid/signin.html:230 -#, fuzzy -msgid "openid is widely adopted" +#: skins/default/templates/user_profile/user_recent.html:21 +#: skins/default/templates/user_profile/user_recent.html:28 +msgid "source" msgstr "" -"There are > 160,000,000 OpenID account in use. Over 10,000 sites are OpenID-" -"enabled." -#: skins/default/templates/authopenid/signin.html:233 -#, fuzzy -msgid "openid is supported open standard" +#: skins/default/templates/user_profile/user_reputation.html:4 +msgid "karma" msgstr "" -"OpenID is based on an open standard, supported by many organizations.OpenID " -"açık kaynak standartları ile desteklenmektedir" -#: skins/default/templates/authopenid/signin.html:237 -msgid "Find out more" -msgstr "Daha fazla bilgi" +#: skins/default/templates/user_profile/user_reputation.html:11 +msgid "Your karma change log." +msgstr "Karma değişiklik kayıtları" -#: skins/default/templates/authopenid/signin.html:238 -msgid "Get OpenID" -msgstr "OpenID hesabı açın" +#: skins/default/templates/user_profile/user_reputation.html:13 +#, python-format +msgid "%(user_name)s's karma change log" +msgstr "%(user_name)s 'nin karma değişim günlüğü" -#: skins/default/templates/authopenid/signup_with_password.html:3 -msgid "Signup" -msgstr "Kaydol" +#: skins/default/templates/user_profile/user_stats.html:5 +#: skins/default/templates/user_profile/user_tabs.html:7 +msgid "overview" +msgstr "genel bakış" -#: skins/default/templates/authopenid/signup_with_password.html:6 -msgid "Create login name and password" -msgstr "Kullanıcı adı ve şifre oluştur" +#: skins/default/templates/user_profile/user_stats.html:11 +#, fuzzy, python-format +msgid "%(counter)s Question" +msgid_plural "%(counter)s Questions" +msgstr[0] "1 Madalya" +msgstr[1] "%(counter)s Madalya" -#: skins/default/templates/authopenid/signup_with_password.html:8 -#, fuzzy -msgid "Traditional signup info" -msgstr "" -"If you prefer, create your forum login name and " -"password here. However, please keep in mind that we also support " -"OpenID login method. With OpenID you can " -"simply reuse your external login (e.g. Gmail or AOL) without ever sharing " -"your login details with anyone and having to remember yet another password." +#: skins/default/templates/user_profile/user_stats.html:16 +#, fuzzy, python-format +msgid "%(counter)s Answer" +msgid_plural "%(counter)s Answers" +msgstr[0] "1 Madalya" +msgstr[1] "%(counter)s Madalya" -#: skins/default/templates/authopenid/signup_with_password.html:24 -msgid "" -"Please read and type in the two words below to help us prevent automated " -"account creation." -msgstr "" -"Lütfen aşağıdaki iki kelimeyi yazın. Çünkü bazı otomatik hesap " -"oluşturucular, sitemize böyle kayıt olup, gerçek olmayan içerikler " -"eklemektedir." +#: 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/authopenid/signup_with_password.html:26 -msgid "Create Account" -msgstr "Hesap oluştur" +#: 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/authopenid/signup_with_password.html:27 -msgid "or" -msgstr "veya" +#: skins/default/templates/user_profile/user_stats.html:34 +#, fuzzy, python-format +msgid "(%(comment_count)s comment)" +msgid_plural "the answer has been commented %(comment_count)s times" +msgstr[0] "yorum ekle" +msgstr[1] "yorum ekle" -#: skins/default/templates/authopenid/signup_with_password.html:28 -msgid "return to OpenID login" -msgstr "OpenID girişine dön" +#: skins/default/templates/user_profile/user_stats.html:44 +#, python-format +msgid "%(cnt)s Vote" +msgid_plural "%(cnt)s Votes " +msgstr[0] "%(cnt)s Oy" +msgstr[1] "%(cnt)s Oy" -#: skins/default/templates/unused/email_base.html:8 -msgid "home" -msgstr "anasayfa" +#: skins/default/templates/user_profile/user_stats.html:50 +msgid "thumb up" +msgstr "beğen" -#: skins/default/templates/unused/notarobot.html:3 -msgid "Please prove that you are a Human Being" -msgstr "Gerçek kullanıcı olduğunuzu kanıtlayın!" +#: skins/default/templates/user_profile/user_stats.html:51 +msgid "user has voted up this many times" +msgstr "kullanıcılar tarafından defalarca beğendi" -#: skins/default/templates/unused/notarobot.html:10 -msgid "I am a Human Being" -msgstr "Ben bir gerçek kullanıcıyım" +#: skins/default/templates/user_profile/user_stats.html:54 +msgid "thumb down" +msgstr "beğenme" -#: skins/default/templates/unused/question_counter_widget.html:78 -msgid "Please decide if you like this question or not by voting" -msgstr "Bu soruyu beğenip beğenmediğinize karar verin. Oy da verebilirsiniz." +#: skins/default/templates/user_profile/user_stats.html:55 +msgid "user voted down this many times" +msgstr "kullanıcılar tarafından defalarca beğenilmedi" -#: skins/default/templates/unused/question_counter_widget.html:84 -msgid "" -"\n" -" vote\n" -" " -msgid_plural "" -"\n" -" votes\n" -" " -msgstr[0] "" -"\n" -"oy" -msgstr[1] "" -"\n" -"oy" +#: skins/default/templates/user_profile/user_stats.html:63 +#, python-format +msgid "%(counter)s Tag" +msgid_plural "%(counter)s Tags" +msgstr[0] "%(counter)s Etiket" +msgstr[1] "%(counter)s Etiket" -#: skins/default/templates/unused/question_counter_widget.html:93 -#: skins/default/templates/unused/question_list.html:23 -#: skins/default/templates/unused/questions_ajax.html:27 -msgid "this answer has been accepted to be correct" -msgstr "bu cevap doğru olarak kabul edilmiştir" +#: skins/default/templates/user_profile/user_stats.html:99 +#, fuzzy, python-format +msgid "%(counter)s Badge" +msgid_plural "%(counter)s Badges" +msgstr[0] "1 Madalya" +msgstr[1] "%(counter)s Madalya" -#: skins/default/templates/unused/question_counter_widget.html:99 -msgid "" -"\n" -" answer \n" -" " -msgid_plural "" -"\n" -" answers \n" -" " -msgstr[0] "" -"\n" -"cevap" -msgstr[1] "" -"\n" -"cevap" +#: skins/default/templates/user_profile/user_stats.html:122 +#, fuzzy +msgid "Answer to:" +msgstr "cevap ipuçları" -#: skins/default/templates/unused/question_counter_widget.html:111 -msgid "" -"\n" -" view\n" -" " -msgid_plural "" -"\n" -" views\n" -" " -msgstr[0] "" -"\n" -"izlenme" -msgstr[1] "" -"\n" -"izlenme" +#: skins/default/templates/user_profile/user_tabs.html:5 +msgid "User profile" +msgstr "Kullanıcı profili" -#: skins/default/templates/unused/question_list.html:15 -msgid "" -"\n" -" vote\n" -" " -msgid_plural "" -"\n" -" votes\n" -" " -msgstr[0] "" -"\n" -"oy" -msgstr[1] "" -"\n" -"oy" +#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:772 +msgid "comments and answers to others questions" +msgstr "diğer sorulara cevaplar ve yorumlar" -#: skins/default/templates/unused/question_list.html:35 -msgid "" -"\n" -" answer \n" -" " -msgid_plural "" -"\n" -" answers \n" -" " -msgstr[0] "" -"\n" -"cevap" -msgstr[1] "" -"\n" -"cevap" +#: skins/default/templates/user_profile/user_tabs.html:16 +msgid "followers and followed users" +msgstr "" -#: skins/default/templates/unused/question_list.html:47 -msgid "" -"\n" -" view\n" -" " -msgid_plural "" -"\n" -" views\n" -" " -msgstr[0] "" -"\n" -"izlenme" -msgstr[1] "" -"\n" -"izlenme" +#: skins/default/templates/user_profile/user_tabs.html:21 +msgid "graph of user reputation" +msgstr "kullanıcı itibar grafiği" -#: skins/default/templates/unused/question_summary_list_roll.html:13 -msgid "answers" -msgstr "cevaplar" +#: skins/default/templates/user_profile/user_tabs.html:23 +msgid "reputation history" +msgstr "itibar geçmişi" -#: skins/default/templates/unused/question_summary_list_roll.html:14 -msgid "votes" -msgstr "oy" +#: 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/unused/question_summary_list_roll.html:15 -msgid "views" -msgstr "izlenme" +#: skins/default/templates/user_profile/user_tabs.html:29 +msgid "recent activity" +msgstr "son etkinlik" -#: templatetags/extra_filters.py:168 templatetags/extra_filters_jinja.py:234 -msgid "no items in counter" -msgstr "0" +#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:847 +msgid "user vote record" +msgstr "kullanıcı oy rekoru" -#: templatetags/extra_tags.py:155 views/readers.py:187 -#, 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" +#: skins/default/templates/user_profile/user_tabs.html:36 +msgid "casted votes" +msgstr "kritik oy" -#: templatetags/extra_tags.py:178 templatetags/extra_tags.py:225 -#: templatetags/extra_tags.py:229 -msgid "reputation points" -msgstr "itibar puanları" +#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:960 +msgid "email subscription settings" +msgstr "E-mail abonelik ayarları" -#: templatetags/extra_tags.py:221 -#, python-format -msgid "your karma is %(reputation)s" -msgstr "karmanız %(reputation)s" +#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:224 +#, fuzzy +msgid "moderate this user" +msgstr "Bu kullanıcıyı yönet" -#: templatetags/extra_tags.py:237 -msgid "badges: " -msgstr "rozetler:" +#: skins/default/templates/user_profile/user_votes.html:4 +msgid "votes" +msgstr "oy" + +#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:240 +msgid "no items in counter" +msgstr "0" -#: utils/decorators.py:82 views/commands.py:132 views/commands.py:149 +#: utils/decorators.py:90 views/commands.py:112 views/commands.py:132 msgid "Oops, apologies - there was some error" msgstr "" +#: utils/decorators.py:109 +#, fuzzy +msgid "Please login to post" +msgstr "Kullanıcı girişi" + +#: utils/decorators.py:205 +msgid "Spam was detected on your post, sorry for if this is a mistake" +msgstr "" + #: utils/forms.py:32 msgid "this field is required" msgstr "bu alanın doldurulması gereklidir" @@ -5350,61 +6310,68 @@ 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:63 -#, python-format -msgid "on %(date)s" -msgstr "%(date)s tarihinde" - -#: utils/functions.py:67 +#: utils/functions.py:74 msgid "2 days ago" msgstr "2 gün önce" -#: utils/functions.py:69 +#: utils/functions.py:76 msgid "yesterday" msgstr "dün" -#: utils/functions.py:71 +#: utils/functions.py:79 #, 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:73 +#: utils/functions.py:85 #, 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" -#: views/commands.py:42 +#: views/avatar_views.py:99 +msgid "Successfully uploaded a new avatar." +msgstr "" + +#: views/avatar_views.py:140 +msgid "Successfully updated your avatar." +msgstr "" + +#: views/avatar_views.py:180 +msgid "Successfully deleted the requested avatars." +msgstr "" + +#: views/commands.py:39 msgid "anonymous users cannot vote" msgstr "üye girişi yapmadan oy kullanamazsınız" -#: views/commands.py:62 +#: views/commands.py:59 msgid "Sorry you ran out of votes for today" msgstr "" -#: views/commands.py:68 +#: views/commands.py:65 #, python-format msgid "You have %(votes_left)s votes left for today" msgstr "" -#: views/commands.py:139 +#: views/commands.py:122 #, fuzzy msgid "Sorry, but anonymous users cannot access the inbox" msgstr "üye girişi yapmadan oy kullanamazsınız" -#: views/commands.py:209 +#: views/commands.py:192 msgid "Sorry, something is not right here..." msgstr "" -#: views/commands.py:224 +#: views/commands.py:207 #, fuzzy msgid "Sorry, but anonymous users cannot accept answers" msgstr "üye girişi yapmadan oy kullanamazsınız" -#: views/commands.py:305 +#: views/commands.py:288 #, python-format msgid "subscription saved, %(email)s needs validation, see %(details_url)s" msgstr "" @@ -5413,44 +6380,63 @@ msgstr "" "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:313 +#: views/commands.py:295 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:371 +#: views/commands.py:400 +#, python-format +msgid "Tag subscription was canceled (undo)." +msgstr "" + +#: views/commands.py:409 +#, 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:542 #, fuzzy -msgid "Bad request" -msgstr "Geçersiz talep" +msgid "Please sign in to vote" +msgstr "Lütfen buradan giriş yapın:" -#: views/meta.py:58 +#: views/meta.py:83 msgid "Q&A forum feedback" msgstr "Sorucevap.de geribildirim" -#: views/meta.py:59 +#: views/meta.py:84 msgid "Thanks for the feedback!" msgstr "Görüşleriniz için teşekkür ederiz!" -#: views/meta.py:69 +#: views/meta.py:92 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:432 +#: views/readers.py:177 +#, 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:441 #, fuzzy -msgid "Sorry, this question has been deleted and is no longer accessible" +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:217 +#: views/users.py:225 #, fuzzy msgid "moderate user" msgstr "yoneticiler/" -#: views/users.py:401 +#: views/users.py:380 msgid "user profile" msgstr "kullanıcı profili" -#: views/users.py:402 +#: views/users.py:381 msgid "user profile overview" msgstr "kullanıcı profiline genel bakış" @@ -5462,87 +6448,609 @@ msgstr "son kullanıcı etkinliği" msgid "profile - recent activity" msgstr "profil - son etkinlikler" -#: views/users.py:754 +#: views/users.py:773 msgid "profile - responses" msgstr "profil - cevapları" -#: views/users.py:819 +#: views/users.py:848 msgid "profile - votes" msgstr "profil - oy" -#: views/users.py:857 +#: views/users.py:883 msgid "user reputation in the community" msgstr "toplulukta kullanıcının itibarı" -#: views/users.py:858 +#: views/users.py:884 msgid "profile - user reputation" msgstr "profil - kullanıcı itibarı" -#: views/users.py:886 +#: views/users.py:911 msgid "users favorite questions" msgstr "kullanıcının favori soruları" -#: views/users.py:887 +#: views/users.py:912 msgid "profile - favorite questions" msgstr "profil - favori sorular" -#: views/users.py:907 views/users.py:911 +#: views/users.py:932 views/users.py:936 msgid "changes saved" msgstr "değişiklikler kaydedildi" -#: views/users.py:917 +#: views/users.py:942 msgid "email updates canceled" msgstr "E-mail güncellemeleri iptal edildi" -#: views/users.py:929 +#: views/users.py:961 msgid "profile - email subscriptions" msgstr "profil - e-mail abonelikleri" -#: views/writers.py:56 +#: views/writers.py:58 #, fuzzy msgid "Sorry, anonymous users cannot upload files" msgstr "üye girişi yapmadan oy kullanamazsınız" -#: views/writers.py:65 +#: views/writers.py:68 #, python-format msgid "allowed file types are '%(file_types)s'" msgstr "izin verilen dosya türleri '%(file_types)s'" -#: views/writers.py:88 +#: views/writers.py:91 #, fuzzy, python-format msgid "maximum upload file size is %(file_size)sK" msgstr "maksimum dosya yükleme boyutu %s Kb" -#: views/writers.py:96 +#: views/writers.py:99 #, 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:452 +#: views/writers.py:191 +#, fuzzy +msgid "Please log in to ask questions" +msgstr "" +"Asla soru sormaktan çekinmeyin! Sorun ki, sayenizde başkaları da öğrensin!" + +#: views/writers.py:492 +#, fuzzy +msgid "Please log in to answer questions" +msgstr "cevapsız sorular gör" + +#: views/writers.py:598 #, python-format msgid "" "Sorry, you appear to be logged out and cannot post comments. Please sign in." msgstr "" -#: views/writers.py:497 +#: views/writers.py:646 #, fuzzy msgid "Sorry, anonymous users cannot edit comments" msgstr "üye girişi yapmadan oy kullanamazsınız" -#: views/writers.py:505 +#: views/writers.py:654 #, python-format msgid "" "Sorry, you appear to be logged out and cannot delete comments. Please sign in." msgstr "" -#: views/writers.py:526 +#: views/writers.py:675 msgid "sorry, we seem to have some technical difficulties" msgstr "" +#~ msgid "community wiki" +#~ msgstr "topluluk wikisi" + +#~ msgid "Location" +#~ msgstr "Yer" + +#~ msgid "command/" +#~ msgstr "komut/" + +#~ msgid "mark-tag/" +#~ msgstr "etiket/" + +#~ msgid "interesting/" +#~ msgstr "ilginc/" + +#~ msgid "ignored/" +#~ msgstr "yoksayildi/" + +#~ msgid "unmark-tag/" +#~ msgstr "etiket-isaretini-kaldir/" + +#~ msgid "search/" +#~ msgstr "arama-yap/" + +#~ msgid "Askbot" +#~ msgstr "Askbot" + +#~ msgid "" +#~ "If you change this url from the default - then you will also probably " +#~ "want to adjust translation of the following string: " +#~ msgstr "" +#~ "Eğer bu URL'i varsayılandan başka bir şeye değiştirdiyseniz, aşağıdaki " +#~ "cümleciği de tercüme etmek isteyebilirsiniz:" + +#~ msgid "" +#~ "Increment this number when you change image in skin media or stylesheet. " +#~ "This helps avoid showing your users outdated images from their browser " +#~ "cache." +#~ msgstr "" +#~ "Tema dosyalarında değişiklik yaptığınızda bu sayıyı arttırarak " +#~ "kullanıcıların tarayıcılarının kaşesinde kalmış eski imajları görmelerini " +#~ "engellersiniz." + +#~ msgid "allow only selected tags" +#~ msgstr "sadece seçilmiş etiketlere izin ver" + +#~ msgid "First time here? Check out the FAQ!" +#~ msgstr "" +#~ "İlk defa mı buradasınız? Sıkça sorulan sorular SSS " +#~ "kısmını ziyaret edebilirsiniz." + +#~ msgid "newquestion/" +#~ msgstr "yeni-soru/" + +#~ msgid "newanswer/" +#~ msgstr "yeni-cevap/" + +#, fuzzy +#~ msgid "MyOpenid user name" +#~ msgstr "kullanıcı tarafından" + +#~ msgid "Email verification subject line" +#~ msgstr "E-posta doğrulama mesajı konusu" + +#~ msgid "Unknown error." +#~ msgstr "Bilinmeyen hata." + +#~ msgid "ReCAPTCHA is wrongly configured." +#~ msgstr "Hatalı ReCAPTCHA konfigürasyonu" + +#~ msgid "Bad reCAPTCHA challenge parameter." +#~ msgstr "Kötü ReCAPTCHA parametresi" + +#~ msgid "The CAPTCHA solution was incorrect." +#~ msgstr "CAPTCHA çözümü yanlış" + +#~ msgid "Bad reCAPTCHA verification parameters." +#~ msgstr "Geçersiz reCAPTCHA doğrulama parametreleri" + +#~ msgid "Provided reCAPTCHA API keys are not valid for this domain." +#~ msgstr "Temin edilen reCAPTCHA parametreleri bu site için geçerli değil." + +#~ msgid "ReCAPTCHA could not be reached." +#~ msgstr "ReCAPTCHA servisine ulaşılamadı" + +#~ msgid "Invalid request" +#~ msgstr "Geçersiz talep" + +#~ msgid "disciplined" +#~ msgstr "disiplinli" + +#~ msgid "Deleted own post with score of 3 or higher" +#~ msgstr "3 veya daha fazla puanı olan kendi gönderisini silmiş" + +#~ msgid "peer-pressure" +#~ msgstr "cevre-baskisi" + +#~ msgid "nice-answer" +#~ msgstr "guzel-cevap" + +#~ msgid "nice-question" +#~ msgstr "guzel-soru" + +#~ msgid "pundit" +#~ msgstr "ustad" + +#~ msgid "popular-question" +#~ msgstr "populer-soru" + +#~ msgid "citizen-patrol" +#~ msgstr "halk-devriyesi" + +#~ msgid "cleanup" +#~ msgstr "temizlik" + +#~ msgid "critic" +#~ msgstr "elestirmen" + +#~ msgid "editor" +#~ msgstr "editor" + +#~ msgid "organizer" +#~ msgstr "organizator" + +#~ msgid "scholar" +#~ msgstr "alim" + +#~ msgid "student" +#~ msgstr "ogrenci" + +#~ msgid "supporter" +#~ msgstr "taraftar" + +#~ msgid "teacher" +#~ msgstr "ogretmen" + +#~ msgid "Answered first question with at least one up vote" +#~ msgstr "En az bir olumlu oy alan ilk cevabı vermiş" + +#~ msgid "autobiographer" +#~ msgstr "otobiyograf" + +#~ msgid "self-learner" +#~ msgstr "kendi-ogrenen" + +#~ msgid "great-answer" +#~ msgstr "harika-cevap" + +#~ msgid "Answer voted up 100 times" +#~ msgstr "100 kere olumlu oy alan cevap" + +#~ msgid "great-question" +#~ msgstr "harika-soru" + +#~ msgid "Question voted up 100 times" +#~ msgstr "100 kere olumlu oy alan soru" + +#~ msgid "stellar-question" +#~ msgstr "bomba-soru" + +#~ msgid "Question favorited by 100 users" +#~ msgstr "100 kullanıcı tarafından favori seçilen soru " + +#~ msgid "famous-question" +#~ msgstr "ünlü-soru" + +#~ msgid "Asked a question with 10,000 views" +#~ msgstr "10000 kez göruntülenmiş bir soru sordu" + +#~ msgid "Alpha" +#~ msgstr "Alfa" + +#~ msgid "alpha" +#~ msgstr "alfa" + +#~ msgid "Actively participated in the private alpha" +#~ msgstr "Özel alfaya aktif olarak katıldı" + +#~ msgid "good-answer" +#~ msgstr "iyi-cevap" + +#~ msgid "Answer voted up 25 times" +#~ msgstr "25 olumlu oy alan cevap" + +#~ msgid "good-question" +#~ msgstr "iyi-soru" + +#~ msgid "Question voted up 25 times" +#~ msgstr "25 olumlu oy alan soru" + +#~ msgid "favorite-question" +#~ msgstr "favori-soru" + +#~ msgid "civic-duty" +#~ msgstr "sosyal-sorumluluk" + +#~ msgid "Strunk & White" +#~ msgstr "Dilbilimci" + +#~ msgid "strunk-and-white" +#~ msgstr "dilbilimci" + +#~ msgid "Generalist" +#~ msgstr "Kültürlü" + +#~ msgid "generalist" +#~ msgstr "kulturlu" + +#~ msgid "Active in many different tags" +#~ msgstr "Bir çok etikette etkin" + +#~ msgid "expert" +#~ msgstr "uzman" + +#~ msgid "Yearling" +#~ msgstr "Yıllanmış" + +#~ msgid "yearling" +#~ msgstr "yillanmis" + +#~ msgid "Active member for a year" +#~ msgstr "Bir yıldır aktif kullanıcı" + +#~ msgid "notable-question" +#~ msgstr "onemli-soru" + +#~ msgid "Asked a question with 2,500 views" +#~ msgstr "2,500 kere görüntülenen bir soru sordu" + +#~ msgid "enlightened" +#~ msgstr "aydinlanmis" + +#~ msgid "Beta" +#~ msgstr "Beta" + +#~ msgid "beta" +#~ msgstr "beta" + +#~ msgid "Actively participated in the private beta" +#~ msgstr "Özel beta kullanımında aktif olarak yer aldı" + +#~ msgid "guru" +#~ msgstr "guru" + +#~ msgid "Accepted answer and voted up 40 times" +#~ msgstr "Cevabı kabul etmiş ve 40 kere olumlu oy kullanmış" + +#~ msgid "necromancer" +#~ msgstr "olu-diriltici" + +#~ msgid "taxonomist" +#~ msgstr "taksonomist" + +#~ msgid "About" +#~ msgstr "Hakkımızda" + +#, fuzzy +#~ msgid "" +#~ "must have valid %(email)s to post, \n" +#~ " see %(email_validation_faq_url)s\n" +#~ " " +#~ msgstr "" +#~ "Looks like your email address, %(email)s has not " +#~ "yet been validated. To post messages you must verify your email, " +#~ "please see more details here." +#~ "
        You can submit your question now and validate email after that. Your " +#~ "question will saved as pending meanwhile. " + +#, fuzzy +#~ msgid "%(type)s" +#~ msgstr "%(date)s tarihinde" + +#~ msgid "how to validate email title" +#~ msgstr "E-mail doğrulama" + +#, fuzzy +#~ msgid "" +#~ "how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)" +#~ "s" +#~ msgstr "" +#~ "

        How? If you have just set or " +#~ "changed your email address - check your email and click the " +#~ "included link.
        The link contains a key generated specifically " +#~ "for you. You can also and check your " +#~ "email again.

        Why? Email " +#~ "validation is required to make sure that only you can post " +#~ "messages on your behalf and to minimize spam " +#~ "posts.
        With email you can subscribe for updates on " +#~ "the most interesting questions. Also, when you sign up for the first time " +#~ "- create a unique gravatar personal image.

        " + +#~ msgid "." +#~ msgstr "." + +#~ msgid "Sender is" +#~ msgstr "Gönderen" + +#~ msgid "Message body:" +#~ msgstr "Mesajınız:" + +#, fuzzy +#~ msgid "" +#~ "As a registered user you can login with your OpenID, log out of the site " +#~ "or permanently remove your account." +#~ msgstr "" +#~ "Clicking Logout will log you out from the forumbut will " +#~ "not sign you off from your OpenID provider.

        If you wish to sign off " +#~ "completely - please make sure to log out from your OpenID provider as " +#~ "well.OpenID hesaplarından birisi ile (mesela Facebook, Twitter, " +#~ "Googlemail, Yahoo, MSN) giriş yapabilirsiniz. Şifreniz sitemizde kimse " +#~ "tarafından görünmeyecek, sitemizde kaydedilmeyecektir. Bize " +#~ "güvenebilirsiniz..." + +#~ msgid "Logout now" +#~ msgstr "Şimdi çıkış yap" + +#~ msgid "mark this question as favorite (click again to cancel)" +#~ msgstr "favorilerime ekle (iptal etmek için tıkla)" + +#~ msgid "" +#~ "remove favorite mark from this question (click again to restore mark)" +#~ msgstr "" +#~ "bu sorudan favori işaretini kaldır (işareti tekrar koymak için tıklayın)" + +#~ msgid "see questions tagged '%(tag_name)s'" +#~ msgstr "'%(tag_name)s' etiketli soruları gör" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " %(q_num)s question\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " %(q_num)s questions\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "%(q_num)s soru bulundu" +#~ msgstr[1] "" +#~ "\n" +#~ "%(q_num)s soru bulundu" + +#~ msgid "tagged" +#~ msgstr "etiketlendi" + +#~ msgid "remove '%(tag_name)s' from the list of interesting tags" +#~ msgstr "ilginizi çeken etiketler kısmından '%(tag_name)s' etiketini sil" + +#~ msgid "remove '%(tag_name)s' from the list of ignored tags" +#~ msgstr "yoksaydığınız etiketler kısmından '%(tag_name)s' etiketini sil" + +#~ msgid "keep ignored questions hidden" +#~ msgstr "yoksayılan soruları gizle" + +#~ msgid "" +#~ "All tags matching '%(stag)s'" +#~ msgstr "" +#~ "Tüm etiketleri eşleştirme '%(stag)s'" + +#~ msgid "" +#~ "see other questions with %(view_user)s's contributions tagged '%(tag_name)" +#~ "s' " +#~ msgstr "" +#~ "%(view_user)s 'nin diğer '%(tag_name)s' etiketli diğer sorularını gör" + +#~ msgid "favorites" +#~ msgstr "favoriler" + +#, fuzzy +#~ msgid "this questions was selected as favorite %(cnt)s time" +#~ msgid_plural "this questions was selected as favorite %(cnt)s times" +#~ msgstr[0] "Bu sorular favori olarak seçildi" +#~ msgstr[1] "Bu sorular favori olarak seçildi" + +#~ msgid "thumb-up on" +#~ msgstr "Küçük beğeni resmi açık" + +#~ msgid "thumb-up off" +#~ msgstr "Küçük beğeni resmi kapalı" + +#~ msgid "Login name" +#~ msgstr "Kullanıcı adı" + +#~ msgid "home" +#~ msgstr "anasayfa" + +#~ msgid "Please prove that you are a Human Being" +#~ msgstr "Gerçek kullanıcı olduğunuzu kanıtlayın!" + +#~ msgid "I am a Human Being" +#~ msgstr "Ben bir gerçek kullanıcıyım" + +#~ msgid "Please decide if you like this question or not by voting" +#~ msgstr "" +#~ "Bu soruyu beğenip beğenmediğinize karar verin. Oy da verebilirsiniz." + +#~ msgid "" +#~ "\n" +#~ " vote\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " votes\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "oy" +#~ msgstr[1] "" +#~ "\n" +#~ "oy" + +#~ msgid "this answer has been accepted to be correct" +#~ msgstr "bu cevap doğru olarak kabul edilmiştir" + +#~ msgid "" +#~ "\n" +#~ " answer \n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " answers \n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "cevap" +#~ msgstr[1] "" +#~ "\n" +#~ "cevap" + +#~ msgid "" +#~ "\n" +#~ " view\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " views\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "izlenme" +#~ msgstr[1] "" +#~ "\n" +#~ "izlenme" + +#~ msgid "" +#~ "\n" +#~ " vote\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " votes\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "oy" +#~ msgstr[1] "" +#~ "\n" +#~ "oy" + +#~ msgid "" +#~ "\n" +#~ " answer \n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " answers \n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "cevap" +#~ msgstr[1] "" +#~ "\n" +#~ "cevap" + +#~ msgid "" +#~ "\n" +#~ " view\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " views\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "izlenme" +#~ msgstr[1] "" +#~ "\n" +#~ "izlenme" + +#~ msgid "views" +#~ msgstr "izlenme" + +#~ msgid "reputation points" +#~ msgstr "itibar puanları" + +#~ msgid "your karma is %(reputation)s" +#~ msgstr "karmanız %(reputation)s" + +#~ msgid "badges: " +#~ msgstr "rozetler:" + +#, fuzzy +#~ msgid "Bad request" +#~ msgstr "Geçersiz talep" + #~ msgid "comments/" #~ msgstr "yorumlar/" @@ -5647,9 +7155,6 @@ msgstr "" #~ msgid "OpenID %s is now associated with your account." #~ msgstr "OpenID %s hesabını sizin ile ilişkilendirilecek." -#~ msgid "Account deleted." -#~ msgstr "Hesap silindi." - #~ msgid "Request for new password" #~ msgstr "Yeni şifre iste" @@ -5694,27 +7199,12 @@ msgstr "" #~ msgid "Change openid associated to your account" #~ msgstr "Hesabınıza ilişkili OpenID'yi değiştirin" -#~ msgid "Delete account" -#~ msgstr "Hesabı sil" - #~ msgid "Erase your username and all your data from website" #~ msgstr "Kullanıcı adımı ve tüm bilgilerimi bu siteden sil" #~ msgid "toggle preview" #~ msgstr "toggle önizleme" -#, fuzzy -#~ msgid "" -#~ "must have valid %(email)s to post, \n" -#~ " see %(email_validation_faq_url)s\n" -#~ " " -#~ msgstr "" -#~ "Looks like your email address, %(email)s has not " -#~ "yet been validated. To post messages you must verify your email, " -#~ "please see more details here." -#~ "
        You can submit your question now and validate email after that. Your " -#~ "question will saved as pending meanwhile. " - #~ msgid "reading channel" #~ msgstr "kanal okuma" @@ -5772,9 +7262,6 @@ msgstr "" #~ msgid "sign out from askbot" #~ msgstr "askbot'tan güvenli çıkış" -#~ msgid "Please, sign in or Join askbot!" -#~ msgstr "Lütfen, giriş yapın veya askbot'a katılın" - #~ msgid "please help translate! see credits" #~ msgstr "Tercümelere yardımcı olun! Katkıda bulunanlara göz atın." @@ -5805,21 +7292,6 @@ msgstr "" #~ msgid "tags help us keep Questions organized" #~ msgstr "etiketler, bizim soruları organize etmemize yardımcı olur" -#~ msgid "click to see the newest questions" -#~ msgstr "yeni soruları görmek için tıklayın" - -#~ msgid "click to see the oldest questions" -#~ msgstr "eski soruları görmek için tıklayın" - -#~ msgid "click to see the most recently updated questions" -#~ msgstr "en güncel soruları görmek için tıklayın" - -#~ msgid "click to see the least recently updated questions" -#~ msgstr "güncel olmayan soruları görmek için tıklayın" - -#~ msgid "click to see hottest questions" -#~ msgstr "En ilgi çekici soruyu gormek için tıklayın" - #~ msgid "less answers" #~ msgstr "az cevaplananlar" @@ -5829,24 +7301,15 @@ msgstr "" #~ msgid "more answers" #~ msgstr "çok cevaplananlar" -#~ msgid "click to see most voted questions" -#~ msgstr "en çok oylanan soruları gör" - #~ msgid "unpopular" #~ msgstr "beğenilmeyen" -#~ msgid "click to see least voted questions" -#~ msgstr "en az oylanan soruları gör" - #~ msgid "popular" #~ msgstr "popüler" #~ msgid "Open the previously closed question" #~ msgstr "Daha önce kapalıtılan soru aç" -#~ msgid "The question was closed for the following reason " -#~ msgstr "Soru şu sebepten dolayı kaldırıldı:" - #~ msgid "reason - leave blank in english" #~ msgstr "Sorunun kaldırılma sebebi" @@ -5922,8 +7385,8 @@ msgstr "" #~ msgstr "Her zamanki giriş bilgileri" #~ msgid "" -#~ "how to login with password through external login website or use %" -#~ "(feedback_url)s" +#~ "how to login with password through external login website or use " +#~ "%(feedback_url)s" #~ msgstr "" #~ "Sitemize harici bir şifre ile nasıl girilebileceğini mi öğrenmek " #~ "istiyorsunuz? Tıklayın: %(feedback_url)s" @@ -6064,9 +7527,6 @@ msgstr "" #~ msgid "Unanswered questions" #~ msgstr "Cevapsız sorular" -#~ msgid "All questions" -#~ msgstr "Tüm sorular" - #~ msgid " %(q_num)s question found" #~ msgid_plural "%(q_num)s questions found" #~ msgstr[0] "%(q_num)s soru" @@ -6084,9 +7544,6 @@ msgstr "" #~ msgid "books/" #~ msgstr "kitaplar/" -#~ msgid "please login" -#~ msgstr "Kullanıcı girişi" - #~ msgid " One question found" #~ msgid_plural "%(q_num)s questions found" #~ msgstr[0] "1 cevap bulundu." @@ -6199,8 +7656,8 @@ msgstr "" #~ " " #~ msgid_plural "" #~ "\n" -#~ " see %" -#~ "(counter)s more\n" +#~ " see " +#~ "%(counter)s more\n" #~ " " #~ msgstr[0] "" #~ "\n" @@ -6214,8 +7671,8 @@ msgstr "" #~ " " #~ msgid_plural "" #~ "\n" -#~ " see %" -#~ "(counter)s more comments\n" +#~ " see " +#~ "%(counter)s more comments\n" #~ " " #~ msgstr[0] "" #~ "\n" diff --git a/askbot/locale/tr/LC_MESSAGES/djangojs.mo b/askbot/locale/tr/LC_MESSAGES/djangojs.mo new file mode 100644 index 00000000..36a5bdfa Binary files /dev/null and b/askbot/locale/tr/LC_MESSAGES/djangojs.mo differ diff --git a/askbot/locale/tr/LC_MESSAGES/djangojs.po b/askbot/locale/tr/LC_MESSAGES/djangojs.po new file mode 100644 index 00000000..5872aa10 --- /dev/null +++ b/askbot/locale/tr/LC_MESSAGES/djangojs.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: 0.7\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-10-08 02:32-0500\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"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" + +#: skins/default/media/js/post.js:532 +msgid "Follow" +msgstr "" + +#: skins/default/media/js/post.js:541 skins/default/media/js/post.js.py:550 +#, perl-format +msgid "%s follower" +msgid_plural "%s followers" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/media/js/post.js:546 +msgid "

        Following
        Unfollow
        " +msgstr "" + +#: skins/default/media/js/post.js:1613 +msgid "Please enter question title (>10 characters)" +msgstr "" + +#: skins/default/media/js/tag_selector.js:15 +msgid "Tag \"\" matches:" +msgstr "" + +#: skins/default/media/js/tag_selector.js:84 +#, perl-format +msgid "and %s more, not shown..." +msgstr "" + +#: skins/default/media/js/user.js:129 +msgid "Please signin to follow %(username)s" +msgstr "" + +#: skins/default/media/js/user.js:161 +#, perl-format +msgid "unfollow %s" +msgstr "" + +#: skins/default/media/js/user.js:164 +#, perl-format +msgid "following %s" +msgstr "" + +#: skins/default/media/js/user.js:170 +#, perl-format +msgid "follow %s" +msgstr "" diff --git a/askbot/locale/vi/LC_MESSAGES/django.mo b/askbot/locale/vi/LC_MESSAGES/django.mo index 7d2ec0b8..4f175ad6 100644 Binary files a/askbot/locale/vi/LC_MESSAGES/django.mo and b/askbot/locale/vi/LC_MESSAGES/django.mo differ diff --git a/askbot/locale/vi/LC_MESSAGES/django.po b/askbot/locale/vi/LC_MESSAGES/django.po index 1408e39a..0b51bdd8 100644 --- a/askbot/locale/vi/LC_MESSAGES/django.po +++ b/askbot/locale/vi/LC_MESSAGES/django.po @@ -5,383 +5,547 @@ # msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: 0.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-11-18 17:36-0600\n" +"POT-Creation-Date: 2011-10-08 02:32-0500\n" "PO-Revision-Date: 2010-05-09 07:03\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Translated-Using: django-rosetta 0.5.3\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: feed.py:22 +#: exceptions.py:13 +msgid "Sorry, but anonymous visitors cannot access this function" +msgstr "" + +#: feed.py:26 feed.py:100 msgid " - " msgstr "" -#: feed.py:22 +#: feed.py:26 +msgid "Individual question feed" +msgstr "" + +#: feed.py:100 msgid "latest questions" msgstr "" -#: forms.py:54 skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:40 -#: skins/default/templates/question_edit_tips.html:45 +#: forms.py:74 +msgid "select country" +msgstr "" + +#: forms.py:83 +msgid "Country" +msgstr "" + +#: forms.py:91 +msgid "Country field is required" +msgstr "" + +#: forms.py:104 skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:38 +#: skins/default/templates/blocks/question_edit_tips.html:43 msgid "title" msgstr "" -#: forms.py:55 +#: forms.py:105 msgid "please enter a descriptive title for your question" msgstr "" -#: forms.py:60 +#: forms.py:110 msgid "title must be > 10 characters" msgstr "" -#: forms.py:69 +#: forms.py:119 msgid "content" msgstr "" -#: forms.py:75 +#: forms.py:125 msgid "question content must be > 10 characters" msgstr "" -#: forms.py:84 skins/default/templates/header.html:83 +#: forms.py:134 skins/default/templates/macros.html:660 +#: skins/default/templates/macros.html:672 +#: skins/default/templates/blocks/header.html:25 msgid "tags" msgstr "" -#: forms.py:86 +#: forms.py:136 msgid "" "Tags are short keywords, with no spaces within. Up to five tags can be used." msgstr "" -#: forms.py:93 skins/default/templates/question_retag.html:78 +#: forms.py:164 skins/default/templates/question_retag.html:58 msgid "tags are required" msgstr "" -#: forms.py:102 +#: forms.py:173 #, 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:111 +#: forms.py:181 +#, python-format +msgid "At least one of the following tags is required : %(tags)s" +msgstr "" + +#: forms.py:190 #, 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:119 +#: forms.py:198 msgid "use-these-chars-in-tags" msgstr "" -#: forms.py:130 -#: skins/default/templates/unused/question_summary_list_roll.html:26 -#: skins/default/templates/unused/question_summary_list_roll.html:38 -msgid "community wiki" +#: forms.py:233 +msgid "community wiki (karma is not awarded & many others can edit wiki post)" msgstr "" -#: forms.py:131 +#: forms.py:234 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:147 +#: forms.py:250 msgid "update summary:" msgstr "" -#: forms.py:148 +#: forms.py:251 msgid "" "enter a brief summary of your revision (e.g. fixed spelling, grammar, " "improved style, this field is optional)" msgstr "" -#: forms.py:161 +#: forms.py:327 msgid "Enter number of points to add or subtract" msgstr "" -#: forms.py:175 const/__init__.py:218 +#: forms.py:341 const/__init__.py:245 msgid "approved" msgstr "" -#: forms.py:176 const/__init__.py:219 +#: forms.py:342 const/__init__.py:246 msgid "watched" msgstr "" -#: forms.py:177 const/__init__.py:220 +#: forms.py:343 const/__init__.py:247 msgid "suspended" msgstr "" -#: forms.py:178 const/__init__.py:221 +#: forms.py:344 const/__init__.py:248 msgid "blocked" msgstr "" -#: forms.py:180 const/__init__.py:217 +#: forms.py:346 +#, fuzzy +msgid "administrator" +msgstr "" +"Sincerely,\n" +"Q&A Forum Administrator" + +#: forms.py:347 const/__init__.py:244 msgid "moderator" msgstr "" -#: forms.py:200 +#: forms.py:367 msgid "Change status to" msgstr "" -#: forms.py:227 +#: forms.py:394 msgid "which one?" msgstr "" -#: forms.py:248 +#: forms.py:415 msgid "Cannot change own status" msgstr "" -#: forms.py:254 +#: forms.py:421 msgid "Cannot turn other user to moderator" msgstr "" -#: forms.py:261 +#: forms.py:428 msgid "Cannot change status of another moderator" msgstr "" -#: forms.py:267 +#: forms.py:434 +msgid "Cannot change status to admin" +msgstr "" + +#: forms.py:440 #, python-format -msgid "If you wish to change %(username)s's status, " +msgid "" +"If you wish to change %(username)s's status, please make a meaningful " +"selection." msgstr "" -#: forms.py:276 +#: forms.py:449 msgid "Subject line" msgstr "" -#: forms.py:283 +#: forms.py:456 msgid "Message text" msgstr "" -#: forms.py:360 +#: forms.py:542 msgid "Your name:" msgstr "" -#: forms.py:361 +#: forms.py:543 msgid "Email (not shared with anyone):" msgstr "" -#: forms.py:362 +#: forms.py:544 msgid "Your message:" msgstr "" -#: forms.py:449 -msgid "this email does not have to be linked to gravatar" +#: forms.py:581 +msgid "ask anonymously" msgstr "" -#: forms.py:456 +#: forms.py:583 +msgid "Check if you do not want to reveal your name when asking this question" +msgstr "" + +#: forms.py:743 +msgid "" +"You have asked this question anonymously, if you decide to reveal your " +"identity, please check this box." +msgstr "" + +#: forms.py:747 +msgid "reveal identity" +msgstr "" + +#: forms.py:805 +msgid "" +"Sorry, only owner of the anonymous question can reveal his or her identity, " +"please uncheck the box" +msgstr "" + +#: forms.py:818 +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:856 +msgid "this email will be linked to gravatar" +msgstr "" + +#: forms.py:863 msgid "Real name" msgstr "" -#: forms.py:463 +#: forms.py:870 msgid "Website" msgstr "" -#: forms.py:470 -msgid "Location" +#: forms.py:877 +msgid "City" +msgstr "" + +#: forms.py:886 +msgid "Show country" msgstr "" -#: forms.py:477 +#: forms.py:891 msgid "Date of birth" msgstr "" -#: forms.py:478 +#: forms.py:892 msgid "will not be shown, used to calculate age, format: YYYY-MM-DD" msgstr "" -#: forms.py:484 +#: forms.py:898 msgid "Profile" msgstr "" -#: forms.py:493 +#: forms.py:907 msgid "Screen name" msgstr "" -#: forms.py:518 forms.py:519 +#: forms.py:938 forms.py:939 msgid "this email has already been registered, please use another one" msgstr "" -#: forms.py:525 +#: forms.py:946 msgid "Choose email tag filter" msgstr "" -#: forms.py:564 +#: forms.py:993 msgid "Asked by me" msgstr "" -#: forms.py:567 +#: forms.py:996 msgid "Answered by me" msgstr "" -#: forms.py:570 +#: forms.py:999 msgid "Individually selected" msgstr "" -#: forms.py:573 +#: forms.py:1002 msgid "Entire forum (tag filtered)" msgstr "" -#: forms.py:577 +#: forms.py:1006 msgid "Comments and posts mentioning me" msgstr "" -#: forms.py:635 +#: forms.py:1085 msgid "okay, let's try!" msgstr "" -#: forms.py:636 +#: forms.py:1086 msgid "no community email please, thanks" msgstr "no askbot email please, thanks" -#: forms.py:640 +#: forms.py:1090 msgid "please choose one of the options above" msgstr "" -#: urls.py:42 +#: urls.py:53 msgid "about/" msgstr "" -#: urls.py:43 conf/site_settings.py:79 +#: urls.py:54 msgid "faq/" msgstr "" -#: urls.py:44 +#: urls.py:55 msgid "privacy/" msgstr "" -#: urls.py:45 -msgid "logout/" -msgstr "" - -#: urls.py:47 urls.py:52 urls.py:57 urls.py:127 +#: urls.py:57 urls.py:62 msgid "answers/" msgstr "" -#: urls.py:47 urls.py:109 urls.py:120 urls.py:127 -msgid "comments/" -msgstr "" - -#: urls.py:52 urls.py:73 urls.py:168 +#: urls.py:57 urls.py:83 urls.py:198 msgid "edit/" msgstr "" -#: urls.py:57 urls.py:103 +#: urls.py:62 urls.py:113 msgid "revisions/" msgstr "" -#: urls.py:63 urls.py:68 urls.py:73 urls.py:78 urls.py:83 urls.py:88 -#: urls.py:93 urls.py:98 urls.py:103 urls.py:109 urls.py:120 +#: urls.py:68 urls.py:78 urls.py:83 urls.py:88 urls.py:93 urls.py:98 +#: urls.py:103 urls.py:108 urls.py:113 urls.py:285 +#: skins/default/templates/question.html:508 msgid "questions/" msgstr "" -#: urls.py:68 +#: urls.py:78 msgid "ask/" msgstr "" -#: urls.py:78 +#: urls.py:88 msgid "retag/" msgstr "" -#: urls.py:83 +#: urls.py:93 msgid "close/" msgstr "" -#: urls.py:88 +#: urls.py:98 msgid "reopen/" msgstr "" -#: urls.py:93 +#: urls.py:103 msgid "answer/" msgstr "" -#: urls.py:98 +#: urls.py:108 skins/default/templates/question.html:508 msgid "vote/" msgstr "" -#: urls.py:114 -msgid "command/" +#: urls.py:144 +msgid "tags/" +msgstr "" + +#: urls.py:187 +msgid "subscribe-for-tags/" +msgstr "" + +#: urls.py:192 urls.py:198 urls.py:204 urls.py:212 +#: skins/default/templates/main_page/javascript.html:23 +msgid "users/" +msgstr "" + +#: urls.py:205 +msgid "subscriptions/" +msgstr "" + +#: urls.py:217 +msgid "users/update_has_custom_avatar/" +msgstr "" + +#: urls.py:222 urls.py:227 +msgid "badges/" +msgstr "" + +#: urls.py:232 +msgid "messages/" +msgstr "" + +#: urls.py:232 +msgid "markread/" +msgstr "" + +#: urls.py:248 +msgid "upload/" msgstr "" -#: urls.py:120 urls.py:127 -msgid "delete/" +#: urls.py:249 +msgid "feedback/" msgstr "" -#: urls.py:134 +#: urls.py:291 skins/default/templates/question.html:506 +#: skins/default/templates/main_page/javascript.html:22 msgid "question/" msgstr "" -#: urls.py:139 -msgid "tags/" +#: urls.py:298 setup_templates/settings.py:202 +#: skins/default/templates/authopenid/providers_javascript.html:7 +#, fuzzy +msgid "account/" +msgstr "Signup" + +#: conf/badges.py:12 +msgid "Badge settings" msgstr "" -#: urls.py:144 urls.py:150 -msgid "mark-tag/" +#: conf/badges.py:21 +msgid "Disciplined: minimum upvotes for deleted post" msgstr "" -#: urls.py:144 -msgid "interesting/" +#: conf/badges.py:30 +msgid "Peer Pressure: minimum downvotes for deleted post" msgstr "" -#: urls.py:150 -msgid "ignored/" +#: conf/badges.py:39 +msgid "Teacher: minimum upvotes for the answer" msgstr "" -#: urls.py:156 -msgid "unmark-tag/" +#: conf/badges.py:48 +msgid "Nice Answer: minimum upvotes for the answer" msgstr "" -#: urls.py:162 urls.py:168 urls.py:173 -msgid "users/" +#: conf/badges.py:57 +msgid "Good Answer: minimum upvotes for the answer" msgstr "" -#: urls.py:178 urls.py:183 -msgid "badges/" +#: conf/badges.py:66 +msgid "Great Answer: minimum upvotes for the answer" msgstr "" -#: urls.py:188 -msgid "messages/" +#: conf/badges.py:75 +msgid "Nice Question: minimum upvotes for the question" msgstr "" -#: urls.py:188 -msgid "markread/" +#: conf/badges.py:84 +msgid "Good Question: minimum upvotes for the question" msgstr "" -#: urls.py:203 -msgid "upload/" +#: conf/badges.py:93 +msgid "Great Question: minimum upvotes for the question" msgstr "" -#: urls.py:204 -msgid "search/" +#: conf/badges.py:102 +msgid "Popular Question: minimum views" msgstr "" -#: urls.py:205 -msgid "feedback/" +#: conf/badges.py:111 +msgid "Notable Question: minimum views" msgstr "" -#: urls.py:206 setup_templates/settings.py:182 -#: skins/default/templates/authopenid/signin.html:269 -#, fuzzy -msgid "account/" -msgstr "Signup" +#: conf/badges.py:120 +msgid "Famous Question: minimum views" +msgstr "" + +#: conf/badges.py:129 +msgid "Self-Learner: minimum answer upvotes" +msgstr "" + +#: conf/badges.py:138 +msgid "Civic Duty: minimum votes" +msgstr "" + +#: conf/badges.py:147 +msgid "Enlightened Duty: minimum upvotes" +msgstr "" + +#: conf/badges.py:156 +msgid "Guru: minimum upvotes" +msgstr "" + +#: conf/badges.py:165 +msgid "Necromancer: minimum upvotes" +msgstr "" + +#: conf/badges.py:174 +msgid "Necromancer: minimum delay in days" +msgstr "" + +#: conf/badges.py:183 +msgid "Associate Editor: minimum number of edits" +msgstr "" + +#: conf/badges.py:192 +msgid "Favorite Question: minimum stars" +msgstr "" + +#: conf/badges.py:201 +msgid "Stellar Question: minimum stars" +msgstr "" + +#: conf/badges.py:210 +msgid "Commentator: minimum comments" +msgstr "" + +#: conf/badges.py:219 +msgid "Taxonomist: minimum tag use count" +msgstr "" + +#: conf/badges.py:228 +msgid "Enthusiast: minimum days" +msgstr "" -#: conf/email.py:12 +#: conf/email.py:14 msgid "Email and email alert settings" msgstr "" -#: conf/email.py:20 +#: conf/email.py:22 +#, fuzzy +msgid "Prefix for the email subject line" +msgstr "Welcome to the Q&A forum" + +#: conf/email.py:24 +msgid "" +"This setting takes default from the django settingEMAIL_SUBJECT_PREFIX. A " +"value entered here will overridethe default." +msgstr "" + +#: conf/email.py:36 msgid "Maximum number of news entries in an email alert" msgstr "" -#: conf/email.py:30 +#: conf/email.py:46 msgid "Default news notification frequency" msgstr "" -#: conf/email.py:32 +#: conf/email.py:48 msgid "" "This option currently defines default frequency of emailed updates in the " "following five categories: questions asked by user, answered by user, " @@ -389,34 +553,81 @@ msgid "" "posts mentioning the user and comment responses" msgstr "" -#: conf/email.py:47 +#: conf/email.py:62 +msgid "Send periodic reminders about unanswered questions" +msgstr "" + +#: conf/email.py:64 +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) and an IMAP server with a dedicated inbox " +"must be configured " +msgstr "" + +#: conf/email.py:78 +msgid "Days before starting to send reminders about unanswered questions" +msgstr "" + +#: conf/email.py:89 +msgid "" +"How often to send unanswered question reminders (in days between the " +"reminders sent)." +msgstr "" + +#: conf/email.py:101 +msgid "Max. number of reminders to send about unanswered questions" +msgstr "" + +#: conf/email.py:113 msgid "Require email verification before allowing to post" msgstr "" -#: conf/email.py:48 +#: conf/email.py:114 msgid "" "Active email verification is done by sending a verification key in email" msgstr "" -#: conf/email.py:57 +#: conf/email.py:123 #, fuzzy msgid "Allow only one account per email address" msgstr "Your email (never shared)" -#: conf/email.py:66 +#: conf/email.py:132 msgid "Fake email for anonymous user" msgstr "" -#: conf/email.py:67 +#: conf/email.py:133 msgid "Use this setting to control gravatar for email-less user" msgstr "" -#: conf/email.py:76 +#: conf/email.py:142 #, fuzzy -msgid "Prefix for the email subject line" -msgstr "Welcome to the Q&A forum" +msgid "Allow posting questions by email" +msgstr "" +"You are welcome to start submitting your question " +"anonymously. 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:144 +msgid "" +"Before enabling this setting - please fill out IMAP settings in the settings." +"py file" +msgstr "" + +#: conf/email.py:155 +msgid "Replace space in emailed tags with dash" +msgstr "" + +#: conf/email.py:157 +msgid "" +"This setting applies to tags written in the subject line of questions asked " +"by email" +msgstr "" -#: conf/external_keys.py:11 +#: conf/external_keys.py:10 msgid "Keys to connect the site with external services like Facebook, etc." msgstr "" @@ -427,90 +638,114 @@ msgstr "" #: conf/external_keys.py:20 #, python-format msgid "" -"This key helps google index your site please obtain is at google webmasters tools site" +"This key helps google index your site please obtain is at google webmasters tools site" msgstr "" -#: conf/external_keys.py:34 +#: conf/external_keys.py:35 msgid "Google Analytics key" msgstr "" -#: conf/external_keys.py:36 +#: conf/external_keys.py:37 #, python-format msgid "" -"Obtain is at Google Analytics site, if you wish " -"to use Google Analytics to monitor your site" +"Obtain is at Google Analytics site, if you wish to " +"use Google Analytics to monitor your site" msgstr "" -#: conf/external_keys.py:49 +#: conf/external_keys.py:50 msgid "Enable recaptcha (keys below are required)" msgstr "" -#: conf/external_keys.py:58 +#: conf/external_keys.py:59 msgid "Recaptcha public key" msgstr "" -#: conf/external_keys.py:66 +#: conf/external_keys.py:67 msgid "Recaptcha private key" msgstr "" -#: conf/external_keys.py:68 +#: conf/external_keys.py:69 +#, 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 recaptcha.net" +"robots. Please get this and a public key at the %(url)s" msgstr "" -#: conf/external_keys.py:80 +#: conf/external_keys.py:81 msgid "Facebook public API key" msgstr "" -#: conf/external_keys.py:82 +#: conf/external_keys.py:83 +#, python-format msgid "" "Facebook API key and Facebook secret allow to use Facebook Connect login " -"method at your site. Please obtain these keys at facebook create app site" +"method at your site. Please obtain these keys at facebook create app site" msgstr "" -#: conf/external_keys.py:95 +#: conf/external_keys.py:96 msgid "Facebook secret key" msgstr "" -#: conf/external_keys.py:103 +#: conf/external_keys.py:104 msgid "Twitter consumer key" msgstr "" -#: conf/external_keys.py:105 conf/external_keys.py:126 +#: conf/external_keys.py:106 +#, python-format msgid "" -"Please register your forum at twitter applications site" +"Please register your forum at twitter applications site" msgstr "" -#: conf/external_keys.py:116 +#: conf/external_keys.py:117 msgid "Twitter consumer secret" msgstr "" -#: conf/external_keys.py:124 +#: conf/external_keys.py:125 msgid "LinkedIn consumer key" msgstr "" -#: conf/external_keys.py:137 +#: conf/external_keys.py:127 +#, python-format +msgid "" +"Please register your forum at LinkedIn developer site" +msgstr "" + +#: conf/external_keys.py:138 msgid "LinkedIn consumer secret" msgstr "" -#: conf/external_keys.py:145 -msgid "User LDAP authentication for the password login" +#: conf/external_keys.py:146 +msgid "ident.ca consumer key" +msgstr "" + +#: conf/external_keys.py:148 +#, python-format +msgid "" +"Please register your forum at Identi.ca applications " +"site" +msgstr "" + +#: conf/external_keys.py:159 +msgid "ident.ca consumer secret" +msgstr "" + +#: conf/external_keys.py:167 +msgid "Use LDAP authentication for the password login" msgstr "" -#: conf/external_keys.py:154 +#: conf/external_keys.py:176 msgid "LDAP service provider name" msgstr "" -#: conf/external_keys.py:162 +#: conf/external_keys.py:184 msgid "URL for the LDAP service" msgstr "" -#: conf/external_keys.py:170 +#: conf/external_keys.py:192 #, fuzzy msgid "Explain how to change LDAP password" msgstr "Change your password" @@ -530,163 +765,437 @@ msgid "" msgstr "" #: conf/flatpages.py:30 -msgid "Text of the Q&A forum Privacy Policy (html format)" +msgid "Text of the Q&A forum FAQ page (html format)" msgstr "" #: conf/flatpages.py:33 msgid "" "Save, then use HTML validator on " -"the \"privacy\" page to check your input." +"the \"faq\" page to check your input." msgstr "" -#: conf/forum_data_rules.py:12 -msgid "Settings for askbot data entry and display" +#: conf/flatpages.py:44 +msgid "Text of the Q&A forum Privacy Policy (html format)" msgstr "" -#: conf/forum_data_rules.py:20 -msgid "Check to enable community wiki feature" +#: conf/flatpages.py:47 +msgid "" +"Save, then use HTML validator on " +"the \"privacy\" page to check your input." msgstr "" -#: conf/forum_data_rules.py:29 -msgid "Maximum length of tag (number of characters)" +#: conf/forum_data_rules.py:11 +msgid "Data entry and display" msgstr "" -#: conf/forum_data_rules.py:39 -msgid "Default max number of comments to display under posts" +#: conf/forum_data_rules.py:20 +#, python-format +msgid "" +"Enable embedding videos. Note: please read read this first." msgstr "" -#: conf/forum_data_rules.py:50 -#, python-format -msgid "Maximum comment length, must be < %(max_len)s" +#: conf/forum_data_rules.py:31 +msgid "Check to enable community wiki feature" msgstr "" -#: conf/forum_data_rules.py:60 -msgid "Minimum length of search term for Ajax search" +#: conf/forum_data_rules.py:40 +msgid "Allow asking questions anonymously" msgstr "" -#: conf/forum_data_rules.py:61 -msgid "Must match the corresponding database backend setting" +#: conf/forum_data_rules.py:42 +msgid "" +"Users do not accrue reputation for anonymous questions and their identity is " +"not revealed until they change their mind" msgstr "" -#: conf/forum_data_rules.py:70 -msgid "Maximum number of tags per question" +#: conf/forum_data_rules.py:54 +msgid "Allow posting before logging in" msgstr "" -#: conf/forum_data_rules.py:82 -msgid "Number of questions to list by default" +#: conf/forum_data_rules.py:56 +msgid "" +"Check if you want to allow users start posting questions or answers before " +"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 "" -#: conf/forum_data_rules.py:92 +#: conf/forum_data_rules.py:71 #, fuzzy -msgid "What should \"unanswered question\" mean?" -msgstr "unanswered questions" +msgid "Allow swapping answer with question" +msgstr "Post Your Answer" -#: conf/markup.py:15 -msgid "Markup formatting" +#: conf/forum_data_rules.py:73 +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 "" -#: conf/markup.py:29 -msgid "Enable code-friendly Markdown" +#: conf/forum_data_rules.py:85 +msgid "Maximum length of tag (number of characters)" msgstr "" -#: conf/markup.py:31 +#: conf/forum_data_rules.py:93 +msgid "Mandatory tags" +msgstr "" + +#: conf/forum_data_rules.py:96 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 " -"\"MathJax support\" implicitly turns this feature on, because underscores " -"are heavily used in LaTeX input." +"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/markup.py:46 -msgid "Mathjax support (rendering of LaTeX)" +#: conf/forum_data_rules.py:108 +msgid "Force lowercase the tags" msgstr "" -#: conf/markup.py:48 -#, python-format +#: conf/forum_data_rules.py:110 msgid "" -"If you enable this feature, mathjax must be " -"installed in directory %(dir)s" +"Attention: after checking this, please back up the database, and run a " +"management command: python manage.py fix_question_tags to " +"globally rename the tags" msgstr "" -#: conf/markup.py:63 -msgid "Base url of MathJax deployment" +#: conf/forum_data_rules.py:124 +msgid "Format of tag list" msgstr "" -#: conf/markup.py:65 +#: conf/forum_data_rules.py:126 msgid "" -"Note - MathJax is not included with askbot - you should " -"deploy it yourself, preferably at a separate domain and enter url pointing " -"to the \"mathjax\" directory (for example: http://mysite.com/mathjax)" +"Select the format to show tags in, either as a simple list, or as a tag cloud" msgstr "" -#: conf/minimum_reputation.py:11 -msgid "Minimum reputation required to perform actions" +#: conf/forum_data_rules.py:138 +#, fuzzy +msgid "Use wildcard tags" +msgstr "Tags" + +#: conf/forum_data_rules.py:140 +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/minimum_reputation.py:20 -msgid "Upvote" +#: conf/forum_data_rules.py:153 +msgid "Default max number of comments to display under posts" msgstr "" -#: conf/minimum_reputation.py:29 -msgid "Downvote" +#: conf/forum_data_rules.py:164 +#, python-format +msgid "Maximum comment length, must be < %(max_len)s" msgstr "" -#: conf/minimum_reputation.py:38 -msgid "Flag offensive" +#: conf/forum_data_rules.py:174 +msgid "Limit time to edit comments" msgstr "" -#: conf/minimum_reputation.py:47 -#, fuzzy -msgid "Leave comments" -msgstr "post a comment" +#: conf/forum_data_rules.py:176 +msgid "If unchecked, there will be no time limit to edit the comments" +msgstr "" -#: conf/minimum_reputation.py:56 -msgid "Delete comments posted by others" +#: conf/forum_data_rules.py:187 +msgid "Minutes allowed to edit a comment" msgstr "" -#: conf/minimum_reputation.py:65 -msgid "Delete questions and answers posted by others" +#: conf/forum_data_rules.py:188 +msgid "To enable this setting, check the previous one" msgstr "" -#: conf/minimum_reputation.py:74 -msgid "Upload files" +#: conf/forum_data_rules.py:197 +msgid "Save comment by pressing key" msgstr "" -#: conf/minimum_reputation.py:83 -#, fuzzy -msgid "Close own questions" -msgstr "Ask Your Question" +#: conf/forum_data_rules.py:206 +msgid "Minimum length of search term for Ajax search" +msgstr "" -#: conf/minimum_reputation.py:92 -msgid "Retag questions posted by other people" +#: conf/forum_data_rules.py:207 +msgid "Must match the corresponding database backend setting" msgstr "" -#: conf/minimum_reputation.py:101 -#, fuzzy -msgid "Reopen own questions" -msgstr "list of all questions" +#: conf/forum_data_rules.py:216 +msgid "Do not make text query sticky in search" +msgstr "" + +#: conf/forum_data_rules.py:218 +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:231 +msgid "Maximum number of tags per question" +msgstr "" + +#: conf/forum_data_rules.py:243 +msgid "Number of questions to list by default" +msgstr "" + +#: conf/forum_data_rules.py:253 +#, fuzzy +msgid "What should \"unanswered question\" mean?" +msgstr "unanswered questions" + +#: conf/license.py:12 +#, fuzzy +msgid "License settings" +msgstr "" +"Forum software relies on the internet cookie technology to keep track of " +"user sessions. Cookies must be enabled in your browser so that forum can " +"work for you." + +#: conf/license.py:19 +msgid "Show license clause in the site footer" +msgstr "" + +#: conf/license.py:28 +msgid "Short name for the license" +msgstr "" + +#: conf/license.py:37 +msgid "Full name of the license" +msgstr "" + +#: conf/license.py:38 +msgid "Creative Commons Attribution Share Alike 3.0" +msgstr "" + +#: conf/license.py:46 +msgid "Add link to the license page" +msgstr "" + +#: conf/license.py:55 +msgid "License homepage" +msgstr "" + +#: conf/license.py:57 +msgid "URL of the official page with all the license legal clauses" +msgstr "" + +#: conf/license.py:67 +msgid "Use license logo" +msgstr "" + +#: conf/license.py:76 +msgid "License logo image" +msgstr "" + +#: conf/login_providers.py:12 +msgid "Login provider setings" +msgstr "" + +#: conf/login_providers.py:20 +msgid "" +"Show alternative login provider buttons on the password \"Sign Up\" page" +msgstr "" + +#: conf/login_providers.py:29 +msgid "Always display local login form and hide \"Askbot\" button." +msgstr "" + +#: conf/login_providers.py:38 +msgid "Activate to allow login with self-hosted wordpress site" +msgstr "" + +#: conf/login_providers.py:39 +msgid "" +"to activate this feature you must fill out the wordpress xml-rpc setting " +"bellow" +msgstr "" + +#: conf/login_providers.py:48 +msgid "" +"Fill it with the wordpress url to the xml-rpc, normally http://mysite.com/" +"xmlrpc.php" +msgstr "" + +#: conf/login_providers.py:49 +msgid "" +"To enable, go to Settings->Writing->Remote Publishing and check the box for " +"XML-RPC" +msgstr "" + +#: conf/login_providers.py:60 +msgid "Upload your icon" +msgstr "" + +#: conf/login_providers.py:90 +#, python-format +msgid "Activate %(provider)s login" +msgstr "" + +#: conf/login_providers.py:95 +#, python-format +msgid "" +"Note: to really enable %(provider)s login some additional parameters will " +"need to be set in the \"External keys\" section" +msgstr "" + +#: conf/markup.py:14 +msgid "Markup formatting" +msgstr "" + +#: conf/markup.py:39 +msgid "Enable code-friendly Markdown" +msgstr "" + +#: conf/markup.py:41 +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 " +"\"MathJax support\" implicitly turns this feature on, because underscores " +"are heavily used in LaTeX input." +msgstr "" + +#: conf/markup.py:56 +msgid "Mathjax support (rendering of LaTeX)" +msgstr "" + +#: conf/markup.py:58 +#, python-format +msgid "" +"If you enable this feature, mathjax must be " +"installed on your server in its own directory." +msgstr "" + +#: conf/markup.py:72 +msgid "Base url of MathJax deployment" +msgstr "" + +#: conf/markup.py:74 +msgid "" +"Note - MathJax is not included with askbot - 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 "" + +#: conf/markup.py:89 +msgid "Enable autolinking with specific patterns" +msgstr "" + +#: conf/markup.py:91 +msgid "" +"If you enable this feature, the application will be able to detect patterns " +"and auto link to URLs" +msgstr "" + +#: conf/markup.py:104 +msgid "Regexes to detect the link patterns" +msgstr "" + +#: conf/markup.py:106 +msgid "" +"Enter valid regular expressions for the patters, one per line. For example " +"to detect a bug pattern like #bug123, use the following regex: #bug(\\d+). " +"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 "" + +#: conf/markup.py:125 +msgid "URLs for autolinking" +msgstr "" + +#: conf/markup.py:127 +msgid "" +"Here, please enter url templates for the patterns entered in the previous " +"setting, also one entry per line. Make sure that number of lines in " +"this setting and the previous one are the same 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 "" + +#: conf/minimum_reputation.py:11 +msgid "Minimum reputation required to perform actions" +msgstr "" + +#: conf/minimum_reputation.py:20 +msgid "Upvote" +msgstr "" + +#: conf/minimum_reputation.py:29 +msgid "Downvote" +msgstr "" + +#: conf/minimum_reputation.py:38 +#, fuzzy +msgid "Answer own question immediately" +msgstr "Post Your Answer" + +#: conf/minimum_reputation.py:47 +#, fuzzy +msgid "Accept own answer" +msgstr "oldest" + +#: conf/minimum_reputation.py:56 +msgid "Flag offensive" +msgstr "" + +#: conf/minimum_reputation.py:65 +#, fuzzy +msgid "Leave comments" +msgstr "post a comment" + +#: conf/minimum_reputation.py:74 +msgid "Delete comments posted by others" +msgstr "" + +#: conf/minimum_reputation.py:83 +msgid "Delete questions and answers posted by others" +msgstr "" + +#: conf/minimum_reputation.py:92 +msgid "Upload files" +msgstr "" + +#: conf/minimum_reputation.py:101 +#, fuzzy +msgid "Close own questions" +msgstr "Ask Your Question" #: conf/minimum_reputation.py:110 -msgid "Edit community wiki posts" +msgid "Retag questions posted by other people" msgstr "" #: conf/minimum_reputation.py:119 +#, fuzzy +msgid "Reopen own questions" +msgstr "list of all questions" + +#: conf/minimum_reputation.py:128 +msgid "Edit community wiki posts" +msgstr "" + +#: conf/minimum_reputation.py:137 msgid "Edit posts authored by other people" msgstr "" -#: conf/minimum_reputation.py:128 +#: conf/minimum_reputation.py:146 msgid "View offensive flags" msgstr "" -#: conf/minimum_reputation.py:137 +#: conf/minimum_reputation.py:155 #, fuzzy msgid "Close questions asked by others" msgstr "Asked" -#: conf/minimum_reputation.py:146 +#: conf/minimum_reputation.py:164 msgid "Lock posts" msgstr "" +#: conf/minimum_reputation.py:173 +msgid "Remove rel=nofollow from own homepage" +msgstr "" + +#: conf/minimum_reputation.py:175 +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 "" + #: conf/reputation_changes.py:12 msgid "Reputation loss and gain rules" msgstr "" @@ -747,53 +1256,164 @@ msgstr "" msgid "Loss for post owner when upvote is canceled" msgstr "" -#: conf/site_settings.py:13 +#: conf/sidebar_main.py:11 +msgid "Sidebar widget settings - main page" +msgstr "" + +#: conf/sidebar_main.py:18 conf/sidebar_profile.py:18 +#: conf/sidebar_question.py:18 +msgid "Custom sidebar header" +msgstr "" + +#: conf/sidebar_main.py:21 conf/sidebar_profile.py:21 +#: conf/sidebar_question.py:21 +msgid "" +"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." +msgstr "" + +#: conf/sidebar_main.py:34 +msgid "Show avatar block in sidebar" +msgstr "" + +#: conf/sidebar_main.py:36 +msgid "Uncheck this if you want to hide the avatar block from the sidebar " +msgstr "" + +#: conf/sidebar_main.py:47 +msgid "Limit how many avatars will be displayed on the sidebar" +msgstr "" + +#: conf/sidebar_main.py:57 +msgid "Show tag selector in sidebar" +msgstr "" + +#: conf/sidebar_main.py:59 +msgid "" +"Uncheck this if you want to hide the options for choosing interesting and " +"ignored tags " +msgstr "" + +#: conf/sidebar_main.py:70 +msgid "Show tag list/cloud in sidebar" +msgstr "" + +#: conf/sidebar_main.py:72 +msgid "" +"Uncheck this if you want to hide the tag cloud or tag list from the sidebar " +msgstr "" + +#: conf/sidebar_main.py:83 conf/sidebar_profile.py:34 +#: conf/sidebar_question.py:74 +msgid "Custom sidebar footer" +msgstr "" + +#: conf/sidebar_main.py:86 conf/sidebar_profile.py:37 +#: conf/sidebar_question.py:77 +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 "" + +#: conf/sidebar_profile.py:11 +msgid "Sidebar widget settings - profile page" +msgstr "" + +#: conf/sidebar_question.py:11 +msgid "Sidebar widget settings - question page" +msgstr "" + +#: conf/sidebar_question.py:34 +msgid "Show tag list in sidebar" +msgstr "" + +#: conf/sidebar_question.py:36 +msgid "Uncheck this if you want to hide the tag list from the sidebar " +msgstr "" + +#: conf/sidebar_question.py:47 +msgid "Show meta information in sidebar" +msgstr "" + +#: conf/sidebar_question.py:49 +msgid "" +"Uncheck this if you want to hide the meta information about the question " +"(post date, views, last updated). " +msgstr "" + +#: conf/sidebar_question.py:61 +msgid "Show related questions in sidebar" +msgstr "" + +#: conf/sidebar_question.py:63 +msgid "Uncheck this if you want to hide the list of related questions. " +msgstr "" + +#: conf/site_modes.py:63 +msgid "Site modes" +msgstr "" + +#: conf/site_modes.py:72 +msgid "Activate a \"Bootstrap\" mode" +msgstr "" + +#: conf/site_modes.py:74 +msgid "" +"Bootstrap mode lowers reputation and certain badge thresholds, to values, " +"more suitable for the smaller communities, WARNING: your " +"current value for Minimum reputation, Bagde Settings and Vote Rules will be " +"changed after you modify this setting." +msgstr "" + +#: conf/site_settings.py:11 msgid "Q&A forum website parameters and urls" msgstr "" -#: conf/site_settings.py:21 +#: conf/site_settings.py:19 msgid "Site title for the Q&A forum" msgstr "" -#: conf/site_settings.py:30 +#: conf/site_settings.py:28 msgid "Comma separated list of Q&A site keywords" msgstr "" -#: conf/site_settings.py:40 +#: conf/site_settings.py:37 msgid "Copyright message to show in the footer" msgstr "" -#: conf/site_settings.py:50 +#: conf/site_settings.py:47 msgid "Site description for the search engines" msgstr "" -#: conf/site_settings.py:58 -msgid "Askbot" -msgstr "" - -#: conf/site_settings.py:59 +#: conf/site_settings.py:56 msgid "Short name for your Q&A forum" msgstr "" -#: conf/site_settings.py:69 +#: conf/site_settings.py:66 msgid "Base URL for your Q&A forum, must start with http or https" msgstr "" -#: conf/site_settings.py:82 -msgid "Link shown in the greeting message shown to the anonymous user" +#: conf/site_settings.py:77 +msgid "Check to enable greeting for anonymous user" msgstr "" -#: conf/site_settings.py:85 -msgid "" -"If you change this url from the default - then you will also probably want " -"to adjust translation of the following string: " +#: conf/site_settings.py:88 +msgid "Text shown in the greeting message shown to the anonymous user" +msgstr "" + +#: conf/site_settings.py:92 +msgid "Use HTML to format the message " msgstr "" -#: conf/site_settings.py:98 +#: conf/site_settings.py:101 msgid "Feedback site URL" msgstr "" -#: conf/site_settings.py:100 +#: conf/site_settings.py:103 msgid "If left empty, a simple internal feedback form will be used instead" msgstr "" @@ -906,23 +1526,33 @@ msgstr "" msgid "Foreground color for accepted answer" msgstr "" -#: conf/skin_general_settings.py:15 +#: conf/skin_general_settings.py:14 msgid "Skin and User Interface settings" msgstr "" -#: conf/skin_general_settings.py:22 +#: conf/skin_general_settings.py:21 msgid "Q&A site logo" msgstr "" -#: conf/skin_general_settings.py:24 +#: conf/skin_general_settings.py:23 msgid "To change the logo, select new file, then submit this whole form." msgstr "" -#: conf/skin_general_settings.py:38 +#: conf/skin_general_settings.py:37 +msgid "Show logo" +msgstr "" + +#: 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 msgid "Site favicon" msgstr "" -#: conf/skin_general_settings.py:40 +#: conf/skin_general_settings.py:53 #, python-format msgid "" "A small 16x16 or 32x32 pixel icon image used to distinguish your site in the " @@ -930,65 +1560,230 @@ msgid "" "href=\"%(favicon_info_url)s\">this page." msgstr "" -#: conf/skin_general_settings.py:56 +#: conf/skin_general_settings.py:71 msgid "Password login button" msgstr "" -#: conf/skin_general_settings.py:58 +#: conf/skin_general_settings.py:73 msgid "" "An 88x38 pixel image that is used on the login screen for the password login " "button." msgstr "" -#: conf/skin_general_settings.py:73 +#: conf/skin_general_settings.py:88 msgid "Show all UI functions to all users" msgstr "" -#: conf/skin_general_settings.py:75 +#: conf/skin_general_settings.py:90 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:90 +#: conf/skin_general_settings.py:105 msgid "Select skin" msgstr "" -#: conf/skin_general_settings.py:99 -msgid "Skin media revision number" +#: conf/skin_general_settings.py:116 +msgid "Customize HTML " +msgstr "" + +#: conf/skin_general_settings.py:125 +msgid "Custom portion of the HTML " msgstr "" -#: conf/skin_general_settings.py:101 +#: conf/skin_general_settings.py:127 msgid "" -"Increment this number when you change image in skin media or stylesheet. " -"This helps avoid showing your users outdated images from their browser cache." +"To use this option, check \"Customize HTML <HEAD>\" " +"above. Contents of this box will be inserted into the <HEAD> portion " +"of the HTML output, where elements such as <script>, <link>, <" +"meta> may be added. Please, keep in mind that adding external javascript " +"to the <HEAD> 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. Note: if you do use this setting, " +"please test the site with the W3C HTML validator service." msgstr "" -#: conf/social_sharing.py:10 -msgid "Sharing content on social networks" +#: conf/skin_general_settings.py:149 +msgid "Custom header additions" msgstr "" -#: conf/social_sharing.py:18 -msgid "Check to enable sharing of questions on Twitter and Facebook" +#: conf/skin_general_settings.py:151 +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 " +"headerin the HTML format. When customizing the site header (as well as " +"footer and the HTML <HEAD>), use the HTML validation service to make " +"sure that your input is valid and works well in all browsers." msgstr "" -#: conf/user_settings.py:10 -#, fuzzy -msgid "User policy settings" +#: conf/skin_general_settings.py:166 +msgid "Site footer mode" msgstr "" -"Forum software relies on the internet cookie technology to keep track of " -"user sessions. Cookies must be enabled in your browser so that forum can " -"work for you." -#: conf/user_settings.py:18 -msgid "Allow editing user screen name" +#: conf/skin_general_settings.py:168 +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/user_settings.py:28 +#: conf/skin_general_settings.py:185 +msgid "Custom footer (HTML format)" +msgstr "" + +#: conf/skin_general_settings.py:187 +msgid "" +"To enable this function, please select option 'customize' " +"in the \"Site footer mode\" above. Use this area to enter contents of the " +"footer in the HTML format. When customizing the site footer (as well as the " +"header and HTML <HEAD>), use the HTML validation service to make sure " +"that your input is valid and works well in all browsers." +msgstr "" + +#: conf/skin_general_settings.py:202 +msgid "Apply custom style sheet (CSS)" +msgstr "" + +#: conf/skin_general_settings.py:204 +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:216 +msgid "Custom style sheet (CSS)" +msgstr "" + +#: conf/skin_general_settings.py:218 +msgid "" +"To use this function, 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 \"<forum url>/custom.css\", where the \"<forum url> part " +"depends (default is empty string) on the url configuration in your urls.py." +msgstr "" + +#: conf/skin_general_settings.py:234 +msgid "Add custom javascript" +msgstr "" + +#: conf/skin_general_settings.py:237 +msgid "Check to enable javascript that you can enter in the next field" +msgstr "" + +#: conf/skin_general_settings.py:247 +msgid "Custom javascript" +msgstr "" + +#: conf/skin_general_settings.py:249 +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 \"<forum url>/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 (to " +"enable your custom code, check \"Add custom javascript\" option " +"above)." +msgstr "" + +#: conf/skin_general_settings.py:267 +msgid "Skin media revision number" +msgstr "" + +#: conf/skin_general_settings.py:269 +msgid "Will be set automatically but you can modify it if necessary." +msgstr "" + +#: conf/skin_general_settings.py:280 +msgid "Hash to update the media revision number automatically." +msgstr "" + +#: conf/skin_general_settings.py:284 +msgid "Will be set automatically, it is not necesary to modify manually." +msgstr "" + +#: conf/social_sharing.py:10 +msgid "Sharing content on social networks" +msgstr "" + +#: conf/social_sharing.py:18 +msgid "Check to enable sharing of questions on Twitter" +msgstr "" + +#: conf/social_sharing.py:27 +msgid "Check to enable sharing of questions on Facebook" +msgstr "" + +#: conf/social_sharing.py:36 +msgid "Check to enable sharing of questions on LinkedIn" +msgstr "" + +#: conf/social_sharing.py:45 +msgid "Check to enable sharing of questions on Identi.ca" +msgstr "" + +#: conf/social_sharing.py:54 +msgid "Check to enable sharing of questions on Google+" +msgstr "" + +#: conf/spam_and_moderation.py:9 +msgid "Spam control and content moderation" +msgstr "" + +#: conf/spam_and_moderation.py:16 +msgid "Enable Akismet spam detection(keys below are required)" +msgstr "" + +#: conf/spam_and_moderation.py:19 +#, python-format +msgid "To get an Akismet key please visit Akismet site" +msgstr "" + +#: conf/spam_and_moderation.py:29 +msgid "Akismet key for spam detection" +msgstr "" + +#: conf/user_settings.py:11 +#, fuzzy +msgid "User settings" +msgstr "" +"Forum software relies on the internet cookie technology to keep track of " +"user sessions. Cookies must be enabled in your browser so that forum can " +"work for you." + +#: conf/user_settings.py:19 +msgid "Allow editing user screen name" +msgstr "" + +#: conf/user_settings.py:28 +#, fuzzy +msgid "Allow account recovery by email" +msgstr "Your email (never shared)" + +#: conf/user_settings.py:37 +msgid "Allow adding and removing login methods" +msgstr "" + +#: conf/user_settings.py:47 msgid "Minimum allowed length for screen name" msgstr "" +#: conf/user_settings.py:57 +msgid "Default Gravatar icon type" +msgstr "" + +#: conf/user_settings.py:59 +msgid "" +"This option allows you to set the default avatar type for email addresses " +"without associated gravatar images. For more information, please visit this page." +msgstr "" + +#: conf/user_settings.py:69 +msgid "Name for the Anonymous user" +msgstr "" + #: conf/vote_rules.py:13 msgid "Limits applicable to votes and moderation flags" msgstr "" @@ -1010,292 +1805,429 @@ msgid "Number of days to allow canceling votes" msgstr "" #: conf/vote_rules.py:58 -msgid "Number of flags required to automatically hide posts" +msgid "Number of days required before answering own question" msgstr "" #: conf/vote_rules.py:67 +msgid "Number of flags required to automatically hide posts" +msgstr "" + +#: conf/vote_rules.py:76 msgid "Number of flags required to automatically delete posts" msgstr "" -#: const/__init__.py:9 +#: const/__init__.py:10 msgid "duplicate question" msgstr "" -#: const/__init__.py:10 +#: const/__init__.py:11 msgid "question is off-topic or not relevant" msgstr "" -#: const/__init__.py:11 +#: const/__init__.py:12 msgid "too subjective and argumentative" msgstr "" -#: const/__init__.py:12 +#: const/__init__.py:13 msgid "not a real question" msgstr "" -#: const/__init__.py:13 +#: const/__init__.py:14 msgid "the question is answered, right answer was accepted" msgstr "" -#: const/__init__.py:14 +#: const/__init__.py:15 msgid "question is not relevant or outdated" msgstr "" -#: const/__init__.py:15 +#: const/__init__.py:16 msgid "question contains offensive or malicious remarks" msgstr "" -#: const/__init__.py:16 +#: const/__init__.py:17 msgid "spam or advertising" msgstr "" -#: const/__init__.py:17 +#: const/__init__.py:18 msgid "too localized" msgstr "" -#: const/__init__.py:40 +#: const/__init__.py:41 msgid "newest" msgstr "" -#: const/__init__.py:41 skins/default/templates/users.html:25 -#: skins/default/templates/users.html:26 +#: const/__init__.py:42 skins/default/templates/users.html:26 msgid "oldest" msgstr "" -#: const/__init__.py:42 +#: const/__init__.py:43 msgid "active" msgstr "" -#: const/__init__.py:43 +#: const/__init__.py:44 msgid "inactive" msgstr "" -#: const/__init__.py:44 +#: const/__init__.py:45 msgid "hottest" msgstr "" -#: const/__init__.py:45 +#: const/__init__.py:46 msgid "coldest" msgstr "" -#: const/__init__.py:46 +#: const/__init__.py:47 msgid "most voted" msgstr "" -#: const/__init__.py:47 +#: const/__init__.py:48 msgid "least voted" msgstr "" -#: const/__init__.py:48 +#: const/__init__.py:49 msgid "relevance" msgstr "" -#: const/__init__.py:55 skins/default/templates/questions.html:14 -#: skins/default/templates/user_inbox.html:47 +#: const/__init__.py:57 skins/default/templates/main_page/tab_bar.html:10 +#: skins/default/templates/user_profile/user_inbox.html:50 msgid "all" msgstr "" -#: const/__init__.py:56 skins/default/templates/questions.html:19 +#: const/__init__.py:58 skins/default/templates/main_page/tab_bar.html:15 msgid "unanswered" msgstr "" -#: const/__init__.py:57 skins/default/templates/questions.html:25 +#: const/__init__.py:59 msgid "favorite" msgstr "" -#: const/__init__.py:70 +#: const/__init__.py:64 +msgid "list" +msgstr "" + +#: const/__init__.py:65 +msgid "cloud" +msgstr "" + +#: const/__init__.py:78 #, fuzzy msgid "Question has no answers" msgstr "answered question" -#: const/__init__.py:71 +#: const/__init__.py:79 msgid "Question has no accepted answers" msgstr "" -#: const/__init__.py:110 +#: const/__init__.py:121 #, fuzzy msgid "asked a question" msgstr "Ask Your Question" -#: const/__init__.py:111 +#: const/__init__.py:122 #, fuzzy msgid "answered a question" msgstr "unanswered" -#: const/__init__.py:112 +#: const/__init__.py:123 msgid "commented question" msgstr "" -#: const/__init__.py:113 +#: const/__init__.py:124 msgid "commented answer" msgstr "" -#: const/__init__.py:114 +#: const/__init__.py:125 msgid "edited question" msgstr "" -#: const/__init__.py:115 +#: const/__init__.py:126 msgid "edited answer" msgstr "" -#: const/__init__.py:116 +#: const/__init__.py:127 msgid "received award" msgstr "received badge" -#: const/__init__.py:117 +#: const/__init__.py:128 msgid "marked best answer" msgstr "" -#: const/__init__.py:118 +#: const/__init__.py:129 msgid "upvoted" msgstr "" -#: const/__init__.py:119 +#: const/__init__.py:130 msgid "downvoted" msgstr "" -#: const/__init__.py:120 +#: const/__init__.py:131 msgid "canceled vote" msgstr "" -#: const/__init__.py:121 +#: const/__init__.py:132 msgid "deleted question" msgstr "" -#: const/__init__.py:122 +#: const/__init__.py:133 msgid "deleted answer" msgstr "" -#: const/__init__.py:123 +#: const/__init__.py:134 msgid "marked offensive" msgstr "" -#: const/__init__.py:124 +#: const/__init__.py:135 msgid "updated tags" msgstr "" -#: const/__init__.py:125 +#: const/__init__.py:136 msgid "selected favorite" msgstr "" -#: const/__init__.py:126 +#: const/__init__.py:137 msgid "completed user profile" msgstr "" -#: const/__init__.py:127 +#: const/__init__.py:138 msgid "email update sent to user" msgstr "" -#: const/__init__.py:128 +#: const/__init__.py:141 +#, fuzzy +msgid "reminder about unanswered questions sent" +msgstr "unanswered questions" + +#: const/__init__.py:143 msgid "mentioned in the post" msgstr "" -#: const/__init__.py:179 +#: const/__init__.py:194 msgid "question_answered" msgstr "answered question" -#: const/__init__.py:180 +#: const/__init__.py:195 msgid "question_commented" msgstr "commented question" -#: const/__init__.py:181 +#: const/__init__.py:196 msgid "answer_commented" msgstr "" -#: const/__init__.py:182 +#: const/__init__.py:197 msgid "answer_accepted" msgstr "" -#: const/__init__.py:186 +#: const/__init__.py:201 msgid "[closed]" msgstr "" -#: const/__init__.py:187 +#: const/__init__.py:202 msgid "[deleted]" msgstr "" -#: const/__init__.py:188 views/readers.py:546 +#: const/__init__.py:203 views/readers.py:614 msgid "initial version" msgstr "" -#: const/__init__.py:189 +#: const/__init__.py:204 msgid "retagged" msgstr "" -#: const/__init__.py:194 -msgid "exclude ignored tags" +#: const/__init__.py:212 +msgid "off" msgstr "" -#: const/__init__.py:195 -msgid "allow only selected tags" +#: const/__init__.py:213 +msgid "exclude ignored" msgstr "" -#: const/__init__.py:199 +#: const/__init__.py:214 +msgid "only selected" +msgstr "" + +#: const/__init__.py:218 msgid "instantly" msgstr "" -#: const/__init__.py:200 +#: const/__init__.py:219 msgid "daily" msgstr "" -#: const/__init__.py:201 +#: const/__init__.py:220 msgid "weekly" msgstr "" -#: const/__init__.py:202 +#: const/__init__.py:221 msgid "no email" msgstr "" +#: const/__init__.py:228 +msgid "identicon" +msgstr "" + +#: const/__init__.py:229 +msgid "mystery-man" +msgstr "" + +#: const/__init__.py:230 +msgid "monsterid" +msgstr "" + +#: const/__init__.py:231 +#, fuzzy +msgid "wavatar" +msgstr "How to change my picture (gravatar) and what is gravatar?" + +#: const/__init__.py:232 +msgid "retro" +msgstr "" + +#: const/__init__.py:279 skins/default/templates/badges.html:37 +msgid "gold" +msgstr "" + +#: const/__init__.py:280 skins/default/templates/badges.html:46 +msgid "silver" +msgstr "" + +#: const/__init__.py:281 skins/default/templates/badges.html:53 +msgid "bronze" +msgstr "" + +#: const/__init__.py:293 +msgid "None" +msgstr "" + +#: const/__init__.py:294 +msgid "Gravatar" +msgstr "" + +#: const/__init__.py:295 +msgid "Uploaded Avatar" +msgstr "" + +#: const/message_keys.py:15 +#, fuzzy +msgid "most relevant questions" +msgstr "ask a question interesting to this community" + +#: const/message_keys.py:16 +#, fuzzy +msgid "click to see most relevant questions" +msgstr "questions with most answers" + +#: const/message_keys.py:17 +msgid "by relevance" +msgstr "" + +#: const/message_keys.py:18 +#, fuzzy +msgid "click to see the oldest questions" +msgstr "questions with fewest answers" + #: const/message_keys.py:19 -#, python-format -msgid "First time here? Check out the FAQ!" +msgid "by date" +msgstr "" + +#: const/message_keys.py:20 +#, fuzzy +msgid "click to see the newest questions" +msgstr "questions with most answers" + +#: const/message_keys.py:21 +#, fuzzy +msgid "click to see the least recently updated questions" +msgstr "least voted questions" + +#: const/message_keys.py:22 +msgid "by activity" +msgstr "" + +#: const/message_keys.py:23 +#, fuzzy +msgid "click to see the most recently updated questions" +msgstr "least voted questions" + +#: const/message_keys.py:24 +#, fuzzy +msgid "click to see the least answered questions" +msgstr "least voted questions" + +#: const/message_keys.py:25 +#, fuzzy +msgid "by answers" +msgstr "oldest" + +#: const/message_keys.py:26 +#, fuzzy +msgid "click to see the most answered questions" +msgstr "least voted questions" + +#: const/message_keys.py:27 +msgid "click to see least voted questions" +msgstr "least voted questions" + +#: const/message_keys.py:28 +#, fuzzy +msgid "by votes" +msgstr "votes" + +#: const/message_keys.py:29 +#, fuzzy +msgid "click to see most voted questions" +msgstr "least voted questions" + +#: deps/django_authopenid/backends.py:88 +msgid "" +"Welcome! Please set email address (important!) in your profile and adjust " +"screen name, if necessary." msgstr "" -#: deps/django_authopenid/forms.py:116 deps/django_authopenid/views.py:137 +#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:151 #, fuzzy msgid "i-names are not supported" msgstr "i-names không được hỗ trợ" -#: deps/django_authopenid/forms.py:237 +#: deps/django_authopenid/forms.py:233 #, fuzzy, python-format msgid "Please enter your %(username_token)s" msgstr "Vui lòng nhập tên và mật khẩu" -#: deps/django_authopenid/forms.py:263 +#: deps/django_authopenid/forms.py:259 #, fuzzy msgid "Please, enter your user name" msgstr "Vui lòng nhập tên và mật khẩu" -#: deps/django_authopenid/forms.py:267 +#: deps/django_authopenid/forms.py:263 #, fuzzy msgid "Please, enter your password" msgstr "Vui lòng nhập tên và mật khẩu" -#: deps/django_authopenid/forms.py:274 deps/django_authopenid/forms.py:278 +#: deps/django_authopenid/forms.py:270 deps/django_authopenid/forms.py:274 #, fuzzy msgid "Please, enter your new password" msgstr "Vui lòng nhập tên và mật khẩu" -#: deps/django_authopenid/forms.py:289 +#: deps/django_authopenid/forms.py:285 msgid "Passwords did not match" msgstr "" -#: deps/django_authopenid/forms.py:301 +#: deps/django_authopenid/forms.py:297 #, python-format msgid "Please choose password > %(len)s characters" msgstr "" -#: deps/django_authopenid/forms.py:336 +#: deps/django_authopenid/forms.py:335 msgid "Current password" msgstr "" -#: deps/django_authopenid/forms.py:347 +#: deps/django_authopenid/forms.py:346 msgid "" "Old password is incorrect. Please enter the correct " "password." msgstr "" -#: deps/django_authopenid/forms.py:400 +#: deps/django_authopenid/forms.py:399 msgid "Sorry, we don't have this email address in the database" msgstr "" @@ -1307,204 +2239,205 @@ msgstr "" msgid "Incorrect username." msgstr "sorry, there is no such user name" -#: deps/django_authopenid/urls.py:10 deps/django_authopenid/urls.py:11 -#: deps/django_authopenid/urls.py:12 deps/django_authopenid/urls.py:15 -#: deps/django_authopenid/urls.py:18 setup_templates/settings.py:182 +#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12 +#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:202 msgid "signin/" msgstr "" -#: deps/django_authopenid/urls.py:11 -msgid "newquestion/" -msgstr "" - -#: deps/django_authopenid/urls.py:12 -msgid "newanswer/" -msgstr "" - -#: deps/django_authopenid/urls.py:13 +#: deps/django_authopenid/urls.py:10 msgid "signout/" msgstr "" -#: deps/django_authopenid/urls.py:15 +#: deps/django_authopenid/urls.py:12 msgid "complete/" msgstr "" -#: deps/django_authopenid/urls.py:18 +#: deps/django_authopenid/urls.py:15 msgid "complete-oauth/" msgstr "" -#: deps/django_authopenid/urls.py:22 +#: deps/django_authopenid/urls.py:19 msgid "register/" msgstr "" -#: deps/django_authopenid/urls.py:24 +#: deps/django_authopenid/urls.py:21 msgid "signup/" msgstr "" -#: deps/django_authopenid/urls.py:32 +#: deps/django_authopenid/urls.py:25 +msgid "logout/" +msgstr "" + +#: deps/django_authopenid/urls.py:30 msgid "recover/" msgstr "" -#: deps/django_authopenid/util.py:200 -#: skins/default/templates/authopenid/signin.html:124 +#: deps/django_authopenid/util.py:378 +#, fuzzy, python-format +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/default/templates/authopenid/signin.html:108 msgid "Create a password-protected account" msgstr "" -#: deps/django_authopenid/util.py:201 +#: deps/django_authopenid/util.py:385 #, fuzzy msgid "Change your password" msgstr "Change your password" -#: deps/django_authopenid/util.py:263 +#: deps/django_authopenid/util.py:473 msgid "Sign in with Yahoo" msgstr "" -#: deps/django_authopenid/util.py:270 +#: deps/django_authopenid/util.py:480 #, fuzzy msgid "AOL screen name" msgstr "Screen Name (will be shown to others)" -#: deps/django_authopenid/util.py:278 +#: deps/django_authopenid/util.py:488 msgid "OpenID url" msgstr "" -#: deps/django_authopenid/util.py:295 -msgid "MyOpenid user name" -msgstr "" - -#: deps/django_authopenid/util.py:303 deps/django_authopenid/util.py:311 +#: deps/django_authopenid/util.py:517 #, fuzzy msgid "Flickr user name" msgstr "sorry, there is no such user name" -#: deps/django_authopenid/util.py:319 +#: deps/django_authopenid/util.py:525 #, fuzzy msgid "Technorati user name" msgstr "Choose screen name" -#: deps/django_authopenid/util.py:327 +#: deps/django_authopenid/util.py:533 msgid "WordPress blog name" msgstr "" -#: deps/django_authopenid/util.py:335 +#: deps/django_authopenid/util.py:541 msgid "Blogger blog name" msgstr "" -#: deps/django_authopenid/util.py:343 +#: deps/django_authopenid/util.py:549 msgid "LiveJournal blog name" msgstr "" -#: deps/django_authopenid/util.py:351 +#: deps/django_authopenid/util.py:557 msgid "ClaimID user name" msgstr "" -#: deps/django_authopenid/util.py:359 +#: deps/django_authopenid/util.py:565 #, fuzzy msgid "Vidoop user name" msgstr "Choose screen name" -#: deps/django_authopenid/util.py:367 +#: deps/django_authopenid/util.py:573 msgid "Verisign user name" msgstr "" -#: deps/django_authopenid/util.py:391 +#: deps/django_authopenid/util.py:608 #, python-format msgid "Change your %(provider)s password" msgstr "" -#: deps/django_authopenid/util.py:395 +#: deps/django_authopenid/util.py:612 #, python-format msgid "Click to see if your %(provider)s signin still works for %(site_name)s" msgstr "" -#: deps/django_authopenid/util.py:404 +#: deps/django_authopenid/util.py:621 #, python-format msgid "Create password for %(provider)s" msgstr "" -#: deps/django_authopenid/util.py:408 +#: deps/django_authopenid/util.py:625 #, fuzzy, python-format msgid "Connect your %(provider)s account to %(site_name)s" msgstr "New user signup" -#: deps/django_authopenid/util.py:417 +#: deps/django_authopenid/util.py:634 #, fuzzy, python-format msgid "Signin with %(provider)s user name and password" msgstr "Vui lòng nhập tên và mật khẩu" -#: deps/django_authopenid/util.py:424 +#: deps/django_authopenid/util.py:641 #, python-format msgid "Sign in with your %(provider)s account" msgstr "" -#: deps/django_authopenid/views.py:144 +#: deps/django_authopenid/views.py:158 #, python-format msgid "OpenID %(openid_url)s is invalid" msgstr "" -#: deps/django_authopenid/views.py:256 deps/django_authopenid/views.py:399 -#: deps/django_authopenid/views.py:427 +#: deps/django_authopenid/views.py:270 deps/django_authopenid/views.py:415 +#: deps/django_authopenid/views.py:443 #, 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:349 +#: deps/django_authopenid/views.py:365 #, fuzzy msgid "Your new password saved" msgstr "New password created" -#: deps/django_authopenid/views.py:511 +#: deps/django_authopenid/views.py:469 +msgid "The login password combination was not correct" +msgstr "" + +#: deps/django_authopenid/views.py:573 msgid "Please click any of the icons below to sign in" msgstr "" -#: deps/django_authopenid/views.py:513 +#: deps/django_authopenid/views.py:575 msgid "Account recovery email sent" msgstr "" -#: deps/django_authopenid/views.py:516 +#: deps/django_authopenid/views.py:578 msgid "Please add one or more login methods." msgstr "" -#: deps/django_authopenid/views.py:518 +#: deps/django_authopenid/views.py:580 msgid "If you wish, please add, remove or re-validate your login methods" msgstr "" -#: deps/django_authopenid/views.py:520 +#: deps/django_authopenid/views.py:582 msgid "Please wait a second! Your account is recovered, but ..." msgstr "" -#: deps/django_authopenid/views.py:522 +#: deps/django_authopenid/views.py:584 msgid "Sorry, this account recovery key has expired or is invalid" msgstr "" -#: deps/django_authopenid/views.py:578 +#: deps/django_authopenid/views.py:657 #, python-format msgid "Login method %(provider_name)s does not exist" msgstr "" -#: deps/django_authopenid/views.py:584 +#: deps/django_authopenid/views.py:663 msgid "Oops, sorry - there was some error - please try again" msgstr "" -#: deps/django_authopenid/views.py:675 +#: deps/django_authopenid/views.py:754 #, python-format msgid "Your %(provider)s login works fine" msgstr "" -#: deps/django_authopenid/views.py:973 deps/django_authopenid/views.py:979 +#: deps/django_authopenid/views.py:1065 deps/django_authopenid/views.py:1071 #, python-format msgid "your email needs to be validated see %(details_url)s" msgstr "" "Your email needs to be validated. Please see details here." -#: deps/django_authopenid/views.py:1000 -msgid "Email verification subject line" -msgstr "Verification Email from Q&A forum" +#: deps/django_authopenid/views.py:1092 +#, python-format +msgid "Recover your %(site)s account" +msgstr "" -#: deps/django_authopenid/views.py:1065 +#: deps/django_authopenid/views.py:1162 msgid "Please check your email and visit the enclosed link." msgstr "" @@ -1512,24 +2445,24 @@ msgstr "" msgid "Site" msgstr "" -#: deps/livesettings/values.py:107 +#: deps/livesettings/values.py:106 msgid "Base Settings" msgstr "" -#: deps/livesettings/values.py:214 +#: deps/livesettings/values.py:213 msgid "Default value: \"\"" msgstr "" -#: deps/livesettings/values.py:221 +#: deps/livesettings/values.py:220 msgid "Default value: " msgstr "" -#: deps/livesettings/values.py:224 +#: deps/livesettings/values.py:223 #, python-format msgid "Default value: %s" msgstr "" -#: deps/livesettings/values.py:589 +#: deps/livesettings/values.py:601 #, python-format msgid "Allowed image file types are %(types)s" msgstr "" @@ -1546,7 +2479,7 @@ msgstr "karma" #: deps/livesettings/templates/livesettings/group_settings.html:11 #: deps/livesettings/templates/livesettings/site_settings.html:23 -#: skins/default/templates/authopenid/signin.html:142 +#: skins/default/templates/authopenid/signin.html:132 msgid "Change password" msgstr "" @@ -1606,58 +2539,57 @@ msgstr "" msgid "Uncollapse all" msgstr "" -#: deps/recaptcha_django/__init__.py:19 deps/recaptcha_django/__init__.py:80 -msgid "Unknown error." -msgstr "" - -#: deps/recaptcha_django/__init__.py:20 deps/recaptcha_django/__init__.py:21 -msgid "ReCAPTCHA is wrongly configured." -msgstr "" - -#: deps/recaptcha_django/__init__.py:22 -msgid "Bad reCAPTCHA challenge parameter." -msgstr "" - -#: deps/recaptcha_django/__init__.py:23 -msgid "The CAPTCHA solution was incorrect." -msgstr "" - -#: deps/recaptcha_django/__init__.py:24 -msgid "Bad reCAPTCHA verification parameters." -msgstr "" - -#: deps/recaptcha_django/__init__.py:25 -msgid "Provided reCAPTCHA API keys are not valid for this domain." +#: importers/stackexchange/management/commands/load_stackexchange.py:141 +msgid "Congratulations, you are now an Administrator" msgstr "" -#: deps/recaptcha_django/__init__.py:26 -msgid "ReCAPTCHA could not be reached." +#: 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 "" -#: deps/recaptcha_django/__init__.py:73 -msgid "Invalid request" +#: management/commands/post_emailed_questions.py:35 +msgid "" +"

        To ask by email, please:

        \n" +"
          \n" +"
        • Format the subject line as: [Tag1; Tag2] Question title
        • \n" +"
        • Type details of your question into the email body
        • \n" +"
        \n" +"

        Note that tags may consist of more than one word, and tags\n" +"may be separated by a semicolon or a comma

        \n" msgstr "" -#: importers/stackexchange/management/commands/load_stackexchange.py:125 -msgid "Congratulations, you are now an Administrator" +#: management/commands/post_emailed_questions.py:55 +#, python-format +msgid "" +"

        Sorry, there was an error posting your question please contact the " +"%(site)s administrator

        " msgstr "" -#: management/commands/send_email_alerts.py:104 +#: management/commands/post_emailed_questions.py:61 #, python-format -msgid "\" and \"%s\"" +msgid "" +"

        Sorry, in order to post questions on %(site)s by email, please register first

        " msgstr "" -#: management/commands/send_email_alerts.py:107 -msgid "\" and more" +#: management/commands/post_emailed_questions.py:69 +msgid "" +"

        Sorry, your question could not be posted due to insufficient privileges " +"of your user account

        " msgstr "" -#: management/commands/send_email_alerts.py:112 +#: management/commands/send_email_alerts.py:411 #, 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:466 +#: 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" @@ -1668,42 +2600,42 @@ msgstr[1] "" "

        Dear %(name)s,

        The following %(num)d questions have been updated on " "the Q&A forum:

        " -#: management/commands/send_email_alerts.py:483 +#: management/commands/send_email_alerts.py:438 msgid "new question" msgstr "" -#: management/commands/send_email_alerts.py:500 +#: 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:512 +#: 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:518 +#: 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:524 +#: 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:529 +#: management/commands/send_email_alerts.py:490 #, fuzzy, python-format msgid "" -"go to %(email_settings_link)s to change frequency of email updates or %" -"(admin_email)s administrator" +"go to %(email_settings_link)s to change frequency of email updates or " +"%(admin_email)s administrator" msgstr "" "

        Please remember that you can always adjust " "frequency of the email updates or turn them off entirely.
        If you believe " @@ -1711,960 +2643,891 @@ msgstr "" "administrator at %(email)s.

        Sincerely,

        Your friendly Q&A forum " "server.

        " -#: migrations/0005_install_badges.py:11 -msgid "Disciplined" -msgstr "" +#: management/commands/send_unanswered_question_reminders.py:80 +#, python-format +msgid "%(question_count)d unanswered question about %(topics)s" +msgid_plural "%(question_count)d unanswered questions about %(topics)s" +msgstr[0] "" -#: migrations/0005_install_badges.py:11 -msgid "disciplined" +#: models/__init__.py:316 +msgid "" +"Sorry, you cannot accept or unaccept best answers because your account is " +"blocked" msgstr "" -#: migrations/0005_install_badges.py:11 -msgid "Deleted own post with score of 3 or higher" +#: models/__init__.py:320 +msgid "" +"Sorry, you cannot accept or unaccept best answers because your account is " +"suspended" msgstr "" -#: migrations/0005_install_badges.py:12 -msgid "Peer Pressure" +#: models/__init__.py:333 +#, python-format +msgid "" +">%(points)s points required to accept or unaccept your own answer to your " +"own question" msgstr "" -#: migrations/0005_install_badges.py:12 -msgid "peer-pressure" +#: models/__init__.py:347 +#, python-format +msgid "" +"Sorry, only original author of the question - %(username)s - can accept or " +"unaccept the best answer" msgstr "" -#: migrations/0005_install_badges.py:12 -msgid "Deleted own post with score of -3 or lower" +#: models/__init__.py:375 +msgid "cannot vote for own posts" msgstr "" -#: migrations/0005_install_badges.py:13 -msgid "Nice answer" +#: models/__init__.py:378 +msgid "Sorry your account appears to be blocked " msgstr "" -#: migrations/0005_install_badges.py:13 -msgid "nice-answer" +#: models/__init__.py:383 +msgid "Sorry your account appears to be suspended " msgstr "" -#: migrations/0005_install_badges.py:13 -msgid "Answer voted up 10 times" +#: models/__init__.py:393 +#, python-format +msgid ">%(points)s points required to upvote" msgstr "" -#: migrations/0005_install_badges.py:14 -msgid "Nice Question" +#: models/__init__.py:399 +#, python-format +msgid ">%(points)s points required to downvote" msgstr "" -#: migrations/0005_install_badges.py:14 -msgid "nice-question" +#: models/__init__.py:414 +#, fuzzy +msgid "Sorry, blocked users cannot upload files" 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." -#: migrations/0005_install_badges.py:14 -msgid "Question voted up 10 times" +#: models/__init__.py:415 +#, fuzzy +msgid "Sorry, suspended users cannot upload files" 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." -#: migrations/0005_install_badges.py:15 -msgid "Pundit" -msgstr "" +#: models/__init__.py:417 +#, python-format +msgid "" +"uploading images is limited to users with >%(min_rep)s reputation points" +msgstr "sorry, file uploading requires karma >%(min_rep)s" -#: migrations/0005_install_badges.py:15 -msgid "pundit" +#: models/__init__.py:436 models/__init__.py:503 models/__init__.py:918 +#, 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." -#: migrations/0005_install_badges.py:15 -msgid "Left 10 comments with score of 10 or more" +#: models/__init__.py:437 models/__init__.py:921 +#, 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." -#: migrations/0005_install_badges.py:16 -msgid "Popular Question" -msgstr "" +#: models/__init__.py:464 +#, python-format +msgid "" +"Sorry, comments (except the last one) are editable only within %(minutes)s " +"minute from posting" +msgid_plural "" +"Sorry, comments (except the last one) are editable only within %(minutes)s " +"minutes from posting" +msgstr[0] "" -#: migrations/0005_install_badges.py:16 -msgid "popular-question" +#: models/__init__.py:476 +msgid "Sorry, but only post owners or moderators can edit comments" msgstr "" -#: migrations/0005_install_badges.py:16 -msgid "Asked a question with 1,000 views" +#: models/__init__.py:489 +msgid "" +"Sorry, since your account is suspended you can comment only your own posts" msgstr "" -#: migrations/0005_install_badges.py:17 -msgid "Citizen patrol" +#: models/__init__.py:493 +#, 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 "" -#: migrations/0005_install_badges.py:17 -msgid "citizen-patrol" +#: models/__init__.py:521 +msgid "" +"This post has been deleted and can be seen only by post owners, site " +"administrators and moderators" msgstr "" -#: migrations/0005_install_badges.py:17 -msgid "First flagged post" +#: models/__init__.py:538 +msgid "" +"Sorry, only moderators, site administrators and post owners can edit deleted " +"posts" msgstr "" -#: migrations/0005_install_badges.py:18 -msgid "Cleanup" +#: models/__init__.py:553 +msgid "Sorry, since your account is blocked you cannot edit posts" msgstr "" -#: migrations/0005_install_badges.py:18 -msgid "cleanup" +#: models/__init__.py:557 +msgid "Sorry, since your account is suspended you can edit only your own posts" msgstr "" -#: migrations/0005_install_badges.py:18 -msgid "First rollback" +#: models/__init__.py:562 +#, python-format +msgid "" +"Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required" msgstr "" -#: migrations/0005_install_badges.py:19 -msgid "Critic" +#: models/__init__.py:569 +#, python-format +msgid "" +"Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is " +"required" msgstr "" -#: migrations/0005_install_badges.py:19 -msgid "critic" -msgstr "" +#: models/__init__.py:632 +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] "" -#: migrations/0005_install_badges.py:19 -msgid "First down vote" +#: models/__init__.py:647 +msgid "Sorry, since your account is blocked you cannot delete posts" msgstr "" -#: migrations/0005_install_badges.py:20 -msgid "Editor" +#: models/__init__.py:651 +msgid "" +"Sorry, since your account is suspended you can delete only your own posts" msgstr "" -#: migrations/0005_install_badges.py:20 -msgid "editor" +#: models/__init__.py:655 +#, python-format +msgid "" +"Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s " +"is required" msgstr "" -#: migrations/0005_install_badges.py:20 -msgid "First edit" +#: models/__init__.py:675 +msgid "Sorry, since your account is blocked you cannot close questions" msgstr "" -#: migrations/0005_install_badges.py:21 -msgid "Organizer" +#: models/__init__.py:679 +msgid "Sorry, since your account is suspended you cannot close questions" msgstr "" -#: migrations/0005_install_badges.py:21 -msgid "organizer" +#: models/__init__.py:683 +#, python-format +msgid "" +"Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is " +"required" msgstr "" -#: migrations/0005_install_badges.py:21 -msgid "First retag" +#: models/__init__.py:692 +#, python-format +msgid "" +"Sorry, to close own question a minimum reputation of %(min_rep)s is required" msgstr "" -#: migrations/0005_install_badges.py:22 -msgid "Scholar" +#: models/__init__.py:716 +#, python-format +msgid "" +"Sorry, only administrators, moderators or post owners with reputation > " +"%(min_rep)s can reopen questions." msgstr "" -#: migrations/0005_install_badges.py:22 -msgid "scholar" +#: models/__init__.py:722 +#, python-format +msgid "" +"Sorry, to reopen own question a minimum reputation of %(min_rep)s is required" msgstr "" -#: migrations/0005_install_badges.py:22 -msgid "First accepted answer on your own question" +#: models/__init__.py:742 +msgid "cannot flag message as offensive twice" msgstr "" -#: migrations/0005_install_badges.py:23 -msgid "Student" +#: models/__init__.py:747 +#, 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." -#: migrations/0005_install_badges.py:23 -msgid "student" +#: models/__init__.py:749 +#, 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." -#: migrations/0005_install_badges.py:23 -msgid "Asked first question with at least one up vote" +#: models/__init__.py:751 +#, python-format +msgid "need > %(min_rep)s points to flag spam" msgstr "" -#: migrations/0005_install_badges.py:24 -msgid "Supporter" +#: models/__init__.py:770 +#, python-format +msgid "%(max_flags_per_day)s exceeded" msgstr "" -#: migrations/0005_install_badges.py:24 -msgid "supporter" +#: models/__init__.py:785 +msgid "" +"Sorry, only question owners, site administrators and moderators can retag " +"deleted questions" msgstr "" -#: migrations/0005_install_badges.py:24 -msgid "First up vote" +#: models/__init__.py:792 +msgid "Sorry, since your account is blocked you cannot retag questions" msgstr "" -#: migrations/0005_install_badges.py:25 -msgid "Teacher" +#: models/__init__.py:796 +msgid "" +"Sorry, since your account is suspended you can retag only your own questions" msgstr "" -#: migrations/0005_install_badges.py:25 -msgid "teacher" +#: models/__init__.py:800 +#, python-format +msgid "" +"Sorry, to retag questions a minimum reputation of %(min_rep)s is required" msgstr "" -#: migrations/0005_install_badges.py:25 -msgid "Answered first question with at least one up vote" +#: models/__init__.py:819 +msgid "Sorry, since your account is blocked you cannot delete comment" msgstr "" -#: migrations/0005_install_badges.py:26 -msgid "Autobiographer" +#: models/__init__.py:823 +msgid "" +"Sorry, since your account is suspended you can delete only your own comments" msgstr "" -#: migrations/0005_install_badges.py:26 -msgid "autobiographer" +#: models/__init__.py:827 +#, python-format +msgid "Sorry, to delete comments reputation of %(min_rep)s is required" msgstr "" -#: migrations/0005_install_badges.py:26 -msgid "Completed all user profile fields" +#: models/__init__.py:850 +msgid "cannot revoke old vote" msgstr "" -#: migrations/0005_install_badges.py:27 -msgid "Self-Learner" +#: models/__init__.py:1325 utils/functions.py:70 +#, python-format +msgid "on %(date)s" msgstr "" -#: migrations/0005_install_badges.py:27 -msgid "self-learner" +#: models/__init__.py:1327 +msgid "in two days" msgstr "" -#: migrations/0005_install_badges.py:27 -msgid "Answered your own question with at least 3 up votes" +#: models/__init__.py:1329 +msgid "tomorrow" msgstr "" -#: migrations/0005_install_badges.py:28 -msgid "Great Answer" +#: models/__init__.py:1331 +#, python-format +msgid "in %(hr)d hour" +msgid_plural "in %(hr)d hours" +msgstr[0] "" + +#: models/__init__.py:1333 +#, python-format +msgid "in %(min)d min" +msgid_plural "in %(min)d mins" +msgstr[0] "" + +#: models/__init__.py:1334 +#, python-format +msgid "%(days)d day" +msgid_plural "%(days)d days" +msgstr[0] "" + +#: models/__init__.py:1336 +#, python-format +msgid "" +"New users must wait %(days)s before answering their own question. You can " +"post an answer %(left)s" msgstr "" -#: migrations/0005_install_badges.py:28 -msgid "great-answer" +#: models/__init__.py:1501 skins/default/templates/feedback_email.txt:9 +msgid "Anonymous" msgstr "" -#: migrations/0005_install_badges.py:28 -msgid "Answer voted up 100 times" +#: models/__init__.py:1597 views/users.py:365 +#, fuzzy +msgid "Site Adminstrator" msgstr "" +"Sincerely,\n" +"Q&A Forum Administrator" -#: migrations/0005_install_badges.py:29 -msgid "Great Question" +#: models/__init__.py:1599 views/users.py:367 +msgid "Forum Moderator" msgstr "" -#: migrations/0005_install_badges.py:29 -msgid "great-question" +#: models/__init__.py:1601 views/users.py:369 +msgid "Suspended User" msgstr "" -#: migrations/0005_install_badges.py:29 -msgid "Question voted up 100 times" +#: models/__init__.py:1603 views/users.py:371 +msgid "Blocked User" msgstr "" -#: migrations/0005_install_badges.py:30 -msgid "Stellar Question" +#: models/__init__.py:1605 views/users.py:373 +msgid "Registered User" msgstr "" -#: migrations/0005_install_badges.py:30 -msgid "stellar-question" +#: models/__init__.py:1607 +msgid "Watched User" msgstr "" -#: migrations/0005_install_badges.py:30 -msgid "Question favorited by 100 users" +#: models/__init__.py:1609 +msgid "Approved User" msgstr "" -#: migrations/0005_install_badges.py:31 -msgid "Famous question" +#: models/__init__.py:1718 +#, python-format +msgid "%(username)s karma is %(reputation)s" msgstr "" -#: migrations/0005_install_badges.py:31 -msgid "famous-question" +#: models/__init__.py:1728 +#, python-format +msgid "one gold badge" +msgid_plural "%(count)d gold badges" +msgstr[0] "" + +#: models/__init__.py:1735 +#, fuzzy, python-format +msgid "one silver badge" +msgid_plural "%(count)d silver badges" +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:1742 +#, fuzzy, python-format +msgid "one bronze badge" +msgid_plural "%(count)d bronze badges" +msgstr[0] "" +"If you are an active participant in this community, you will be recognized " +"with this badge." + +#: models/__init__.py:1753 +#, python-format +msgid "%(item1)s and %(item2)s" msgstr "" -#: migrations/0005_install_badges.py:31 -msgid "Asked a question with 10,000 views" +#: models/__init__.py:1757 +#, python-format +msgid "%(user)s has %(badges)s" msgstr "" -#: migrations/0005_install_badges.py:32 -msgid "Alpha" +#: models/__init__.py:2164 models/__init__.py:2170 models/__init__.py:2175 +#: models/__init__.py:2180 +#, python-format +msgid "Re: \"%(title)s\"" msgstr "" -#: migrations/0005_install_badges.py:32 -msgid "alpha" +#: models/__init__.py:2185 models/__init__.py:2190 +#, fuzzy, python-format +msgid "Question: \"%(title)s\"" +msgstr "Tags" + +#: models/__init__.py:2371 +#, python-format +msgid "" +"Congratulations, you have received a badge '%(badge_name)s'. Check out your profile." msgstr "" -#: migrations/0005_install_badges.py:32 -msgid "Actively participated in the private alpha" +#: models/__init__.py:2550 views/commands.py:396 +msgid "Your tag subscription was saved, thanks!" msgstr "" -#: migrations/0005_install_badges.py:33 -msgid "Good Answer" +#: models/answer.py:105 +msgid "" +"Sorry, the answer you are looking for is no longer available, because the " +"parent question has been removed" msgstr "" -#: migrations/0005_install_badges.py:33 -msgid "good-answer" +#: models/answer.py:112 +msgid "Sorry, this answer has been removed and is no longer accessible" msgstr "" -#: migrations/0005_install_badges.py:33 -msgid "Answer voted up 25 times" +#: models/badges.py:129 +#, python-format +msgid "Deleted own post with %(votes)s or more upvotes" msgstr "" -#: migrations/0005_install_badges.py:34 -msgid "Good Question" +#: models/badges.py:133 +msgid "Disciplined" msgstr "" -#: migrations/0005_install_badges.py:34 -msgid "good-question" +#: models/badges.py:151 +#, python-format +msgid "Deleted own post with %(votes)s or more downvotes" msgstr "" -#: migrations/0005_install_badges.py:34 -msgid "Question voted up 25 times" +#: models/badges.py:155 +msgid "Peer Pressure" msgstr "" -#: migrations/0005_install_badges.py:35 -msgid "Favorite Question" +#: models/badges.py:174 +#, python-format +msgid "Received at least %(votes)s upvote for an answer for the first time" msgstr "" -#: migrations/0005_install_badges.py:35 -msgid "favorite-question" +#: models/badges.py:178 +msgid "Teacher" msgstr "" -#: migrations/0005_install_badges.py:35 -msgid "Question favorited by 25 users" +#: models/badges.py:218 +msgid "Supporter" msgstr "" -#: migrations/0005_install_badges.py:36 -msgid "Civic duty" +#: models/badges.py:219 +msgid "First upvote" msgstr "" -#: migrations/0005_install_badges.py:36 -msgid "civic-duty" +#: models/badges.py:227 +msgid "Critic" msgstr "" -#: migrations/0005_install_badges.py:36 -msgid "Voted 300 times" +#: models/badges.py:228 +msgid "First downvote" msgstr "" -#: migrations/0005_install_badges.py:37 -msgid "Strunk & White" +#: models/badges.py:237 +msgid "Civic Duty" msgstr "" -#: migrations/0005_install_badges.py:37 -msgid "strunk-and-white" +#: models/badges.py:238 +#, python-format +msgid "Voted %(num)s times" msgstr "" -#: migrations/0005_install_badges.py:37 -msgid "Edited 100 entries" +#: models/badges.py:252 +#, python-format +msgid "Answered own question with at least %(num)s up votes" msgstr "" -#: migrations/0005_install_badges.py:38 -msgid "Generalist" +#: models/badges.py:256 +msgid "Self-Learner" msgstr "" -#: migrations/0005_install_badges.py:38 -msgid "generalist" +#: models/badges.py:304 +msgid "Nice Answer" msgstr "" -#: migrations/0005_install_badges.py:38 -msgid "Active in many different tags" +#: models/badges.py:309 models/badges.py:321 models/badges.py:333 +#, python-format +msgid "Answer voted up %(num)s times" msgstr "" -#: migrations/0005_install_badges.py:39 -msgid "Expert" +#: models/badges.py:316 +msgid "Good Answer" msgstr "" -#: migrations/0005_install_badges.py:39 -msgid "expert" +#: models/badges.py:328 +msgid "Great Answer" msgstr "" -#: migrations/0005_install_badges.py:39 -msgid "Very active in one tag" +#: models/badges.py:340 +msgid "Nice Question" msgstr "" -#: migrations/0005_install_badges.py:40 -msgid "Yearling" +#: models/badges.py:345 models/badges.py:357 models/badges.py:369 +#, python-format +msgid "Question voted up %(num)s times" msgstr "" -#: migrations/0005_install_badges.py:40 -msgid "yearling" +#: models/badges.py:352 +msgid "Good Question" msgstr "" -#: migrations/0005_install_badges.py:40 -msgid "Active member for a year" +#: models/badges.py:364 +msgid "Great Question" msgstr "" -#: migrations/0005_install_badges.py:41 -msgid "Notable Question" +#: models/badges.py:376 +msgid "Student" msgstr "" -#: migrations/0005_install_badges.py:41 -msgid "notable-question" +#: models/badges.py:381 +msgid "Asked first question with at least one up vote" msgstr "" -#: migrations/0005_install_badges.py:41 -msgid "Asked a question with 2,500 views" +#: models/badges.py:414 +msgid "Popular Question" msgstr "" -#: migrations/0005_install_badges.py:42 -msgid "Enlightened" +#: models/badges.py:418 models/badges.py:429 models/badges.py:441 +#, python-format +msgid "Asked a question with %(views)s views" msgstr "" -#: migrations/0005_install_badges.py:42 -msgid "enlightened" +#: models/badges.py:425 +msgid "Notable Question" msgstr "" -#: migrations/0005_install_badges.py:42 -msgid "First answer was accepted with at least 10 up votes" +#: models/badges.py:436 +#, fuzzy +msgid "Famous Question" +msgstr "Ask Your Question" + +#: models/badges.py:450 +#, fuzzy +msgid "Asked a question and accepted an answer" msgstr "" +"You are welcome to answer your own question, " +"but please make sure to give an answer. Remember that you " +"can always revise your original question. Please " +"use comments for discussions and please don't " +"forget to vote :) for the answers that you liked (or perhaps did " +"not like)! " -#: migrations/0005_install_badges.py:43 -msgid "Beta" +#: models/badges.py:453 +msgid "Scholar" msgstr "" -#: migrations/0005_install_badges.py:43 -msgid "beta" +#: models/badges.py:495 +msgid "Enlightened" msgstr "" -#: migrations/0005_install_badges.py:43 -msgid "Actively participated in the private beta" +#: models/badges.py:499 +#, python-format +msgid "First answer was accepted with %(num)s or more votes" msgstr "" -#: migrations/0005_install_badges.py:44 +#: models/badges.py:507 msgid "Guru" msgstr "" -#: migrations/0005_install_badges.py:44 -msgid "guru" +#: models/badges.py:510 +#, python-format +msgid "Answer accepted with %(num)s or more votes" msgstr "" -#: migrations/0005_install_badges.py:44 -msgid "Accepted answer and voted up 40 times" +#: models/badges.py:518 +#, python-format +msgid "" +"Answered a question more than %(days)s days later with at least %(votes)s " +"votes" msgstr "" -#: migrations/0005_install_badges.py:45 +#: models/badges.py:525 msgid "Necromancer" msgstr "" -#: migrations/0005_install_badges.py:45 -msgid "necromancer" +#: models/badges.py:548 +msgid "Citizen Patrol" msgstr "" -#: migrations/0005_install_badges.py:45 -msgid "Answered a question more than 60 days later with at least 5 votes" +#: models/badges.py:551 +msgid "First flagged post" msgstr "" -#: migrations/0005_install_badges.py:46 -msgid "Taxonomist" -msgstr "" - -#: migrations/0005_install_badges.py:46 -msgid "taxonomist" -msgstr "" - -#: migrations/0005_install_badges.py:46 -msgid "Created a tag used by 50 questions" -msgstr "" - -#: models/__init__.py:168 -msgid "" -"Sorry, you cannot accept or unaccept best answers because your account is " -"blocked" -msgstr "" - -#: models/__init__.py:173 -msgid "" -"Sorry, you cannot accept or unaccept best answers because your account is " -"suspended" -msgstr "" - -#: models/__init__.py:179 -msgid "" -"Sorry, you cannot accept or unaccept your own answer to your own question" -msgstr "" - -#: models/__init__.py:186 -#, python-format -msgid "" -"Sorry, only original author of the question - %(username)s - can accept the " -"best answer" -msgstr "" - -#: models/__init__.py:209 -msgid "cannot vote for own posts" -msgstr "" - -#: models/__init__.py:212 -msgid "Sorry your account appears to be blocked " -msgstr "" - -#: models/__init__.py:217 -msgid "Sorry your account appears to be suspended " -msgstr "" - -#: models/__init__.py:227 -#, python-format -msgid ">%(points)s points required to upvote" +#: models/badges.py:563 +msgid "Cleanup" msgstr "" -#: models/__init__.py:233 -#, python-format -msgid ">%(points)s points required to downvote" +#: models/badges.py:566 +msgid "First rollback" msgstr "" -#: models/__init__.py:248 -#, fuzzy -msgid "Sorry, blocked users cannot upload files" +#: models/badges.py:577 +msgid "Pundit" 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:249 -#, fuzzy -msgid "Sorry, suspended users cannot upload files" +#: models/badges.py:580 +msgid "Left 10 comments with score of 10 or more" 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:251 -#, 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:270 models/__init__.py:303 models/__init__.py:1910 -#, fuzzy -msgid "blocked users cannot post" +#: models/badges.py:612 +msgid "Editor" 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:271 models/__init__.py:1913 -#, fuzzy -msgid "suspended users cannot post" +#: models/badges.py:615 +msgid "First edit" 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:289 -msgid "" -"Sorry, since your account is suspended you can comment only your own posts" +#: models/badges.py:623 +msgid "Associate Editor" msgstr "" -#: models/__init__.py:293 +#: models/badges.py:627 #, 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:321 -msgid "" -"This post has been deleted and can be seen only by post ownwers, site " -"administrators and moderators" -msgstr "" - -#: models/__init__.py:338 -msgid "" -"Sorry, only moderators, site administrators and post owners can edit deleted " -"posts" -msgstr "" - -#: models/__init__.py:353 -msgid "Sorry, since your account is blocked you cannot edit posts" -msgstr "" - -#: models/__init__.py:357 -msgid "Sorry, since your account is suspended you can edit only your own posts" +msgid "Edited %(num)s entries" msgstr "" -#: models/__init__.py:362 -#, python-format -msgid "" -"Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required" +#: models/badges.py:634 +msgid "Organizer" msgstr "" -#: models/__init__.py:369 -#, python-format -msgid "" -"Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is " -"required" +#: models/badges.py:637 +msgid "First retag" msgstr "" -#: models/__init__.py:432 -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] "" - -#: models/__init__.py:447 -msgid "Sorry, since your account is blocked you cannot delete posts" +#: models/badges.py:644 +msgid "Autobiographer" msgstr "" -#: models/__init__.py:451 -msgid "" -"Sorry, since your account is suspended you can delete only your own posts" +#: models/badges.py:647 +msgid "Completed all user profile fields" msgstr "" -#: models/__init__.py:455 +#: models/badges.py:663 #, python-format -msgid "" -"Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s " -"is required" -msgstr "" - -#: models/__init__.py:475 -msgid "Sorry, since your account is blocked you cannot close questions" +msgid "Question favorited by %(num)s users" msgstr "" -#: models/__init__.py:479 -msgid "Sorry, since your account is suspended you cannot close questions" -msgstr "" - -#: models/__init__.py:483 -#, python-format -msgid "" -"Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is " -"required" +#: models/badges.py:689 +msgid "Stellar Question" msgstr "" -#: models/__init__.py:492 -#, python-format -msgid "" -"Sorry, to close own question a minimum reputation of %(min_rep)s is required" +#: models/badges.py:698 +msgid "Favorite Question" msgstr "" -#: models/__init__.py:516 -#, python-format -msgid "" -"Sorry, only administrators, moderators or post owners with reputation > %" -"(min_rep)s can reopen questions." +#: models/badges.py:710 +msgid "Enthusiast" msgstr "" -#: models/__init__.py:522 +#: models/badges.py:714 #, python-format -msgid "" -"Sorry, to reopen own question a minimum reputation of %(min_rep)s is required" -msgstr "" - -#: models/__init__.py:542 -msgid "cannot flag message as offensive twice" -msgstr "" - -#: models/__init__.py:547 -#, fuzzy -msgid "blocked users cannot flag posts" +msgid "Visited site every day for %(num)s days in a row" 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:549 +#: models/badges.py:732 #, 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 "Commentator" +msgstr "karma" -#: models/__init__.py:551 +#: models/badges.py:736 #, python-format -msgid "need > %(min_rep)s points to flag spam" +msgid "Posted %(num_comments)s comments" msgstr "" -#: models/__init__.py:570 -#, python-format -msgid "%(max_flags_per_day)s exceeded" +#: models/badges.py:752 +msgid "Taxonomist" msgstr "" -#: models/__init__.py:585 -msgid "" -"Sorry, only question owners, site administrators and moderators can retag " -"deleted questions" +#: models/badges.py:756 +#, python-format +msgid "Created a tag used by %(num)s questions" msgstr "" -#: models/__init__.py:592 -msgid "Sorry, since your account is blocked you cannot retag questions" +#: models/badges.py:776 +msgid "Expert" msgstr "" -#: models/__init__.py:596 -msgid "" -"Sorry, since your account is suspended you can retag only your own questions" +#: models/badges.py:779 +msgid "Very active in one tag" msgstr "" -#: models/__init__.py:600 -#, python-format +#: models/meta.py:112 msgid "" -"Sorry, to retag questions a minimum reputation of %(min_rep)s is required" -msgstr "" - -#: models/__init__.py:619 -msgid "Sorry, since your account is blocked you cannot delete comment" +"Sorry, the comment you are looking for is no longer accessible, because the " +"parent question has been removed" msgstr "" -#: models/__init__.py:623 +#: models/meta.py:119 msgid "" -"Sorry, since your account is suspended you can delete only your own comments" -msgstr "" - -#: models/__init__.py:627 -#, python-format -msgid "Sorry, to delete comments reputation of %(min_rep)s is required" -msgstr "" - -#: models/__init__.py:650 -msgid "cannot revoke old vote" -msgstr "" - -#: models/__init__.py:1128 views/users.py:387 -#, fuzzy -msgid "Site Adminstrator" -msgstr "" -"Sincerely,\n" -"Q&A Forum Administrator" - -#: models/__init__.py:1130 views/users.py:389 -msgid "Forum Moderator" -msgstr "" - -#: models/__init__.py:1132 views/users.py:391 -msgid "Suspended User" -msgstr "" - -#: models/__init__.py:1134 views/users.py:393 -msgid "Blocked User" -msgstr "" - -#: models/__init__.py:1136 views/users.py:395 -msgid "Registered User" +"Sorry, the comment you are looking for is no longer accessible, because the " +"parent answer has been removed" msgstr "" -#: models/__init__.py:1138 -msgid "Watched User" -msgstr "" - -#: models/__init__.py:1140 -msgid "Approved User" -msgstr "" - -#: models/__init__.py:1196 -#, python-format -msgid "%(username)s karma is %(reputation)s" -msgstr "" - -#: models/__init__.py:1206 -#, python-format -msgid "one gold badge" -msgid_plural "%(count)d gold badges" -msgstr[0] "" - -#: models/__init__.py:1213 -#, fuzzy, python-format -msgid "one silver badge" -msgid_plural "%(count)d silver badges" -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:1220 -#, fuzzy, python-format -msgid "one bronze badge" -msgid_plural "%(count)d bronze badges" -msgstr[0] "" -"If you are an active participant in this community, you will be recognized " -"with this badge." - -#: models/__init__.py:1231 -#, python-format -msgid "%(item1)s and %(item2)s" -msgstr "" - -#: models/__init__.py:1235 +#: models/question.py:72 #, python-format -msgid "%(user)s has %(badges)s" +msgid "\" and \"%s\"" msgstr "" -#: models/__init__.py:1526 models/__init__.py:1532 models/__init__.py:1537 -#: models/__init__.py:1542 -#, python-format -msgid "Re: \"%(title)s\"" +#: models/question.py:75 +msgid "\" and more" msgstr "" -#: models/__init__.py:1547 models/__init__.py:1552 -#, fuzzy, python-format -msgid "Question: \"%(title)s\"" -msgstr "Tags" - -#: models/__init__.py:1733 -#, python-format -msgid "" -"Congratulations, you have received a badge '%(badge_name)s'. Check out your profile." +#: models/question.py:452 +msgid "Sorry, this question has been deleted and is no longer accessible" msgstr "" -#: models/question.py:667 +#: models/question.py:908 #, python-format msgid "%(author)s modified the question" msgstr "" -#: models/question.py:671 +#: models/question.py:912 #, python-format msgid "%(people)s posted %(new_answer_count)s new answers" msgstr "" -#: models/question.py:676 +#: models/question.py:917 #, python-format msgid "%(people)s commented the question" msgstr "" -#: models/question.py:681 +#: models/question.py:922 #, python-format msgid "%(people)s commented answers" msgstr "" -#: models/question.py:683 +#: models/question.py:924 #, python-format msgid "%(people)s commented an answer" msgstr "" -#: models/repute.py:16 skins/default/templates/badges.html:43 -msgid "gold" -msgstr "" - -#: models/repute.py:17 skins/default/templates/badges.html:52 -msgid "silver" -msgstr "" - -#: models/repute.py:18 skins/default/templates/badges.html:59 -msgid "bronze" -msgstr "" - -#: models/repute.py:150 +#: models/repute.py:142 #, python-format msgid "Changed by moderator. Reason: %(reason)s" msgstr "" -#: models/repute.py:161 +#: models/repute.py:153 #, python-format msgid "" -"%(points)s points were added for %(username)s's contribution to question %" -"(question_title)s" +"%(points)s points were added for %(username)s's contribution to question " +"%(question_title)s" msgstr "" -#: models/repute.py:166 +#: models/repute.py:158 #, python-format msgid "" "%(points)s points were subtracted for %(username)s's contribution to " "question %(question_title)s" msgstr "" -#: models/tag.py:110 +#: models/tag.py:151 msgid "interesting" msgstr "" -#: models/tag.py:110 +#: models/tag.py:151 msgid "ignored" msgstr "" -#: models/user.py:233 +#: models/user.py:264 msgid "Entire forum" msgstr "" -#: models/user.py:234 +#: models/user.py:265 msgid "Questions that I asked" msgstr "" -#: models/user.py:235 +#: models/user.py:266 msgid "Questions that I answered" msgstr "" -#: models/user.py:236 +#: models/user.py:267 msgid "Individually selected questions" msgstr "" -#: models/user.py:237 +#: models/user.py:268 msgid "Mentions and comment responses" msgstr "" -#: models/user.py:240 +#: models/user.py:271 msgid "Instantly" msgstr "" -#: models/user.py:241 +#: models/user.py:272 msgid "Daily" msgstr "" -#: models/user.py:242 +#: models/user.py:273 msgid "Weekly" msgstr "" -#: models/user.py:243 +#: models/user.py:274 msgid "No email" msgstr "" #: skins/default/templates/404.jinja.html:3 -#: skins/default/templates/404.jinja.html:11 +#: skins/default/templates/404.jinja.html:10 msgid "Page not found" msgstr "" -#: skins/default/templates/404.jinja.html:15 +#: skins/default/templates/404.jinja.html:13 msgid "Sorry, could not find the page you requested." msgstr "" -#: skins/default/templates/404.jinja.html:17 +#: skins/default/templates/404.jinja.html:15 msgid "This might have happened for the following reasons:" msgstr "" -#: skins/default/templates/404.jinja.html:19 +#: skins/default/templates/404.jinja.html:17 msgid "this question or answer has been deleted;" msgstr "" -#: skins/default/templates/404.jinja.html:20 +#: skins/default/templates/404.jinja.html:18 msgid "url has error - please check it;" msgstr "" -#: skins/default/templates/404.jinja.html:21 +#: skins/default/templates/404.jinja.html:19 msgid "" "the page you tried to visit is protected or you don't have sufficient " "points, see" msgstr "" -#: skins/default/templates/404.jinja.html:21 -#: skins/default/templates/footer.html:6 -#: skins/default/templates/header.html:57 -#: skins/default/templates/question_edit_tips.html:16 +#: skins/default/templates/404.jinja.html:19 +#: skins/default/templates/blocks/footer.html:5 +#: skins/default/templates/blocks/header_meta_links.html:13 +#: skins/default/templates/blocks/question_edit_tips.html:15 msgid "faq" msgstr "" -#: skins/default/templates/404.jinja.html:22 +#: skins/default/templates/404.jinja.html:20 msgid "if you believe this error 404 should not have occured, please" msgstr "" -#: skins/default/templates/404.jinja.html:23 +#: skins/default/templates/404.jinja.html:21 msgid "report this problem" msgstr "" -#: skins/default/templates/404.jinja.html:32 -#: skins/default/templates/500.jinja.html:13 +#: skins/default/templates/404.jinja.html:30 +#: skins/default/templates/500.jinja.html:11 msgid "back to previous page" msgstr "" -#: skins/default/templates/404.jinja.html:33 -#: skins/default/templates/questions.html:13 +#: skins/default/templates/404.jinja.html:31 +#: skins/default/templates/main_page/tab_bar.html:9 msgid "see all questions" msgstr "" -#: skins/default/templates/404.jinja.html:34 +#: skins/default/templates/404.jinja.html:32 msgid "see all tags" msgstr "" #: skins/default/templates/500.jinja.html:3 -#: skins/default/templates/500.jinja.html:6 +#: skins/default/templates/500.jinja.html:5 msgid "Internal server error" msgstr "" -#: skins/default/templates/500.jinja.html:10 +#: skins/default/templates/500.jinja.html:8 msgid "system error log is recorded, error will be fixed as soon as possible" msgstr "" -#: skins/default/templates/500.jinja.html:11 +#: skins/default/templates/500.jinja.html:9 msgid "please report the error to the site administrators if you wish" msgstr "" -#: skins/default/templates/500.jinja.html:14 +#: skins/default/templates/500.jinja.html:12 msgid "see latest questions" msgstr "" -#: skins/default/templates/500.jinja.html:15 +#: skins/default/templates/500.jinja.html:13 msgid "see tags" msgstr "" -#: skins/default/templates/about.html:3 skins/default/templates/about.html:6 -msgid "About" +#: 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 @@ -2673,195 +3536,84 @@ msgid "Edit answer" msgstr "" #: skins/default/templates/answer_edit.html:10 -#: skins/default/templates/question_edit.html:10 -#: skins/default/templates/question_retag.html:6 +#: skins/default/templates/question_edit.html:9 +#: skins/default/templates/question_retag.html:5 #: skins/default/templates/revisions.html:7 msgid "back" msgstr "" -#: skins/default/templates/answer_edit.html:15 -#: skins/default/templates/question_edit.html:14 +#: skins/default/templates/answer_edit.html:14 msgid "revision" msgstr "" -#: skins/default/templates/answer_edit.html:18 -#: skins/default/templates/question_edit.html:19 +#: skins/default/templates/answer_edit.html:17 +#: skins/default/templates/question_edit.html:16 msgid "select revision" msgstr "" -#: skins/default/templates/answer_edit.html:22 -#: skins/default/templates/question_edit.html:28 +#: skins/default/templates/answer_edit.html:21 +#: skins/default/templates/question_edit.html:27 msgid "Save edit" msgstr "" -#: skins/default/templates/answer_edit.html:23 -#: skins/default/templates/close.html:19 -#: skins/default/templates/feedback.html:45 -#: skins/default/templates/question_edit.html:29 -#: skins/default/templates/question_retag.html:26 -#: skins/default/templates/reopen.html:30 -#: skins/default/templates/user_edit.html:76 +#: skins/default/templates/answer_edit.html:22 +#: skins/default/templates/close.html:16 +#: skins/default/templates/feedback.html:42 +#: skins/default/templates/question_edit.html:28 +#: skins/default/templates/question_retag.html:22 +#: skins/default/templates/reopen.html:27 +#: skins/default/templates/subscribe_for_tags.html:16 #: skins/default/templates/authopenid/changeemail.html:38 +#: skins/default/templates/user_profile/user_edit.html:84 msgid "Cancel" msgstr "" -#: skins/default/templates/answer_edit.html:59 -#: skins/default/templates/answer_edit.html:62 -#: skins/default/templates/ask.html:36 skins/default/templates/ask.html:39 -#: skins/default/templates/macros.html:387 -#: skins/default/templates/question.html:448 -#: skins/default/templates/question.html:451 -#: skins/default/templates/question_edit.html:63 -#: skins/default/templates/question_edit.html:66 +#: skins/default/templates/answer_edit.html:60 +#: skins/default/templates/answer_edit.html:63 +#: skins/default/templates/ask.html:46 skins/default/templates/ask.html:49 +#: skins/default/templates/macros.html:698 +#: skins/default/templates/question.html:562 +#: skins/default/templates/question.html:565 +#: skins/default/templates/question_edit.html:72 +#: skins/default/templates/question_edit.html:75 msgid "hide preview" msgstr "" -#: skins/default/templates/answer_edit.html:62 -#: skins/default/templates/ask.html:39 -#: skins/default/templates/question.html:451 -#: skins/default/templates/question_edit.html:66 +#: skins/default/templates/answer_edit.html:63 +#: skins/default/templates/ask.html:49 +#: skins/default/templates/question.html:565 +#: skins/default/templates/question_edit.html:75 msgid "show preview" msgstr "" -#: skins/default/templates/answer_edit_tips.html:3 -msgid "answer tips" -msgstr "Tips" - -#: skins/default/templates/answer_edit_tips.html:6 -msgid "please make your answer relevant to this community" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:9 -msgid "try to give an answer, rather than engage into a discussion" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:12 -msgid "please try to provide details" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:15 -#: skins/default/templates/question_edit_tips.html:12 -msgid "be clear and concise" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:19 -#: skins/default/templates/question_edit_tips.html:16 -msgid "see frequently asked questions" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:25 -#: skins/default/templates/question_edit_tips.html:22 -msgid "Markdown tips" -msgstr "Markdown basics" - -#: skins/default/templates/answer_edit_tips.html:29 -#: skins/default/templates/question_edit_tips.html:26 -msgid "*italic*" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:32 -#: skins/default/templates/question_edit_tips.html:29 -msgid "**bold**" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:36 -#: skins/default/templates/question_edit_tips.html:33 -msgid "*italic* or _italic_" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:39 -#: skins/default/templates/question_edit_tips.html:36 -msgid "**bold** or __bold__" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/question_edit_tips.html:40 -msgid "link" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:40 -#: skins/default/templates/question_edit_tips.html:45 -msgid "text" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:45 -msgid "image" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:51 -#: skins/default/templates/question_edit_tips.html:49 -msgid "numbered list:" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:56 -#: skins/default/templates/question_edit_tips.html:54 -msgid "basic HTML tags are also supported" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:60 -#: skins/default/templates/question_edit_tips.html:58 -msgid "learn more about Markdown" -msgstr "" - -#: skins/default/templates/ask.html:3 +#: skins/default/templates/ask.html:4 msgid "Ask a question" msgstr "" -#: skins/default/templates/ask_form.html:7 -msgid "login to post question info" -msgstr "" -"You are welcome to start submitting your question " -"anonymously. 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/ask_form.html:11 -#, python-format -msgid "" -"must have valid %(email)s to post, \n" -" see %(email_validation_faq_url)s\n" -" " -msgstr "" -"Looks like your email address, %(email)s has not " -"yet been validated. To post messages you must verify your email, " -"please see more details here." -"
        You can submit your question now and validate email after that. Your " -"question will saved as pending meanwhile. " - -#: skins/default/templates/ask_form.html:27 -msgid "Login/signup to post your question" -msgstr "Login/Signup to Post" - -#: skins/default/templates/ask_form.html:29 -msgid "Ask your question" -msgstr "Ask Your Question" - -#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:11 -#: skins/default/templates/badges.html:28 -#: skins/default/templates/user_recent.html:13 -#: skins/default/templates/user_stats.html:88 +#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:8 +#: skins/default/templates/user_profile/user_recent.html:16 +#: skins/default/templates/user_profile/user_stats.html:110 #, python-format msgid "%(name)s" msgstr "" -#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:7 +#: skins/default/templates/badge.html:4 msgid "Badge" msgstr "" -#: skins/default/templates/badge.html:11 -#: skins/default/templates/badges.html:27 -#: skins/default/templates/badges.html:31 -#: skins/default/templates/user_recent.html:13 -#: skins/default/templates/user_stats.html:88 +#: skins/default/templates/badge.html:6 +#, python-format +msgid "Badge \"%(name)s\"" +msgstr "" + +#: skins/default/templates/badge.html:8 +#: skins/default/templates/user_profile/user_recent.html:16 +#: skins/default/templates/user_profile/user_stats.html:108 #, python-format msgid "%(description)s" msgstr "" -#: skins/default/templates/badge.html:16 +#: skins/default/templates/badge.html:13 msgid "user received this badge:" msgid_plural "users received this badge:" msgstr[0] "" @@ -2871,121 +3623,99 @@ msgstr[1] "" msgid "Badges summary" msgstr "" -#: skins/default/templates/badges.html:6 +#: skins/default/templates/badges.html:5 msgid "Badges" msgstr "" -#: skins/default/templates/badges.html:10 +#: skins/default/templates/badges.html:7 msgid "Community gives you awards for your questions, answers and votes." msgstr "" "If your questions and answers are highly voted, your contribution to this " "Q&A community will be recognized with the variety of badges." -#: skins/default/templates/badges.html:11 -#, python-format +#: skins/default/templates/badges.html:8 +#, 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. Give us feedback at " +"%(feedback_faq_url)s.\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 feedback" -#: skins/default/templates/badges.html:27 -#, python-format -msgid "%(type)s" -msgstr "" - -#: skins/default/templates/badges.html:40 +#: skins/default/templates/badges.html:35 msgid "Community badges" msgstr "Badge levels" -#: skins/default/templates/badges.html:43 +#: skins/default/templates/badges.html:37 msgid "gold badge: the highest honor and is very rare" msgstr "" -#: skins/default/templates/badges.html:46 +#: 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 " "profound knowledge and ability in addition to your active participation." -#: skins/default/templates/badges.html:51 +#: skins/default/templates/badges.html:45 msgid "" "silver badge: occasionally awarded for the very high quality contributions" msgstr "" -#: skins/default/templates/badges.html:55 +#: 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:58 +#: skins/default/templates/badges.html:52 msgid "bronze badge: often given as a special honor" msgstr "" -#: skins/default/templates/badges.html:62 +#: 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:6 +#: skins/default/templates/close.html:3 skins/default/templates/close.html:5 msgid "Close question" msgstr "" -#: skins/default/templates/close.html:9 +#: skins/default/templates/close.html:6 msgid "Close the question" msgstr "" -#: skins/default/templates/close.html:14 +#: skins/default/templates/close.html:11 msgid "Reasons" msgstr "" -#: skins/default/templates/close.html:18 +#: skins/default/templates/close.html:15 msgid "OK to close" msgstr "" -#: skins/default/templates/editor_data.html:8 -#, 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/editor_data.html:10 -#, python-format -msgid "please use %(tag_count)s tag" -msgid_plural "please use %(tag_count)s tags or less" -msgstr[0] "" - -#: skins/default/templates/editor_data.html:11 -#, python-format -msgid "" -"please use up to %(tag_count)s tags, less than %(max_chars)s characters each" -msgstr "" - -#: skins/default/templates/faq.html:3 skins/default/templates/faq.html.py:6 +#: skins/default/templates/faq.html:3 +#: skins/default/templates/faq_static.html:3 +#: skins/default/templates/faq_static.html:5 msgid "FAQ" msgstr "" -#: skins/default/templates/faq.html:6 +#: skins/default/templates/faq_static.html:5 msgid "Frequently Asked Questions " msgstr "" -#: skins/default/templates/faq.html:11 +#: skins/default/templates/faq_static.html:6 msgid "What kinds of questions can I ask here?" msgstr "" -#: skins/default/templates/faq.html:12 +#: skins/default/templates/faq_static.html:7 msgid "" "Most importanly - questions should be relevant to this " "community." msgstr "" -#: skins/default/templates/faq.html:13 +#: 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." @@ -2993,21 +3723,21 @@ 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.html:15 +#: skins/default/templates/faq_static.html:10 msgid "What questions should I avoid asking?" msgstr "What kinds of questions should be avoided?" -#: skins/default/templates/faq.html:16 +#: skins/default/templates/faq_static.html:11 msgid "" "Please avoid asking questions that are not relevant to this community, too " "subjective and argumentative." msgstr "" -#: skins/default/templates/faq.html:20 +#: skins/default/templates/faq_static.html:13 msgid "What should I avoid in my answers?" msgstr "" -#: skins/default/templates/faq.html:21 +#: 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 " @@ -3018,19 +3748,19 @@ msgstr "" "they tend to dilute the essense of questions and answers. For the brief " "discussions please use commenting facility." -#: skins/default/templates/faq.html:24 +#: skins/default/templates/faq_static.html:15 msgid "Who moderates this community?" msgstr "" -#: skins/default/templates/faq.html:25 +#: skins/default/templates/faq_static.html:16 msgid "The short answer is: you." msgstr "" -#: skins/default/templates/faq.html:26 +#: skins/default/templates/faq_static.html:17 msgid "This website is moderated by the users." msgstr "" -#: skins/default/templates/faq.html:27 +#: skins/default/templates/faq_static.html:18 msgid "" "The reputation system allows users earn the authorization to perform a " "variety of moderation tasks." @@ -3038,11 +3768,11 @@ msgstr "" "Karma system allows users to earn rights to perform a variety of moderation " "tasks" -#: skins/default/templates/faq.html:32 +#: skins/default/templates/faq_static.html:20 msgid "How does reputation system work?" msgstr "How does karma system work?" -#: skins/default/templates/faq.html:33 +#: skins/default/templates/faq_static.html:21 msgid "Rep system summary" msgstr "" "When a question or answer is upvoted, the user who posted them will gain " @@ -3050,87 +3780,70 @@ 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/faq.html:34 +#: 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 %" -"(REP_GAIN_FOR_RECEIVING_UPVOTE)s points, each vote against will " +"it will be downvoted. Each vote in favor will generate " +"%(REP_GAIN_FOR_RECEIVING_UPVOTE)s points, each vote against will " "subtract %(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s points. There " "is a limit of %(MAX_REP_GAIN_PER_USER_PER_DAY)s 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 "" -#: skins/default/templates/faq.html:44 -#: skins/default/templates/user_votes.html:10 +#: skins/default/templates/faq_static.html:32 +#: skins/default/templates/user_profile/user_votes.html:13 msgid "upvote" msgstr "" -#: skins/default/templates/faq.html:49 +#: skins/default/templates/faq_static.html:37 msgid "use tags" msgstr "" -#: skins/default/templates/faq.html:54 +#: skins/default/templates/faq_static.html:42 msgid "add comments" msgstr "" -#: skins/default/templates/faq.html:58 -#: skins/default/templates/user_votes.html:12 +#: skins/default/templates/faq_static.html:46 +#: skins/default/templates/user_profile/user_votes.html:15 msgid "downvote" msgstr "" -#: skins/default/templates/faq.html:61 +#: skins/default/templates/faq_static.html:49 +#, fuzzy +msgid " accept own answer to own questions" +msgstr "Ask Your Question" + +#: skins/default/templates/faq_static.html:53 msgid "open and close own questions" msgstr "" -#: skins/default/templates/faq.html:65 +#: skins/default/templates/faq_static.html:57 #, fuzzy msgid "retag other's questions" msgstr "Post Your Answer" -#: skins/default/templates/faq.html:70 +#: skins/default/templates/faq_static.html:62 msgid "edit community wiki questions" msgstr "" -#: skins/default/templates/faq.html:75 +#: skins/default/templates/faq_static.html:67 #, fuzzy msgid "\"edit any answer" msgstr "oldest" -#: skins/default/templates/faq.html:79 +#: skins/default/templates/faq_static.html:71 #, fuzzy msgid "\"delete any comment" msgstr "post a comment" -#: skins/default/templates/faq.html:86 -msgid "how to validate email title" -msgstr "How to validate email and why?" - -#: skins/default/templates/faq.html:88 -#, python-format -msgid "" -"how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)s" -msgstr "" -"

        How? If you have just set or changed your " -"email address - check your email and click the included link.
        The link contains a key generated specifically for you. You can " -"also and check your email again.

        Why? Email validation is required to make sure that " -"only you can post messages on your behalf and to " -"minimize spam posts.
        With email you can " -"subscribe for updates on the most interesting questions. " -"Also, when you sign up for the first time - create a unique gravatar personal image.

        " - -#: skins/default/templates/faq.html:93 +#: 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.html:94 +#: skins/default/templates/faq_static.html:75 msgid "gravatar faq info" msgstr "" "

        The picture that appears on the users profiles is called " @@ -3147,45 +3860,45 @@ msgstr "" "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.

        " -#: skins/default/templates/faq.html:97 +#: skins/default/templates/faq_static.html:76 msgid "To register, do I need to create new password?" msgstr "" -#: skins/default/templates/faq.html:98 +#: skins/default/templates/faq_static.html:77 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.html:99 +#: skins/default/templates/faq_static.html:78 #, fuzzy msgid "\"Login now!\"" msgstr "Logout Now" -#: skins/default/templates/faq.html:103 +#: skins/default/templates/faq_static.html:80 msgid "Why other people can edit my questions/answers?" msgstr "" -#: skins/default/templates/faq.html:104 +#: skins/default/templates/faq_static.html:81 msgid "Goal of this site is..." msgstr "" -#: skins/default/templates/faq.html:104 +#: skins/default/templates/faq_static.html:81 msgid "" "So questions and answers can be edited like wiki pages by experienced users " "of this site and this improves the overall quality of the knowledge base " "content." msgstr "" -#: skins/default/templates/faq.html:105 +#: skins/default/templates/faq_static.html:82 msgid "If this approach is not for you, we respect your choice." msgstr "" -#: skins/default/templates/faq.html:109 +#: skins/default/templates/faq_static.html:84 msgid "Still have questions?" msgstr "" -#: skins/default/templates/faq.html:110 +#: skins/default/templates/faq_static.html:85 #, python-format msgid "" "Please ask your question at %(ask_question_url)s, help make our community " @@ -3194,158 +3907,80 @@ msgstr "" "Please ask your question, help make our " "community better!" -#: skins/default/templates/faq.html:112 skins/default/templates/header.html:78 -msgid "questions" -msgstr "" - -#: skins/default/templates/faq.html:112 -msgid "." -msgstr "" - #: skins/default/templates/feedback.html:3 msgid "Feedback" msgstr "" -#: skins/default/templates/feedback.html:6 +#: skins/default/templates/feedback.html:5 msgid "Give us your feedback!" msgstr "" -#: skins/default/templates/feedback.html:12 +#: skins/default/templates/feedback.html:9 #, python-format msgid "" "\n" -" Dear %(user_name)s, we look " -"forward to hearing your feedback. \n" -" Please type and send us your message below.\n" -" " +" Dear %(user_name)s, we look forward " +"to hearing your feedback. \n" +" Please type and send us your message below.\n" +" " msgstr "" -#: skins/default/templates/feedback.html:19 +#: skins/default/templates/feedback.html:16 msgid "" "\n" -" Dear visitor, we look forward to " +" Dear visitor, we look forward to " "hearing your feedback.\n" -" Please type and send us your message below.\n" -" " +" Please type and send us your message below.\n" +" " msgstr "" -#: skins/default/templates/feedback.html:28 +#: skins/default/templates/feedback.html:25 msgid "(please enter a valid email)" msgstr "" -#: skins/default/templates/feedback.html:36 +#: skins/default/templates/feedback.html:33 msgid "(this field is required)" msgstr "" -#: skins/default/templates/feedback.html:44 +#: skins/default/templates/feedback.html:41 msgid "Send Feedback" msgstr "" -#: skins/default/templates/feedback_email.txt:3 +#: skins/default/templates/feedback_email.txt:2 #, python-format msgid "" "\n" -"Hello, this is a %(site_title)s forum feedback message\n" -msgstr "" - -#: skins/default/templates/feedback_email.txt:9 -msgid "Sender is" -msgstr "" - -#: skins/default/templates/feedback_email.txt:11 -#: skins/default/templates/feedback_email.txt:14 -msgid "email" -msgstr "" - -#: skins/default/templates/feedback_email.txt:13 -msgid "anonymous" -msgstr "" - -#: skins/default/templates/feedback_email.txt:19 -msgid "Message body:" -msgstr "" - -#: skins/default/templates/footer.html:5 -#: skins/default/templates/header.html:56 -msgid "about" -msgstr "" - -#: skins/default/templates/footer.html:7 -msgid "privacy policy" -msgstr "" - -#: skins/default/templates/footer.html:16 -msgid "give feedback" -msgstr "" - -#: skins/default/templates/header.html:12 -#, fuzzy, python-format -msgid "responses for %(username)s" -msgstr "Choose screen name" - -#: skins/default/templates/header.html:15 -#, python-format -msgid "you have a new response" -msgid_plural "you nave %(response_count)s new responses" -msgstr[0] "" - -#: skins/default/templates/header.html:18 -msgid "no new responses yet" -msgstr "" - -#: skins/default/templates/header.html:30 -#: skins/default/templates/header.html:31 -#, python-format -msgid "%(new)s new flagged posts and %(seen)s previous" -msgstr "" - -#: skins/default/templates/header.html:33 -#: skins/default/templates/header.html:34 -#, python-format -msgid "%(new)s new flagged posts" -msgstr "" - -#: skins/default/templates/header.html:39 -#: skins/default/templates/header.html:40 -#, python-format -msgid "%(seen)s flagged posts" -msgstr "" - -#: skins/default/templates/header.html:52 -msgid "logout" +"Hello, this is a %(site_title)s forum feedback message.\n" msgstr "" -#: skins/default/templates/header.html:54 -msgid "login" -msgstr "" - -#: skins/default/templates/header.html:59 -msgid "settings" +#: skins/default/templates/import_data.html:2 +#: skins/default/templates/import_data.html:4 +msgid "Import StackExchange data" msgstr "" -#: skins/default/templates/header.html:68 -msgid "back to home page" -msgstr "" - -#: skins/default/templates/header.html:69 -#, python-format -msgid "%(site)s logo" +#: skins/default/templates/import_data.html:13 +msgid "" +"Warning: if your database is not empty, please back it up\n" +" before attempting this operation." msgstr "" -#: skins/default/templates/header.html:88 -msgid "users" -msgstr "people" - -#: skins/default/templates/header.html:93 -msgid "badges" +#: skins/default/templates/import_data.html:16 +msgid "" +"Upload your stackexchange dump .zip file, then wait until\n" +" the data import completes. This process may take several minutes.\n" +" Please note that feedback will be printed in plain text.\n" +" " msgstr "" -#: skins/default/templates/header.html:98 -msgid "ask a question" +#: skins/default/templates/import_data.html:25 +msgid "Import data" msgstr "" -#: skins/default/templates/input_bar.html:32 -msgid "search" +#: 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: python manage." +"py load_stackexchange path/to/your-data.zip" msgstr "" #: skins/default/templates/instant_notification.html:1 @@ -3419,243 +4054,285 @@ msgstr "" "Sincerely,\n" "Q&A Forum Administrator" -#: skins/default/templates/logout.html:3 skins/default/templates/logout.html:6 -msgid "Logout" +#: skins/default/templates/macros.html:25 +#, fuzzy, python-format +msgid "Share this question on %(site)s" msgstr "" +"
        %(q_num)s

        question with title " +"containing %(searchtitle)s" -#: skins/default/templates/logout.html:9 -msgid "" -"As a registered user you can login with your OpenID, log out of the site or " -"permanently remove your account." +#: skins/default/templates/macros.html:36 +#, python-format +msgid "follow %(alias)s" msgstr "" -"Clicking Logout will log you out from the forumbut will not " -"sign you off from your OpenID provider.

        If you wish to sign off " -"completely - please make sure to log out from your OpenID provider as well." -#: skins/default/templates/logout.html:10 -msgid "Logout now" -msgstr "Logout Now" +#: skins/default/templates/macros.html:39 +#, python-format +msgid "unfollow %(alias)s" +msgstr "" + +#: skins/default/templates/macros.html:40 +#, python-format +msgid "following %(alias)s" +msgstr "" -#: skins/default/templates/macros.html:26 +#: skins/default/templates/macros.html:63 msgid "karma:" msgstr "" -#: skins/default/templates/macros.html:30 +#: skins/default/templates/macros.html:67 msgid "badges:" msgstr "" -#: skins/default/templates/macros.html:52 -#: skins/default/templates/macros.html:53 +#: skins/default/templates/macros.html:143 +#: skins/default/templates/macros.html:144 msgid "previous" msgstr "" -#: skins/default/templates/macros.html:64 +#: skins/default/templates/macros.html:155 msgid "current page" msgstr "" -#: skins/default/templates/macros.html:66 -#: skins/default/templates/macros.html:73 +#: skins/default/templates/macros.html:157 +#: skins/default/templates/macros.html:164 #, python-format msgid "page number %(num)s" msgstr "page %(num)s" -#: skins/default/templates/macros.html:77 +#: skins/default/templates/macros.html:168 msgid "next page" msgstr "" -#: skins/default/templates/macros.html:88 +#: skins/default/templates/macros.html:179 msgid "posts per page" msgstr "" -#: skins/default/templates/macros.html:119 templatetags/extra_tags.py:56 +#: skins/default/templates/macros.html:211 templatetags/extra_tags.py:43 #, python-format msgid "%(username)s gravatar image" msgstr "" -#: skins/default/templates/macros.html:142 +#: skins/default/templates/macros.html:220 +#, python-format +msgid "%(username)s's website is %(url)s" +msgstr "" + +#: skins/default/templates/macros.html:232 +#, fuzzy +msgid "anonymous user" +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." + +#: skins/default/templates/macros.html:260 msgid "this post is marked as community wiki" msgstr "" -#: skins/default/templates/macros.html:145 +#: skins/default/templates/macros.html:263 #, python-format msgid "" "This post is a wiki.\n" " Anyone with karma >%(wiki_min_rep)s is welcome to improve it." msgstr "" -#: skins/default/templates/macros.html:151 +#: skins/default/templates/macros.html:269 msgid "asked" msgstr "" -#: skins/default/templates/macros.html:153 +#: skins/default/templates/macros.html:271 msgid "answered" msgstr "" -#: skins/default/templates/macros.html:155 +#: skins/default/templates/macros.html:273 msgid "posted" msgstr "" -#: skins/default/templates/macros.html:185 +#: skins/default/templates/macros.html:303 msgid "updated" msgstr "" -#: skins/default/templates/macros.html:210 -#: skins/default/templates/unused/questions_ajax.html:23 views/readers.py:235 -msgid "vote" -msgid_plural "votes" +#: skins/default/templates/macros.html:379 +#, python-format +msgid "see questions tagged '%(tag)s'" +msgstr "" + +#: skins/default/templates/macros.html:424 views/readers.py:239 +msgid "view" +msgid_plural "views" msgstr[0] "" -#: skins/default/templates/macros.html:227 -#: skins/default/templates/unused/questions_ajax.html:43 views/readers.py:238 +#: skins/default/templates/macros.html:441 views/readers.py:236 msgid "answer" msgid_plural "answers" msgstr[0] "" -#: skins/default/templates/macros.html:239 -#: skins/default/templates/unused/questions_ajax.html:55 views/readers.py:241 -msgid "view" -msgid_plural "views" +#: skins/default/templates/macros.html:452 views/readers.py:233 +msgid "vote" +msgid_plural "votes" msgstr[0] "" -#: skins/default/templates/macros.html:251 -#: skins/default/templates/question.html:88 -#: skins/default/templates/tags.html:38 -#: skins/default/templates/unused/question_list.html:64 -#: skins/default/templates/unused/question_summary_list_roll.html:52 -#: skins/default/templates/unused/questions_ajax.html:68 -#, python-format -msgid "see questions tagged '%(tag)s'" +#: skins/default/templates/macros.html:491 +msgid "delete this comment" msgstr "" -#: skins/default/templates/macros.html:269 -msgid "delete this comment" +#: skins/default/templates/macros.html:502 +#: skins/default/templates/question.html:79 +#: skins/default/templates/question.html:235 +#: skins/default/templates/revisions.html:37 +msgid "edit" msgstr "" -#: skins/default/templates/macros.html:284 +#: skins/default/templates/macros.html:520 +#: skins/default/templates/macros.html:528 +#: skins/default/templates/question.html:511 msgid "add comment" msgstr "post a comment" -#: skins/default/templates/macros.html:289 +#: skins/default/templates/macros.html:521 #, python-format msgid "see %(counter)s more" msgid_plural "see %(counter)s more" msgstr[0] "" -#: skins/default/templates/macros.html:291 +#: skins/default/templates/macros.html:523 #, python-format msgid "see %(counter)s more comment" msgid_plural "" "see %(counter)s more comments\n" -" " +" " msgstr[0] "" -#: skins/default/templates/macros.html:364 +#: skins/default/templates/macros.html:661 +msgid "one of these is required" +msgstr "" + +#: skins/default/templates/macros.html:673 msgid "(required)" msgstr "" -#: skins/default/templates/macros.html:385 +#: skins/default/templates/macros.html:696 msgid "Toggle the real time Markdown editor preview" msgstr "" -#: skins/default/templates/privacy.html:3 -#: skins/default/templates/privacy.html:6 -msgid "Privacy policy" -msgstr "" +#: skins/default/templates/macros.html:708 +#, fuzzy, python-format +msgid "responses for %(username)s" +msgstr "Choose screen name" -#: skins/default/templates/question.html:30 -#: skins/default/templates/question.html:31 -#: skins/default/templates/question.html:46 -#: skins/default/templates/question.html:48 -msgid "i like this post (click again to cancel)" +#: skins/default/templates/macros.html:711 +#, python-format +msgid "you have a new response" +msgid_plural "you have %(response_count)s new responses" +msgstr[0] "" + +#: skins/default/templates/macros.html:714 +msgid "no new responses yet" msgstr "" -#: skins/default/templates/question.html:33 -#: skins/default/templates/question.html:50 -#: skins/default/templates/question.html:198 -msgid "current number of votes" +#: skins/default/templates/macros.html:729 +#: skins/default/templates/macros.html:730 +#, python-format +msgid "%(new)s new flagged posts and %(seen)s previous" msgstr "" -#: skins/default/templates/question.html:42 -#: skins/default/templates/question.html:43 -#: skins/default/templates/question.html:55 -#: skins/default/templates/question.html:56 -msgid "i dont like this post (click again to cancel)" +#: skins/default/templates/macros.html:732 +#: skins/default/templates/macros.html:733 +#, python-format +msgid "%(new)s new flagged posts" +msgstr "" + +#: skins/default/templates/macros.html:738 +#: skins/default/templates/macros.html:739 +#, python-format +msgid "%(seen)s flagged posts" msgstr "" -#: skins/default/templates/question.html:60 -#: skins/default/templates/question.html:61 -msgid "mark this question as favorite (click again to cancel)" +#: skins/default/templates/main_page.html:11 +msgid "Questions" msgstr "" -#: skins/default/templates/question.html:67 -#: skins/default/templates/question.html:68 -msgid "remove favorite mark from this question (click again to restore mark)" +#: skins/default/templates/privacy.html:3 +#: skins/default/templates/privacy.html:5 +msgid "Privacy policy" msgstr "" -#: skins/default/templates/question.html:74 -msgid "Share this question on twitter" +#: skins/default/templates/question.html:26 +#: skins/default/templates/question.html:27 +#: skins/default/templates/question.html:42 +#: skins/default/templates/question.html:44 +msgid "i like this post (click again to cancel)" msgstr "" -#: skins/default/templates/question.html:75 -msgid "Share this question on facebook" +#: skins/default/templates/question.html:29 +#: skins/default/templates/question.html:46 +#: skins/default/templates/question.html:186 +msgid "current number of votes" msgstr "" -#: skins/default/templates/question.html:94 -#: skins/default/templates/question.html:247 -#: skins/default/templates/revisions.html:37 -msgid "edit" +#: skins/default/templates/question.html:38 +#: skins/default/templates/question.html:39 +#: skins/default/templates/question.html:51 +#: skins/default/templates/question.html:52 +msgid "i dont like this post (click again to cancel)" msgstr "" -#: skins/default/templates/question.html:97 +#: skins/default/templates/question.html:82 msgid "retag" msgstr "" -#: skins/default/templates/question.html:104 +#: skins/default/templates/question.html:89 msgid "reopen" msgstr "" -#: skins/default/templates/question.html:108 +#: skins/default/templates/question.html:93 msgid "close" msgstr "" -#: skins/default/templates/question.html:113 -#: skins/default/templates/question.html:251 +#: skins/default/templates/question.html:98 +#: skins/default/templates/question.html:239 msgid "" "report as offensive (i.e containing spam, advertising, malicious text, etc.)" msgstr "" -#: skins/default/templates/question.html:114 -#: skins/default/templates/question.html:252 +#: skins/default/templates/question.html:99 +#: skins/default/templates/question.html:240 msgid "flag offensive" msgstr "" -#: skins/default/templates/question.html:121 -#: skins/default/templates/question.html:262 -#: skins/default/templates/authopenid/signin.html:175 +#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:250 +msgid "undelete" +msgstr "" + +#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:250 +#: skins/default/templates/authopenid/signin.html:166 msgid "delete" msgstr "" -#: skins/default/templates/question.html:156 +#: skins/default/templates/question.html:143 #, python-format msgid "" "The question has been closed for the following reason \"%(close_reason)s\" by" msgstr "" -#: skins/default/templates/question.html:158 +#: skins/default/templates/question.html:145 #, python-format msgid "close date %(closed_at)s" msgstr "" -#: skins/default/templates/question.html:166 +#: skins/default/templates/question.html:151 #, 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" "(one comment)" @@ -3663,76 +4340,98 @@ msgstr[1] "" "\n" "(%(comment_count)s comments)" -#: skins/default/templates/question.html:174 +#: skins/default/templates/question.html:159 msgid "oldest answers will be shown first" msgstr "" -#: skins/default/templates/question.html:174 +#: skins/default/templates/question.html:160 msgid "oldest answers" msgstr "oldest" -#: skins/default/templates/question.html:176 +#: skins/default/templates/question.html:162 msgid "newest answers will be shown first" msgstr "" -#: skins/default/templates/question.html:176 +#: skins/default/templates/question.html:163 msgid "newest answers" msgstr "newest" -#: skins/default/templates/question.html:178 +#: skins/default/templates/question.html:165 msgid "most voted answers will be shown first" msgstr "" -#: skins/default/templates/question.html:178 +#: skins/default/templates/question.html:166 msgid "popular answers" msgstr "most voted" -#: skins/default/templates/question.html:196 -#: skins/default/templates/question.html:197 +#: skins/default/templates/question.html:184 +#: skins/default/templates/question.html:185 msgid "i like this answer (click again to cancel)" msgstr "" -#: skins/default/templates/question.html:207 -#: skins/default/templates/question.html:208 +#: skins/default/templates/question.html:195 +#: skins/default/templates/question.html:196 msgid "i dont like this answer (click again to cancel)" msgstr "" -#: skins/default/templates/question.html:216 -#: skins/default/templates/question.html:217 +#: skins/default/templates/question.html:204 +#: skins/default/templates/question.html:205 msgid "mark this answer as favorite (click again to undo)" msgstr "" -#: skins/default/templates/question.html:226 -#: skins/default/templates/question.html:227 +#: skins/default/templates/question.html:214 +#: skins/default/templates/question.html:215 #, python-format msgid "%(question_author)s has selected this answer as correct" msgstr "" -#: skins/default/templates/question.html:242 +#: skins/default/templates/question.html:230 msgid "answer permanent link" msgstr "" -#: skins/default/templates/question.html:243 +#: skins/default/templates/question.html:231 msgid "permanent link" msgstr "link" -#: skins/default/templates/question.html:262 -msgid "undelete" +#: skins/default/templates/question.html:256 +#, fuzzy +msgid "swap with question" +msgstr "Post Your Answer" + +#: skins/default/templates/question.html:297 +#, python-format +msgid "" +"Know someone who can answer? Share a link " +"to this question via" msgstr "" -#: skins/default/templates/question.html:308 -#: skins/default/templates/question.html:310 +#: skins/default/templates/question.html:303 +msgid " or" +msgstr "" + +#: skins/default/templates/question.html:305 +msgid "email" +msgstr "" + +#: skins/default/templates/question.html:320 +#: skins/default/templates/question.html:322 msgid "Notify me once a day when there are any new answers" msgstr "" "Notify me once a day by email when there are any new " "answers or updates" -#: skins/default/templates/question.html:312 +#: skins/default/templates/question.html:324 msgid "Notify me weekly when there are any new answers" msgstr "" "Notify me weekly when there are any new answers or updates" -#: skins/default/templates/question.html:315 +#: skins/default/templates/question.html:326 +#, fuzzy +msgid "Notify me immediately when there are any new answers" +msgstr "" +"Notify me weekly when there are any new answers or updates" + +#: skins/default/templates/question.html:329 #, python-format msgid "" "You can always adjust frequency of email updates from your %(profile_url)s" @@ -3740,21 +4439,26 @@ msgstr "" "(note: you can always change how often you receive updates)" -#: skins/default/templates/question.html:320 +#: skins/default/templates/question.html:334 msgid "once you sign in you will be able to subscribe for any updates here" msgstr "" "Here (once you log in) you will be able to sign " "up for the periodic email updates about this question." -#: skins/default/templates/question.html:330 +#: skins/default/templates/question.html:344 +#, fuzzy +msgid "Login/Signup to Answer" +msgstr "Login/Signup to Post" + +#: skins/default/templates/question.html:352 msgid "Your answer" msgstr "" -#: skins/default/templates/question.html:332 +#: skins/default/templates/question.html:354 msgid "Be the first one to answer this question!" msgstr "" -#: skins/default/templates/question.html:338 +#: skins/default/templates/question.html:360 msgid "you can answer anonymously and then login" msgstr "" "Please start posting your answer anonymously " @@ -3763,7 +4467,7 @@ msgstr "" "answer, for discussions, please use comments and " "please do remember to vote (after you log in)!" -#: skins/default/templates/question.html:342 +#: skins/default/templates/question.html:364 msgid "answer your own question only to give an answer" msgstr "" "You are welcome to answer your own question, " @@ -3773,7 +4477,7 @@ msgstr "" "forget to vote :) for the answers that you liked (or perhaps did " "not like)! " -#: skins/default/templates/question.html:344 +#: skins/default/templates/question.html:366 msgid "please only give an answer, no discussions" msgstr "" "Please try to give a substantial answer. If " @@ -3783,280 +4487,158 @@ msgstr "" "please don't forget to vote - it really helps to select the " "best questions and answers!" -#: skins/default/templates/question.html:351 +#: skins/default/templates/question.html:373 msgid "Login/Signup to Post Your Answer" msgstr "" -#: skins/default/templates/question.html:354 +#: skins/default/templates/question.html:376 +#: skins/default/templates/question.html:389 msgid "Answer Your Own Question" msgstr "" -#: skins/default/templates/question.html:356 +#: skins/default/templates/question.html:378 msgid "Answer the question" msgstr "Post Your Answer" -#: skins/default/templates/question.html:370 -msgid "Question tags" +#: skins/default/templates/question.html:397 +#, fuzzy +msgid "Question tools" msgstr "Tags" -#: skins/default/templates/question.html:375 -#: skins/default/templates/questions.html:222 -#: skins/default/templates/tag_selector.html:9 -#: skins/default/templates/tag_selector.html:26 -#, python-format -msgid "see questions tagged '%(tag_name)s'" -msgstr "" - -#: skins/default/templates/question.html:381 -msgid "question asked" -msgstr "Asked" - -#: skins/default/templates/question.html:384 -msgid "question was seen" -msgstr "Seen" - -#: skins/default/templates/question.html:384 -msgid "times" -msgstr "" - -#: skins/default/templates/question.html:387 -msgid "last updated" -msgstr "Last updated" - -#: skins/default/templates/question.html:394 -msgid "Related questions" -msgstr "" - -#: skins/default/templates/question_edit.html:4 -#: skins/default/templates/question_edit.html:10 -msgid "Edit question" -msgstr "" - -#: skins/default/templates/question_edit_tips.html:3 -msgid "question tips" -msgstr "Tips" - -#: skins/default/templates/question_edit_tips.html:6 -msgid "please ask a relevant question" -msgstr "ask a question interesting to this community" - -#: skins/default/templates/question_edit_tips.html:9 -msgid "please try provide enough details" -msgstr "provide enough details" - -#: skins/default/templates/question_retag.html:3 -#: skins/default/templates/question_retag.html:6 -msgid "Change tags" -msgstr "" - -#: skins/default/templates/question_retag.html:25 -msgid "Retag" -msgstr "" - -#: skins/default/templates/question_retag.html:34 -msgid "Why use and modify tags?" -msgstr "" - -#: skins/default/templates/question_retag.html:36 -msgid "Tags help to keep the content better organized and searchable" -msgstr "" - -#: skins/default/templates/question_retag.html:38 -msgid "tag editors receive special awards from the community" -msgstr "" - -#: skins/default/templates/question_retag.html:79 -msgid "up to 5 tags, less than 20 characters each" -msgstr "" - -#: skins/default/templates/questions.html:4 -msgid "Questions" -msgstr "" - -#: skins/default/templates/questions.html:9 -msgid "In:" -msgstr "" - -#: skins/default/templates/questions.html:18 -msgid "see unanswered questions" -msgstr "" +#: skins/default/templates/question.html:400 +#, fuzzy +msgid "click to unfollow this question" +msgstr "questions with most answers" -#: skins/default/templates/questions.html:24 -msgid "see your favorite questions" +#: skins/default/templates/question.html:401 +msgid "Following" msgstr "" -#: skins/default/templates/questions.html:29 -msgid "Sort by:" +#: skins/default/templates/question.html:402 +msgid "Unfollow" msgstr "" -#: skins/default/templates/questions.html:97 -#: skins/default/templates/questions.html:100 -msgid "subscribe to the questions feed" -msgstr "" +#: skins/default/templates/question.html:406 +#, fuzzy +msgid "click to follow this question" +msgstr "questions with most answers" -#: skins/default/templates/questions.html:101 -msgid "rss feed" +#: skins/default/templates/question.html:407 +msgid "Follow" msgstr "" -#: skins/default/templates/questions.html:105 -#, fuzzy, python-format -msgid "" -"\n" -" %(q_num)s question\n" -" " -msgid_plural "" -"\n" -" %(q_num)s questions\n" -" " -msgstr[0] "" -"\n" -"

        %(q_num)s

        question

        " -msgstr[1] "" -"\n" -"
        %(q_num)s

        questions

        " - -#: skins/default/templates/questions.html:111 views/readers.py:155 -#, fuzzy, python-format -msgid "%(q_num)s question" -msgid_plural "%(q_num)s questions" -msgstr[0] "One question" -msgstr[1] "" - -#: skins/default/templates/questions.html:114 +#: skins/default/templates/question.html:414 #, python-format -msgid "with %(author_name)s's contributions" -msgstr "" - -#: skins/default/templates/questions.html:117 -msgid "tagged" -msgstr "" - -#: skins/default/templates/questions.html:122 -msgid "Search tips:" -msgstr "" +msgid "%(count)s follower" +msgid_plural "%(count)s followers" +msgstr[0] "" -#: skins/default/templates/questions.html:125 -msgid "reset author" -msgstr "" +#: skins/default/templates/question.html:420 +#, fuzzy +msgid "email the updates" +msgstr "Last updated" -#: skins/default/templates/questions.html:127 -#: skins/default/templates/questions.html:130 -#: skins/default/templates/questions.html:168 -#: skins/default/templates/questions.html:171 -msgid " or " +#: skins/default/templates/question.html:423 +msgid "" +"Here (once you log in) you will be able to sign up for the " +"periodic email updates about this question." msgstr "" -#: skins/default/templates/questions.html:128 -msgid "reset tags" +#: skins/default/templates/question.html:428 +msgid "subscribe to this question rss feed" msgstr "" -#: skins/default/templates/questions.html:131 -#: skins/default/templates/questions.html:134 -msgid "start over" +#: skins/default/templates/question.html:429 +msgid "subsribe to rss feed" msgstr "" -#: skins/default/templates/questions.html:136 -msgid " - to expand, or dig in by adding more tags and revising the query." -msgstr "" +#: skins/default/templates/question.html:438 +msgid "Question tags" +msgstr "Tags" -#: skins/default/templates/questions.html:139 -msgid "Search tip:" +#: skins/default/templates/question.html:460 +msgid "Stats:" msgstr "" -#: skins/default/templates/questions.html:139 -msgid "add tags and a query to focus your search" -msgstr "" +#: skins/default/templates/question.html:462 +msgid "question asked" +msgstr "Asked" -#: skins/default/templates/questions.html:154 -#: skins/default/templates/unused/questions_ajax.html:79 -msgid "There are no unanswered questions here" -msgstr "" +#: skins/default/templates/question.html:465 +msgid "question was seen" +msgstr "Seen" -#: skins/default/templates/questions.html:157 -#: skins/default/templates/unused/questions_ajax.html:82 -msgid "No favorite questions here. " +#: skins/default/templates/question.html:465 +msgid "times" msgstr "" -#: skins/default/templates/questions.html:158 -#: skins/default/templates/unused/questions_ajax.html:83 -msgid "Please start (bookmark) some questions when you visit them" -msgstr "" +#: skins/default/templates/question.html:468 +msgid "last updated" +msgstr "Last updated" -#: skins/default/templates/questions.html:163 -#: skins/default/templates/unused/questions_ajax.html:88 -msgid "You can expand your search by " +#: skins/default/templates/question.html:477 +msgid "Related questions" msgstr "" -#: skins/default/templates/questions.html:166 -#: skins/default/templates/unused/questions_ajax.html:92 -msgid "resetting author" +#: skins/default/templates/question_edit.html:4 +#: skins/default/templates/question_edit.html:9 +msgid "Edit question" msgstr "" -#: skins/default/templates/questions.html:169 -#: skins/default/templates/unused/questions_ajax.html:96 -msgid "resetting tags" +#: skins/default/templates/question_retag.html:3 +#: skins/default/templates/question_retag.html:5 +msgid "Change tags" msgstr "" -#: skins/default/templates/questions.html:172 -#: skins/default/templates/questions.html:175 -#: skins/default/templates/unused/questions_ajax.html:100 -#: skins/default/templates/unused/questions_ajax.html:104 -msgid "starting over" +#: skins/default/templates/question_retag.html:21 +msgid "Retag" msgstr "" -#: skins/default/templates/questions.html:180 -#: skins/default/templates/unused/questions_ajax.html:109 -msgid "Please always feel free to ask your question!" +#: skins/default/templates/question_retag.html:28 +msgid "Why use and modify tags?" msgstr "" -#: skins/default/templates/questions.html:184 -#: skins/default/templates/unused/questions_ajax.html:113 -msgid "Did not find what you were looking for?" +#: skins/default/templates/question_retag.html:30 +msgid "Tags help to keep the content better organized and searchable" msgstr "" -#: skins/default/templates/questions.html:185 -#: skins/default/templates/unused/questions_ajax.html:114 -msgid "Please, post your question!" +#: skins/default/templates/question_retag.html:32 +msgid "tag editors receive special awards from the community" msgstr "" -#: skins/default/templates/questions.html:200 -msgid "Contributors" +#: skins/default/templates/question_retag.html:59 +msgid "up to 5 tags, less than 20 characters each" msgstr "" -#: skins/default/templates/questions.html:217 -msgid "Related tags" -msgstr "Tags" - -#: skins/default/templates/reopen.html:3 skins/default/templates/reopen.html:6 +#: skins/default/templates/reopen.html:3 skins/default/templates/reopen.html:5 msgid "Reopen question" msgstr "" -#: skins/default/templates/reopen.html:9 +#: skins/default/templates/reopen.html:6 msgid "Title" msgstr "" -#: skins/default/templates/reopen.html:14 +#: skins/default/templates/reopen.html:11 #, python-format msgid "" "This question has been closed by \n" -" %(closed_by_username)s\n" -" " +" %(closed_by_username)s\n" msgstr "" -#: skins/default/templates/reopen.html:19 +#: skins/default/templates/reopen.html:16 msgid "Close reason:" msgstr "" -#: skins/default/templates/reopen.html:22 +#: skins/default/templates/reopen.html:19 msgid "When:" msgstr "" -#: skins/default/templates/reopen.html:25 +#: skins/default/templates/reopen.html:22 #, fuzzy msgid "Reopen this question?" msgstr "Post Your Answer" -#: skins/default/templates/reopen.html:29 +#: skins/default/templates/reopen.html:26 msgid "Reopen this question" msgstr "" @@ -4074,460 +4656,119 @@ msgstr "" msgid "revision %(number)s" msgstr "" -#: skins/default/templates/tag_selector.html:3 -msgid "Interesting tags" +#: skins/default/templates/subscribe_for_tags.html:3 +#: skins/default/templates/subscribe_for_tags.html:5 +msgid "Subscribe for tags" msgstr "" -#: skins/default/templates/tag_selector.html:13 -#, python-format -msgid "remove '%(tag_name)s' from the list of interesting tags" +#: skins/default/templates/subscribe_for_tags.html:6 +msgid "Please, subscribe for the following tags:" msgstr "" -#: skins/default/templates/tag_selector.html:19 -#: skins/default/templates/tag_selector.html:36 -#: skins/default/templates/user_moderate.html:35 -msgid "Add" +#: skins/default/templates/subscribe_for_tags.html:15 +msgid "Subscribe" msgstr "" -#: skins/default/templates/tag_selector.html:20 -msgid "Ignored tags" +#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:11 +msgid "Tag list" msgstr "" -#: skins/default/templates/tag_selector.html:30 +#: skins/default/templates/tags.html:9 #, python-format -msgid "remove '%(tag_name)s' from the list of ignored tags" -msgstr "" - -#: skins/default/templates/tag_selector.html:39 -msgid "keep ignored questions hidden" -msgstr "" - -#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:8 -msgid "Tag list" +msgid "Tags, matching \"%(stag)s\"" msgstr "" -#: skins/default/templates/tags.html:14 +#: skins/default/templates/tags.html:19 msgid "sorted alphabetically" msgstr "" -#: skins/default/templates/tags.html:15 +#: skins/default/templates/tags.html:20 msgid "by name" msgstr "" -#: skins/default/templates/tags.html:20 +#: skins/default/templates/tags.html:25 msgid "sorted by frequency of tag use" msgstr "" -#: skins/default/templates/tags.html:21 +#: skins/default/templates/tags.html:26 msgid "by popularity" msgstr "" -#: skins/default/templates/tags.html:27 -#, python-format -msgid "" -"All tags matching '%(stag)s'" -msgstr "" - -#: skins/default/templates/tags.html:30 +#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:56 msgid "Nothing found" msgstr "" -#: skins/default/templates/user.html:14 -#, python-format -msgid "%(username)s's profile" +#: skins/default/templates/users.html:4 skins/default/templates/users.html:7 +msgid "Users" msgstr "" -#: skins/default/templates/user_edit.html:4 -msgid "Edit user profile" +#: skins/default/templates/users.html:13 +msgid "see people with the highest reputation" msgstr "" -#: skins/default/templates/user_edit.html:7 -msgid "edit profile" +#: skins/default/templates/users.html:14 +#: skins/default/templates/user_profile/user_info.html:25 +msgid "reputation" +msgstr "karma" + +#: skins/default/templates/users.html:19 +msgid "see people who joined most recently" msgstr "" -#: skins/default/templates/user_edit.html:17 -#: skins/default/templates/user_info.html:11 -msgid "change picture" +#: skins/default/templates/users.html:20 +msgid "recent" msgstr "" -#: skins/default/templates/user_edit.html:20 -msgid "Registered user" +#: skins/default/templates/users.html:25 +msgid "see people who joined the site first" msgstr "" -#: skins/default/templates/user_edit.html:27 -msgid "Screen Name" +#: skins/default/templates/users.html:31 +msgid "see people sorted by name" msgstr "" -#: skins/default/templates/user_edit.html:75 -#: skins/default/templates/user_email_subscriptions.html:18 -msgid "Update" +#: skins/default/templates/users.html:32 +msgid "by username" msgstr "" -#: skins/default/templates/user_email_subscriptions.html:4 -msgid "Email subscription settings" +#: skins/default/templates/users.html:37 +#, python-format +msgid "users matching query %(suser)s:" msgstr "" -#: skins/default/templates/user_email_subscriptions.html:5 -msgid "email subscription settings info" +#: skins/default/templates/users.html:40 +msgid "Nothing found." msgstr "" -"Adjust frequency of email updates. Receive " -"updates on interesting questions by email,
        help the community by answering questions of your colleagues. If you do not wish to " -"receive emails - select 'no email' on all items below.
        Updates are only " -"sent when there is any new activity on selected items." -#: skins/default/templates/user_email_subscriptions.html:19 -msgid "Stop sending email" -msgstr "Stop Email" +#: skins/default/templates/authopenid/changeemail.html:2 +#: skins/default/templates/authopenid/changeemail.html:8 +#: skins/default/templates/authopenid/changeemail.html:36 +msgid "Change email" +msgstr "Change Email" -#: skins/default/templates/user_inbox.html:31 -msgid "Sections:" +#: skins/default/templates/authopenid/changeemail.html:10 +msgid "Save your email address" msgstr "" -#: skins/default/templates/user_inbox.html:35 +#: skins/default/templates/authopenid/changeemail.html:15 #, python-format -msgid "forum responses (%(re_count)s)" +msgid "change %(email)s info" msgstr "" +"Enter your new email into the box below if " +"you'd like to use another email for update subscriptions." +"
        Currently you are using %(email)s" -#: skins/default/templates/user_inbox.html:40 +#: skins/default/templates/authopenid/changeemail.html:17 #, python-format -msgid "flagged items (%(flag_count)s)" +msgid "here is why email is required, see %(gravatar_faq_url)s" msgstr "" - -#: skins/default/templates/user_inbox.html:46 -msgid "select:" -msgstr "" - -#: skins/default/templates/user_inbox.html:48 -msgid "seen" -msgstr "" - -#: skins/default/templates/user_inbox.html:49 -msgid "new" -msgstr "" - -#: skins/default/templates/user_inbox.html:50 -msgid "none" -msgstr "" - -#: skins/default/templates/user_inbox.html:51 -msgid "mark as seen" -msgstr "" - -#: skins/default/templates/user_inbox.html:52 -msgid "mark as new" -msgstr "" - -#: skins/default/templates/user_inbox.html:53 -msgid "dismiss" -msgstr "" - -#: skins/default/templates/user_info.html:18 -#: skins/default/templates/users.html:13 skins/default/templates/users.html:14 -msgid "reputation" -msgstr "karma" - -#: skins/default/templates/user_info.html:30 -msgid "manage login methods" -msgstr "" - -#: skins/default/templates/user_info.html:34 -msgid "update profile" -msgstr "" - -#: skins/default/templates/user_info.html:46 -msgid "real name" -msgstr "" - -#: skins/default/templates/user_info.html:51 -msgid "member for" -msgstr "member since" - -#: skins/default/templates/user_info.html:56 -msgid "last seen" -msgstr "" - -#: skins/default/templates/user_info.html:62 -msgid "user website" -msgstr "" - -#: skins/default/templates/user_info.html:68 -msgid "location" -msgstr "" - -#: skins/default/templates/user_info.html:75 -msgid "age" -msgstr "" - -#: skins/default/templates/user_info.html:76 -msgid "age unit" -msgstr "years old" - -#: skins/default/templates/user_info.html:83 -msgid "todays unused votes" -msgstr "" - -#: skins/default/templates/user_info.html:84 -msgid "votes left" -msgstr "" - -#: skins/default/templates/user_moderate.html:5 -#, python-format -msgid "%(username)s's current status is \"%(status)s\"" -msgstr "" - -#: skins/default/templates/user_moderate.html:8 -msgid "User status changed" -msgstr "" - -#: skins/default/templates/user_moderate.html:15 -msgid "Save" -msgstr "" - -#: skins/default/templates/user_moderate.html:21 -#, python-format -msgid "Your current reputation is %(reputation)s points" -msgstr "" - -#: skins/default/templates/user_moderate.html:23 -#, python-format -msgid "User's current reputation is %(reputation)s points" -msgstr "" - -#: skins/default/templates/user_moderate.html:27 -#, fuzzy -msgid "User reputation changed" -msgstr "user karma" - -#: skins/default/templates/user_moderate.html:34 -msgid "Subtract" -msgstr "" - -#: skins/default/templates/user_moderate.html:39 -#, python-format -msgid "Send message to %(username)s" -msgstr "" - -#: skins/default/templates/user_moderate.html:40 -msgid "" -"An email will be sent to the user with 'reply-to' field set to your email " -"address. Please make sure that your address is entered correctly." -msgstr "" - -#: skins/default/templates/user_moderate.html:42 -#, fuzzy -msgid "Message sent" -msgstr "years old" - -#: skins/default/templates/user_moderate.html:60 -msgid "Send message" -msgstr "" - -#: skins/default/templates/user_reputation.html:7 -msgid "Your karma change log." -msgstr "" - -#: skins/default/templates/user_reputation.html:9 -#, python-format -msgid "%(user_name)s's karma change log" -msgstr "" - -#: skins/default/templates/user_stats.html:7 -#, python-format -msgid "%(counter)s Question" -msgid_plural "%(counter)s Questions" -msgstr[0] "" - -#: skins/default/templates/user_stats.html:12 -#, python-format -msgid "%(counter)s Answer" -msgid_plural "%(counter)s Answers" -msgstr[0] "" - -#: skins/default/templates/user_stats.html:20 -#, python-format -msgid "the answer has been voted for %(answer_score)s times" -msgstr "" - -#: skins/default/templates/user_stats.html:20 -msgid "this answer has been selected as correct" -msgstr "" - -#: skins/default/templates/user_stats.html:30 -#, python-format -msgid "(%(comment_count)s comment)" -msgid_plural "the answer has been commented %(comment_count)s times" -msgstr[0] "" - -#: skins/default/templates/user_stats.html:40 -#, python-format -msgid "%(cnt)s Vote" -msgid_plural "%(cnt)s Votes " -msgstr[0] "" - -#: skins/default/templates/user_stats.html:46 -msgid "thumb up" -msgstr "" - -#: skins/default/templates/user_stats.html:47 -msgid "user has voted up this many times" -msgstr "" - -#: skins/default/templates/user_stats.html:50 -msgid "thumb down" -msgstr "" - -#: skins/default/templates/user_stats.html:51 -msgid "user voted down this many times" -msgstr "" - -#: skins/default/templates/user_stats.html:59 -#, python-format -msgid "%(counter)s Tag" -msgid_plural "%(counter)s Tags" -msgstr[0] "" - -#: skins/default/templates/user_stats.html:67 -#, python-format -msgid "" -"see other questions with %(view_user)s's contributions tagged '%(tag_name)s' " -msgstr "" - -#: skins/default/templates/user_stats.html:81 -#, python-format -msgid "%(counter)s Badge" -msgid_plural "%(counter)s Badges" -msgstr[0] "" - -#: skins/default/templates/user_tabs.html:5 -msgid "User profile" -msgstr "" - -#: skins/default/templates/user_tabs.html:6 -msgid "overview" -msgstr "" - -#: skins/default/templates/user_tabs.html:9 views/users.py:752 -msgid "comments and answers to others questions" -msgstr "" - -#: skins/default/templates/user_tabs.html:10 -msgid "inbox" -msgstr "" - -#: skins/default/templates/user_tabs.html:13 -msgid "graph of user reputation" -msgstr "Graph of user karma" - -#: skins/default/templates/user_tabs.html:14 -msgid "reputation history" -msgstr "karma history" - -#: skins/default/templates/user_tabs.html:16 -msgid "questions that user selected as his/her favorite" -msgstr "" - -#: skins/default/templates/user_tabs.html:17 -msgid "favorites" -msgstr "" - -#: skins/default/templates/user_tabs.html:19 -msgid "recent activity" -msgstr "" - -#: skins/default/templates/user_tabs.html:20 -msgid "activity" -msgstr "" - -#: skins/default/templates/user_tabs.html:23 views/users.py:817 -msgid "user vote record" -msgstr "" - -#: skins/default/templates/user_tabs.html:24 -msgid "casted votes" -msgstr "votes" - -#: skins/default/templates/user_tabs.html:28 views/users.py:927 -msgid "email subscription settings" -msgstr "" - -#: skins/default/templates/user_tabs.html:29 -msgid "subscriptions" -msgstr "" - -#: skins/default/templates/user_tabs.html:33 views/users.py:215 -msgid "moderate this user" -msgstr "" - -#: skins/default/templates/user_tabs.html:34 -#, fuzzy -msgid "moderation" -msgstr "karma" - -#: skins/default/templates/users.html:4 skins/default/templates/users.html:7 -msgid "Users" -msgstr "" - -#: skins/default/templates/users.html:19 skins/default/templates/users.html:20 -msgid "recent" -msgstr "" - -#: skins/default/templates/users.html:31 skins/default/templates/users.html:32 -msgid "by username" -msgstr "" - -#: skins/default/templates/users.html:38 -#, python-format -msgid "users matching query %(suser)s:" -msgstr "" - -#: skins/default/templates/users.html:41 -msgid "Nothing found." -msgstr "" - -#: skins/default/templates/users_questions.html:9 -#: skins/default/templates/users_questions.html:17 -#, python-format -msgid "this questions was selected as favorite %(cnt)s time" -msgid_plural "this questions was selected as favorite %(cnt)s times" -msgstr[0] "" - -#: skins/default/templates/users_questions.html:10 -msgid "thumb-up on" -msgstr "" - -#: skins/default/templates/users_questions.html:18 -msgid "thumb-up off" -msgstr "" - -#: skins/default/templates/authopenid/changeemail.html:2 -#: skins/default/templates/authopenid/changeemail.html:8 -#: skins/default/templates/authopenid/changeemail.html:36 -msgid "Change email" -msgstr "Change Email" - -#: skins/default/templates/authopenid/changeemail.html:10 -msgid "Save your email address" -msgstr "" - -#: skins/default/templates/authopenid/changeemail.html:15 -#, python-format -msgid "change %(email)s info" -msgstr "" -"Enter your new email into the box below if " -"you'd like to use another email for update subscriptions." -"
        Currently you are using %(email)s" - -#: skins/default/templates/authopenid/changeemail.html:17 -#, python-format -msgid "here is why email is required, see %(gravatar_faq_url)s" -msgstr "" -"Please enter your email address in the box below. Valid email address is required on this Q&A forum. If you like, " -"you can receive updates on interesting questions or entire " -"forum via email. Also, your email is used to create a unique gravatar image for your account. " -"Email addresses are never shown or otherwise shared with anybody else." +"Please enter your email address in the box below. Valid email address is required on this Q&A forum. If you like, " +"you can receive updates on interesting questions or entire " +"forum via email. Also, your email is used to create a unique gravatar image for your " +"account. Email addresses are never shown or otherwise shared with anybody " +"else." #: skins/default/templates/authopenid/changeemail.html:29 msgid "Your new Email" @@ -4552,12 +4793,12 @@ msgstr "" #, python-format msgid "validate %(email)s info or go to %(change_email_url)s" msgstr "" -"An email with a validation link has been sent to %" -"(email)s. Please follow the emailed link with your " +"An email with a validation link has been sent to " +"%(email)s. Please follow the emailed link with your " "web browser. Email validation is necessary to help insure the proper use of " "email on Q&A. If you would like to use " -"another email, please change it again." +"another email, please change it again." #: skins/default/templates/authopenid/changeemail.html:52 msgid "Email not changed" @@ -4569,8 +4810,8 @@ msgid "old %(email)s kept, if you like go to %(change_email_url)s" msgstr "" "Your email address %(email)s has not been changed." " If you decide to change it later - you can always do it by editing " -"it in your user profile or by using the previous form again." +"it in your user profile or by using the previous form again." #: skins/default/templates/authopenid/changeemail.html:59 msgid "Email changed" @@ -4607,32 +4848,33 @@ msgstr "Validation email not sent" msgid "email key not sent %(email)s change email here %(change_link)s" msgstr "" "Your current email address %(email)s has been " -"validated before so the new key was not sent. You can change email used for update subscriptions if necessary." +"validated before so the new key was not sent. You can change email used for update subscriptions if " +"necessary." #: skins/default/templates/authopenid/complete.html:21 -#: skins/default/templates/authopenid/complete.html:24 +#: skins/default/templates/authopenid/complete.html:23 #, fuzzy msgid "Registration" msgstr "karma" -#: skins/default/templates/authopenid/complete.html:29 +#: skins/default/templates/authopenid/complete.html:27 #, python-format msgid "register new %(provider)s account info, see %(gravatar_faq_url)s" msgstr "" -"

        You are here for the first time with your %" -"(provider)s login. Please create your screen name " +"

        You are here for the first time with your " +"%(provider)s login. Please create your screen name " "and save your email address. Saved email address will let " "you subscribe for the updates on the most interesting " "questions and will be used to create and retrieve your unique avatar image - " "gravatar.

        " -#: skins/default/templates/authopenid/complete.html:32 +#: skins/default/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" +" %(provider)s. Email is required too, see " +"%(gravatar_faq_url)s\n" " " msgstr "" "

        Oops... looks like screen name %(username)s is " @@ -4644,21 +4886,21 @@ msgstr "" "updates on the interesting questions or entire forum by email. " "Email addresses are never shown or otherwise shared with anybody else.

        " -#: skins/default/templates/authopenid/complete.html:36 +#: skins/default/templates/authopenid/complete.html:34 #, python-format msgid "" "register new external %(provider)s account info, see %(gravatar_faq_url)s" msgstr "" -"

        You are here for the first time with your %" -"(provider)s login.

        You can either keep your screen " +"

        You are here for the first time with your " +"%(provider)s login.

        You can either keep your screen " "name the same as your %(provider)s login name or choose some other " "nickname.

        Also, please save a valid email address. " "With the email you can subscribe for the updates on the " "most interesting questions. Email address is also used to create and " -"retrieve your unique avatar image - gravatar.

        " +"retrieve your unique avatar image - gravatar.

        " -#: skins/default/templates/authopenid/complete.html:39 +#: skins/default/templates/authopenid/complete.html:37 #, python-format msgid "register new Facebook connect account info, see %(gravatar_faq_url)s" msgstr "" @@ -4666,25 +4908,25 @@ msgstr "" "Facebook login. Please create your screen name and " "save your email address. Saved email address will let you " "subscribe for the updates on the most interesting questions " -"and will be used to create and retrieve your unique avatar image - gravatar.

        " +"and will be used to create and retrieve your unique avatar image - gravatar.

        " -#: skins/default/templates/authopenid/complete.html:42 +#: skins/default/templates/authopenid/complete.html:40 msgid "This account already exists, please use another." msgstr "" -#: skins/default/templates/authopenid/complete.html:61 +#: skins/default/templates/authopenid/complete.html:59 msgid "Screen name label" msgstr "Screen Name (will be shown to others)" -#: skins/default/templates/authopenid/complete.html:68 +#: skins/default/templates/authopenid/complete.html:66 msgid "Email address label" msgstr "" "Email Address (will not be shared with " "anyone, must be valid)" -#: skins/default/templates/authopenid/complete.html:74 -#: skins/default/templates/authopenid/signup_with_password.html:17 +#: skins/default/templates/authopenid/complete.html:72 +#: skins/default/templates/authopenid/signup_with_password.html:36 msgid "receive updates motivational blurb" msgstr "" "Receive forum updates by email - this will help our " @@ -4693,16 +4935,16 @@ msgstr "" "week
        - only when there is anything new.
        If you like, please " "adjust this now or any time later from your user account." -#: skins/default/templates/authopenid/complete.html:78 -#: skins/default/templates/authopenid/signup_with_password.html:21 +#: skins/default/templates/authopenid/complete.html:76 +#: skins/default/templates/authopenid/signup_with_password.html:40 msgid "please select one of the options above" msgstr "" -#: skins/default/templates/authopenid/complete.html:81 +#: skins/default/templates/authopenid/complete.html:79 msgid "Tag filter tool will be your right panel, once you log in." msgstr "" -#: skins/default/templates/authopenid/complete.html:82 +#: skins/default/templates/authopenid/complete.html:80 msgid "create account" msgstr "Signup" @@ -4754,11 +4996,38 @@ msgid "" "for any inconvenience" msgstr "" -#: skins/default/templates/authopenid/signin.html:3 +#: skins/default/templates/authopenid/logout.html:3 +msgid "Logout" +msgstr "" + +#: skins/default/templates/authopenid/logout.html:5 +msgid "You have successfully logged out" +msgstr "" + +#: skins/default/templates/authopenid/logout.html: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 "" + +#: skins/default/templates/authopenid/macros.html:53 +msgid "Please enter your user name, then sign in" +msgstr "" + +#: skins/default/templates/authopenid/macros.html:54 +#: skins/default/templates/authopenid/signin.html:90 +msgid "(or select another login method above)" +msgstr "" + +#: skins/default/templates/authopenid/macros.html:56 +msgid "Sign in" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:4 msgid "User login" msgstr "User login" -#: skins/default/templates/authopenid/signin.html:11 +#: skins/default/templates/authopenid/signin.html:14 #, fuzzy, python-format msgid "" "\n" @@ -4770,7 +5039,7 @@ msgstr "" "strong> %(summary)s...\" is saved and will be " "posted once you log in." -#: skins/default/templates/authopenid/signin.html:18 +#: skins/default/templates/authopenid/signin.html:21 #, fuzzy, python-format msgid "" "Your question \n" @@ -4781,340 +5050,1043 @@ msgstr "" "strong> %(summary)s...\" is saved and will be " "posted once you log in." -#: skins/default/templates/authopenid/signin.html:25 +#: skins/default/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." msgstr "" -#: skins/default/templates/authopenid/signin.html:28 +#: skins/default/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 "" -#: skins/default/templates/authopenid/signin.html:30 +#: skins/default/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 "" -#: skins/default/templates/authopenid/signin.html:34 +#: skins/default/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 "" -#: skins/default/templates/authopenid/signin.html:36 +#: skins/default/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 "" -#: skins/default/templates/authopenid/signin.html:39 +#: skins/default/templates/authopenid/signin.html:42 msgid "" "Please check your email and visit the enclosed link to re-connect to your " "account" msgstr "" -#: skins/default/templates/authopenid/signin.html:86 -msgid "Please enter your user name, then sign in" -msgstr "" - #: skins/default/templates/authopenid/signin.html:87 -#: skins/default/templates/authopenid/signin.html:109 -msgid "(or select another login method above)" -msgstr "" - -#: skins/default/templates/authopenid/signin.html:89 -msgid "Sign in" -msgstr "" - -#: skins/default/templates/authopenid/signin.html:107 #, fuzzy msgid "Please enter your user name and password, then sign in" msgstr "Vui lòng nhập tên và mật khẩu" -#: skins/default/templates/authopenid/signin.html:111 +#: skins/default/templates/authopenid/signin.html:93 msgid "Login failed, please try again" msgstr "" -#: skins/default/templates/authopenid/signin.html:114 -msgid "Login name" -msgstr "" +#: skins/default/templates/authopenid/signin.html:97 +#, fuzzy +msgid "Login or email" +msgstr "Đăng nhập không thành công." -#: skins/default/templates/authopenid/signin.html:118 +#: skins/default/templates/authopenid/signin.html:101 msgid "Password" msgstr "" -#: skins/default/templates/authopenid/signin.html:122 +#: skins/default/templates/authopenid/signin.html:106 msgid "Login" msgstr "" -#: skins/default/templates/authopenid/signin.html:129 +#: skins/default/templates/authopenid/signin.html:113 msgid "To change your password - please enter the new one twice, then submit" msgstr "" -#: skins/default/templates/authopenid/signin.html:132 +#: skins/default/templates/authopenid/signin.html:117 #, fuzzy msgid "New password" msgstr "New password created" -#: skins/default/templates/authopenid/signin.html:137 +#: skins/default/templates/authopenid/signin.html:124 msgid "Please, retype" msgstr "" -#: skins/default/templates/authopenid/signin.html:156 +#: skins/default/templates/authopenid/signin.html:146 msgid "Here are your current login methods" msgstr "" -#: skins/default/templates/authopenid/signin.html:160 +#: skins/default/templates/authopenid/signin.html:150 msgid "provider" msgstr "" -#: skins/default/templates/authopenid/signin.html:161 +#: skins/default/templates/authopenid/signin.html:151 #, fuzzy msgid "last used" msgstr "Last updated" -#: skins/default/templates/authopenid/signin.html:162 +#: skins/default/templates/authopenid/signin.html:152 msgid "delete, if you like" msgstr "" -#: skins/default/templates/authopenid/signin.html:187 +#: skins/default/templates/authopenid/signin.html:168 +msgid "cannot be deleted" +msgstr "" + +#: skins/default/templates/authopenid/signin.html:181 msgid "Still have trouble signing in?" msgstr "" -#: skins/default/templates/authopenid/signin.html:192 +#: skins/default/templates/authopenid/signin.html:186 msgid "Please, enter your email address below and obtain a new key" msgstr "" -#: skins/default/templates/authopenid/signin.html:194 +#: skins/default/templates/authopenid/signin.html:188 msgid "Please, enter your email address below to recover your account" msgstr "" -#: skins/default/templates/authopenid/signin.html:197 +#: skins/default/templates/authopenid/signin.html:191 msgid "recover your account via email" msgstr "" -#: skins/default/templates/authopenid/signin.html:208 +#: skins/default/templates/authopenid/signin.html:202 msgid "Send a new recovery key" msgstr "" -#: skins/default/templates/authopenid/signin.html:210 +#: skins/default/templates/authopenid/signin.html:204 msgid "Recover your account via email" msgstr "" -#: skins/default/templates/authopenid/signin.html:221 +#: skins/default/templates/authopenid/signin.html:216 msgid "Why use OpenID?" msgstr "" -#: skins/default/templates/authopenid/signin.html:224 +#: skins/default/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/default/templates/authopenid/signin.html:227 +#: skins/default/templates/authopenid/signin.html:222 msgid "reuse openid" msgstr "You can safely re-use the same login for all OpenID-enabled websites." -#: skins/default/templates/authopenid/signin.html:230 +#: skins/default/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/default/templates/authopenid/signin.html:233 +#: skins/default/templates/authopenid/signin.html:228 msgid "openid is supported open standard" msgstr "OpenID is based on an open standard, supported by many organizations." -#: skins/default/templates/authopenid/signin.html:237 +#: skins/default/templates/authopenid/signin.html:232 msgid "Find out more" msgstr "" -#: skins/default/templates/authopenid/signin.html:238 +#: skins/default/templates/authopenid/signin.html:233 msgid "Get OpenID" msgstr "" -#: skins/default/templates/authopenid/signup_with_password.html:3 -msgid "Signup" +#: skins/default/templates/authopenid/signup_with_password.html:4 +msgid "Signup" +msgstr "" + +#: skins/default/templates/authopenid/signup_with_password.html:10 +msgid "Please register by clicking on any of the icons below" +msgstr "" + +#: skins/default/templates/authopenid/signup_with_password.html:23 +#, fuzzy +msgid "or create a new user name and password here" +msgstr "Vui lòng nhập tên và mật khẩu" + +#: skins/default/templates/authopenid/signup_with_password.html:25 +msgid "Create login name and password" +msgstr "" + +#: skins/default/templates/authopenid/signup_with_password.html:26 +msgid "Traditional signup info" +msgstr "" +"If you prefer, create your forum login name and " +"password here. However, please keep in mind that we also support " +"OpenID login method. With OpenID you can " +"simply reuse your external login (e.g. Gmail or AOL) without ever sharing " +"your login details with anyone and having to remember yet another password." + +#: skins/default/templates/authopenid/signup_with_password.html:44 +msgid "" +"Please read and type in the two words below to help us prevent automated " +"account creation." +msgstr "" + +#: skins/default/templates/authopenid/signup_with_password.html:47 +msgid "Create Account" +msgstr "" + +#: skins/default/templates/authopenid/signup_with_password.html:49 +msgid "or" +msgstr "" + +#: skins/default/templates/authopenid/signup_with_password.html:50 +msgid "return to OpenID login" +msgstr "" + +#: skins/default/templates/avatar/add.html:3 +#, fuzzy +msgid "add avatar" +msgstr "How to change my picture (gravatar) and what is gravatar?" + +#: skins/default/templates/avatar/add.html:5 +#, fuzzy +msgid "Change avatar" +msgstr "Change Email" + +#: skins/default/templates/avatar/add.html:6 +#: skins/default/templates/avatar/change.html:7 +msgid "Your current avatar: " +msgstr "" + +#: skins/default/templates/avatar/add.html:9 +#: skins/default/templates/avatar/change.html:11 +msgid "You haven't uploaded an avatar yet. Please upload one now." +msgstr "" + +#: skins/default/templates/avatar/add.html:13 +msgid "Upload New Image" +msgstr "" + +#: skins/default/templates/avatar/change.html:4 +#, fuzzy +msgid "change avatar" +msgstr "How to change my picture (gravatar) and what is gravatar?" + +#: skins/default/templates/avatar/change.html:17 +msgid "Choose new Default" +msgstr "" + +#: skins/default/templates/avatar/change.html:22 +msgid "Upload" +msgstr "" + +#: skins/default/templates/avatar/confirm_delete.html:3 +msgid "delete avatar" +msgstr "" + +#: skins/default/templates/avatar/confirm_delete.html:5 +msgid "Please select the avatars that you would like to delete." +msgstr "" + +#: skins/default/templates/avatar/confirm_delete.html:7 +#, python-format +msgid "" +"You have no avatars to delete. Please upload one now." +msgstr "" + +#: skins/default/templates/avatar/confirm_delete.html:13 +msgid "Delete These" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:3 +msgid "answer tips" +msgstr "Tips" + +#: skins/default/templates/blocks/answer_edit_tips.html:6 +msgid "please make your answer relevant to this community" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:9 +msgid "try to give an answer, rather than engage into a discussion" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:12 +msgid "please try to provide details" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:15 +#: skins/default/templates/blocks/question_edit_tips.html:11 +msgid "be clear and concise" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:19 +#: skins/default/templates/blocks/question_edit_tips.html:15 +msgid "see frequently asked questions" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:25 +#: skins/default/templates/blocks/question_edit_tips.html:20 +msgid "Markdown tips" +msgstr "Markdown basics" + +#: skins/default/templates/blocks/answer_edit_tips.html:29 +#: skins/default/templates/blocks/question_edit_tips.html:24 +msgid "*italic*" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:32 +#: skins/default/templates/blocks/question_edit_tips.html:27 +msgid "**bold**" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:36 +#: skins/default/templates/blocks/question_edit_tips.html:31 +msgid "*italic* or _italic_" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:39 +#: skins/default/templates/blocks/question_edit_tips.html:34 +msgid "**bold** or __bold__" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/question_edit_tips.html:38 +msgid "link" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:38 +#: skins/default/templates/blocks/question_edit_tips.html:43 +msgid "text" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:43 +msgid "image" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:51 +#: skins/default/templates/blocks/question_edit_tips.html:47 +msgid "numbered list:" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:56 +#: skins/default/templates/blocks/question_edit_tips.html:52 +msgid "basic HTML tags are also supported" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:60 +#: skins/default/templates/blocks/question_edit_tips.html:56 +msgid "learn more about Markdown" +msgstr "" + +#: skins/default/templates/blocks/ask_form.html:6 +msgid "login to post question info" +msgstr "" +"You are welcome to start submitting your question " +"anonymously. 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/blocks/ask_form.html:10 +#, python-format +msgid "" +"must have valid %(email)s to post, \n" +" see %(email_validation_faq_url)s\n" +" " +msgstr "" +"Looks like your email address, %(email)s has not " +"yet been validated. To post messages you must verify your email, " +"please see more details here." +"
        You can submit your question now and validate email after that. Your " +"question will saved as pending meanwhile. " + +#: skins/default/templates/blocks/ask_form.html:34 +msgid "Login/signup to post your question" +msgstr "Login/Signup to Post" + +#: skins/default/templates/blocks/ask_form.html:36 +msgid "Ask your question" +msgstr "Ask Your Question" + +#: skins/default/templates/blocks/bottom_scripts.html:7 +#, python-format +msgid "" +"Please note: %(app_name)s requires javascript to work properly, please " +"enable javascript in your browser, here is how" +msgstr "" + +#: skins/default/templates/blocks/editor_data.html:5 +#, 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/blocks/editor_data.html:7 +#, python-format +msgid "please use %(tag_count)s tag" +msgid_plural "please use %(tag_count)s tags or less" +msgstr[0] "" + +#: skins/default/templates/blocks/editor_data.html:8 +#, python-format +msgid "" +"please use up to %(tag_count)s tags, less than %(max_chars)s characters each" +msgstr "" + +#: skins/default/templates/blocks/footer.html:4 +#: skins/default/templates/blocks/header_meta_links.html:12 +msgid "about" +msgstr "" + +#: skins/default/templates/blocks/footer.html:6 +msgid "privacy policy" +msgstr "" + +#: skins/default/templates/blocks/footer.html:15 +msgid "give feedback" +msgstr "" + +#: skins/default/templates/blocks/footer.html:41 +#, python-format +msgid "Content on this site is licensed under a %(license)s" +msgstr "" + +#: skins/default/templates/blocks/header.html:8 +msgid "back to home page" +msgstr "" + +#: skins/default/templates/blocks/header.html:9 +#, python-format +msgid "%(site)s logo" +msgstr "" + +#: skins/default/templates/blocks/header.html:20 +msgid "questions" +msgstr "" + +#: skins/default/templates/blocks/header.html:30 +msgid "users" +msgstr "people" + +#: skins/default/templates/blocks/header.html:35 +msgid "badges" +msgstr "" + +#: skins/default/templates/blocks/header.html:40 +msgid "ask a question" +msgstr "" + +#: skins/default/templates/blocks/header_meta_links.html:8 +msgid "logout" +msgstr "" + +#: skins/default/templates/blocks/header_meta_links.html:10 +msgid "login" +msgstr "" + +#: skins/default/templates/blocks/header_meta_links.html:15 +msgid "settings" +msgstr "" + +#: skins/default/templates/blocks/input_bar.html:34 +msgid "search" +msgstr "" + +#: skins/default/templates/blocks/question_edit_tips.html:3 +msgid "question tips" +msgstr "Tips" + +#: skins/default/templates/blocks/question_edit_tips.html:5 +msgid "please ask a relevant question" +msgstr "ask a question interesting to this community" + +#: skins/default/templates/blocks/question_edit_tips.html:8 +msgid "please try provide enough details" +msgstr "provide enough details" + +#: skins/default/templates/blocks/tag_selector.html:4 +msgid "Interesting tags" +msgstr "" + +#: skins/default/templates/blocks/tag_selector.html:18 +#: skins/default/templates/blocks/tag_selector.html:34 +#: skins/default/templates/user_profile/user_moderate.html:40 +msgid "Add" +msgstr "" + +#: skins/default/templates/blocks/tag_selector.html:20 +msgid "Ignored tags" +msgstr "" + +#: skins/default/templates/blocks/tag_selector.html:36 +msgid "Display tag filter" +msgstr "" + +#: skins/default/templates/main_page/content.html:13 +msgid "Did not find what you were looking for?" +msgstr "" + +#: skins/default/templates/main_page/content.html:14 +msgid "Please, post your question!" +msgstr "" + +#: skins/default/templates/main_page/headline.html:7 +msgid "subscribe to the questions feed" +msgstr "" + +#: skins/default/templates/main_page/headline.html:8 +msgid "rss feed" +msgstr "" + +#: skins/default/templates/main_page/headline.html:12 views/readers.py:131 +#, fuzzy, python-format +msgid "%(q_num)s question, tagged" +msgid_plural "%(q_num)s questions, tagged" +msgstr[0] "One question" +msgstr[1] "" + +#: skins/default/templates/main_page/headline.html:14 views/readers.py:139 +#, fuzzy, python-format +msgid "%(q_num)s question" +msgid_plural "%(q_num)s questions" +msgstr[0] "One question" +msgstr[1] "" + +#: skins/default/templates/main_page/headline.html:17 +#, python-format +msgid "with %(author_name)s's contributions" +msgstr "" + +#: skins/default/templates/main_page/headline.html:28 +msgid "Search tips:" +msgstr "" + +#: skins/default/templates/main_page/headline.html:31 +msgid "reset author" +msgstr "" + +#: skins/default/templates/main_page/headline.html:33 +#: skins/default/templates/main_page/headline.html:36 +#: 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:34 +msgid "reset tags" +msgstr "" + +#: skins/default/templates/main_page/headline.html:37 +#: skins/default/templates/main_page/headline.html:40 +msgid "start over" +msgstr "" + +#: skins/default/templates/main_page/headline.html:42 +msgid " - to expand, or dig in by adding more tags and revising the query." +msgstr "" + +#: skins/default/templates/main_page/headline.html:45 +msgid "Search tip:" +msgstr "" + +#: skins/default/templates/main_page/headline.html:45 +msgid "add tags and a query to focus your search" +msgstr "" + +#: skins/default/templates/main_page/nothing_found.html:4 +msgid "There are no unanswered questions here" +msgstr "" + +#: skins/default/templates/main_page/nothing_found.html:7 +#, fuzzy +msgid "No questions here. " +msgstr "answered question" + +#: skins/default/templates/main_page/nothing_found.html:8 +msgid "Please star (bookmark) some questions or follow some users." +msgstr "" + +#: skins/default/templates/main_page/nothing_found.html:13 +msgid "You can expand your search by " +msgstr "" + +#: skins/default/templates/main_page/nothing_found.html:16 +msgid "resetting author" +msgstr "" + +#: skins/default/templates/main_page/nothing_found.html:19 +msgid "resetting tags" +msgstr "" + +#: skins/default/templates/main_page/nothing_found.html:22 +#: skins/default/templates/main_page/nothing_found.html:25 +msgid "starting over" +msgstr "" + +#: skins/default/templates/main_page/nothing_found.html:30 +msgid "Please always feel free to ask your question!" +msgstr "" + +#: skins/default/templates/main_page/sidebar.html:8 +msgid "Contributors" +msgstr "" + +#: skins/default/templates/main_page/sidebar.html:25 +msgid "Related tags" +msgstr "Tags" + +#: skins/default/templates/main_page/tab_bar.html:5 +msgid "In:" +msgstr "" + +#: skins/default/templates/main_page/tab_bar.html:14 +msgid "see unanswered questions" +msgstr "" + +#: skins/default/templates/main_page/tab_bar.html:20 +#, fuzzy +msgid "see your followed questions" +msgstr "Ask Your Question" + +#: skins/default/templates/main_page/tab_bar.html:21 +msgid "followed" +msgstr "" + +#: skins/default/templates/main_page/tab_bar.html:25 +msgid "Sort by:" +msgstr "" + +#: skins/default/templates/user_profile/user.html:13 +#, python-format +msgid "%(username)s's profile" +msgstr "" + +#: skins/default/templates/user_profile/user_edit.html:4 +msgid "Edit user profile" +msgstr "" + +#: skins/default/templates/user_profile/user_edit.html:7 +msgid "edit profile" +msgstr "" + +#: skins/default/templates/user_profile/user_edit.html:17 +#: skins/default/templates/user_profile/user_info.html:15 +msgid "change picture" +msgstr "" + +#: skins/default/templates/user_profile/user_edit.html:20 +msgid "Registered user" +msgstr "" + +#: skins/default/templates/user_profile/user_edit.html:27 +msgid "Screen Name" +msgstr "" + +#: skins/default/templates/user_profile/user_edit.html:83 +#: skins/default/templates/user_profile/user_email_subscriptions.html:21 +msgid "Update" +msgstr "" + +#: skins/default/templates/user_profile/user_email_subscriptions.html:4 +#: skins/default/templates/user_profile/user_tabs.html:42 +msgid "subscriptions" +msgstr "" + +#: skins/default/templates/user_profile/user_email_subscriptions.html:7 +msgid "Email subscription settings" +msgstr "" + +#: skins/default/templates/user_profile/user_email_subscriptions.html:8 +msgid "email subscription settings info" +msgstr "" +"Adjust frequency of email updates. Receive " +"updates on interesting questions by email,
        help the community by answering questions of your colleagues. If you do not wish to " +"receive emails - select 'no email' on all items below.
        Updates are only " +"sent when there is any new activity on selected items." + +#: skins/default/templates/user_profile/user_email_subscriptions.html:22 +msgid "Stop sending email" +msgstr "Stop Email" + +#: skins/default/templates/user_profile/user_favorites.html:4 +#: skins/default/templates/user_profile/user_tabs.html:27 +#, fuzzy +msgid "followed questions" +msgstr "Ask Your Question" + +#: skins/default/templates/user_profile/user_inbox.html:18 +#: skins/default/templates/user_profile/user_tabs.html:12 +msgid "inbox" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:34 +msgid "Sections:" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:38 +#, python-format +msgid "forum responses (%(re_count)s)" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:43 +#, python-format +msgid "flagged items (%(flag_count)s)" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:49 +msgid "select:" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:51 +msgid "seen" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:52 +msgid "new" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:53 +msgid "none" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:54 +msgid "mark as seen" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:55 +msgid "mark as new" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:56 +msgid "dismiss" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:19 +msgid "remove" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:36 +msgid "update profile" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:40 +msgid "manage login methods" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:53 +msgid "real name" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:58 +msgid "member for" +msgstr "member since" + +#: skins/default/templates/user_profile/user_info.html:63 +msgid "last seen" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:69 +msgid "user website" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:75 +msgid "location" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:82 +msgid "age" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:83 +msgid "age unit" +msgstr "years old" + +#: skins/default/templates/user_profile/user_info.html:90 +msgid "todays unused votes" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:91 +msgid "votes left" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:4 +#: skins/default/templates/user_profile/user_tabs.html:48 +#, fuzzy +msgid "moderation" +msgstr "karma" + +#: skins/default/templates/user_profile/user_moderate.html:8 +#, python-format +msgid "%(username)s's current status is \"%(status)s\"" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:11 +msgid "User status changed" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:20 +msgid "Save" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:26 +#, python-format +msgid "Your current reputation is %(reputation)s points" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:28 +#, python-format +msgid "User's current reputation is %(reputation)s points" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:32 +#, fuzzy +msgid "User reputation changed" +msgstr "user karma" + +#: skins/default/templates/user_profile/user_moderate.html:39 +msgid "Subtract" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:44 +#, python-format +msgid "Send message to %(username)s" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:45 +msgid "" +"An email will be sent to the user with 'reply-to' field set to your email " +"address. Please make sure that your address is entered correctly." +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:47 +#, fuzzy +msgid "Message sent" +msgstr "years old" + +#: skins/default/templates/user_profile/user_moderate.html:65 +msgid "Send message" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:75 +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 "" + +#: skins/default/templates/user_profile/user_moderate.html:78 +msgid "" +"Moderators have the same privileges as administrators, but cannot add or " +"remove user status of 'moderator' or 'administrator'." +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:81 +msgid "'Approved' status means the same as regular user." +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:84 +#, fuzzy +msgid "Suspended users can only edit or delete their own 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." + +#: skins/default/templates/user_profile/user_moderate.html:87 +msgid "" +"Blocked users can only login and send feedback to the site administrators." +msgstr "" + +#: skins/default/templates/user_profile/user_network.html:5 +#: skins/default/templates/user_profile/user_tabs.html:18 +msgid "network" +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] "" + +#: skins/default/templates/user_profile/user_network.html:14 +#, python-format +msgid "Following %(count)s person" +msgid_plural "Following %(count)s people" +msgstr[0] "" + +#: skins/default/templates/user_profile/user_network.html:19 +msgid "" +"Your network is empty. Would you like to follow someone? - Just visit their " +"profiles and click \"follow\"" +msgstr "" + +#: skins/default/templates/user_profile/user_network.html:21 +#, python-format +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:31 +msgid "activity" +msgstr "" + +#: skins/default/templates/user_profile/user_recent.html:21 +#: 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 "" + +#: skins/default/templates/user_profile/user_reputation.html:13 +#, python-format +msgid "%(user_name)s's karma change log" +msgstr "" + +#: skins/default/templates/user_profile/user_stats.html:5 +#: skins/default/templates/user_profile/user_tabs.html:7 +msgid "overview" +msgstr "" + +#: skins/default/templates/user_profile/user_stats.html:11 +#, python-format +msgid "%(counter)s Question" +msgid_plural "%(counter)s Questions" +msgstr[0] "" + +#: skins/default/templates/user_profile/user_stats.html:16 +#, python-format +msgid "%(counter)s Answer" +msgid_plural "%(counter)s 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 "" + +#: 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)" +msgid_plural "the answer has been commented %(comment_count)s times" +msgstr[0] "" + +#: skins/default/templates/user_profile/user_stats.html:44 +#, python-format +msgid "%(cnt)s Vote" +msgid_plural "%(cnt)s Votes " +msgstr[0] "" + +#: skins/default/templates/user_profile/user_stats.html:50 +msgid "thumb up" msgstr "" -#: skins/default/templates/authopenid/signup_with_password.html:6 -msgid "Create login name and password" +#: skins/default/templates/user_profile/user_stats.html:51 +msgid "user has voted up this many times" msgstr "" -#: skins/default/templates/authopenid/signup_with_password.html:8 -msgid "Traditional signup info" +#: skins/default/templates/user_profile/user_stats.html:54 +msgid "thumb down" msgstr "" -"If you prefer, create your forum login name and " -"password here. However, please keep in mind that we also support " -"OpenID login method. With OpenID you can " -"simply reuse your external login (e.g. Gmail or AOL) without ever sharing " -"your login details with anyone and having to remember yet another password." -#: skins/default/templates/authopenid/signup_with_password.html:24 -msgid "" -"Please read and type in the two words below to help us prevent automated " -"account creation." +#: skins/default/templates/user_profile/user_stats.html:55 +msgid "user voted down this many times" msgstr "" -#: skins/default/templates/authopenid/signup_with_password.html:26 -msgid "Create Account" -msgstr "" +#: skins/default/templates/user_profile/user_stats.html:63 +#, python-format +msgid "%(counter)s Tag" +msgid_plural "%(counter)s Tags" +msgstr[0] "" -#: skins/default/templates/authopenid/signup_with_password.html:27 -msgid "or" -msgstr "" +#: skins/default/templates/user_profile/user_stats.html:99 +#, python-format +msgid "%(counter)s Badge" +msgid_plural "%(counter)s Badges" +msgstr[0] "" -#: skins/default/templates/authopenid/signup_with_password.html:28 -msgid "return to OpenID login" -msgstr "" +#: skins/default/templates/user_profile/user_stats.html:122 +#, fuzzy +msgid "Answer to:" +msgstr "Tips" -#: skins/default/templates/unused/email_base.html:8 -msgid "home" +#: skins/default/templates/user_profile/user_tabs.html:5 +msgid "User profile" msgstr "" -#: skins/default/templates/unused/notarobot.html:3 -msgid "Please prove that you are a Human Being" +#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:772 +msgid "comments and answers to others questions" msgstr "" -#: skins/default/templates/unused/notarobot.html:10 -msgid "I am a Human Being" +#: skins/default/templates/user_profile/user_tabs.html:16 +msgid "followers and followed users" msgstr "" -#: skins/default/templates/unused/question_counter_widget.html:78 -msgid "Please decide if you like this question or not by voting" -msgstr "" +#: skins/default/templates/user_profile/user_tabs.html:21 +msgid "graph of user reputation" +msgstr "Graph of user karma" -#: skins/default/templates/unused/question_counter_widget.html:84 -msgid "" -"\n" -" vote\n" -" " -msgid_plural "" -"\n" -" votes\n" -" " -msgstr[0] "" -msgstr[1] "" +#: skins/default/templates/user_profile/user_tabs.html:23 +msgid "reputation history" +msgstr "karma history" -#: skins/default/templates/unused/question_counter_widget.html:93 -#: skins/default/templates/unused/question_list.html:23 -#: skins/default/templates/unused/questions_ajax.html:27 -msgid "this answer has been accepted to be correct" +#: skins/default/templates/user_profile/user_tabs.html:25 +msgid "questions that user is following" msgstr "" -#: skins/default/templates/unused/question_counter_widget.html:99 -msgid "" -"\n" -" answer \n" -" " -msgid_plural "" -"\n" -" answers \n" -" " -msgstr[0] "" -msgstr[1] "" - -#: skins/default/templates/unused/question_counter_widget.html:111 -msgid "" -"\n" -" view\n" -" " -msgid_plural "" -"\n" -" views\n" -" " -msgstr[0] "" -msgstr[1] "" - -#: skins/default/templates/unused/question_list.html:15 -#, fuzzy -msgid "" -"\n" -" vote\n" -" " -msgid_plural "" -"\n" -" votes\n" -" " -msgstr[0] "" -"\n" -"(one comment)" -msgstr[1] "" -"\n" -"(%(comment_count)s comments)" +#: skins/default/templates/user_profile/user_tabs.html:29 +msgid "recent activity" +msgstr "" -#: skins/default/templates/unused/question_list.html:35 -#, fuzzy -msgid "" -"\n" -" answer \n" -" " -msgid_plural "" -"\n" -" answers \n" -" " -msgstr[0] "" -"\n" -"(one comment)" -msgstr[1] "" -"\n" -"(%(comment_count)s comments)" +#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:847 +msgid "user vote record" +msgstr "" -#: skins/default/templates/unused/question_list.html:47 -#, fuzzy -msgid "" -"\n" -" view\n" -" " -msgid_plural "" -"\n" -" views\n" -" " -msgstr[0] "" -"\n" -"(one comment)" -msgstr[1] "" -"\n" -"(%(comment_count)s comments)" +#: skins/default/templates/user_profile/user_tabs.html:36 +msgid "casted votes" +msgstr "votes" -#: skins/default/templates/unused/question_summary_list_roll.html:13 -msgid "answers" +#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:960 +msgid "email subscription settings" msgstr "" -#: skins/default/templates/unused/question_summary_list_roll.html:14 -msgid "votes" +#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:224 +msgid "moderate this user" msgstr "" -#: skins/default/templates/unused/question_summary_list_roll.html:15 -msgid "views" +#: skins/default/templates/user_profile/user_votes.html:4 +msgid "votes" msgstr "" -#: templatetags/extra_filters.py:168 templatetags/extra_filters_jinja.py:229 +#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:240 msgid "no items in counter" msgstr "no" -#: templatetags/extra_tags.py:155 views/readers.py:185 -#, python-format -msgid "%(badge_count)d %(badge_level)s badge" -msgid_plural "%(badge_count)d %(badge_level)s badges" -msgstr[0] "" - -#: templatetags/extra_tags.py:178 templatetags/extra_tags.py:225 -#: templatetags/extra_tags.py:229 -msgid "reputation points" -msgstr "karma" - -#: templatetags/extra_tags.py:221 -#, python-format -msgid "your karma is %(reputation)s" +#: utils/decorators.py:90 views/commands.py:112 views/commands.py:132 +msgid "Oops, apologies - there was some error" msgstr "" -#: templatetags/extra_tags.py:237 -msgid "badges: " +#: utils/decorators.py:109 +#, fuzzy +msgid "Please login to post" +msgstr "please sign-in" + +#: utils/decorators.py:205 +msgid "Spam was detected on your post, sorry for if this is a mistake" msgstr "" #: utils/forms.py:32 @@ -5185,34 +6157,41 @@ msgstr "" msgid "sorry, entered passwords did not match, please try again" msgstr "" -#: utils/functions.py:63 -#, python-format -msgid "on %(date)s" -msgstr "" - -#: utils/functions.py:67 +#: utils/functions.py:74 msgid "2 days ago" msgstr "" -#: utils/functions.py:69 +#: utils/functions.py:76 msgid "yesterday" msgstr "" -#: utils/functions.py:71 +#: utils/functions.py:79 #, python-format msgid "%(hr)d hour ago" msgid_plural "%(hr)d hours ago" msgstr[0] "" msgstr[1] "" -#: utils/functions.py:73 +#: utils/functions.py:85 #, python-format msgid "%(min)d min ago" msgid_plural "%(min)d mins ago" msgstr[0] "" msgstr[1] "" -#: views/commands.py:42 +#: views/avatar_views.py:99 +msgid "Successfully uploaded a new avatar." +msgstr "" + +#: views/avatar_views.py:140 +msgid "Successfully updated your avatar." +msgstr "" + +#: views/avatar_views.py:180 +msgid "Successfully deleted the requested avatars." +msgstr "" + +#: views/commands.py:39 #, fuzzy msgid "anonymous users cannot vote" msgstr "" @@ -5220,150 +6199,311 @@ msgstr "" "until this issue is resolved. You can, however edit your existing posts. " "Please contact the forum administrator to reach a resolution." -#: views/commands.py:62 +#: views/commands.py:59 msgid "Sorry you ran out of votes for today" msgstr "" -#: views/commands.py:68 +#: views/commands.py:65 #, python-format msgid "You have %(votes_left)s votes left for today" msgstr "" -#: views/commands.py:132 views/commands.py:149 -msgid "Oops, apologies - there was some error" -msgstr "" - -#: views/commands.py:139 +#: views/commands.py:122 msgid "Sorry, but anonymous users cannot access the inbox" msgstr "" -#: views/commands.py:209 +#: views/commands.py:192 msgid "Sorry, something is not right here..." msgstr "" -#: views/commands.py:224 +#: views/commands.py:207 msgid "Sorry, but anonymous users cannot accept answers" msgstr "" -#: views/commands.py:305 +#: views/commands.py:288 #, python-format msgid "subscription saved, %(email)s needs validation, see %(details_url)s" msgstr "" "Your subscription is saved, but email address %(email)s needs to be " "validated, please see
        more details here" -#: views/commands.py:313 +#: views/commands.py:295 msgid "email update frequency has been set to daily" msgstr "" -#: views/meta.py:57 +#: views/commands.py:400 +#, python-format +msgid "Tag subscription was canceled (undo)." +msgstr "" + +#: views/commands.py:409 +#, python-format +msgid "Please sign in to subscribe for: %(tags)s" +msgstr "" + +#: views/commands.py:542 +msgid "Please sign in to vote" +msgstr "" + +#: views/meta.py:83 msgid "Q&A forum feedback" msgstr "" -#: views/meta.py:58 +#: views/meta.py:84 msgid "Thanks for the feedback!" msgstr "" -#: views/meta.py:68 +#: views/meta.py:92 msgid "We look forward to hearing your feedback! Please, give it next time :)" msgstr "" -#: views/readers.py:429 -msgid "Sorry, this question has been deleted and is no longer accessible" +#: views/readers.py:177 +#, python-format +msgid "%(badge_count)d %(badge_level)s badge" +msgid_plural "%(badge_count)d %(badge_level)s badges" +msgstr[0] "" + +#: views/readers.py:441 +msgid "" +"Sorry, the comment you are looking for has been deleted and is no longer " +"accessible" msgstr "" -#: views/users.py:216 +#: views/users.py:225 msgid "moderate user" msgstr "" -#: views/users.py:400 +#: views/users.py:380 msgid "user profile" msgstr "" -#: views/users.py:401 +#: views/users.py:381 msgid "user profile overview" msgstr "" -#: views/users.py:684 +#: views/users.py:685 msgid "recent user activity" msgstr "" -#: views/users.py:685 +#: views/users.py:686 msgid "profile - recent activity" msgstr "" -#: views/users.py:753 +#: views/users.py:773 msgid "profile - responses" msgstr "" -#: views/users.py:818 +#: views/users.py:848 msgid "profile - votes" msgstr "" -#: views/users.py:856 +#: views/users.py:883 msgid "user reputation in the community" msgstr "user karma" -#: views/users.py:857 +#: views/users.py:884 msgid "profile - user reputation" msgstr "Profile - User's Karma" -#: views/users.py:885 +#: views/users.py:911 msgid "users favorite questions" msgstr "" -#: views/users.py:886 +#: views/users.py:912 msgid "profile - favorite questions" msgstr "" -#: views/users.py:906 views/users.py:910 +#: views/users.py:932 views/users.py:936 msgid "changes saved" msgstr "" -#: views/users.py:916 +#: views/users.py:942 msgid "email updates canceled" msgstr "" -#: views/users.py:928 +#: views/users.py:961 msgid "profile - email subscriptions" msgstr "" -#: views/writers.py:53 +#: views/writers.py:58 msgid "Sorry, anonymous users cannot upload files" msgstr "" -#: views/writers.py:62 +#: views/writers.py:68 #, python-format msgid "allowed file types are '%(file_types)s'" msgstr "" -#: views/writers.py:85 +#: views/writers.py:91 #, python-format msgid "maximum upload file size is %(file_size)sK" msgstr "" -#: views/writers.py:93 +#: views/writers.py:99 msgid "Error uploading file. Please contact the site administrator. Thank you." msgstr "" -#: views/writers.py:454 +#: views/writers.py:191 +#, fuzzy +msgid "Please log in to ask questions" +msgstr "" +"You are welcome to start submitting your question " +"anonymously. 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/writers.py:492 +#, fuzzy +msgid "Please log in to answer questions" +msgstr "" +"Please try to give a substantial answer. If " +"you wanted to comment on the question or answer, just use the " +"commenting tool. Please remember that you can always revise " +"your answers - no need to answer the same question twice. Also, " +"please don't forget to vote - it really helps to select the " +"best questions and answers!" + +#: views/writers.py:598 #, python-format msgid "" "Sorry, you appear to be logged out and cannot post comments. Please sign in." msgstr "" -#: views/writers.py:489 +#: views/writers.py:646 +#, fuzzy +msgid "Sorry, anonymous users cannot edit comments" +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/writers.py:654 #, python-format msgid "" "Sorry, you appear to be logged out and cannot delete comments. Please sign in." msgstr "" -#: views/writers.py:509 +#: views/writers.py:675 msgid "sorry, we seem to have some technical difficulties" msgstr "" +#~ msgid "Email verification subject line" +#~ msgstr "Verification Email from Q&A forum" + +#~ msgid "" +#~ "must have valid %(email)s to post, \n" +#~ " see %(email_validation_faq_url)s\n" +#~ " " +#~ msgstr "" +#~ "Looks like your email address, %(email)s has not " +#~ "yet been validated. To post messages you must verify your email, " +#~ "please see more details here." +#~ "
        You can submit your question now and validate email after that. Your " +#~ "question will saved as pending meanwhile. " + +#~ msgid "how to validate email title" +#~ msgstr "How to validate email and why?" + +#~ msgid "" +#~ "how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)" +#~ "s" +#~ msgstr "" +#~ "

        How? If you have just set or " +#~ "changed your email address - check your email and click the " +#~ "included link.
        The link contains a key generated specifically " +#~ "for you. You can also and check your " +#~ "email again.

        Why? Email " +#~ "validation is required to make sure that only you can post " +#~ "messages on your behalf and to minimize spam " +#~ "posts.
        With email you can subscribe for updates on " +#~ "the most interesting questions. Also, when you sign up for the first time " +#~ "- create a unique gravatar personal image.

        " + +#~ msgid "" +#~ "As a registered user you can login with your OpenID, log out of the site " +#~ "or permanently remove your account." +#~ msgstr "" +#~ "Clicking Logout will log you out from the forumbut will " +#~ "not sign you off from your OpenID provider.

        If you wish to sign off " +#~ "completely - please make sure to log out from your OpenID provider as " +#~ "well." + +#~ msgid "Logout now" +#~ msgstr "Logout Now" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " %(q_num)s question\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " %(q_num)s questions\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "

        %(q_num)s

        question

        " +#~ msgstr[1] "" +#~ "\n" +#~ "
        %(q_num)s

        questions

        " + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " vote\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " votes\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "(one comment)" +#~ msgstr[1] "" +#~ "\n" +#~ "(%(comment_count)s comments)" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " answer \n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " answers \n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "(one comment)" +#~ msgstr[1] "" +#~ "\n" +#~ "(%(comment_count)s comments)" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " view\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " views\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "(one comment)" +#~ msgstr[1] "" +#~ "\n" +#~ "(%(comment_count)s comments)" + +#~ msgid "reputation points" +#~ msgstr "karma" + #~ msgid "Account with this name already exists on the forum" #~ msgstr "Tài khoản với tên này đã tồn tại trên diễn đàn" @@ -5379,23 +6519,9 @@ msgstr "" #~ msgid "This account is inactive." #~ msgstr "Tài khoản này không hoạt động" -#~ msgid "Login failed." -#~ msgstr "Đăng nhập không thành công." - #~ msgid "email update message subject" #~ msgstr "news from Q&A forum" -#~ msgid "" -#~ "must have valid %(email)s to post, \n" -#~ " see %(email_validation_faq_url)s\n" -#~ " " -#~ msgstr "" -#~ "Looks like your email address, %(email)s has not " -#~ "yet been validated. To post messages you must verify your email, " -#~ "please see more details here." -#~ "
        You can submit your question now and validate email after that. Your " -#~ "question will saved as pending meanwhile. " - #~ msgid "general message about privacy" #~ msgstr "" #~ "Respecting users privacy is an important core principle of this Q&A " @@ -5428,15 +6554,6 @@ msgstr "" #~ msgid "Found by tags" #~ msgstr "Tagged questions" -#~ msgid "click to see hottest questions" -#~ msgstr "questions with most answers" - -#~ msgid "click to see coldest questions" -#~ msgstr "questions with fewest answers" - -#~ msgid "click to see least voted questions" -#~ msgstr "least voted questions" - #, fuzzy #~ msgid " %(q_num)s question found" #~ msgid_plural "%(q_num)s questions found" @@ -5515,9 +6632,6 @@ msgstr "" #~ "Enter your Askbot login and password
        (or select your OpenID provider above)" -#~ msgid "please login" -#~ msgstr "please sign-in" - #~ msgid "welcome to website" #~ msgstr "Welcome to Q&A forum" @@ -5541,17 +6655,6 @@ msgstr "" #~ "

        %(q_num)s

        questions containing " #~ "%(searchtitle)s

        " -#~ msgid " have total %(q_num)s questions containing %(searchtitle)s " -#~ msgid_plural " have total %(q_num)s questions containing %(searchtitle)s " -#~ msgstr[0] "" -#~ "
        %(q_num)s

        question with title " -#~ "containing %(searchtitle)s

        " -#~ msgstr[1] "" -#~ "
        %(q_num)s

        questions with title " -#~ "containing %(searchtitle)s

        " - #~ msgid " have total %(q_num)s unanswered questions " #~ msgid_plural " have total %(q_num)s unanswered questions " #~ msgstr[0] "" diff --git a/askbot/locale/vi/LC_MESSAGES/djangojs.mo b/askbot/locale/vi/LC_MESSAGES/djangojs.mo new file mode 100644 index 00000000..497e70f5 Binary files /dev/null and b/askbot/locale/vi/LC_MESSAGES/djangojs.mo differ diff --git a/askbot/locale/vi/LC_MESSAGES/djangojs.po b/askbot/locale/vi/LC_MESSAGES/djangojs.po new file mode 100644 index 00000000..3448d342 --- /dev/null +++ b/askbot/locale/vi/LC_MESSAGES/djangojs.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: 0.7\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-10-08 02:33-0500\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: skins/default/media/js/post.js:532 +msgid "Follow" +msgstr "" + +#: skins/default/media/js/post.js:541 skins/default/media/js/post.js.py:550 +#, perl-format +msgid "%s follower" +msgid_plural "%s followers" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/media/js/post.js:546 +msgid "
        Following
        Unfollow
        " +msgstr "" + +#: skins/default/media/js/post.js:1613 +msgid "Please enter question title (>10 characters)" +msgstr "" + +#: skins/default/media/js/tag_selector.js:15 +msgid "Tag \"\" matches:" +msgstr "" + +#: skins/default/media/js/tag_selector.js:84 +#, perl-format +msgid "and %s more, not shown..." +msgstr "" + +#: skins/default/media/js/user.js:129 +msgid "Please signin to follow %(username)s" +msgstr "" + +#: skins/default/media/js/user.js:161 +#, perl-format +msgid "unfollow %s" +msgstr "" + +#: skins/default/media/js/user.js:164 +#, perl-format +msgid "following %s" +msgstr "" + +#: skins/default/media/js/user.js:170 +#, perl-format +msgid "follow %s" +msgstr "" diff --git a/askbot/locale/zh-tw/LC_MESSAGES/django.mo b/askbot/locale/zh-tw/LC_MESSAGES/django.mo index 1cef042a..9e398bb2 100644 Binary files a/askbot/locale/zh-tw/LC_MESSAGES/django.mo and b/askbot/locale/zh-tw/LC_MESSAGES/django.mo differ diff --git a/askbot/locale/zh-tw/LC_MESSAGES/django.po b/askbot/locale/zh-tw/LC_MESSAGES/django.po index f92cb8d7..68699798 100644 --- a/askbot/locale/zh-tw/LC_MESSAGES/django.po +++ b/askbot/locale/zh-tw/LC_MESSAGES/django.po @@ -5,102 +5,125 @@ # msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: 0.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-11-29 16:39-0600\n" +"POT-Creation-Date: 2011-10-08 02:49-0500\n" "PO-Revision-Date: 2010-08-25 19:05+0800\n" "Last-Translator: cch \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" -#: exceptions.py:9 +#: exceptions.py:13 #, fuzzy msgid "Sorry, but anonymous visitors cannot access this function" msgstr "匿名用戶不能投票" -#: feed.py:22 +#: feed.py:26 feed.py:100 msgid " - " msgstr "-" -#: feed.py:22 +#: feed.py:26 +#, fuzzy +msgid "Individual question feed" +msgstr "已選問題" + +#: feed.py:100 msgid "latest questions" msgstr "最新問題" -#: forms.py:54 skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:40 -#: skins/default/templates/question_edit_tips.html:45 +#: forms.py:74 +#, fuzzy +msgid "select country" +msgstr "刪除帳號" + +#: forms.py:83 +msgid "Country" +msgstr "" + +#: forms.py:91 +#, fuzzy +msgid "Country field is required" +msgstr " 標籤不能為空白。" + +#: forms.py:104 skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:38 +#: skins/default/templates/blocks/question_edit_tips.html:43 msgid "title" msgstr "標題" -#: forms.py:55 +#: forms.py:105 msgid "please enter a descriptive title for your question" msgstr "" "請輸入對問題具有描述性質的標題 - 「幫忙!緊急求助!」不是建議的提問方式。" -#: forms.py:60 +#: forms.py:110 msgid "title must be > 10 characters" msgstr "標題的長度必須大於10" -#: forms.py:69 +#: forms.py:119 msgid "content" msgstr "內容" -#: forms.py:75 +#: forms.py:125 msgid "question content must be > 10 characters" msgstr "內容至少要10個字符" -#: forms.py:84 skins/default/templates/header.html:83 +#: forms.py:134 skins/default/templates/macros.html:660 +#: skins/default/templates/macros.html:672 +#: skins/default/templates/blocks/header.html:25 msgid "tags" msgstr "標籤" -#: forms.py:86 +#: forms.py:136 msgid "" "Tags are short keywords, with no spaces within. Up to five tags can be used." msgstr "標籤為關鍵詞, 內無空格, 最多可使用 5 個" -#: forms.py:93 skins/default/templates/question_retag.html:78 +#: forms.py:164 skins/default/templates/question_retag.html:58 msgid "tags are required" msgstr " 標籤不能為空。" -#: forms.py:102 +#: forms.py:173 #, 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個標籤" -msgstr[1] "最多只能有5個標籤" -#: forms.py:111 +#: forms.py:181 +#, python-format +msgid "At least one of the following tags is required : %(tags)s" +msgstr "" + +#: forms.py:190 #, 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" -msgstr[1] "每個標籤的長度不超過20" -#: forms.py:119 +#: forms.py:198 msgid "use-these-chars-in-tags" msgstr "" -# index.html -#: forms.py:130 -#: skins/default/templates/unused/question_summary_list_roll.html:26 -#: skins/default/templates/unused/question_summary_list_roll.html:38 -msgid "community wiki" -msgstr "社區 Wiki" +#: forms.py:233 +msgid "community wiki (karma is not awarded & many others can edit wiki post)" +msgstr "" -#: forms.py:131 +#: forms.py:234 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:147 +#: forms.py:250 msgid "update summary:" msgstr "更新概要:" -#: forms.py:148 +#: forms.py:251 msgid "" "enter a brief summary of your revision (e.g. fixed spelling, grammar, " "improved style, this field is optional)" @@ -108,309 +131,464 @@ msgstr "" "輸入本次修改的簡單概述(如:修改了別字,修正了語法,改進了樣式等。非必填" "項。)" -#: forms.py:161 +#: forms.py:327 msgid "Enter number of points to add or subtract" msgstr "" -#: forms.py:175 const/__init__.py:219 +#: forms.py:341 const/__init__.py:245 msgid "approved" msgstr "" -#: forms.py:176 const/__init__.py:220 +#: forms.py:342 const/__init__.py:246 msgid "watched" msgstr "" -#: forms.py:177 const/__init__.py:221 +#: forms.py:343 const/__init__.py:247 #, fuzzy msgid "suspended" msgstr "更新" -#: forms.py:178 const/__init__.py:222 +#: forms.py:344 const/__init__.py:248 msgid "blocked" msgstr "" -#: forms.py:180 const/__init__.py:218 +#: forms.py:346 +#, fuzzy +msgid "administrator" +msgstr "" +"你好, \n" +" 論壇管理者" + +#: forms.py:347 const/__init__.py:244 msgid "moderator" msgstr "" -#: forms.py:200 +#: forms.py:367 #, fuzzy msgid "Change status to" msgstr "修改標籤" -#: forms.py:227 +#: forms.py:394 msgid "which one?" msgstr "" -#: forms.py:248 +#: forms.py:415 #, fuzzy msgid "Cannot change own status" msgstr "不能給自己的帖子投票" -#: forms.py:254 +#: forms.py:421 msgid "Cannot turn other user to moderator" msgstr "" -#: forms.py:261 +#: forms.py:428 msgid "Cannot change status of another moderator" msgstr "" -#: forms.py:267 +#: forms.py:434 +#, fuzzy +msgid "Cannot change status to admin" +msgstr "不能給自己的帖子投票" + +#: forms.py:440 #, python-format -msgid "If you wish to change %(username)s's status, " +msgid "" +"If you wish to change %(username)s's status, please make a meaningful " +"selection." msgstr "" -#: forms.py:276 +#: forms.py:449 msgid "Subject line" msgstr "" -#: forms.py:283 +#: forms.py:456 #, fuzzy msgid "Message text" msgstr "訊息" -#: forms.py:360 +#: forms.py:542 #, fuzzy msgid "Your name:" msgstr "用戶名" -#: forms.py:361 +#: forms.py:543 #, fuzzy msgid "Email (not shared with anyone):" msgstr "電子郵件(用於頭像顯示服務)" -#: forms.py:362 +#: forms.py:544 #, fuzzy msgid "Your message:" msgstr "Copyright(c)2009.CNPROG.COM" -#: forms.py:449 -msgid "this email does not have to be linked to gravatar" +#: forms.py:581 +#, fuzzy +msgid "ask anonymously" +msgstr "匿名者" + +#: forms.py:583 +msgid "Check if you do not want to reveal your name when asking this question" +msgstr "" + +#: forms.py:743 +msgid "" +"You have asked this question anonymously, if you decide to reveal your " +"identity, please check this box." +msgstr "" + +#: forms.py:747 +msgid "reveal identity" +msgstr "" + +#: forms.py:805 +msgid "" +"Sorry, only owner of the anonymous question can reveal his or her identity, " +"please uncheck the box" +msgstr "" + +#: forms.py:818 +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:856 +#, fuzzy +msgid "this email will be linked to gravatar" msgstr "不會公開,用於頭像顯示服務" -#: forms.py:456 +#: forms.py:863 msgid "Real name" msgstr "真實姓名" -#: forms.py:463 +#: forms.py:870 msgid "Website" msgstr "個人網站" -#: forms.py:470 -msgid "Location" -msgstr "城市" +#: forms.py:877 +msgid "City" +msgstr "" + +#: forms.py:886 +#, fuzzy +msgid "Show country" +msgstr "新帳號" -#: forms.py:477 +#: forms.py:891 msgid "Date of birth" msgstr "生日" -#: forms.py:478 +#: forms.py:892 msgid "will not be shown, used to calculate age, format: YYYY-MM-DD" msgstr "不會公開,只會顯示您的年齡,格式為:YYYY-MM-DD" -#: forms.py:484 +#: forms.py:898 msgid "Profile" msgstr "個人簡介" -#: forms.py:493 +#: forms.py:907 #, fuzzy msgid "Screen name" msgstr "姓名" -#: forms.py:518 forms.py:519 +#: forms.py:938 forms.py:939 msgid "this email has already been registered, please use another one" msgstr "該電子郵件已被注冊,請選擇另一個再試。" -#: forms.py:525 +#: forms.py:946 msgid "Choose email tag filter" msgstr "選擇 Email 標籤篩選" -#: forms.py:564 +#: forms.py:993 msgid "Asked by me" msgstr "詢問" -#: forms.py:567 +#: forms.py:996 msgid "Answered by me" msgstr "回應" -#: forms.py:570 +#: forms.py:999 msgid "Individually selected" msgstr "個別選定" -#: forms.py:573 +#: forms.py:1002 msgid "Entire forum (tag filtered)" msgstr "整個論壇 (標籤篩選)" -#: forms.py:577 +#: forms.py:1006 msgid "Comments and posts mentioning me" msgstr "" -#: forms.py:635 +#: forms.py:1085 msgid "okay, let's try!" msgstr "好, 試試看" -#: forms.py:636 +#: forms.py:1086 msgid "no community email please, thanks" msgstr "無須設群 Email 謝謝" -#: forms.py:640 +#: forms.py:1090 msgid "please choose one of the options above" msgstr "請選上述選項之一" # footer.html -#: urls.py:42 +#: urls.py:53 #, fuzzy msgid "about/" msgstr "關於本站" -#: urls.py:43 conf/site_settings.py:79 +#: urls.py:54 #, fuzzy msgid "faq/" msgstr "常見問題" -#: urls.py:44 +#: urls.py:55 #, fuzzy msgid "privacy/" msgstr "隱私政策" -#: urls.py:45 -#, fuzzy -msgid "logout/" -msgstr "退出登錄" - -#: urls.py:47 urls.py:52 +#: urls.py:57 urls.py:62 #, fuzzy msgid "answers/" msgstr "回答" -#: urls.py:47 urls.py:68 urls.py:164 +#: urls.py:57 urls.py:83 urls.py:198 #, fuzzy msgid "edit/" msgstr "編輯" -#: urls.py:52 urls.py:98 +#: urls.py:62 urls.py:113 #, fuzzy msgid "revisions/" msgstr "版本" -#: urls.py:58 urls.py:63 urls.py:68 urls.py:73 urls.py:78 urls.py:83 -#: urls.py:88 urls.py:93 urls.py:98 +#: urls.py:68 urls.py:78 urls.py:83 urls.py:88 urls.py:93 urls.py:98 +#: urls.py:103 urls.py:108 urls.py:113 urls.py:285 +#: skins/default/templates/question.html:508 #, fuzzy msgid "questions/" msgstr "問題" -#: urls.py:63 +#: urls.py:78 #, fuzzy msgid "ask/" msgstr "提問於" -#: urls.py:73 +#: urls.py:88 #, fuzzy msgid "retag/" msgstr "標籤" -#: urls.py:78 +#: urls.py:93 #, fuzzy msgid "close/" msgstr "關閉" -#: urls.py:83 +#: urls.py:98 #, fuzzy msgid "reopen/" msgstr "打開" -#: urls.py:88 +#: urls.py:103 #, fuzzy msgid "answer/" msgstr "回答" -#: urls.py:93 +#: urls.py:108 skins/default/templates/question.html:508 #, fuzzy msgid "vote/" msgstr "票" -#: urls.py:114 -#, fuzzy -msgid "command/" -msgstr "評論" - -#: urls.py:130 -#, fuzzy -msgid "question/" -msgstr "提問" - -#: urls.py:135 +#: urls.py:144 #, fuzzy msgid "tags/" msgstr "標籤" -#: urls.py:140 urls.py:146 -msgid "mark-tag/" -msgstr "" - -#: urls.py:140 -msgid "interesting/" -msgstr "" - -#: urls.py:146 -msgid "ignored/" -msgstr "" - -#: urls.py:152 -msgid "unmark-tag/" +#: urls.py:187 +msgid "subscribe-for-tags/" msgstr "" -#: urls.py:158 urls.py:164 urls.py:169 +#: urls.py:192 urls.py:198 urls.py:204 urls.py:212 +#: skins/default/templates/main_page/javascript.html:23 #, fuzzy msgid "users/" msgstr "用戶" -#: urls.py:174 urls.py:179 +#: urls.py:205 +#, fuzzy +msgid "subscriptions/" +msgstr "email 訂閱" + +#: urls.py:217 +msgid "users/update_has_custom_avatar/" +msgstr "" + +#: urls.py:222 urls.py:227 #, fuzzy msgid "badges/" msgstr "獎牌榜" -#: urls.py:184 +#: urls.py:232 msgid "messages/" msgstr "" -#: urls.py:184 +#: urls.py:232 msgid "markread/" msgstr "" -#: urls.py:199 +#: urls.py:248 msgid "upload/" msgstr "" -#: urls.py:200 -#, fuzzy -msgid "search/" -msgstr "搜索" - -#: urls.py:201 +#: urls.py:249 #, fuzzy msgid "feedback/" msgstr "問題回饋" -#: urls.py:202 setup_templates/settings.py:182 -#: skins/default/templates/authopenid/signin.html:249 +#: urls.py:291 skins/default/templates/question.html:506 +#: skins/default/templates/main_page/javascript.html:22 +#, fuzzy +msgid "question/" +msgstr "提問" + +#: urls.py:298 setup_templates/settings.py:202 +#: skins/default/templates/authopenid/providers_javascript.html:7 #, fuzzy msgid "account/" msgstr "新帳號" -#: conf/email.py:12 +#: conf/badges.py:12 +#, fuzzy +msgid "Badge settings" +msgstr "帳號設置" + +#: conf/badges.py:21 +msgid "Disciplined: minimum upvotes for deleted post" +msgstr "" + +#: conf/badges.py:30 +msgid "Peer Pressure: minimum downvotes for deleted post" +msgstr "" + +#: conf/badges.py:39 +msgid "Teacher: minimum upvotes for the answer" +msgstr "" + +#: conf/badges.py:48 +msgid "Nice Answer: minimum upvotes for the answer" +msgstr "" + +#: conf/badges.py:57 +msgid "Good Answer: minimum upvotes for the answer" +msgstr "" + +#: conf/badges.py:66 +msgid "Great Answer: minimum upvotes for the answer" +msgstr "" + +#: conf/badges.py:75 +msgid "Nice Question: minimum upvotes for the question" +msgstr "" + +#: conf/badges.py:84 +msgid "Good Question: minimum upvotes for the question" +msgstr "" + +#: conf/badges.py:93 +msgid "Great Question: minimum upvotes for the question" +msgstr "" + +#: conf/badges.py:102 +#, fuzzy +msgid "Popular Question: minimum views" +msgstr "常見問題" + +#: conf/badges.py:111 +#, fuzzy +msgid "Notable Question: minimum views" +msgstr "顯目問題" + +# close.html +#: conf/badges.py:120 +#, fuzzy +msgid "Famous Question: minimum views" +msgstr "著名問題" + +#: conf/badges.py:129 +msgid "Self-Learner: minimum answer upvotes" +msgstr "" + +#: conf/badges.py:138 +msgid "Civic Duty: minimum votes" +msgstr "" + +#: conf/badges.py:147 +msgid "Enlightened Duty: minimum upvotes" +msgstr "" + +#: conf/badges.py:156 +msgid "Guru: minimum upvotes" +msgstr "" + +#: conf/badges.py:165 +msgid "Necromancer: minimum upvotes" +msgstr "" + +#: conf/badges.py:174 +msgid "Necromancer: minimum delay in days" +msgstr "" + +#: conf/badges.py:183 +msgid "Associate Editor: minimum number of edits" +msgstr "" + +#: conf/badges.py:192 +#, fuzzy +msgid "Favorite Question: minimum stars" +msgstr "珍藏問題" + +#: conf/badges.py:201 +#, fuzzy +msgid "Stellar Question: minimum stars" +msgstr "主要的問題" + +#: conf/badges.py:210 +msgid "Commentator: minimum comments" +msgstr "" + +#: conf/badges.py:219 +msgid "Taxonomist: minimum tag use count" +msgstr "" + +#: conf/badges.py:228 +msgid "Enthusiast: minimum days" +msgstr "" + +#: conf/email.py:14 msgid "Email and email alert settings" msgstr "" -#: conf/email.py:20 +#: conf/email.py:22 +#, fuzzy +msgid "Prefix for the email subject line" +msgstr " email 主題歡迎列" + +#: conf/email.py:24 +msgid "" +"This setting takes default from the django settingEMAIL_SUBJECT_PREFIX. A " +"value entered here will overridethe default." +msgstr "" + +#: conf/email.py:36 msgid "Maximum number of news entries in an email alert" msgstr "" -#: conf/email.py:30 +#: conf/email.py:46 msgid "Default news notification frequency" msgstr "" -#: conf/email.py:32 +#: conf/email.py:48 msgid "" "This option currently defines default frequency of emailed updates in the " "following five categories: questions asked by user, answered by user, " @@ -418,34 +596,78 @@ msgid "" "posts mentioning the user and comment responses" msgstr "" -#: conf/email.py:47 +#: conf/email.py:62 +#, fuzzy +msgid "Send periodic reminders about unanswered questions" +msgstr "無未解答問題" + +#: conf/email.py:64 +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) and an IMAP server with a dedicated inbox " +"must be configured " +msgstr "" + +#: conf/email.py:78 +#, fuzzy +msgid "Days before starting to send reminders about unanswered questions" +msgstr "無未解答問題" + +#: conf/email.py:89 +msgid "" +"How often to send unanswered question reminders (in days between the " +"reminders sent)." +msgstr "" + +#: conf/email.py:101 +msgid "Max. number of reminders to send about unanswered questions" +msgstr "" + +#: conf/email.py:113 msgid "Require email verification before allowing to post" msgstr "" -#: conf/email.py:48 +#: conf/email.py:114 msgid "" "Active email verification is done by sending a verification key in email" msgstr "" -#: conf/email.py:57 +#: conf/email.py:123 #, fuzzy msgid "Allow only one account per email address" msgstr "您的電子郵件地址" -#: conf/email.py:66 +#: conf/email.py:132 msgid "Fake email for anonymous user" msgstr "" -#: conf/email.py:67 +#: conf/email.py:133 msgid "Use this setting to control gravatar for email-less user" msgstr "" -#: conf/email.py:76 +#: conf/email.py:142 #, fuzzy -msgid "Prefix for the email subject line" -msgstr " email 主題歡迎列" +msgid "Allow posting questions by email" +msgstr "簽入張貼問題" + +#: conf/email.py:144 +msgid "" +"Before enabling this setting - please fill out IMAP settings in the settings." +"py file" +msgstr "" + +#: conf/email.py:155 +msgid "Replace space in emailed tags with dash" +msgstr "" + +#: conf/email.py:157 +msgid "" +"This setting applies to tags written in the subject line of questions asked " +"by email" +msgstr "" -#: conf/external_keys.py:11 +#: conf/external_keys.py:10 msgid "Keys to connect the site with external services like Facebook, etc." msgstr "" @@ -456,91 +678,116 @@ msgstr "" #: conf/external_keys.py:20 #, python-format msgid "" -"This key helps google index your site please obtain is at google webmasters tools site" +"This key helps google index your site please obtain is at google webmasters tools site" msgstr "" -#: conf/external_keys.py:34 +#: conf/external_keys.py:35 msgid "Google Analytics key" msgstr "" -#: conf/external_keys.py:36 +#: conf/external_keys.py:37 #, python-format msgid "" -"Obtain is at Google Analytics site, if you wish " -"to use Google Analytics to monitor your site" +"Obtain is at Google Analytics site, if you wish to " +"use Google Analytics to monitor your site" msgstr "" -#: conf/external_keys.py:49 +#: conf/external_keys.py:50 msgid "Enable recaptcha (keys below are required)" msgstr "" -#: conf/external_keys.py:58 +#: conf/external_keys.py:59 msgid "Recaptcha public key" msgstr "" -#: conf/external_keys.py:66 +#: conf/external_keys.py:67 msgid "Recaptcha private key" msgstr "" -#: conf/external_keys.py:68 +#: conf/external_keys.py:69 +#, 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 recaptcha.net" +"robots. Please get this and a public key at the %(url)s" msgstr "" -#: conf/external_keys.py:80 +#: conf/external_keys.py:81 msgid "Facebook public API key" msgstr "" -#: conf/external_keys.py:82 +#: conf/external_keys.py:83 +#, python-format msgid "" "Facebook API key and Facebook secret allow to use Facebook Connect login " -"method at your site. Please obtain these keys at facebook create app site" +"method at your site. Please obtain these keys at facebook create app site" msgstr "" -#: conf/external_keys.py:95 +#: conf/external_keys.py:96 msgid "Facebook secret key" msgstr "" -#: conf/external_keys.py:103 +#: conf/external_keys.py:104 #, fuzzy msgid "Twitter consumer key" msgstr " Twitter 帳號:" -#: conf/external_keys.py:105 conf/external_keys.py:126 +#: conf/external_keys.py:106 +#, python-format msgid "" -"Please register your forum at twitter applications site" +"Please register your forum at twitter applications site" msgstr "" -#: conf/external_keys.py:116 +#: conf/external_keys.py:117 msgid "Twitter consumer secret" msgstr "" -#: conf/external_keys.py:124 +#: conf/external_keys.py:125 msgid "LinkedIn consumer key" msgstr "" -#: conf/external_keys.py:137 +#: conf/external_keys.py:127 +#, python-format +msgid "" +"Please register your forum at LinkedIn developer site" +msgstr "" + +#: conf/external_keys.py:138 msgid "LinkedIn consumer secret" msgstr "" -#: conf/external_keys.py:145 -msgid "User LDAP authentication for the password login" +#: conf/external_keys.py:146 +#, fuzzy +msgid "ident.ca consumer key" +msgstr " Twitter 帳號:" + +#: conf/external_keys.py:148 +#, python-format +msgid "" +"Please register your forum at Identi.ca applications " +"site" +msgstr "" + +#: conf/external_keys.py:159 +msgid "ident.ca consumer secret" msgstr "" -#: conf/external_keys.py:154 +#: conf/external_keys.py:167 +msgid "Use LDAP authentication for the password login" +msgstr "" + +#: conf/external_keys.py:176 msgid "LDAP service provider name" msgstr "" -#: conf/external_keys.py:162 +#: conf/external_keys.py:184 msgid "URL for the LDAP service" msgstr "" -#: conf/external_keys.py:170 +#: conf/external_keys.py:192 #, fuzzy msgid "Explain how to change LDAP password" msgstr "帳號: 密碼已改變" @@ -560,174 +807,448 @@ msgid "" msgstr "" #: conf/flatpages.py:30 -msgid "Text of the Q&A forum Privacy Policy (html format)" +msgid "Text of the Q&A forum FAQ page (html format)" msgstr "" #: conf/flatpages.py:33 msgid "" "Save, then use HTML validator on " +"the \"faq\" page to check your input." +msgstr "" + +#: conf/flatpages.py:44 +msgid "Text of the Q&A forum Privacy Policy (html format)" +msgstr "" + +#: conf/flatpages.py:47 +msgid "" +"Save, then use HTML validator on " "the \"privacy\" page to check your input." msgstr "" -#: conf/forum_data_rules.py:12 -msgid "Settings for askbot data entry and display" +#: conf/forum_data_rules.py:11 +msgid "Data entry and display" msgstr "" #: conf/forum_data_rules.py:20 -msgid "Check to enable community wiki feature" +#, python-format +msgid "" +"Enable embedding videos. Note: please read read this first." msgstr "" -#: conf/forum_data_rules.py:29 -msgid "Maximum length of tag (number of characters)" +#: conf/forum_data_rules.py:31 +msgid "Check to enable community wiki feature" msgstr "" -#: conf/forum_data_rules.py:39 -msgid "Default max number of comments to display under posts" +#: conf/forum_data_rules.py:40 +msgid "Allow asking questions anonymously" msgstr "" -#: conf/forum_data_rules.py:50 -#, python-format -msgid "Maximum comment length, must be < %(max_len)s" +#: conf/forum_data_rules.py:42 +msgid "" +"Users do not accrue reputation for anonymous questions and their identity is " +"not revealed until they change their mind" msgstr "" -#: conf/forum_data_rules.py:60 -msgid "Minimum length of search term for Ajax search" +#: conf/forum_data_rules.py:54 +msgid "Allow posting before logging in" msgstr "" -#: conf/forum_data_rules.py:61 -msgid "Must match the corresponding database backend setting" +#: conf/forum_data_rules.py:56 +msgid "" +"Check if you want to allow users start posting questions or answers before " +"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 "" -#: conf/forum_data_rules.py:70 -msgid "Maximum number of tags per question" +#: conf/forum_data_rules.py:71 +#, fuzzy +msgid "Allow swapping answer with question" +msgstr "回答問題" + +#: conf/forum_data_rules.py:73 +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 "" -#: conf/forum_data_rules.py:82 -#, fuzzy -msgid "Number of questions to list by default" -msgstr "含有問題的數目" +#: conf/forum_data_rules.py:85 +msgid "Maximum length of tag (number of characters)" +msgstr "" -#: conf/forum_data_rules.py:92 +#: conf/forum_data_rules.py:93 #, fuzzy -msgid "What should \"unanswered question\" mean?" -msgstr "無未解答問題" +msgid "Mandatory tags" +msgstr "更新標籤" -#: conf/markup.py:15 -msgid "Markup formatting" +#: conf/forum_data_rules.py:96 +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/markup.py:29 -msgid "Enable code-friendly Markdown" +#: conf/forum_data_rules.py:108 +msgid "Force lowercase the tags" msgstr "" -#: conf/markup.py:31 +#: conf/forum_data_rules.py:110 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 " -"\"MathJax support\" implicitly turns this feature on, because underscores " -"are heavily used in LaTeX input." +"Attention: after checking this, please back up the database, and run a " +"management command: python manage.py fix_question_tags to " +"globally rename the tags" msgstr "" -#: conf/markup.py:46 -msgid "Mathjax support (rendering of LaTeX)" +#: conf/forum_data_rules.py:124 +msgid "Format of tag list" msgstr "" -#: conf/markup.py:48 -#, python-format +#: conf/forum_data_rules.py:126 msgid "" -"If you enable this feature, mathjax must be " -"installed in directory %(dir)s" +"Select the format to show tags in, either as a simple list, or as a tag cloud" msgstr "" -#: conf/markup.py:63 -msgid "Base url of MathJax deployment" -msgstr "" +#: conf/forum_data_rules.py:138 +#, fuzzy +msgid "Use wildcard tags" +msgstr "相關標籤" -#: conf/markup.py:65 +#: conf/forum_data_rules.py:140 msgid "" -"Note - MathJax is not included with askbot - you should " -"deploy it yourself, preferably at a separate domain and enter url pointing " -"to the \"mathjax\" directory (for example: http://mysite.com/mathjax)" +"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/minimum_reputation.py:11 -msgid "Minimum reputation required to perform actions" +#: conf/forum_data_rules.py:153 +msgid "Default max number of comments to display under posts" msgstr "" -#: conf/minimum_reputation.py:20 -#, fuzzy -msgid "Upvote" -msgstr "投贊成票" +#: conf/forum_data_rules.py:164 +#, python-format +msgid "Maximum comment length, must be < %(max_len)s" +msgstr "" -#: conf/minimum_reputation.py:29 -#, fuzzy +#: conf/forum_data_rules.py:174 +msgid "Limit time to edit comments" +msgstr "" + +#: conf/forum_data_rules.py:176 +msgid "If unchecked, there will be no time limit to edit the comments" +msgstr "" + +#: conf/forum_data_rules.py:187 +msgid "Minutes allowed to edit a comment" +msgstr "" + +#: conf/forum_data_rules.py:188 +msgid "To enable this setting, check the previous one" +msgstr "" + +#: conf/forum_data_rules.py:197 +msgid "Save comment by pressing key" +msgstr "" + +#: conf/forum_data_rules.py:206 +msgid "Minimum length of search term for Ajax search" +msgstr "" + +#: conf/forum_data_rules.py:207 +msgid "Must match the corresponding database backend setting" +msgstr "" + +#: conf/forum_data_rules.py:216 +msgid "Do not make text query sticky in search" +msgstr "" + +#: conf/forum_data_rules.py:218 +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:231 +msgid "Maximum number of tags per question" +msgstr "" + +#: conf/forum_data_rules.py:243 +#, fuzzy +msgid "Number of questions to list by default" +msgstr "含有問題的數目" + +#: conf/forum_data_rules.py:253 +#, fuzzy +msgid "What should \"unanswered question\" mean?" +msgstr "無未解答問題" + +#: conf/license.py:12 +#, fuzzy +msgid "License settings" +msgstr "帳號設置" + +#: conf/license.py:19 +msgid "Show license clause in the site footer" +msgstr "" + +#: conf/license.py:28 +msgid "Short name for the license" +msgstr "" + +#: conf/license.py:37 +msgid "Full name of the license" +msgstr "" + +#: conf/license.py:38 +msgid "Creative Commons Attribution Share Alike 3.0" +msgstr "" + +#: conf/license.py:46 +msgid "Add link to the license page" +msgstr "" + +#: conf/license.py:55 +#, fuzzy +msgid "License homepage" +msgstr "回到首頁" + +#: conf/license.py:57 +msgid "URL of the official page with all the license legal clauses" +msgstr "" + +#: conf/license.py:67 +#, fuzzy +msgid "Use license logo" +msgstr "社區通用語" + +#: conf/license.py:76 +msgid "License logo image" +msgstr "" + +#: conf/login_providers.py:12 +msgid "Login provider setings" +msgstr "" + +#: conf/login_providers.py:20 +msgid "" +"Show alternative login provider buttons on the password \"Sign Up\" page" +msgstr "" + +#: conf/login_providers.py:29 +msgid "Always display local login form and hide \"Askbot\" button." +msgstr "" + +#: conf/login_providers.py:38 +msgid "Activate to allow login with self-hosted wordpress site" +msgstr "" + +#: conf/login_providers.py:39 +msgid "" +"to activate this feature you must fill out the wordpress xml-rpc setting " +"bellow" +msgstr "" + +#: conf/login_providers.py:48 +msgid "" +"Fill it with the wordpress url to the xml-rpc, normally http://mysite.com/" +"xmlrpc.php" +msgstr "" + +#: conf/login_providers.py:49 +msgid "" +"To enable, go to Settings->Writing->Remote Publishing and check the box for " +"XML-RPC" +msgstr "" + +#: conf/login_providers.py:60 +msgid "Upload your icon" +msgstr "" + +#: conf/login_providers.py:90 +#, python-format +msgid "Activate %(provider)s login" +msgstr "" + +#: conf/login_providers.py:95 +#, python-format +msgid "" +"Note: to really enable %(provider)s login some additional parameters will " +"need to be set in the \"External keys\" section" +msgstr "" + +#: conf/markup.py:14 +msgid "Markup formatting" +msgstr "" + +#: conf/markup.py:39 +msgid "Enable code-friendly Markdown" +msgstr "" + +#: conf/markup.py:41 +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 " +"\"MathJax support\" implicitly turns this feature on, because underscores " +"are heavily used in LaTeX input." +msgstr "" + +#: conf/markup.py:56 +msgid "Mathjax support (rendering of LaTeX)" +msgstr "" + +#: conf/markup.py:58 +#, python-format +msgid "" +"If you enable this feature, mathjax must be " +"installed on your server in its own directory." +msgstr "" + +#: conf/markup.py:72 +msgid "Base url of MathJax deployment" +msgstr "" + +#: conf/markup.py:74 +msgid "" +"Note - MathJax is not included with askbot - 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 "" + +#: conf/markup.py:89 +msgid "Enable autolinking with specific patterns" +msgstr "" + +#: conf/markup.py:91 +msgid "" +"If you enable this feature, the application will be able to detect patterns " +"and auto link to URLs" +msgstr "" + +#: conf/markup.py:104 +msgid "Regexes to detect the link patterns" +msgstr "" + +#: conf/markup.py:106 +msgid "" +"Enter valid regular expressions for the patters, one per line. For example " +"to detect a bug pattern like #bug123, use the following regex: #bug(\\d+). " +"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 "" + +#: conf/markup.py:125 +msgid "URLs for autolinking" +msgstr "" + +#: conf/markup.py:127 +msgid "" +"Here, please enter url templates for the patterns entered in the previous " +"setting, also one entry per line. Make sure that number of lines in " +"this setting and the previous one are the same 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 "" + +#: conf/minimum_reputation.py:11 +msgid "Minimum reputation required to perform actions" +msgstr "" + +#: conf/minimum_reputation.py:20 +#, fuzzy +msgid "Upvote" +msgstr "投贊成票" + +#: conf/minimum_reputation.py:29 +#, fuzzy msgid "Downvote" msgstr "投反對票" #: conf/minimum_reputation.py:38 #, fuzzy +msgid "Answer own question immediately" +msgstr "回答問題" + +#: conf/minimum_reputation.py:47 +#, fuzzy +msgid "Accept own answer" +msgstr "編輯任何答案" + +#: conf/minimum_reputation.py:56 +#, fuzzy msgid "Flag offensive" msgstr "標記惡意帖" # todo - check if it's indeed plural -#: conf/minimum_reputation.py:47 +#: conf/minimum_reputation.py:65 #, fuzzy msgid "Leave comments" msgstr "添加評論" -#: conf/minimum_reputation.py:56 +#: conf/minimum_reputation.py:74 msgid "Delete comments posted by others" msgstr "" -#: conf/minimum_reputation.py:65 +#: conf/minimum_reputation.py:83 #, fuzzy msgid "Delete questions and answers posted by others" msgstr "刪除任何一個問題或答案,及執行其他管理功能" -#: conf/minimum_reputation.py:74 +#: conf/minimum_reputation.py:92 #, fuzzy msgid "Upload files" msgstr "個人資料" # close.html -#: conf/minimum_reputation.py:83 +#: conf/minimum_reputation.py:101 #, fuzzy msgid "Close own questions" msgstr "結束問題" -#: conf/minimum_reputation.py:92 +#: conf/minimum_reputation.py:110 msgid "Retag questions posted by other people" msgstr "" -#: conf/minimum_reputation.py:101 +#: conf/minimum_reputation.py:119 #, fuzzy msgid "Reopen own questions" msgstr "重啟問題" -#: conf/minimum_reputation.py:110 +#: conf/minimum_reputation.py:128 #, fuzzy msgid "Edit community wiki posts" msgstr "編輯 wiki 類問題" -#: conf/minimum_reputation.py:119 +#: conf/minimum_reputation.py:137 msgid "Edit posts authored by other people" msgstr "" -#: conf/minimum_reputation.py:128 +#: conf/minimum_reputation.py:146 #, fuzzy msgid "View offensive flags" msgstr "標記垃圾帖" # must have extra space after in english -#: conf/minimum_reputation.py:137 +#: conf/minimum_reputation.py:155 #, fuzzy msgid "Close questions asked by others" msgstr "查看有關" -#: conf/minimum_reputation.py:146 +#: conf/minimum_reputation.py:164 msgid "Lock posts" msgstr "" +#: conf/minimum_reputation.py:173 +msgid "Remove rel=nofollow from own homepage" +msgstr "" + +#: conf/minimum_reputation.py:175 +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 "" + #: conf/reputation_changes.py:12 msgid "Reputation loss and gain rules" msgstr "" @@ -789,57 +1310,169 @@ msgstr "" msgid "Loss for post owner when upvote is canceled" msgstr "" -#: conf/site_settings.py:13 +#: conf/sidebar_main.py:11 +msgid "Sidebar widget settings - main page" +msgstr "" + +#: conf/sidebar_main.py:18 conf/sidebar_profile.py:18 +#: conf/sidebar_question.py:18 +msgid "Custom sidebar header" +msgstr "" + +#: conf/sidebar_main.py:21 conf/sidebar_profile.py:21 +#: conf/sidebar_question.py:21 +msgid "" +"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." +msgstr "" + +#: conf/sidebar_main.py:34 +msgid "Show avatar block in sidebar" +msgstr "" + +#: conf/sidebar_main.py:36 +msgid "Uncheck this if you want to hide the avatar block from the sidebar " +msgstr "" + +#: conf/sidebar_main.py:47 +msgid "Limit how many avatars will be displayed on the sidebar" +msgstr "" + +#: conf/sidebar_main.py:57 +msgid "Show tag selector in sidebar" +msgstr "" + +#: conf/sidebar_main.py:59 +msgid "" +"Uncheck this if you want to hide the options for choosing interesting and " +"ignored tags " +msgstr "" + +#: conf/sidebar_main.py:70 +msgid "Show tag list/cloud in sidebar" +msgstr "" + +#: conf/sidebar_main.py:72 +msgid "" +"Uncheck this if you want to hide the tag cloud or tag list from the sidebar " +msgstr "" + +#: conf/sidebar_main.py:83 conf/sidebar_profile.py:34 +#: conf/sidebar_question.py:74 +msgid "Custom sidebar footer" +msgstr "" + +#: conf/sidebar_main.py:86 conf/sidebar_profile.py:37 +#: conf/sidebar_question.py:77 +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 "" + +#: conf/sidebar_profile.py:11 +msgid "Sidebar widget settings - profile page" +msgstr "" + +#: conf/sidebar_question.py:11 +msgid "Sidebar widget settings - question page" +msgstr "" + +#: conf/sidebar_question.py:34 +msgid "Show tag list in sidebar" +msgstr "" + +#: conf/sidebar_question.py:36 +msgid "Uncheck this if you want to hide the tag list from the sidebar " +msgstr "" + +#: conf/sidebar_question.py:47 +msgid "Show meta information in sidebar" +msgstr "" + +#: conf/sidebar_question.py:49 +msgid "" +"Uncheck this if you want to hide the meta information about the question " +"(post date, views, last updated). " +msgstr "" + +#: conf/sidebar_question.py:61 +#, fuzzy +msgid "Show related questions in sidebar" +msgstr "相似的問題" + +#: conf/sidebar_question.py:63 +#, fuzzy +msgid "Uncheck this if you want to hide the list of related questions. " +msgstr "點選觀看最近最少被更新的問題" + +#: conf/site_modes.py:63 +#, fuzzy +msgid "Site modes" +msgstr "標題" + +#: conf/site_modes.py:72 +msgid "Activate a \"Bootstrap\" mode" +msgstr "" + +#: conf/site_modes.py:74 +msgid "" +"Bootstrap mode lowers reputation and certain badge thresholds, to values, " +"more suitable for the smaller communities, WARNING: your " +"current value for Minimum reputation, Bagde Settings and Vote Rules will be " +"changed after you modify this setting." +msgstr "" + +#: conf/site_settings.py:11 msgid "Q&A forum website parameters and urls" msgstr "" -#: conf/site_settings.py:21 +#: conf/site_settings.py:19 #, fuzzy msgid "Site title for the Q&A forum" msgstr "歡迎" -#: conf/site_settings.py:30 +#: conf/site_settings.py:28 msgid "Comma separated list of Q&A site keywords" msgstr "" -#: conf/site_settings.py:40 +#: conf/site_settings.py:37 msgid "Copyright message to show in the footer" msgstr "" -#: conf/site_settings.py:50 +#: conf/site_settings.py:47 msgid "Site description for the search engines" msgstr "" -# footer.html -#: conf/site_settings.py:58 -#, fuzzy -msgid "Askbot" -msgstr "關於" - -#: conf/site_settings.py:59 +#: conf/site_settings.py:56 msgid "Short name for your Q&A forum" msgstr "" -#: conf/site_settings.py:69 +#: conf/site_settings.py:66 msgid "Base URL for your Q&A forum, must start with http or https" msgstr "" -#: conf/site_settings.py:82 -msgid "Link shown in the greeting message shown to the anonymous user" +#: conf/site_settings.py:77 +msgid "Check to enable greeting for anonymous user" msgstr "" -#: conf/site_settings.py:85 -msgid "" -"If you change this url from the default - then you will also probably want " -"to adjust translation of the following string: " +#: conf/site_settings.py:88 +msgid "Text shown in the greeting message shown to the anonymous user" +msgstr "" + +#: conf/site_settings.py:92 +msgid "Use HTML to format the message " msgstr "" -#: conf/site_settings.py:98 +#: conf/site_settings.py:101 #, fuzzy msgid "Feedback site URL" msgstr "問題回饋" -#: conf/site_settings.py:100 +#: conf/site_settings.py:103 msgid "If left empty, a simple internal feedback form will be used instead" msgstr "" @@ -952,25 +1585,35 @@ msgstr "" msgid "Foreground color for accepted answer" msgstr "" -#: conf/skin_general_settings.py:15 +#: conf/skin_general_settings.py:14 #, fuzzy msgid "Skin and User Interface settings" msgstr "用戶參數的設置" -#: conf/skin_general_settings.py:22 +#: conf/skin_general_settings.py:21 #, fuzzy msgid "Q&A site logo" msgstr "社區通用語" -#: conf/skin_general_settings.py:24 +#: conf/skin_general_settings.py:23 msgid "To change the logo, select new file, then submit this whole form." msgstr "" -#: conf/skin_general_settings.py:38 +#: conf/skin_general_settings.py:37 +msgid "Show logo" +msgstr "" + +#: 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 msgid "Site favicon" msgstr "" -#: conf/skin_general_settings.py:40 +#: conf/skin_general_settings.py:53 #, python-format msgid "" "A small 16x16 or 32x32 pixel icon image used to distinguish your site in the " @@ -978,61 +1621,227 @@ msgid "" "href=\"%(favicon_info_url)s\">this page." msgstr "" -#: conf/skin_general_settings.py:56 +#: conf/skin_general_settings.py:71 msgid "Password login button" msgstr "" -#: conf/skin_general_settings.py:58 +#: conf/skin_general_settings.py:73 msgid "" "An 88x38 pixel image that is used on the login screen for the password login " "button." msgstr "" -#: conf/skin_general_settings.py:73 +#: conf/skin_general_settings.py:88 msgid "Show all UI functions to all users" msgstr "" -#: conf/skin_general_settings.py:75 +#: conf/skin_general_settings.py:90 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:90 +#: conf/skin_general_settings.py:105 #, fuzzy msgid "Select skin" msgstr "選擇版本" -#: conf/skin_general_settings.py:99 -msgid "Skin media revision number" +#: conf/skin_general_settings.py:116 +msgid "Customize HTML " +msgstr "" + +#: conf/skin_general_settings.py:125 +msgid "Custom portion of the HTML " msgstr "" -#: conf/skin_general_settings.py:101 +#: conf/skin_general_settings.py:127 msgid "" -"Increment this number when you change image in skin media or stylesheet. " -"This helps avoid showing your users outdated images from their browser cache." +"To use this option, check \"Customize HTML <HEAD>\" " +"above. Contents of this box will be inserted into the <HEAD> portion " +"of the HTML output, where elements such as <script>, <link>, <" +"meta> may be added. Please, keep in mind that adding external javascript " +"to the <HEAD> 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. Note: if you do use this setting, " +"please test the site with the W3C HTML validator service." msgstr "" -#: conf/social_sharing.py:10 -msgid "Sharing content on social networks" +#: conf/skin_general_settings.py:149 +msgid "Custom header additions" msgstr "" -#: conf/social_sharing.py:18 -msgid "Check to enable sharing of questions on Twitter and Facebook" +#: conf/skin_general_settings.py:151 +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 " +"headerin the HTML format. When customizing the site header (as well as " +"footer and the HTML <HEAD>), use the HTML validation service to make " +"sure that your input is valid and works well in all browsers." msgstr "" -#: conf/user_settings.py:10 -#, fuzzy -msgid "User policy settings" -msgstr "用戶參數的設置" +#: conf/skin_general_settings.py:166 +msgid "Site footer mode" +msgstr "" -#: conf/user_settings.py:18 -msgid "Allow editing user screen name" +#: conf/skin_general_settings.py:168 +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/user_settings.py:28 -msgid "Minimum allowed length for screen name" +#: conf/skin_general_settings.py:185 +msgid "Custom footer (HTML format)" +msgstr "" + +#: conf/skin_general_settings.py:187 +msgid "" +"To enable this function, please select option 'customize' " +"in the \"Site footer mode\" above. Use this area to enter contents of the " +"footer in the HTML format. When customizing the site footer (as well as the " +"header and HTML <HEAD>), use the HTML validation service to make sure " +"that your input is valid and works well in all browsers." +msgstr "" + +#: conf/skin_general_settings.py:202 +msgid "Apply custom style sheet (CSS)" +msgstr "" + +#: conf/skin_general_settings.py:204 +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:216 +msgid "Custom style sheet (CSS)" +msgstr "" + +#: conf/skin_general_settings.py:218 +msgid "" +"To use this function, 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 \"<forum url>/custom.css\", where the \"<forum url> part " +"depends (default is empty string) on the url configuration in your urls.py." +msgstr "" + +#: conf/skin_general_settings.py:234 +msgid "Add custom javascript" +msgstr "" + +#: conf/skin_general_settings.py:237 +msgid "Check to enable javascript that you can enter in the next field" +msgstr "" + +#: conf/skin_general_settings.py:247 +msgid "Custom javascript" +msgstr "" + +#: conf/skin_general_settings.py:249 +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 \"<forum url>/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 (to " +"enable your custom code, check \"Add custom javascript\" option " +"above)." +msgstr "" + +#: conf/skin_general_settings.py:267 +msgid "Skin media revision number" +msgstr "" + +#: conf/skin_general_settings.py:269 +msgid "Will be set automatically but you can modify it if necessary." +msgstr "" + +#: conf/skin_general_settings.py:280 +msgid "Hash to update the media revision number automatically." +msgstr "" + +#: conf/skin_general_settings.py:284 +msgid "Will be set automatically, it is not necesary to modify manually." +msgstr "" + +#: conf/social_sharing.py:10 +msgid "Sharing content on social networks" +msgstr "" + +#: conf/social_sharing.py:18 +#, fuzzy +msgid "Check to enable sharing of questions on Twitter" +msgstr "發布我的提問到我的 Twitter " + +#: conf/social_sharing.py:27 +msgid "Check to enable sharing of questions on Facebook" +msgstr "" + +#: conf/social_sharing.py:36 +msgid "Check to enable sharing of questions on LinkedIn" +msgstr "" + +#: conf/social_sharing.py:45 +msgid "Check to enable sharing of questions on Identi.ca" +msgstr "" + +#: conf/social_sharing.py:54 +msgid "Check to enable sharing of questions on Google+" +msgstr "" + +#: conf/spam_and_moderation.py:9 +msgid "Spam control and content moderation" +msgstr "" + +#: conf/spam_and_moderation.py:16 +msgid "Enable Akismet spam detection(keys below are required)" +msgstr "" + +#: conf/spam_and_moderation.py:19 +#, python-format +msgid "To get an Akismet key please visit Akismet site" +msgstr "" + +#: conf/spam_and_moderation.py:29 +msgid "Akismet key for spam detection" +msgstr "" + +#: conf/user_settings.py:11 +#, fuzzy +msgid "User settings" +msgstr "用戶參數的設置" + +#: conf/user_settings.py:19 +msgid "Allow editing user screen name" +msgstr "" + +#: conf/user_settings.py:28 +#, fuzzy +msgid "Allow account recovery by email" +msgstr "修改電子郵件" + +#: conf/user_settings.py:37 +msgid "Allow adding and removing login methods" +msgstr "" + +#: conf/user_settings.py:47 +msgid "Minimum allowed length for screen name" +msgstr "" + +#: conf/user_settings.py:57 +msgid "Default Gravatar icon type" +msgstr "" + +#: conf/user_settings.py:59 +msgid "" +"This option allows you to set the default avatar type for email addresses " +"without associated gravatar images. For more information, please visit this page." +msgstr "" + +#: conf/user_settings.py:69 +msgid "Name for the Anonymous user" msgstr "" #: conf/vote_rules.py:13 @@ -1056,298 +1865,439 @@ msgid "Number of days to allow canceling votes" msgstr "" #: conf/vote_rules.py:58 -msgid "Number of flags required to automatically hide posts" +msgid "Number of days required before answering own question" msgstr "" #: conf/vote_rules.py:67 +msgid "Number of flags required to automatically hide posts" +msgstr "" + +#: conf/vote_rules.py:76 msgid "Number of flags required to automatically delete posts" msgstr "" -#: const/__init__.py:9 +#: const/__init__.py:10 msgid "duplicate question" msgstr "完全重複的問題" # chinese translation is domain specific -#: const/__init__.py:10 +#: const/__init__.py:11 msgid "question is off-topic or not relevant" msgstr "已經離題" -#: const/__init__.py:11 +#: const/__init__.py:12 msgid "too subjective and argumentative" msgstr "太主觀性、引起爭吵的問題" -#: const/__init__.py:12 +#: const/__init__.py:13 msgid "not a real question" msgstr "無關緊要的問題" -#: const/__init__.py:13 +#: const/__init__.py:14 msgid "the question is answered, right answer was accepted" msgstr "問題已經解決,已得到正確答案" -#: const/__init__.py:14 +#: const/__init__.py:15 msgid "question is not relevant or outdated" msgstr "已經過時、或無關的問題" -#: const/__init__.py:15 +#: const/__init__.py:16 msgid "question contains offensive or malicious remarks" msgstr "惡意言論" -#: const/__init__.py:16 +#: const/__init__.py:17 msgid "spam or advertising" msgstr "垃圾廣告" -#: const/__init__.py:17 +#: const/__init__.py:18 msgid "too localized" msgstr "太區域化" -#: const/__init__.py:40 +#: const/__init__.py:41 msgid "newest" msgstr "最新問題" -#: const/__init__.py:41 skins/default/templates/users.html:25 -#: skins/default/templates/users.html:26 +#: const/__init__.py:42 skins/default/templates/users.html:26 msgid "oldest" msgstr "最先加入" -#: const/__init__.py:42 +#: const/__init__.py:43 msgid "active" msgstr "熱門問題" -#: const/__init__.py:43 +#: const/__init__.py:44 msgid "inactive" msgstr "冷門問題" -#: const/__init__.py:44 +#: const/__init__.py:45 msgid "hottest" msgstr "火熱問題" -#: const/__init__.py:45 +#: const/__init__.py:46 msgid "coldest" msgstr "過時" # "最有價值問題" # "最新問題" -#: const/__init__.py:46 +#: const/__init__.py:47 msgid "most voted" msgstr "最有價值的問題" # "最有價值問題" # "最新問題" -#: const/__init__.py:47 +#: const/__init__.py:48 msgid "least voted" msgstr "最不被推薦的問題" -#: const/__init__.py:48 +#: const/__init__.py:49 msgid "relevance" msgstr "關聯" -#: const/__init__.py:55 skins/default/templates/questions.html:14 -#: skins/default/templates/user_inbox.html:47 +#: const/__init__.py:57 skins/default/templates/main_page/tab_bar.html:10 +#: skins/default/templates/user_profile/user_inbox.html:50 msgid "all" msgstr "全部" -#: const/__init__.py:56 skins/default/templates/questions.html:19 +#: const/__init__.py:58 skins/default/templates/main_page/tab_bar.html:15 msgid "unanswered" msgstr "尚未回答" -#: const/__init__.py:57 skins/default/templates/questions.html:25 +#: const/__init__.py:59 msgid "favorite" msgstr "喜歡" -#: const/__init__.py:70 +#: const/__init__.py:64 +#, fuzzy +msgid "list" +msgstr "標籤列表" + +#: const/__init__.py:65 +msgid "cloud" +msgstr "" + +#: const/__init__.py:78 #, fuzzy msgid "Question has no answers" msgstr "已回答的問題" -#: const/__init__.py:71 +#: const/__init__.py:79 #, fuzzy msgid "Question has no accepted answers" msgstr "已回答的問題" -#: const/__init__.py:111 +#: const/__init__.py:121 #, fuzzy msgid "asked a question" msgstr "我要提問" -#: const/__init__.py:112 +#: const/__init__.py:122 #, fuzzy msgid "answered a question" msgstr "沒有回答的問題" -#: const/__init__.py:113 +#: const/__init__.py:123 msgid "commented question" msgstr "評論問題" -#: const/__init__.py:114 +#: const/__init__.py:124 msgid "commented answer" msgstr "有評論回答" -#: const/__init__.py:115 +#: const/__init__.py:125 msgid "edited question" msgstr "修改問題" -#: const/__init__.py:116 +#: const/__init__.py:126 msgid "edited answer" msgstr "修改回答" -#: const/__init__.py:117 +#: const/__init__.py:127 msgid "received award" msgstr "獲獎" -#: const/__init__.py:118 +#: const/__init__.py:128 msgid "marked best answer" msgstr "標記最佳答案" -#: const/__init__.py:119 +#: const/__init__.py:129 msgid "upvoted" msgstr "投贊成票" -#: const/__init__.py:120 +#: const/__init__.py:130 msgid "downvoted" msgstr "投反對票" -#: const/__init__.py:121 +#: const/__init__.py:131 msgid "canceled vote" msgstr "撤銷投票" -#: const/__init__.py:122 +#: const/__init__.py:132 msgid "deleted question" msgstr "刪除問題" -#: const/__init__.py:123 +#: const/__init__.py:133 msgid "deleted answer" msgstr "刪除回答" -#: const/__init__.py:124 +#: const/__init__.py:134 msgid "marked offensive" msgstr "標記垃圾帖" -#: const/__init__.py:125 +#: const/__init__.py:135 msgid "updated tags" msgstr "更新標籤" -#: const/__init__.py:126 +#: const/__init__.py:136 msgid "selected favorite" msgstr "收藏" -#: const/__init__.py:127 +#: const/__init__.py:137 msgid "completed user profile" msgstr "完成個人所有資料" -#: const/__init__.py:128 +#: const/__init__.py:138 msgid "email update sent to user" msgstr "Email 更改已通知" -#: const/__init__.py:129 +#: const/__init__.py:141 +#, fuzzy +msgid "reminder about unanswered questions sent" +msgstr "沒有回答的問題" + +#: const/__init__.py:143 msgid "mentioned in the post" msgstr "" -#: const/__init__.py:180 +#: const/__init__.py:194 msgid "question_answered" msgstr "" -#: const/__init__.py:181 +#: const/__init__.py:195 msgid "question_commented" msgstr "" -#: const/__init__.py:182 +#: const/__init__.py:196 msgid "answer_commented" msgstr "" -#: const/__init__.py:183 +#: const/__init__.py:197 msgid "answer_accepted" msgstr "" -#: const/__init__.py:187 +#: const/__init__.py:201 msgid "[closed]" msgstr "[已關閉]" -#: const/__init__.py:188 +#: const/__init__.py:202 msgid "[deleted]" msgstr "[已刪除]" -#: const/__init__.py:189 views/readers.py:549 +#: const/__init__.py:203 views/readers.py:614 msgid "initial version" msgstr "初始版本" -#: const/__init__.py:190 +#: const/__init__.py:204 msgid "retagged" msgstr "更新了標籤" -#: const/__init__.py:195 -msgid "exclude ignored tags" +#: const/__init__.py:212 +msgid "off" +msgstr "" + +#: const/__init__.py:213 +#, fuzzy +msgid "exclude ignored" msgstr "特殊忽略標籤" -#: const/__init__.py:196 -msgid "allow only selected tags" -msgstr "只允許選定標籤" +#: const/__init__.py:214 +#, fuzzy +msgid "only selected" +msgstr "個別選定" -#: const/__init__.py:200 +#: const/__init__.py:218 msgid "instantly" msgstr "" -#: const/__init__.py:201 +#: const/__init__.py:219 msgid "daily" msgstr "每天" -#: const/__init__.py:202 +#: const/__init__.py:220 msgid "weekly" msgstr "每星期" -#: const/__init__.py:203 +#: const/__init__.py:221 #, fuzzy msgid "no email" msgstr "更換電子郵件" +#: const/__init__.py:228 +msgid "identicon" +msgstr "" + +#: const/__init__.py:229 +#, fuzzy +msgid "mystery-man" +msgstr "昨天" + +#: const/__init__.py:230 +msgid "monsterid" +msgstr "" + +#: const/__init__.py:231 +#, fuzzy +msgid "wavatar" +msgstr "大頭像" + +#: const/__init__.py:232 +msgid "retro" +msgstr "" + +#: const/__init__.py:279 skins/default/templates/badges.html:37 +msgid "gold" +msgstr "第一名" + +#: const/__init__.py:280 skins/default/templates/badges.html:46 +msgid "silver" +msgstr "第二名" + +#: const/__init__.py:281 skins/default/templates/badges.html:53 +msgid "bronze" +msgstr "第三名" + +#: const/__init__.py:293 +msgid "None" +msgstr "" + +#: const/__init__.py:294 +#, fuzzy +msgid "Gravatar" +msgstr "大頭像" + +#: const/__init__.py:295 +msgid "Uploaded Avatar" +msgstr "" + +#: const/message_keys.py:15 +#, fuzzy +msgid "most relevant questions" +msgstr "最新加入的問題" + +#: const/message_keys.py:16 +#, fuzzy +msgid "click to see most relevant questions" +msgstr "點選觀看投票次數最多的問題" + +#: const/message_keys.py:17 +#, fuzzy +msgid "by relevance" +msgstr "關聯" + +#: const/message_keys.py:18 +msgid "click to see the oldest questions" +msgstr "點選觀看最早問題" + #: const/message_keys.py:19 -#, python-format -msgid "First time here? Check out the FAQ!" -msgstr "第一次? 請點閱 FAQ 最常提問問題!" +#, fuzzy +msgid "by date" +msgstr "更新" + +#: const/message_keys.py:20 +msgid "click to see the newest questions" +msgstr "點選觀看最新問題" + +#: const/message_keys.py:21 +msgid "click to see the least recently updated questions" +msgstr "點選觀看最近最少被更新的問題" + +#: const/message_keys.py:22 +#, fuzzy +msgid "by activity" +msgstr "熱門問題" + +#: const/message_keys.py:23 +msgid "click to see the most recently updated questions" +msgstr "點選觀看最近最常被更新的問題" -#: deps/django_authopenid/forms.py:116 deps/django_authopenid/views.py:137 +#: const/message_keys.py:24 +#, fuzzy +msgid "click to see the least answered questions" +msgstr "點選觀看最早問題" + +#: const/message_keys.py:25 +#, fuzzy +msgid "by answers" +msgstr "回答" + +#: const/message_keys.py:26 +#, fuzzy +msgid "click to see the most answered questions" +msgstr "點選觀看投票次數最多的問題" + +#: const/message_keys.py:27 +#, fuzzy +msgid "click to see least voted questions" +msgstr "點選觀看投票次數最少的問題" + +#: const/message_keys.py:28 +#, fuzzy +msgid "by votes" +msgstr "投票" + +#: const/message_keys.py:29 +msgid "click to see most voted questions" +msgstr "點選觀看投票次數最多的問題" + +#: deps/django_authopenid/backends.py:88 +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 msgid "i-names are not supported" msgstr "不支援 i-name " -#: deps/django_authopenid/forms.py:237 +#: deps/django_authopenid/forms.py:233 #, fuzzy, python-format msgid "Please enter your %(username_token)s" msgstr "請幫助我們回答" -#: deps/django_authopenid/forms.py:263 +#: deps/django_authopenid/forms.py:259 #, fuzzy msgid "Please, enter your user name" msgstr "請幫助我們回答" -#: deps/django_authopenid/forms.py:267 +#: deps/django_authopenid/forms.py:263 #, fuzzy msgid "Please, enter your password" msgstr "請輸入密碼" -#: deps/django_authopenid/forms.py:274 deps/django_authopenid/forms.py:278 +#: deps/django_authopenid/forms.py:270 deps/django_authopenid/forms.py:274 #, fuzzy msgid "Please, enter your new password" msgstr "請輸入密碼" -#: deps/django_authopenid/forms.py:289 +#: deps/django_authopenid/forms.py:285 msgid "Passwords did not match" msgstr "" -#: deps/django_authopenid/forms.py:301 +#: deps/django_authopenid/forms.py:297 #, python-format msgid "Please choose password > %(len)s characters" msgstr "" -#: deps/django_authopenid/forms.py:336 +#: deps/django_authopenid/forms.py:335 msgid "Current password" msgstr "密碼" -#: deps/django_authopenid/forms.py:347 +#: deps/django_authopenid/forms.py:346 msgid "" "Old password is incorrect. Please enter the correct " "password." msgstr "密碼無效, 請輸入正確 密碼" -#: deps/django_authopenid/forms.py:400 +#: deps/django_authopenid/forms.py:399 msgid "Sorry, we don't have this email address in the database" msgstr "" @@ -1359,219 +2309,214 @@ msgstr " 使用者名稱 (required)" msgid "Incorrect username." msgstr "選擇一個用戶名" -#: deps/django_authopenid/urls.py:10 deps/django_authopenid/urls.py:11 -#: deps/django_authopenid/urls.py:12 deps/django_authopenid/urls.py:15 -#: deps/django_authopenid/urls.py:18 setup_templates/settings.py:182 +#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12 +#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:202 msgid "signin/" msgstr "" -#: deps/django_authopenid/urls.py:11 -msgid "newquestion/" -msgstr "" - -#: deps/django_authopenid/urls.py:12 -msgid "newanswer/" -msgstr "" - -#: deps/django_authopenid/urls.py:13 +#: deps/django_authopenid/urls.py:10 msgid "signout/" msgstr "" -#: deps/django_authopenid/urls.py:15 +#: deps/django_authopenid/urls.py:12 msgid "complete/" msgstr "" -#: deps/django_authopenid/urls.py:18 +#: deps/django_authopenid/urls.py:15 msgid "complete-oauth/" msgstr "" -#: deps/django_authopenid/urls.py:22 +#: deps/django_authopenid/urls.py:19 msgid "register/" msgstr "" -#: deps/django_authopenid/urls.py:24 +#: deps/django_authopenid/urls.py:21 msgid "signup/" msgstr "" -#: deps/django_authopenid/urls.py:32 +#: deps/django_authopenid/urls.py:25 +#, fuzzy +msgid "logout/" +msgstr "退出登錄" + +#: deps/django_authopenid/urls.py:30 #, fuzzy msgid "recover/" msgstr "打開" -#: deps/django_authopenid/util.py:196 +#: deps/django_authopenid/util.py:378 #, fuzzy, python-format msgid "%(site)s user name and password" msgstr "使用帳號密碼登錄" -#: deps/django_authopenid/util.py:202 -#: skins/default/templates/authopenid/signin.html:124 +#: deps/django_authopenid/util.py:384 +#: skins/default/templates/authopenid/signin.html:108 msgid "Create a password-protected account" msgstr "" -#: deps/django_authopenid/util.py:203 +#: deps/django_authopenid/util.py:385 #, fuzzy msgid "Change your password" msgstr "修改密碼" -#: deps/django_authopenid/util.py:265 +#: deps/django_authopenid/util.py:473 msgid "Sign in with Yahoo" msgstr "" -#: deps/django_authopenid/util.py:272 +#: deps/django_authopenid/util.py:480 #, fuzzy msgid "AOL screen name" msgstr "姓名" -#: deps/django_authopenid/util.py:280 +#: deps/django_authopenid/util.py:488 #, fuzzy msgid "OpenID url" msgstr "OpenID 位址" # translation and user name validation are language-specific -#: deps/django_authopenid/util.py:297 -#, fuzzy -msgid "MyOpenid user name" -msgstr "不合法用戶名" - -# translation and user name validation are language-specific -#: deps/django_authopenid/util.py:305 deps/django_authopenid/util.py:313 +#: deps/django_authopenid/util.py:517 #, fuzzy msgid "Flickr user name" msgstr "不合法用戶名" -#: deps/django_authopenid/util.py:321 +#: deps/django_authopenid/util.py:525 #, fuzzy msgid "Technorati user name" msgstr "選擇一個用戶名" -#: deps/django_authopenid/util.py:329 +#: deps/django_authopenid/util.py:533 msgid "WordPress blog name" msgstr "" -#: deps/django_authopenid/util.py:337 +#: deps/django_authopenid/util.py:541 msgid "Blogger blog name" msgstr "" -#: deps/django_authopenid/util.py:345 +#: deps/django_authopenid/util.py:549 msgid "LiveJournal blog name" msgstr "" # translation and user name validation are language-specific -#: deps/django_authopenid/util.py:353 +#: deps/django_authopenid/util.py:557 #, fuzzy msgid "ClaimID user name" msgstr "不合法用戶名" # translation and user name validation are language-specific -#: deps/django_authopenid/util.py:361 +#: deps/django_authopenid/util.py:565 #, fuzzy msgid "Vidoop user name" msgstr "不合法用戶名" # translation and user name validation are language-specific -#: deps/django_authopenid/util.py:369 +#: deps/django_authopenid/util.py:573 #, fuzzy msgid "Verisign user name" msgstr "不合法用戶名" -#: deps/django_authopenid/util.py:393 +#: deps/django_authopenid/util.py:608 #, fuzzy, python-format msgid "Change your %(provider)s password" msgstr "修改密碼" -#: deps/django_authopenid/util.py:397 +#: deps/django_authopenid/util.py:612 #, python-format msgid "Click to see if your %(provider)s signin still works for %(site_name)s" msgstr "" -#: deps/django_authopenid/util.py:406 +#: deps/django_authopenid/util.py:621 #, python-format msgid "Create password for %(provider)s" msgstr "" -#: deps/django_authopenid/util.py:410 +#: deps/django_authopenid/util.py:625 #, fuzzy, python-format msgid "Connect your %(provider)s account to %(site_name)s" msgstr "綁定 OpenID 帳號" -#: deps/django_authopenid/util.py:419 +#: deps/django_authopenid/util.py:634 #, fuzzy, python-format msgid "Signin with %(provider)s user name and password" msgstr "使用帳號密碼登錄" -#: deps/django_authopenid/util.py:426 +#: deps/django_authopenid/util.py:641 #, python-format msgid "Sign in with your %(provider)s account" msgstr "" -#: deps/django_authopenid/views.py:144 +#: deps/django_authopenid/views.py:158 #, python-format msgid "OpenID %(openid_url)s is invalid" msgstr "OpenID %(openid_url)s 無效" -#: deps/django_authopenid/views.py:256 deps/django_authopenid/views.py:399 -#: deps/django_authopenid/views.py:427 +#: deps/django_authopenid/views.py:270 deps/django_authopenid/views.py:415 +#: deps/django_authopenid/views.py:443 #, 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:349 +#: deps/django_authopenid/views.py:365 #, fuzzy msgid "Your new password saved" msgstr "密碼已更改" -#: deps/django_authopenid/views.py:511 +#: deps/django_authopenid/views.py:469 +msgid "The login password combination was not correct" +msgstr "" + +#: deps/django_authopenid/views.py:573 msgid "Please click any of the icons below to sign in" msgstr "" -#: deps/django_authopenid/views.py:513 +#: deps/django_authopenid/views.py:575 #, fuzzy msgid "Account recovery email sent" msgstr "修改電子郵件" -#: deps/django_authopenid/views.py:516 +#: deps/django_authopenid/views.py:578 msgid "Please add one or more login methods." msgstr "" -#: deps/django_authopenid/views.py:518 +#: deps/django_authopenid/views.py:580 msgid "If you wish, please add, remove or re-validate your login methods" msgstr "" -#: deps/django_authopenid/views.py:520 +#: deps/django_authopenid/views.py:582 msgid "Please wait a second! Your account is recovered, but ..." msgstr "" -#: deps/django_authopenid/views.py:522 +#: deps/django_authopenid/views.py:584 msgid "Sorry, this account recovery key has expired or is invalid" msgstr "" -#: deps/django_authopenid/views.py:578 +#: deps/django_authopenid/views.py:657 #, python-format msgid "Login method %(provider_name)s does not exist" msgstr "" -#: deps/django_authopenid/views.py:584 +#: deps/django_authopenid/views.py:663 #, fuzzy msgid "Oops, sorry - there was some error - please try again" msgstr "對不起, 密碼不合, 請重新輸入" -#: deps/django_authopenid/views.py:675 +#: deps/django_authopenid/views.py:754 #, python-format msgid "Your %(provider)s login works fine" msgstr "" -#: deps/django_authopenid/views.py:973 deps/django_authopenid/views.py:979 +#: deps/django_authopenid/views.py:1065 deps/django_authopenid/views.py:1071 #, python-format msgid "your email needs to be validated see %(details_url)s" msgstr "email 須經認證, 參考 %(details_url)s" -#: deps/django_authopenid/views.py:1000 -msgid "Email verification subject line" -msgstr " email 主題認證" +#: deps/django_authopenid/views.py:1092 +#, fuzzy, python-format +msgid "Recover your %(site)s account" +msgstr "請設新密碼" -#: deps/django_authopenid/views.py:1065 +#: deps/django_authopenid/views.py:1162 msgid "Please check your email and visit the enclosed link." msgstr "" @@ -1580,26 +2525,26 @@ msgstr "" msgid "Site" msgstr "標題" -#: deps/livesettings/values.py:107 +#: deps/livesettings/values.py:106 #, fuzzy msgid "Base Settings" msgstr "帳號設置" -#: deps/livesettings/values.py:214 +#: deps/livesettings/values.py:213 msgid "Default value: \"\"" msgstr "" -#: deps/livesettings/values.py:221 +#: deps/livesettings/values.py:220 msgid "Default value: " msgstr "" -#: deps/livesettings/values.py:224 +#: deps/livesettings/values.py:223 #, python-format msgid "Default value: %s" msgstr "" # todo take these out of settings -#: deps/livesettings/values.py:589 +#: deps/livesettings/values.py:601 #, fuzzy, python-format msgid "Allowed image file types are %(types)s" msgstr "只允許上傳 '%(file_types)s' 類型的文件!" @@ -1617,7 +2562,7 @@ msgstr "城市" #: deps/livesettings/templates/livesettings/group_settings.html:11 #: deps/livesettings/templates/livesettings/site_settings.html:23 -#: skins/default/templates/authopenid/signin.html:142 +#: skins/default/templates/authopenid/signin.html:132 msgid "Change password" msgstr "修改密碼" @@ -1645,7 +2590,6 @@ msgstr "修改問題" msgid "Please correct the error below." msgid_plural "Please correct the errors below." msgstr[0] "請修改下列錯誤: " -msgstr[1] "請修改下列錯誤: " #: deps/livesettings/templates/livesettings/group_settings.html:28 #, python-format @@ -1684,71 +2628,67 @@ msgstr "" msgid "Uncollapse all" msgstr "" -#: deps/recaptcha_django/__init__.py:19 deps/recaptcha_django/__init__.py:80 -msgid "Unknown error." -msgstr "" - -#: deps/recaptcha_django/__init__.py:20 deps/recaptcha_django/__init__.py:21 -msgid "ReCAPTCHA is wrongly configured." -msgstr "" - -#: deps/recaptcha_django/__init__.py:22 -msgid "Bad reCAPTCHA challenge parameter." -msgstr "" - -#: deps/recaptcha_django/__init__.py:23 -msgid "The CAPTCHA solution was incorrect." +#: importers/stackexchange/management/commands/load_stackexchange.py:141 +msgid "Congratulations, you are now an Administrator" msgstr "" -#: deps/recaptcha_django/__init__.py:24 -msgid "Bad reCAPTCHA verification parameters." +#: 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 "" -#: deps/recaptcha_django/__init__.py:25 -msgid "Provided reCAPTCHA API keys are not valid for this domain." +#: management/commands/post_emailed_questions.py:35 +msgid "" +"

        To ask by email, please:

        \n" +"
          \n" +"
        • Format the subject line as: [Tag1; Tag2] Question title
        • \n" +"
        • Type details of your question into the email body
        • \n" +"
        \n" +"

        Note that tags may consist of more than one word, and tags\n" +"may be separated by a semicolon or a comma

        \n" msgstr "" -#: deps/recaptcha_django/__init__.py:26 -msgid "ReCAPTCHA could not be reached." +#: management/commands/post_emailed_questions.py:55 +#, python-format +msgid "" +"

        Sorry, there was an error posting your question please contact the " +"%(site)s administrator

        " msgstr "" -#: deps/recaptcha_django/__init__.py:73 -msgid "Invalid request" +#: management/commands/post_emailed_questions.py:61 +#, python-format +msgid "" +"

        Sorry, in order to post questions on %(site)s by email, please register first

        " msgstr "" -#: importers/stackexchange/management/commands/load_stackexchange.py:125 -msgid "Congratulations, you are now an Administrator" +#: management/commands/post_emailed_questions.py:69 +msgid "" +"

        Sorry, your question could not be posted due to insufficient privileges " +"of your user account

        " msgstr "" -#: management/commands/send_email_alerts.py:105 +#: management/commands/send_email_alerts.py:411 #, python-format -msgid "\" and \"%s\"" -msgstr "" +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:108 -#, fuzzy -msgid "\" and more" -msgstr "查看更多" - -#: management/commands/send_email_alerts.py:113 -#, 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:467 +#: management/commands/send_email_alerts.py:421 #, python-format msgid "%(name)s, this is an update message header for %(num)d question" msgid_plural "%(name)s, this is an update message header for %(num)d questions" msgstr[0] "" -msgstr[1] "" -#: management/commands/send_email_alerts.py:484 +#: management/commands/send_email_alerts.py:438 msgid "new question" msgstr "提問" -#: management/commands/send_email_alerts.py:501 +#: management/commands/send_email_alerts.py:455 #, fuzzy msgid "" "Please visit the askbot and see what's new! Could you spread the word about " @@ -1756,7 +2696,7 @@ msgid "" "posting one?" msgstr " 請參觀論壇, 觀看新功能介紹! 並廣為宣傳 - 能否解答或從中獲益?" -#: management/commands/send_email_alerts.py:513 +#: management/commands/send_email_alerts.py:465 #, fuzzy msgid "" "Your most frequent subscription setting is 'daily' on selected questions. If " @@ -1764,7 +2704,7 @@ msgid "" "the askbot administrator." msgstr "你設定訂閱每日查詢, 如果每天收到信件超夠一封, 請告知管理者." -#: management/commands/send_email_alerts.py:519 +#: management/commands/send_email_alerts.py:471 #, fuzzy msgid "" "Your most frequent subscription setting is 'weekly' if you are receiving " @@ -1772,584 +2712,157 @@ msgid "" "administrator." msgstr "你設定訂閱每周查詢, 如果每周收到信件超夠一封, 請告知管理者." -#: management/commands/send_email_alerts.py:525 +#: 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:530 +#: management/commands/send_email_alerts.py:490 #, fuzzy, python-format msgid "" -"go to %(email_settings_link)s to change frequency of email updates or %" -"(admin_email)s administrator" +"go to %(email_settings_link)s to change frequency of email updates or " +"%(admin_email)s administrator" msgstr "請至 %(link)s 更改收信頻率或管理者的 %(email)s " -#: migrations/0005_install_badges.py:11 -msgid "Disciplined" -msgstr "井然有序" - -#: migrations/0005_install_badges.py:11 -msgid "disciplined" -msgstr "井然有序" - -#: migrations/0005_install_badges.py:11 -msgid "Deleted own post with score of 3 or higher" -msgstr "刪除記分超過三分的張貼" - -#: migrations/0005_install_badges.py:12 -msgid "Peer Pressure" -msgstr "同儕壓力" - -#: migrations/0005_install_badges.py:12 -msgid "peer-pressure" -msgstr "同儕壓力" - -#: migrations/0005_install_badges.py:12 -msgid "Deleted own post with score of -3 or lower" -msgstr "刪除記分少於 -3 分的張貼" - -#: migrations/0005_install_badges.py:13 -msgid "Nice answer" -msgstr "妙答" - -#: migrations/0005_install_badges.py:13 -msgid "nice-answer" -msgstr "妙答" - -#: migrations/0005_install_badges.py:13 -msgid "Answer voted up 10 times" -msgstr "答案贊成票總數超過十次" - -#: migrations/0005_install_badges.py:14 -msgid "Nice Question" -msgstr "好問題" - -#: migrations/0005_install_badges.py:14 -msgid "nice-question" -msgstr "好問題" - -#: migrations/0005_install_badges.py:14 -msgid "Question voted up 10 times" -msgstr "問題贊成票總數超過十次" - -#: migrations/0005_install_badges.py:15 -msgid "Pundit" -msgstr "權威人士" - -#: migrations/0005_install_badges.py:15 -msgid "pundit" -msgstr "權威人士" - -#: migrations/0005_install_badges.py:15 -msgid "Left 10 comments with score of 10 or more" -msgstr "保留十個積分超過十分的意見" - -#: migrations/0005_install_badges.py:16 -msgid "Popular Question" -msgstr "常見問題" - -#: migrations/0005_install_badges.py:16 -msgid "popular-question" -msgstr "常見問題" - -#: migrations/0005_install_badges.py:16 -msgid "Asked a question with 1,000 views" -msgstr "提問瀏覽 1,000 次的問題" - -#: migrations/0005_install_badges.py:17 -msgid "Citizen patrol" -msgstr "巡視員" - -#: migrations/0005_install_badges.py:17 -msgid "citizen-patrol" -msgstr "巡視員" - -#: migrations/0005_install_badges.py:17 -msgid "First flagged post" -msgstr "第一個標記張貼" - -#: migrations/0005_install_badges.py:18 -msgid "Cleanup" -msgstr "清除" - -#: migrations/0005_install_badges.py:18 -msgid "cleanup" -msgstr "清除" - -#: migrations/0005_install_badges.py:18 -msgid "First rollback" -msgstr "首次退出" - -#: migrations/0005_install_badges.py:19 -msgid "Critic" -msgstr "評論" - -#: migrations/0005_install_badges.py:19 -msgid "critic" -msgstr "評論" - -#: migrations/0005_install_badges.py:19 -#, fuzzy -msgid "First down vote" -msgstr "投反對票" - -#: migrations/0005_install_badges.py:20 -#, fuzzy -msgid "Editor" -msgstr "編輯" - -#: migrations/0005_install_badges.py:20 -#, fuzzy -msgid "editor" -msgstr "編輯" - -#: migrations/0005_install_badges.py:20 -msgid "First edit" -msgstr "" - -#: migrations/0005_install_badges.py:21 -msgid "Organizer" -msgstr "組織者" - -#: migrations/0005_install_badges.py:21 -msgid "organizer" -msgstr "組織者" - -#: migrations/0005_install_badges.py:21 -msgid "First retag" -msgstr "首次重設標籤" - -#: migrations/0005_install_badges.py:22 -msgid "Scholar" -msgstr "學者" - -#: migrations/0005_install_badges.py:22 -msgid "scholar" -msgstr "學者" - -#: migrations/0005_install_badges.py:22 -msgid "First accepted answer on your own question" -msgstr "首次可以接受的答案" - -#: migrations/0005_install_badges.py:23 -msgid "Student" -msgstr "學生" - -#: migrations/0005_install_badges.py:23 -msgid "student" -msgstr "學生" - -#: migrations/0005_install_badges.py:23 -msgid "Asked first question with at least one up vote" -msgstr "詢問至少有一票的問題" - -#: migrations/0005_install_badges.py:24 -msgid "Supporter" -msgstr "贊成者" - -#: migrations/0005_install_badges.py:24 -msgid "supporter" -msgstr "贊成者" - -#: migrations/0005_install_badges.py:24 -#, fuzzy -msgid "First up vote" -msgstr "投贊成票" - -#: migrations/0005_install_badges.py:25 -msgid "Teacher" -msgstr "老師" - -#: migrations/0005_install_badges.py:25 -msgid "teacher" -msgstr "老師" - -#: migrations/0005_install_badges.py:25 -msgid "Answered first question with at least one up vote" -msgstr "回答至少有一票的問題" - -#: migrations/0005_install_badges.py:26 -msgid "Autobiographer" -msgstr "自傳" - -#: migrations/0005_install_badges.py:26 -msgid "autobiographer" -msgstr "自傳" - -#: migrations/0005_install_badges.py:26 -msgid "Completed all user profile fields" -msgstr "完成個人所有資料" - -#: migrations/0005_install_badges.py:27 -msgid "Self-Learner" -msgstr "自學者" - -#: migrations/0005_install_badges.py:27 -msgid "self-learner" -msgstr "自學者" - -#: migrations/0005_install_badges.py:27 -msgid "Answered your own question with at least 3 up votes" -msgstr "回答至少有三票的問題" - -#: migrations/0005_install_badges.py:28 -msgid "Great Answer" -msgstr "妙答" - -#: migrations/0005_install_badges.py:28 -msgid "great-answer" -msgstr "妙答" - -#: migrations/0005_install_badges.py:28 -msgid "Answer voted up 100 times" -msgstr "贊成票總數超過 100 的答案" - -#: migrations/0005_install_badges.py:29 -msgid "Great Question" -msgstr "好問題" - -#: migrations/0005_install_badges.py:29 -msgid "great-question" -msgstr "好問題" - -#: migrations/0005_install_badges.py:29 -msgid "Question voted up 100 times" -msgstr "贊成票總數超過 100 的問題" - -#: migrations/0005_install_badges.py:30 -msgid "Stellar Question" -msgstr "主要的問題" - -#: migrations/0005_install_badges.py:30 -msgid "stellar-question" -msgstr "主要的問題" - -#: migrations/0005_install_badges.py:30 -msgid "Question favorited by 100 users" -msgstr "喜好者超過 100 的問題" - -# close.html -#: migrations/0005_install_badges.py:31 -msgid "Famous question" -msgstr "著名問題" - -#: migrations/0005_install_badges.py:31 -msgid "famous-question" -msgstr "著名問題" - -#: migrations/0005_install_badges.py:31 -msgid "Asked a question with 10,000 views" -msgstr "提問瀏覽數 10,000 的問題" - -#: migrations/0005_install_badges.py:32 -msgid "Alpha" -msgstr "初版" - -#: migrations/0005_install_badges.py:32 -msgid "alpha" -msgstr "初版" - -#: migrations/0005_install_badges.py:32 -msgid "Actively participated in the private alpha" -msgstr "活躍的參予先前初版" - -#: migrations/0005_install_badges.py:33 -msgid "Good Answer" -msgstr "好回答" - -#: migrations/0005_install_badges.py:33 -msgid "good-answer" -msgstr "好回答" - -#: migrations/0005_install_badges.py:33 -msgid "Answer voted up 25 times" -msgstr "贊成票總數超過 25 的答案" - -#: migrations/0005_install_badges.py:34 -msgid "Good Question" -msgstr "好問題" - -#: migrations/0005_install_badges.py:34 -msgid "good-question" -msgstr "好問題" - -#: migrations/0005_install_badges.py:34 -msgid "Question voted up 25 times" -msgstr "贊成票總數超過 25 的問題" - -#: migrations/0005_install_badges.py:35 -msgid "Favorite Question" -msgstr "珍藏問題" - -#: migrations/0005_install_badges.py:35 -msgid "favorite-question" -msgstr "珍藏問題" - -#: migrations/0005_install_badges.py:35 -msgid "Question favorited by 25 users" -msgstr "超過 25 使用者的問題" - -#: migrations/0005_install_badges.py:36 -msgid "Civic duty" -msgstr "社會責任" - -#: migrations/0005_install_badges.py:36 -msgid "civic-duty" -msgstr "社會責任" - -#: migrations/0005_install_badges.py:36 -msgid "Voted 300 times" -msgstr " 超過 300 選票 " - -#: migrations/0005_install_badges.py:37 -msgid "Strunk & White" -msgstr "文體指南" - -#: migrations/0005_install_badges.py:37 -msgid "strunk-and-white" -msgstr "文體指南" - -#: migrations/0005_install_badges.py:37 -msgid "Edited 100 entries" -msgstr "編輯 100 項" - -#: migrations/0005_install_badges.py:38 -msgid "Generalist" -msgstr "通才" - -#: migrations/0005_install_badges.py:38 -msgid "generalist" -msgstr "通才" - -#: migrations/0005_install_badges.py:38 -msgid "Active in many different tags" -msgstr "在不同標籤啟用" - -#: migrations/0005_install_badges.py:39 -msgid "Expert" -msgstr "專家" - -#: migrations/0005_install_badges.py:39 -msgid "expert" -msgstr "專家" - -#: migrations/0005_install_badges.py:39 -msgid "Very active in one tag" -msgstr "某一標籤常啟用" - -#: migrations/0005_install_badges.py:40 -msgid "Yearling" -msgstr "Yearling" - -#: migrations/0005_install_badges.py:40 -msgid "yearling" -msgstr "yearling" - -#: migrations/0005_install_badges.py:40 -msgid "Active member for a year" -msgstr "一年會員" - -#: migrations/0005_install_badges.py:41 -msgid "Notable Question" -msgstr "顯目問題" - -#: migrations/0005_install_badges.py:41 -msgid "notable-question" -msgstr "顯目問題" - -#: migrations/0005_install_badges.py:41 -msgid "Asked a question with 2,500 views" -msgstr "提問瀏覽數 2,500 的問題" - -#: migrations/0005_install_badges.py:42 -msgid "Enlightened" -msgstr "開明" - -#: migrations/0005_install_badges.py:42 -msgid "enlightened" -msgstr "開明" - -#: migrations/0005_install_badges.py:42 -msgid "First answer was accepted with at least 10 up votes" -msgstr "第一個認同超過 10 次的答案" - -#: migrations/0005_install_badges.py:43 -msgid "Beta" -msgstr "" - -#: migrations/0005_install_badges.py:43 -msgid "beta" -msgstr "測試" - -#: migrations/0005_install_badges.py:43 -msgid "Actively participated in the private beta" -msgstr "極度參予測試" - -#: migrations/0005_install_badges.py:44 -msgid "Guru" -msgstr "大師" - -#: migrations/0005_install_badges.py:44 -msgid "guru" -msgstr "大師" - -#: migrations/0005_install_badges.py:44 -msgid "Accepted answer and voted up 40 times" -msgstr "認同超過 40 次的答案" - -#: migrations/0005_install_badges.py:45 -msgid "Necromancer" -msgstr "法師" - -#: migrations/0005_install_badges.py:45 -msgid "necromancer" -msgstr "法師" - -#: migrations/0005_install_badges.py:45 -msgid "Answered a question more than 60 days later with at least 5 votes" -msgstr "回應超過 40 天且至少 5 票的問題" - -#: migrations/0005_install_badges.py:46 -msgid "Taxonomist" -msgstr "分類專家" - -#: migrations/0005_install_badges.py:46 -msgid "taxonomist" -msgstr "分類專家" - -#: migrations/0005_install_badges.py:46 -#, fuzzy -msgid "Created a tag used by 50 questions" -msgstr "產生被使用 50 個問題的標籤" +#: management/commands/send_unanswered_question_reminders.py:80 +#, python-format +msgid "%(question_count)d unanswered question about %(topics)s" +msgid_plural "%(question_count)d unanswered questions about %(topics)s" +msgstr[0] "" -#: models/__init__.py:169 +#: models/__init__.py:316 msgid "" "Sorry, you cannot accept or unaccept best answers because your account is " "blocked" msgstr "" -#: models/__init__.py:174 +#: models/__init__.py:320 msgid "" "Sorry, you cannot accept or unaccept best answers because your account is " "suspended" msgstr "" -#: models/__init__.py:180 -#, fuzzy +#: models/__init__.py:333 +#, fuzzy, python-format msgid "" -"Sorry, you cannot accept or unaccept your own answer to your own question" +">%(points)s points required to accept or unaccept your own answer to your " +"own question" msgstr "首次可以接受的答案" -#: models/__init__.py:187 +#: models/__init__.py:347 #, python-format msgid "" -"Sorry, only original author of the question - %(username)s - can accept the " -"best answer" +"Sorry, only original author of the question - %(username)s - can accept or " +"unaccept the best answer" msgstr "" -#: models/__init__.py:210 +#: models/__init__.py:375 msgid "cannot vote for own posts" msgstr "不能給自己的帖子投票" -#: models/__init__.py:213 +#: models/__init__.py:378 msgid "Sorry your account appears to be blocked " msgstr "" -#: models/__init__.py:218 +#: models/__init__.py:383 msgid "Sorry your account appears to be suspended " msgstr "" -#: models/__init__.py:228 +#: models/__init__.py:393 #, fuzzy, python-format msgid ">%(points)s points required to upvote" msgstr "需要 >%(points)s 積分才能投支持票。" -#: models/__init__.py:234 +#: models/__init__.py:399 #, python-format msgid ">%(points)s points required to downvote" msgstr "需要+%(points)s積分才能投反對票。" -#: models/__init__.py:249 +#: models/__init__.py:414 #, fuzzy msgid "Sorry, blocked users cannot upload files" msgstr "被隔離使用者不能張貼" -#: models/__init__.py:250 +#: models/__init__.py:415 #, fuzzy msgid "Sorry, suspended users cannot upload files" msgstr "被停用使用者不能張貼" -#: models/__init__.py:252 +#: models/__init__.py:417 #, python-format msgid "" "uploading images is limited to users with >%(min_rep)s reputation points" msgstr "上傳圖片只限於積分 >%(min_rep)s 以上注冊用戶!" -#: models/__init__.py:271 models/__init__.py:331 models/__init__.py:1950 +#: models/__init__.py:436 models/__init__.py:503 models/__init__.py:918 msgid "blocked users cannot post" msgstr "被隔離使用者不能張貼" -#: models/__init__.py:272 models/__init__.py:1953 +#: models/__init__.py:437 models/__init__.py:921 msgid "suspended users cannot post" msgstr "被停用使用者不能張貼" -#: models/__init__.py:297 +#: models/__init__.py:464 +#, python-format msgid "" -"Sorry, comments (except the last one) are editable only within 10 minutes " -"from posting" -msgstr "" +"Sorry, comments (except the last one) are editable only within %(minutes)s " +"minute from posting" +msgid_plural "" +"Sorry, comments (except the last one) are editable only within %(minutes)s " +"minutes from posting" +msgstr[0] "" -#: models/__init__.py:303 +#: models/__init__.py:476 msgid "Sorry, but only post owners or moderators can edit comments" msgstr "" -#: models/__init__.py:317 +#: models/__init__.py:489 msgid "" "Sorry, since your account is suspended you can comment only your own posts" msgstr "" -#: models/__init__.py:321 +#: models/__init__.py:493 #, 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:349 +#: models/__init__.py:521 msgid "" -"This post has been deleted and can be seen only by post ownwers, site " +"This post has been deleted and can be seen only by post owners, site " "administrators and moderators" msgstr "" -#: models/__init__.py:366 +#: models/__init__.py:538 msgid "" "Sorry, only moderators, site administrators and post owners can edit deleted " "posts" msgstr "" -#: models/__init__.py:381 +#: models/__init__.py:553 msgid "Sorry, since your account is blocked you cannot edit posts" msgstr "" -#: models/__init__.py:385 +#: models/__init__.py:557 msgid "Sorry, since your account is suspended you can edit only your own posts" msgstr "" -#: models/__init__.py:390 +#: models/__init__.py:562 #, python-format msgid "" "Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required" msgstr "" -#: models/__init__.py:397 +#: models/__init__.py:569 #, python-format msgid "" "Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is " "required" msgstr "" -#: models/__init__.py:460 +#: models/__init__.py:632 msgid "" "Sorry, cannot delete your question since it has an upvoted answer posted by " "someone else" @@ -2357,390 +2870,732 @@ msgid_plural "" "Sorry, cannot delete your question since it has some upvoted answers posted " "by other users" msgstr[0] "" -msgstr[1] "" -#: models/__init__.py:475 +#: models/__init__.py:647 msgid "Sorry, since your account is blocked you cannot delete posts" msgstr "" -#: models/__init__.py:479 +#: models/__init__.py:651 msgid "" "Sorry, since your account is suspended you can delete only your own posts" msgstr "" -#: models/__init__.py:483 +#: models/__init__.py:655 #, python-format msgid "" "Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s " "is required" msgstr "" -#: models/__init__.py:503 +#: models/__init__.py:675 msgid "Sorry, since your account is blocked you cannot close questions" msgstr "" -#: models/__init__.py:507 +#: models/__init__.py:679 msgid "Sorry, since your account is suspended you cannot close questions" msgstr "" -#: models/__init__.py:511 +#: models/__init__.py:683 #, python-format msgid "" "Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is " "required" msgstr "" -#: models/__init__.py:520 +#: models/__init__.py:692 #, python-format msgid "" "Sorry, to close own question a minimum reputation of %(min_rep)s is required" msgstr "" -#: models/__init__.py:544 +#: models/__init__.py:716 #, python-format msgid "" -"Sorry, only administrators, moderators or post owners with reputation > %" -"(min_rep)s can reopen questions." +"Sorry, only administrators, moderators or post owners with reputation > " +"%(min_rep)s can reopen questions." msgstr "" -#: models/__init__.py:550 +#: models/__init__.py:722 #, python-format msgid "" "Sorry, to reopen own question a minimum reputation of %(min_rep)s is required" msgstr "" -#: models/__init__.py:570 +#: models/__init__.py:742 msgid "cannot flag message as offensive twice" msgstr "" -#: models/__init__.py:575 +#: models/__init__.py:747 #, fuzzy msgid "blocked users cannot flag posts" msgstr "被隔離使用者不能張貼" -#: models/__init__.py:577 +#: models/__init__.py:749 #, fuzzy msgid "suspended users cannot flag posts" msgstr "被停用使用者不能張貼" -#: models/__init__.py:579 +#: models/__init__.py:751 #, python-format msgid "need > %(min_rep)s points to flag spam" msgstr "" -#: models/__init__.py:598 +#: models/__init__.py:770 #, python-format msgid "%(max_flags_per_day)s exceeded" msgstr "" -#: models/__init__.py:613 +#: models/__init__.py:785 msgid "" "Sorry, only question owners, site administrators and moderators can retag " "deleted questions" msgstr "" -#: models/__init__.py:620 +#: models/__init__.py:792 msgid "Sorry, since your account is blocked you cannot retag questions" msgstr "" -#: models/__init__.py:624 +#: models/__init__.py:796 msgid "" "Sorry, since your account is suspended you can retag only your own questions" msgstr "" -#: models/__init__.py:628 +#: models/__init__.py:800 #, python-format msgid "" "Sorry, to retag questions a minimum reputation of %(min_rep)s is required" msgstr "" -#: models/__init__.py:647 +#: models/__init__.py:819 msgid "Sorry, since your account is blocked you cannot delete comment" msgstr "" -#: models/__init__.py:651 +#: models/__init__.py:823 msgid "" "Sorry, since your account is suspended you can delete only your own comments" msgstr "" -#: models/__init__.py:655 +#: models/__init__.py:827 #, python-format msgid "Sorry, to delete comments reputation of %(min_rep)s is required" msgstr "" -#: models/__init__.py:678 +#: models/__init__.py:850 msgid "cannot revoke old vote" msgstr "這個投票已經過時,不能撤銷。" -#: models/__init__.py:1166 views/users.py:388 +#: models/__init__.py:1325 utils/functions.py:70 +#, python-format +msgid "on %(date)s" +msgstr "" + +#: models/__init__.py:1327 +#, fuzzy +msgid "in two days" +msgstr "登錄並回答該問題" + +#: models/__init__.py:1329 +msgid "tomorrow" +msgstr "" + +#: models/__init__.py:1331 +#, python-format +msgid "in %(hr)d hour" +msgid_plural "in %(hr)d hours" +msgstr[0] "" + +#: models/__init__.py:1333 +#, python-format +msgid "in %(min)d min" +msgid_plural "in %(min)d mins" +msgstr[0] "" + +#: models/__init__.py:1334 +#, python-format +msgid "%(days)d day" +msgid_plural "%(days)d days" +msgstr[0] "" + +#: models/__init__.py:1336 +#, 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:1501 skins/default/templates/feedback_email.txt:9 +#, fuzzy +msgid "Anonymous" +msgstr "匿名者" + +#: models/__init__.py:1597 views/users.py:365 #, fuzzy msgid "Site Adminstrator" msgstr "" "你好, \n" " 論壇管理者" -#: models/__init__.py:1168 views/users.py:390 +#: models/__init__.py:1599 views/users.py:367 msgid "Forum Moderator" msgstr "" -#: models/__init__.py:1170 views/users.py:392 +#: models/__init__.py:1601 views/users.py:369 #, fuzzy msgid "Suspended User" msgstr "送出人為" -#: models/__init__.py:1172 views/users.py:394 +#: models/__init__.py:1603 views/users.py:371 msgid "Blocked User" msgstr "" -#: models/__init__.py:1174 views/users.py:396 +#: models/__init__.py:1605 views/users.py:373 #, fuzzy msgid "Registered User" msgstr "註冊用戶" -#: models/__init__.py:1176 +#: models/__init__.py:1607 msgid "Watched User" msgstr "" -#: models/__init__.py:1178 +#: models/__init__.py:1609 msgid "Approved User" msgstr "" -#: models/__init__.py:1234 +#: models/__init__.py:1718 #, fuzzy, python-format msgid "%(username)s karma is %(reputation)s" msgstr "%(user_name)s karma 更動日誌" -#: models/__init__.py:1244 +#: models/__init__.py:1728 #, python-format msgid "one gold badge" msgid_plural "%(count)d gold badges" msgstr[0] "" -msgstr[1] "" -#: models/__init__.py:1251 +#: models/__init__.py:1735 #, fuzzy, python-format msgid "one silver badge" msgid_plural "%(count)d silver badges" msgstr[0] "第二名獎勵細節" -msgstr[1] "第二名獎勵細節" -#: models/__init__.py:1258 +#: models/__init__.py:1742 #, fuzzy, python-format msgid "one bronze badge" msgid_plural "%(count)d bronze badges" msgstr[0] "第三名獎勵細節" -msgstr[1] "第三名獎勵細節" -#: models/__init__.py:1269 +#: models/__init__.py:1753 #, python-format msgid "%(item1)s and %(item2)s" msgstr "" -#: models/__init__.py:1273 +#: models/__init__.py:1757 #, python-format msgid "%(user)s has %(badges)s" msgstr "" -#: models/__init__.py:1566 models/__init__.py:1572 models/__init__.py:1577 -#: models/__init__.py:1582 +#: models/__init__.py:2164 models/__init__.py:2170 models/__init__.py:2175 +#: models/__init__.py:2180 #, fuzzy, python-format msgid "Re: \"%(title)s\"" msgstr "提問" -#: models/__init__.py:1587 models/__init__.py:1592 +#: models/__init__.py:2185 models/__init__.py:2190 #, fuzzy, python-format msgid "Question: \"%(title)s\"" msgstr "提問" -#: models/__init__.py:1773 +#: models/__init__.py:2371 #, python-format msgid "" "Congratulations, you have received a badge '%(badge_name)s'. Check out your profile." msgstr "" -#: models/question.py:687 +#: models/__init__.py:2550 views/commands.py:396 +msgid "Your tag subscription was saved, thanks!" +msgstr "" + +#: models/answer.py:105 +msgid "" +"Sorry, the answer you are looking for is no longer available, because the " +"parent question has been removed" +msgstr "" + +#: models/answer.py:112 +#, fuzzy +msgid "Sorry, this answer has been removed and is no longer accessible" +msgstr "這個問題被" + +#: models/badges.py:129 +#, fuzzy, python-format +msgid "Deleted own post with %(votes)s or more upvotes" +msgstr "刪除記分少於 -3 分的張貼" + +#: models/badges.py:133 +msgid "Disciplined" +msgstr "井然有序" + +#: models/badges.py:151 +#, fuzzy, python-format +msgid "Deleted own post with %(votes)s or more downvotes" +msgstr "刪除記分少於 -3 分的張貼" + +#: models/badges.py:155 +msgid "Peer Pressure" +msgstr "同儕壓力" + +#: models/badges.py:174 +#, python-format +msgid "Received at least %(votes)s upvote for an answer for the first time" +msgstr "" + +#: models/badges.py:178 +msgid "Teacher" +msgstr "老師" + +#: models/badges.py:218 +msgid "Supporter" +msgstr "贊成者" + +#: models/badges.py:219 +#, fuzzy +msgid "First upvote" +msgstr "投贊成票" + +#: models/badges.py:227 +msgid "Critic" +msgstr "評論" + +#: models/badges.py:228 +#, fuzzy +msgid "First downvote" +msgstr "投反對票" + +#: models/badges.py:237 +#, fuzzy +msgid "Civic Duty" +msgstr "社會責任" + +#: models/badges.py:238 +#, fuzzy, python-format +msgid "Voted %(num)s times" +msgstr " 超過 300 選票 " + +#: models/badges.py:252 +#, fuzzy, python-format +msgid "Answered own question with at least %(num)s up votes" +msgstr "回答至少有三票的問題" + +#: models/badges.py:256 +msgid "Self-Learner" +msgstr "自學者" + +#: models/badges.py:304 +#, fuzzy +msgid "Nice Answer" +msgstr "妙答" + +#: models/badges.py:309 models/badges.py:321 models/badges.py:333 +#, fuzzy, python-format +msgid "Answer voted up %(num)s times" +msgstr "答案贊成票總數超過十次" + +#: models/badges.py:316 +msgid "Good Answer" +msgstr "好回答" + +#: models/badges.py:328 +msgid "Great Answer" +msgstr "妙答" + +#: models/badges.py:340 +msgid "Nice Question" +msgstr "好問題" + +#: models/badges.py:345 models/badges.py:357 models/badges.py:369 +#, fuzzy, python-format +msgid "Question voted up %(num)s times" +msgstr "問題贊成票總數超過十次" + +#: models/badges.py:352 +msgid "Good Question" +msgstr "好問題" + +#: models/badges.py:364 +msgid "Great Question" +msgstr "好問題" + +#: models/badges.py:376 +msgid "Student" +msgstr "學生" + +#: models/badges.py:381 +msgid "Asked first question with at least one up vote" +msgstr "詢問至少有一票的問題" + +#: models/badges.py:414 +msgid "Popular Question" +msgstr "常見問題" + +#: models/badges.py:418 models/badges.py:429 models/badges.py:441 +#, fuzzy, python-format +msgid "Asked a question with %(views)s views" +msgstr "提問瀏覽 1,000 次的問題" + +#: models/badges.py:425 +msgid "Notable Question" +msgstr "顯目問題" + +# close.html +#: models/badges.py:436 +#, fuzzy +msgid "Famous Question" +msgstr "著名問題" + +#: models/badges.py:450 +#, fuzzy +msgid "Asked a question and accepted an answer" +msgstr "已回答的問題" + +#: models/badges.py:453 +msgid "Scholar" +msgstr "學者" + +#: models/badges.py:495 +msgid "Enlightened" +msgstr "開明" + +#: models/badges.py:499 +#, fuzzy, python-format +msgid "First answer was accepted with %(num)s or more votes" +msgstr "第一個認同超過 10 次的答案" + +#: models/badges.py:507 +msgid "Guru" +msgstr "大師" + +#: models/badges.py:510 +#, fuzzy, python-format +msgid "Answer accepted with %(num)s or more votes" +msgstr "第一個認同超過 10 次的答案" + +#: models/badges.py:518 +#, fuzzy, python-format +msgid "" +"Answered a question more than %(days)s days later with at least %(votes)s " +"votes" +msgstr "回應超過 40 天且至少 5 票的問題" + +#: models/badges.py:525 +msgid "Necromancer" +msgstr "法師" + +#: models/badges.py:548 +#, fuzzy +msgid "Citizen Patrol" +msgstr "巡視員" + +#: models/badges.py:551 +msgid "First flagged post" +msgstr "第一個標記張貼" + +#: models/badges.py:563 +msgid "Cleanup" +msgstr "清除" + +#: models/badges.py:566 +msgid "First rollback" +msgstr "首次退出" + +#: models/badges.py:577 +msgid "Pundit" +msgstr "權威人士" + +#: models/badges.py:580 +msgid "Left 10 comments with score of 10 or more" +msgstr "保留十個積分超過十分的意見" + +#: models/badges.py:612 +#, fuzzy +msgid "Editor" +msgstr "編輯" + +#: models/badges.py:615 +msgid "First edit" +msgstr "" + +#: models/badges.py:623 +msgid "Associate Editor" +msgstr "" + +#: models/badges.py:627 +#, fuzzy, python-format +msgid "Edited %(num)s entries" +msgstr "編輯 100 項" + +#: models/badges.py:634 +msgid "Organizer" +msgstr "組織者" + +#: models/badges.py:637 +msgid "First retag" +msgstr "首次重設標籤" + +#: models/badges.py:644 +msgid "Autobiographer" +msgstr "自傳" + +#: models/badges.py:647 +msgid "Completed all user profile fields" +msgstr "完成個人所有資料" + +#: models/badges.py:663 +#, fuzzy, python-format +msgid "Question favorited by %(num)s users" +msgstr "超過 25 使用者的問題" + +#: models/badges.py:689 +msgid "Stellar Question" +msgstr "主要的問題" + +#: models/badges.py:698 +msgid "Favorite Question" +msgstr "珍藏問題" + +#: models/badges.py:710 +msgid "Enthusiast" +msgstr "" + +#: models/badges.py:714 +#, python-format +msgid "Visited site every day for %(num)s days in a row" +msgstr "" + +#: models/badges.py:732 +#, fuzzy +msgid "Commentator" +msgstr "城市" + +#: models/badges.py:736 +#, fuzzy, python-format +msgid "Posted %(num_comments)s comments" +msgstr "(%(comment_count)s 評論)" + +#: models/badges.py:752 +msgid "Taxonomist" +msgstr "分類專家" + +#: models/badges.py:756 +#, fuzzy, python-format +msgid "Created a tag used by %(num)s questions" +msgstr "產生被使用 50 個問題的標籤" + +#: models/badges.py:776 +msgid "Expert" +msgstr "專家" + +#: models/badges.py:779 +msgid "Very active in one tag" +msgstr "某一標籤常啟用" + +#: models/meta.py:112 +msgid "" +"Sorry, the comment you are looking for is no longer accessible, because the " +"parent question has been removed" +msgstr "" + +#: models/meta.py:119 +msgid "" +"Sorry, the comment you are looking for is no longer accessible, because the " +"parent answer has been removed" +msgstr "" + +#: models/question.py:72 +#, python-format +msgid "\" and \"%s\"" +msgstr "" + +#: models/question.py:75 +#, fuzzy +msgid "\" and more" +msgstr "查看更多" + +#: models/question.py:452 +#, fuzzy +msgid "Sorry, this question has been deleted and is no longer accessible" +msgstr "這個問題被" + +#: models/question.py:908 #, python-format msgid "%(author)s modified the question" msgstr "%(author)s 已修改這個問題" -#: models/question.py:691 +#: models/question.py:912 #, python-format msgid "%(people)s posted %(new_answer_count)s new answers" msgstr "%(people)s 張貼新答案 %(new_answer_count)s" -#: models/question.py:696 +#: models/question.py:917 #, python-format msgid "%(people)s commented the question" msgstr "%(people)s 評論問題" -#: models/question.py:701 +#: models/question.py:922 #, python-format msgid "%(people)s commented answers" msgstr "%(people)s 評論回答" -#: models/question.py:703 +#: models/question.py:924 #, python-format msgid "%(people)s commented an answer" msgstr "%(people)s 評論回答" -#: models/repute.py:16 skins/default/templates/badges.html:43 -msgid "gold" -msgstr "第一名" - -#: models/repute.py:17 skins/default/templates/badges.html:52 -msgid "silver" -msgstr "第二名" - -#: models/repute.py:18 skins/default/templates/badges.html:59 -msgid "bronze" -msgstr "第三名" - -#: models/repute.py:150 +#: models/repute.py:142 #, python-format msgid "Changed by moderator. Reason: %(reason)s" msgstr "" -#: models/repute.py:161 +#: models/repute.py:153 #, python-format msgid "" -"%(points)s points were added for %(username)s's contribution to question %" -"(question_title)s" +"%(points)s points were added for %(username)s's contribution to question " +"%(question_title)s" msgstr "" -#: models/repute.py:166 +#: models/repute.py:158 #, python-format msgid "" "%(points)s points were subtracted for %(username)s's contribution to " "question %(question_title)s" msgstr "" -#: models/tag.py:91 +#: models/tag.py:151 #, fuzzy msgid "interesting" msgstr "有趣" -#: models/tag.py:91 +#: models/tag.py:151 msgid "ignored" msgstr "忽略" -#: models/user.py:233 +#: models/user.py:264 msgid "Entire forum" msgstr "這論壇" -#: models/user.py:234 +#: models/user.py:265 msgid "Questions that I asked" msgstr "提問問題" -#: models/user.py:235 +#: models/user.py:266 msgid "Questions that I answered" msgstr "已回答的問題" -#: models/user.py:236 +#: models/user.py:267 msgid "Individually selected questions" msgstr "已選問題" -#: models/user.py:237 +#: models/user.py:268 msgid "Mentions and comment responses" msgstr "" -#: models/user.py:240 +#: models/user.py:271 msgid "Instantly" msgstr "" -#: models/user.py:241 +#: models/user.py:272 msgid "Daily" msgstr "每天" -#: models/user.py:242 +#: models/user.py:273 msgid "Weekly" msgstr "每周" -#: models/user.py:243 +#: models/user.py:274 msgid "No email" msgstr "無電子郵件" #: skins/default/templates/404.jinja.html:3 -#: skins/default/templates/404.jinja.html:11 +#: skins/default/templates/404.jinja.html:10 msgid "Page not found" msgstr "" -#: skins/default/templates/404.jinja.html:15 +#: skins/default/templates/404.jinja.html:13 msgid "Sorry, could not find the page you requested." msgstr "對不起,沒有找到您要的頁面!" -#: skins/default/templates/404.jinja.html:17 +#: skins/default/templates/404.jinja.html:15 msgid "This might have happened for the following reasons:" msgstr "可能是以下原因導致:" -#: skins/default/templates/404.jinja.html:19 +#: skins/default/templates/404.jinja.html:17 msgid "this question or answer has been deleted;" msgstr "你正在查看的問題或者回答已經被刪除;" -#: skins/default/templates/404.jinja.html:20 +#: skins/default/templates/404.jinja.html:18 msgid "url has error - please check it;" msgstr "請求的地址有誤 - 請核實原始 URL 地址;" -#: skins/default/templates/404.jinja.html:21 +#: skins/default/templates/404.jinja.html:19 msgid "" "the page you tried to visit is protected or you don't have sufficient " "points, see" msgstr "訪問的頁面被保護或你的積分不夠,參見" -#: skins/default/templates/404.jinja.html:21 -#: skins/default/templates/footer.html:6 -#: skins/default/templates/header.html:57 -#: skins/default/templates/question_edit_tips.html:16 +#: skins/default/templates/404.jinja.html:19 +#: skins/default/templates/blocks/footer.html:5 +#: skins/default/templates/blocks/header_meta_links.html:13 +#: skins/default/templates/blocks/question_edit_tips.html:15 msgid "faq" msgstr "常見問題" -#: skins/default/templates/404.jinja.html:22 +#: skins/default/templates/404.jinja.html:20 msgid "if you believe this error 404 should not have occured, please" msgstr "如果你確信不該出現 404 錯誤,請" -#: skins/default/templates/404.jinja.html:23 +#: skins/default/templates/404.jinja.html:21 msgid "report this problem" msgstr "回報這個問題" -#: skins/default/templates/404.jinja.html:32 -#: skins/default/templates/500.jinja.html:13 +#: skins/default/templates/404.jinja.html:30 +#: skins/default/templates/500.jinja.html:11 msgid "back to previous page" msgstr "返回前頁" -#: skins/default/templates/404.jinja.html:33 -#: skins/default/templates/questions.html:13 +#: skins/default/templates/404.jinja.html:31 +#: skins/default/templates/main_page/tab_bar.html:9 msgid "see all questions" msgstr "查看最新問題" -#: skins/default/templates/404.jinja.html:34 +#: skins/default/templates/404.jinja.html:32 msgid "see all tags" msgstr "查看標籤列表" #: skins/default/templates/500.jinja.html:3 -#: skins/default/templates/500.jinja.html:6 +#: skins/default/templates/500.jinja.html:5 msgid "Internal server error" msgstr "" -#: skins/default/templates/500.jinja.html:10 +#: skins/default/templates/500.jinja.html:8 msgid "system error log is recorded, error will be fixed as soon as possible" msgstr "系統已記錄錯誤, 並將盡快處理" -#: skins/default/templates/500.jinja.html:11 +#: skins/default/templates/500.jinja.html:9 msgid "please report the error to the site administrators if you wish" msgstr "如果你願意, 請將錯誤回報管理者" -#: skins/default/templates/500.jinja.html:14 +#: skins/default/templates/500.jinja.html:12 msgid "see latest questions" msgstr "請看最新問題" -#: skins/default/templates/500.jinja.html:15 +#: skins/default/templates/500.jinja.html:13 msgid "see tags" msgstr "請看標籤" -# footer.html -#: skins/default/templates/about.html:3 skins/default/templates/about.html:6 -msgid "About" -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 @@ -2748,171 +3603,64 @@ msgid "Edit answer" msgstr "修改回答" #: skins/default/templates/answer_edit.html:10 -#: skins/default/templates/question_edit.html:10 -#: skins/default/templates/question_retag.html:6 +#: skins/default/templates/question_edit.html:9 +#: skins/default/templates/question_retag.html:5 #: skins/default/templates/revisions.html:7 msgid "back" msgstr "返回" -#: skins/default/templates/answer_edit.html:15 -#: skins/default/templates/question_edit.html:14 +#: skins/default/templates/answer_edit.html:14 msgid "revision" msgstr "版本" -#: skins/default/templates/answer_edit.html:18 -#: skins/default/templates/question_edit.html:19 +#: skins/default/templates/answer_edit.html:17 +#: skins/default/templates/question_edit.html:16 msgid "select revision" msgstr "選擇版本" # synonym of above in Edit question -#: skins/default/templates/answer_edit.html:22 -#: skins/default/templates/question_edit.html:28 +#: skins/default/templates/answer_edit.html:21 +#: skins/default/templates/question_edit.html:27 msgid "Save edit" msgstr "儲存修改" -#: skins/default/templates/answer_edit.html:23 -#: skins/default/templates/close.html:19 -#: skins/default/templates/feedback.html:45 -#: skins/default/templates/question_edit.html:29 -#: skins/default/templates/question_retag.html:26 -#: skins/default/templates/reopen.html:30 -#: skins/default/templates/user_edit.html:76 +#: skins/default/templates/answer_edit.html:22 +#: skins/default/templates/close.html:16 +#: skins/default/templates/feedback.html:42 +#: skins/default/templates/question_edit.html:28 +#: skins/default/templates/question_retag.html:22 +#: skins/default/templates/reopen.html:27 +#: skins/default/templates/subscribe_for_tags.html:16 #: skins/default/templates/authopenid/changeemail.html:38 +#: skins/default/templates/user_profile/user_edit.html:84 msgid "Cancel" msgstr "取消" -#: skins/default/templates/answer_edit.html:59 -#: skins/default/templates/answer_edit.html:62 -#: skins/default/templates/ask.html:36 skins/default/templates/ask.html:39 -#: skins/default/templates/macros.html:398 -#: skins/default/templates/question.html:456 -#: skins/default/templates/question.html:459 -#: skins/default/templates/question_edit.html:63 -#: skins/default/templates/question_edit.html:66 +#: skins/default/templates/answer_edit.html:60 +#: skins/default/templates/answer_edit.html:63 +#: skins/default/templates/ask.html:46 skins/default/templates/ask.html:49 +#: skins/default/templates/macros.html:698 +#: skins/default/templates/question.html:562 +#: skins/default/templates/question.html:565 +#: skins/default/templates/question_edit.html:72 +#: skins/default/templates/question_edit.html:75 msgid "hide preview" msgstr "禁用預覽" -#: skins/default/templates/answer_edit.html:62 -#: skins/default/templates/ask.html:39 -#: skins/default/templates/question.html:459 -#: skins/default/templates/question_edit.html:66 +#: skins/default/templates/answer_edit.html:63 +#: skins/default/templates/ask.html:49 +#: skins/default/templates/question.html:565 +#: skins/default/templates/question_edit.html:75 msgid "show preview" msgstr "顯示預覽" -#: skins/default/templates/answer_edit_tips.html:3 -msgid "answer tips" -msgstr "提問技巧" - -#: skins/default/templates/answer_edit_tips.html:6 -msgid "please make your answer relevant to this community" -msgstr "請回應相關答案" - -#: skins/default/templates/answer_edit_tips.html:9 -msgid "try to give an answer, rather than engage into a discussion" -msgstr "盡量答覆問題,而非討論。" - -#: skins/default/templates/answer_edit_tips.html:12 -msgid "please try to provide details" -msgstr "請詳細描述細節" - -#: skins/default/templates/answer_edit_tips.html:15 -#: skins/default/templates/question_edit_tips.html:12 -msgid "be clear and concise" -msgstr "簡單扼要" - -#: skins/default/templates/answer_edit_tips.html:19 -#: skins/default/templates/question_edit_tips.html:16 -msgid "see frequently asked questions" -msgstr "查看常見問題" - -#: skins/default/templates/answer_edit_tips.html:25 -#: skins/default/templates/question_edit_tips.html:22 -msgid "Markdown tips" -msgstr "Markdown 快速參考" - -#: skins/default/templates/answer_edit_tips.html:29 -#: skins/default/templates/question_edit_tips.html:26 -msgid "*italic*" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:32 -#: skins/default/templates/question_edit_tips.html:29 -msgid "**bold**" -msgstr "" - -#: skins/default/templates/answer_edit_tips.html:36 -#: skins/default/templates/question_edit_tips.html:33 -#, fuzzy -msgid "*italic* or _italic_" -msgstr "*斜體* 或者 _斜體_" - -#: skins/default/templates/answer_edit_tips.html:39 -#: skins/default/templates/question_edit_tips.html:36 -msgid "**bold** or __bold__" -msgstr "**加粗** 或者 __加粗__ " - -#: skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/question_edit_tips.html:40 -msgid "link" -msgstr "聯結" - -#: skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:40 -#: skins/default/templates/question_edit_tips.html:45 -msgid "text" -msgstr "文字" - -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:45 -msgid "image" -msgstr "圖片" - -#: skins/default/templates/answer_edit_tips.html:51 -#: skins/default/templates/question_edit_tips.html:49 -msgid "numbered list:" -msgstr "有序列表:" - -#: skins/default/templates/answer_edit_tips.html:56 -#: skins/default/templates/question_edit_tips.html:54 -msgid "basic HTML tags are also supported" -msgstr "支援基本的HTML標籤" - -#: skins/default/templates/answer_edit_tips.html:60 -#: skins/default/templates/question_edit_tips.html:58 -msgid "learn more about Markdown" -msgstr "有關 Markdown 詳細說明" - -#: skins/default/templates/ask.html:3 +#: skins/default/templates/ask.html:4 msgid "Ask a question" msgstr "我要提問" -#: skins/default/templates/ask_form.html:7 -msgid "login to post question info" -msgstr "簽入張貼問題" - -#: skins/default/templates/ask_form.html:11 -#, fuzzy, python-format -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" - -#: skins/default/templates/ask_form.html:27 -msgid "Login/signup to post your question" -msgstr "請 Login/signup 進去張貼" - -#: skins/default/templates/ask_form.html:29 -msgid "Ask your question" -msgstr "現在提問" - -#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:11 -#: skins/default/templates/badges.html:28 -#: skins/default/templates/user_recent.html:13 -#: skins/default/templates/user_stats.html:88 +#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:8 +#: skins/default/templates/user_profile/user_recent.html:16 +#: skins/default/templates/user_profile/user_stats.html:110 #, python-format msgid "%(name)s" msgstr "" @@ -2925,140 +3673,117 @@ msgstr "" # msgstr "使用正確 %(email)s 張貼, \" # " 參考 %(email_validation_faq_url)s\n" # " " -#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:7 +#: skins/default/templates/badge.html:4 msgid "Badge" msgstr "獎牌" -#: skins/default/templates/badge.html:11 -#: skins/default/templates/badges.html:27 -#: skins/default/templates/badges.html:31 -#: skins/default/templates/user_recent.html:13 -#: skins/default/templates/user_stats.html:88 +#: skins/default/templates/badge.html:6 +#, python-format +msgid "Badge \"%(name)s\"" +msgstr "" + +#: skins/default/templates/badge.html:8 +#: skins/default/templates/user_profile/user_recent.html:16 +#: skins/default/templates/user_profile/user_stats.html:108 #, fuzzy, python-format msgid "%(description)s" msgstr "email 訂閱" -#: skins/default/templates/badge.html:16 +#: skins/default/templates/badge.html:13 msgid "user received this badge:" 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:6 +#: skins/default/templates/badges.html:5 msgid "Badges" msgstr "獎勵" -#: skins/default/templates/badges.html:10 +#: skins/default/templates/badges.html:7 msgid "Community gives you awards for your questions, answers and votes." msgstr "社群將依你提出的問題,回答,投票的表現,獎勵你。" -#: skins/default/templates/badges.html:11 -#, python-format +#: skins/default/templates/badges.html:8 +#, 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. Give us feedback at " +"%(feedback_faq_url)s.\n" msgstr "" "下列為獎勵, 數目明細 \n" " 歡迎給予 %(feedback_faq_url)s 回饋。\n" " " -#: skins/default/templates/badges.html:27 -#, python-format -msgid "%(type)s" -msgstr "" - -#: skins/default/templates/badges.html:40 +#: skins/default/templates/badges.html:35 msgid "Community badges" msgstr "社群獎勵" -#: skins/default/templates/badges.html:43 +#: skins/default/templates/badges.html:37 msgid "gold badge: the highest honor and is very rare" msgstr "金牌:十分罕見之最高榮耀" -#: skins/default/templates/badges.html:46 +#: skins/default/templates/badges.html:40 msgid "gold badge description" msgstr "第一名獎勵細節" -#: skins/default/templates/badges.html:51 +#: skins/default/templates/badges.html:45 msgid "" "silver badge: occasionally awarded for the very high quality contributions" msgstr "銀牌:偶爾頒發之優質獎章" -#: skins/default/templates/badges.html:55 +#: skins/default/templates/badges.html:49 msgid "silver badge description" msgstr "第二名獎勵細節" -#: skins/default/templates/badges.html:58 +#: skins/default/templates/badges.html:52 msgid "bronze badge: often given as a special honor" msgstr "第三名獎勵:授予之特殊榮譽" -#: skins/default/templates/badges.html:62 +#: skins/default/templates/badges.html:56 msgid "bronze badge description" msgstr "第三名獎勵細節" # close.html -#: skins/default/templates/close.html:3 skins/default/templates/close.html:6 +#: skins/default/templates/close.html:3 skins/default/templates/close.html:5 msgid "Close question" msgstr "結束問題" -#: skins/default/templates/close.html:9 +#: skins/default/templates/close.html:6 msgid "Close the question" msgstr "結束問題" -#: skins/default/templates/close.html:14 +#: skins/default/templates/close.html:11 msgid "Reasons" msgstr "原因" -#: skins/default/templates/close.html:18 +#: skins/default/templates/close.html:15 msgid "OK to close" msgstr "確定關閉" -#: skins/default/templates/editor_data.html:8 -#, 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] "每個標籤的長度不超過20" -msgstr[1] "每個標籤的長度不超過20" - -#: skins/default/templates/editor_data.html:10 -#, fuzzy, python-format -msgid "please use %(tag_count)s tag" -msgid_plural "please use %(tag_count)s tags or less" -msgstr[0] "最多只能有5個標籤" -msgstr[1] "最多只能有5個標籤" - -# todo: remove magic numbers from this file -#: skins/default/templates/editor_data.html:11 -#, fuzzy, python-format -msgid "" -"please use up to %(tag_count)s tags, less than %(max_chars)s characters each" -msgstr "最多 5 個標籤,每個標籤長度小於 20 個字元。" - -#: skins/default/templates/faq.html:3 skins/default/templates/faq.html.py:6 +#: skins/default/templates/faq.html:3 +#: skins/default/templates/faq_static.html:3 +#: skins/default/templates/faq_static.html:5 msgid "FAQ" msgstr "" -#: skins/default/templates/faq.html:6 +#: skins/default/templates/faq_static.html:5 msgid "Frequently Asked Questions " msgstr "常見問題" -#: skins/default/templates/faq.html:11 +#: skins/default/templates/faq_static.html:6 msgid "What kinds of questions can I ask here?" msgstr "我可以在這裏提問什麼樣的問題?" -#: skins/default/templates/faq.html:12 +#: skins/default/templates/faq_static.html:7 msgid "" "Most importanly - questions should be relevant to this " "community." msgstr "重點是 - 問題必須是和這社群 相關!" -#: skins/default/templates/faq.html:13 +#: 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." @@ -3066,60 +3791,60 @@ msgstr "" "提問之前,充分利用系統的自動查找、標籤和搜索,看看是否已經有一樣的問題並有了" "答案。" -#: skins/default/templates/faq.html:15 +#: skins/default/templates/faq_static.html:10 msgid "What questions should I avoid asking?" msgstr "什麼樣的問題我不該在此提問?" -#: skins/default/templates/faq.html:16 +#: skins/default/templates/faq_static.html:11 msgid "" "Please avoid asking questions that are not relevant to this community, too " "subjective and argumentative." msgstr "請避免提問無關的,過於主觀性,易造成爭吵的問題。" -#: skins/default/templates/faq.html:20 +#: skins/default/templates/faq_static.html:13 msgid "What should I avoid in my answers?" msgstr "什麼樣的回答是不受歡迎的?" -#: skins/default/templates/faq.html:21 +#: 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 " 此為 問題/回答 網站,非討論區,請勿在此討論或評論答案。" -#: skins/default/templates/faq.html:24 +#: skins/default/templates/faq_static.html:15 msgid "Who moderates this community?" msgstr "誰是社群的管理員?" -#: skins/default/templates/faq.html:25 +#: skins/default/templates/faq_static.html:16 msgid "The short answer is: you." msgstr "答案是:。" -#: skins/default/templates/faq.html:26 +#: skins/default/templates/faq_static.html:17 msgid "This website is moderated by the users." msgstr "社群沒有嚴格意義上的管理員身份,每個人皆可為管理員" -#: skins/default/templates/faq.html:27 +#: skins/default/templates/faq_static.html:18 msgid "" "The reputation system allows users earn the authorization to perform a " "variety of moderation tasks." msgstr "通過積分系統運作,每個用戶可以學習管理者的事務。" -#: skins/default/templates/faq.html:32 +#: skins/default/templates/faq_static.html:20 msgid "How does reputation system work?" msgstr "社群積分系統如何運作?" -#: skins/default/templates/faq.html:33 +#: skins/default/templates/faq_static.html:21 msgid "Rep system summary" msgstr "更新概要:" -#: skins/default/templates/faq.html:34 +#: skins/default/templates/faq_static.html:22 #, fuzzy, 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 %" -"(REP_GAIN_FOR_RECEIVING_UPVOTE)s points, each vote against will " +"it will be downvoted. Each vote in favor will generate " +"%(REP_GAIN_FOR_RECEIVING_UPVOTE)s points, each vote against will " "subtract %(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s points. There " "is a limit of %(MAX_REP_GAIN_PER_USER_PER_DAY)s points that " "can be accumulated for a question or answer per day. The table below " @@ -3130,73 +3855,68 @@ msgstr "" "10 分, 總分最高 200 分, 表格下方為參與管理" "者事務所需積分。" -#: skins/default/templates/faq.html:44 -#: skins/default/templates/user_votes.html:10 +#: skins/default/templates/faq_static.html:32 +#: skins/default/templates/user_profile/user_votes.html:13 msgid "upvote" msgstr "投贊成票" -#: skins/default/templates/faq.html:49 +#: skins/default/templates/faq_static.html:37 #, fuzzy msgid "use tags" msgstr "使用標籤" # todo - check if it's indeed plural -#: skins/default/templates/faq.html:54 +#: skins/default/templates/faq_static.html:42 msgid "add comments" msgstr "添加評論" -#: skins/default/templates/faq.html:58 -#: skins/default/templates/user_votes.html:12 +#: skins/default/templates/faq_static.html:46 +#: skins/default/templates/user_profile/user_votes.html:15 msgid "downvote" msgstr "投反對票" -#: skins/default/templates/faq.html:61 +#: skins/default/templates/faq_static.html:49 +#, fuzzy +msgid " accept own answer to own questions" +msgstr "首次可以接受的答案" + +#: skins/default/templates/faq_static.html:53 #, fuzzy msgid "open and close own questions" msgstr "打開關閉任何人的問題" -#: skins/default/templates/faq.html:65 +#: skins/default/templates/faq_static.html:57 #, fuzzy msgid "retag other's questions" msgstr "給任何問題整理標籤" -#: skins/default/templates/faq.html:70 +#: skins/default/templates/faq_static.html:62 msgid "edit community wiki questions" msgstr "編輯 wiki 類問題" -#: skins/default/templates/faq.html:75 +#: skins/default/templates/faq_static.html:67 #, fuzzy msgid "\"edit any answer" msgstr "編輯任何答案" -#: skins/default/templates/faq.html:79 +#: skins/default/templates/faq_static.html:71 #, fuzzy msgid "\"delete any comment" msgstr "刪除每一個評論" -#: skins/default/templates/faq.html:86 -msgid "how to validate email title" -msgstr "如何認證 email 標題" - -#: skins/default/templates/faq.html:88 -#, python-format -msgid "" -"how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)s" -msgstr "如何認證 email %(send_email_key_url)s %(gravatar_faq_url)s 資料" - -#: skins/default/templates/faq.html:93 +#: skins/default/templates/faq_static.html:74 msgid "what is gravatar" msgstr "何謂大頭貼服務" -#: skins/default/templates/faq.html:94 +#: skins/default/templates/faq_static.html:75 msgid "gravatar faq info" msgstr "大頭貼服務常問集" -#: skins/default/templates/faq.html:97 +#: skins/default/templates/faq_static.html:76 msgid "To register, do I need to create new password?" msgstr "注冊需要一個新密碼嗎?" -#: skins/default/templates/faq.html:98 +#: skins/default/templates/faq_static.html:77 #, fuzzy msgid "" "No, you don't have to. You can login through any service that supports " @@ -3205,210 +3925,128 @@ msgstr "" "不需要。社區提供了OpenID 的登錄支持,你只需用 Google、Yahoo 等任何支持 " "OpenID 登錄的帳號就可以使用系統。" -#: skins/default/templates/faq.html:99 +#: skins/default/templates/faq_static.html:78 #, fuzzy msgid "\"Login now!\"" msgstr "馬上登錄" -#: skins/default/templates/faq.html:103 +#: skins/default/templates/faq_static.html:80 msgid "Why other people can edit my questions/answers?" msgstr "為什麼其他人可以修改我的問題/回答?" -#: skins/default/templates/faq.html:104 +#: skins/default/templates/faq_static.html:81 msgid "Goal of this site is..." msgstr "此網站的目的為 ... " -#: skins/default/templates/faq.html:104 +#: skins/default/templates/faq_static.html:81 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.html:105 +#: skins/default/templates/faq_static.html:82 msgid "If this approach is not for you, we respect your choice." msgstr "如果您不喜歡這種方式,我們尊重你的選擇。" -#: skins/default/templates/faq.html:109 +#: skins/default/templates/faq_static.html:84 msgid "Still have questions?" msgstr "還有其他問題?" -#: skins/default/templates/faq.html:110 +#: skins/default/templates/faq_static.html:85 #, fuzzy, python-format msgid "" "Please ask your question at %(ask_question_url)s, help make our community " "better!" msgstr "如果您對 %(ask_question_url)s 還有其他疑問,請一起來改善! " -#: skins/default/templates/faq.html:112 skins/default/templates/header.html:78 -msgid "questions" -msgstr "問題" - -#: skins/default/templates/faq.html:112 -msgid "." -msgstr "。" - #: skins/default/templates/feedback.html:3 msgid "Feedback" msgstr "問題回饋" -#: skins/default/templates/feedback.html:6 +#: skins/default/templates/feedback.html:5 msgid "Give us your feedback!" msgstr "回饋" -#: skins/default/templates/feedback.html:12 -#, python-format +#: skins/default/templates/feedback.html:9 +#, fuzzy, python-format msgid "" "\n" -" Dear %(user_name)s, we look " -"forward to hearing your feedback. \n" -" Please type and send us your message below.\n" -" " +" Dear %(user_name)s, we look forward " +"to hearing your feedback. \n" +" Please type and send us your message below.\n" +" " msgstr "" "\n" " 敬愛的 %(user_name)s, 我們樂於收到任何回饋, " "請由下方輸入意見. \n" " " -#: skins/default/templates/feedback.html:19 +#: skins/default/templates/feedback.html:16 +#, fuzzy msgid "" "\n" -" Dear visitor, we look forward to " +" Dear visitor, we look forward to " "hearing your feedback.\n" -" Please type and send us your message below.\n" -" " +" Please type and send us your message below.\n" +" " msgstr "" "\n" " 敬愛的參觀者, 我們樂於收到任何回饋, 請由下方" "輸入意見. \n" " " -#: skins/default/templates/feedback.html:28 +#: skins/default/templates/feedback.html:25 #, fuzzy msgid "(please enter a valid email)" msgstr "請輸入合法電子郵件地址" -#: skins/default/templates/feedback.html:36 +#: skins/default/templates/feedback.html:33 msgid "(this field is required)" msgstr " (此欄不能為空白)" -#: skins/default/templates/feedback.html:44 +#: skins/default/templates/feedback.html:41 msgid "Send Feedback" msgstr "送出問題回饋" -#: skins/default/templates/feedback_email.txt:3 -#, python-format +#: skins/default/templates/feedback_email.txt:2 +#, fuzzy, python-format msgid "" "\n" -"Hello, this is a %(site_title)s forum feedback message\n" +"Hello, this is a %(site_title)s forum feedback message.\n" msgstr "" "\n" " 你好, 這是 %(site_title)s 回饋單\n" -#: skins/default/templates/feedback_email.txt:9 -msgid "Sender is" -msgstr "送出人為" - -#: skins/default/templates/feedback_email.txt:11 -#: skins/default/templates/feedback_email.txt:14 -msgid "email" -msgstr "email" - -#: skins/default/templates/feedback_email.txt:13 -msgid "anonymous" -msgstr "匿名者" - -#: skins/default/templates/feedback_email.txt:19 -msgid "Message body:" -msgstr "訊息" - -# footer.html -#: skins/default/templates/footer.html:5 -#: skins/default/templates/header.html:56 -msgid "about" -msgstr "關於本站" - -#: skins/default/templates/footer.html:7 -msgid "privacy policy" -msgstr "隱私政策" - -#: skins/default/templates/footer.html:16 -msgid "give feedback" -msgstr "問題回饋" - -#: skins/default/templates/header.html:12 -#, fuzzy, python-format -msgid "responses for %(username)s" -msgstr "選擇一個用戶名" - -#: skins/default/templates/header.html:15 -#, python-format -msgid "you have a new response" -msgid_plural "you nave %(response_count)s new responses" -msgstr[0] "" -msgstr[1] "" - -#: skins/default/templates/header.html:18 -#, fuzzy -msgid "no new responses yet" -msgstr "回應" - -#: skins/default/templates/header.html:30 -#: skins/default/templates/header.html:31 -#, python-format -msgid "%(new)s new flagged posts and %(seen)s previous" +#: skins/default/templates/import_data.html:2 +#: skins/default/templates/import_data.html:4 +msgid "Import StackExchange data" msgstr "" -#: skins/default/templates/header.html:33 -#: skins/default/templates/header.html:34 -#, fuzzy, python-format -msgid "%(new)s new flagged posts" -msgstr "第一個標記張貼" - -#: skins/default/templates/header.html:39 -#: skins/default/templates/header.html:40 -#, fuzzy, python-format -msgid "%(seen)s flagged posts" -msgstr "第一個標記張貼" - -#: skins/default/templates/header.html:52 -msgid "logout" -msgstr "登出" - -#: skins/default/templates/header.html:54 -msgid "login" -msgstr "登錄" - -# book.html line 123 must be empty in english -#: skins/default/templates/header.html:59 -#, fuzzy -msgid "settings" -msgstr "重設標籤" - -#: skins/default/templates/header.html:68 -msgid "back to home page" -msgstr "回到首頁" - -#: skins/default/templates/header.html:69 -#, fuzzy, python-format -msgid "%(site)s logo" -msgstr "社區通用語" - -#: skins/default/templates/header.html:88 -msgid "users" -msgstr "用戶" +#: skins/default/templates/import_data.html:13 +msgid "" +"Warning: if your database is not empty, please back it up\n" +" before attempting this operation." +msgstr "" -#: skins/default/templates/header.html:93 -msgid "badges" -msgstr "獎勵榜" +#: skins/default/templates/import_data.html:16 +msgid "" +"Upload your stackexchange dump .zip file, then wait until\n" +" the data import completes. This process may take several minutes.\n" +" Please note that feedback will be printed in plain text.\n" +" " +msgstr "" -#: skins/default/templates/header.html:98 -msgid "ask a question" -msgstr "我要提問" +#: skins/default/templates/import_data.html:25 +msgid "Import data" +msgstr "" -#: skins/default/templates/input_bar.html:32 -msgid "search" -msgstr "搜索" +#: 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: python manage." +"py load_stackexchange path/to/your-data.zip" +msgstr "" #: skins/default/templates/instant_notification.html:1 #, python-format @@ -3481,153 +4119,161 @@ msgstr "" "你好, \n" " 論壇管理者" -#: skins/default/templates/logout.html:3 skins/default/templates/logout.html:6 -msgid "Logout" -msgstr "登出" +#: skins/default/templates/macros.html:25 +#, fuzzy, python-format +msgid "Share this question on %(site)s" +msgstr "發布我的提問到我的 Twitter " -#: skins/default/templates/logout.html:9 -msgid "" -"As a registered user you can login with your OpenID, log out of the site or " -"permanently remove your account." -msgstr "您是已注冊用戶,可以隨時使用OpenID帳號登錄系統或者註銷登錄。" +#: skins/default/templates/macros.html:36 +#, python-format +msgid "follow %(alias)s" +msgstr "" + +#: skins/default/templates/macros.html:39 +#, python-format +msgid "unfollow %(alias)s" +msgstr "" -#: skins/default/templates/logout.html:10 -msgid "Logout now" -msgstr "點擊登出" +#: skins/default/templates/macros.html:40 +#, python-format +msgid "following %(alias)s" +msgstr "" -#: skins/default/templates/macros.html:26 +#: skins/default/templates/macros.html:63 msgid "karma:" msgstr "" -#: skins/default/templates/macros.html:30 +#: skins/default/templates/macros.html:67 #, fuzzy msgid "badges:" msgstr "獎勵榜" -#: skins/default/templates/macros.html:52 -#: skins/default/templates/macros.html:53 +#: skins/default/templates/macros.html:143 +#: skins/default/templates/macros.html:144 msgid "previous" msgstr "上一頁" -#: skins/default/templates/macros.html:64 +#: skins/default/templates/macros.html:155 msgid "current page" msgstr "當前頁" -#: skins/default/templates/macros.html:66 -#: skins/default/templates/macros.html:73 +#: skins/default/templates/macros.html:157 +#: skins/default/templates/macros.html:164 #, fuzzy, python-format msgid "page number %(num)s" msgstr "第 %(num)s 頁" -#: skins/default/templates/macros.html:77 +#: skins/default/templates/macros.html:168 msgid "next page" msgstr "下一頁" -#: skins/default/templates/macros.html:88 +#: skins/default/templates/macros.html:179 msgid "posts per page" msgstr "每頁顯示:" -#: skins/default/templates/macros.html:119 templatetags/extra_tags.py:56 +#: skins/default/templates/macros.html:211 templatetags/extra_tags.py:43 #, python-format msgid "%(username)s gravatar image" msgstr "%(username)s 大頭貼" -#: skins/default/templates/macros.html:142 +#: skins/default/templates/macros.html:220 +#, fuzzy, python-format +msgid "%(username)s's website is %(url)s" +msgstr "%(user_name)s karma 更動日誌" + +#: skins/default/templates/macros.html:232 +#, fuzzy +msgid "anonymous user" +msgstr "匿名者" + +#: skins/default/templates/macros.html:260 msgid "this post is marked as community wiki" msgstr "" -#: skins/default/templates/macros.html:145 +#: skins/default/templates/macros.html:263 #, python-format msgid "" "This post is a wiki.\n" " Anyone with karma >%(wiki_min_rep)s is welcome to improve it." msgstr "" -#: skins/default/templates/macros.html:151 +#: skins/default/templates/macros.html:269 msgid "asked" msgstr "提問於" -#: skins/default/templates/macros.html:153 +#: skins/default/templates/macros.html:271 #, fuzzy msgid "answered" msgstr "回答" -#: skins/default/templates/macros.html:155 +#: skins/default/templates/macros.html:273 #, fuzzy msgid "posted" msgstr "發表" -#: skins/default/templates/macros.html:185 +#: skins/default/templates/macros.html:303 msgid "updated" msgstr "更新" -#: skins/default/templates/macros.html:210 -#: skins/default/templates/unused/questions_ajax.html:23 views/readers.py:237 +# this is how above two are supposed to be +#: skins/default/templates/macros.html:379 +#, python-format +msgid "see questions tagged '%(tag)s'" +msgstr "查看有關 '%(tag)s' 的問題" + +#: skins/default/templates/macros.html:424 views/readers.py:239 #, fuzzy -msgid "vote" -msgid_plural "votes" -msgstr[0] "票" -msgstr[1] "票" +msgid "view" +msgid_plural "views" +msgstr[0] "瀏覽" -#: skins/default/templates/macros.html:227 -#: skins/default/templates/unused/questions_ajax.html:43 views/readers.py:240 +#: skins/default/templates/macros.html:441 views/readers.py:236 #, fuzzy msgid "answer" msgid_plural "answers" msgstr[0] "回答" -msgstr[1] "回答" -#: skins/default/templates/macros.html:239 -#: skins/default/templates/unused/questions_ajax.html:55 views/readers.py:243 +#: skins/default/templates/macros.html:452 views/readers.py:233 #, fuzzy -msgid "view" -msgid_plural "views" -msgstr[0] "瀏覽" -msgstr[1] "瀏覽" +msgid "vote" +msgid_plural "votes" +msgstr[0] "票" -# this is how above two are supposed to be -#: skins/default/templates/macros.html:251 -#: skins/default/templates/question.html:88 -#: skins/default/templates/tags.html:38 -#: skins/default/templates/unused/question_list.html:64 -#: skins/default/templates/unused/question_summary_list_roll.html:52 -#: skins/default/templates/unused/questions_ajax.html:68 -#, python-format -msgid "see questions tagged '%(tag)s'" -msgstr "查看有關 '%(tag)s' 的問題" +#: skins/default/templates/macros.html:491 +msgid "delete this comment" +msgstr "刪除任何一個評論" -#: skins/default/templates/macros.html:272 -#: skins/default/templates/question.html:94 -#: skins/default/templates/question.html:247 +#: skins/default/templates/macros.html:502 +#: skins/default/templates/question.html:79 +#: skins/default/templates/question.html:235 #: skins/default/templates/revisions.html:37 msgid "edit" msgstr "編輯" -#: skins/default/templates/macros.html:277 -msgid "delete this comment" -msgstr "刪除任何一個評論" - -#: skins/default/templates/macros.html:295 -#: skins/default/templates/macros.html:303 -#: skins/default/templates/question.html:423 +#: skins/default/templates/macros.html:520 +#: skins/default/templates/macros.html:528 +#: skins/default/templates/question.html:511 msgid "add comment" msgstr "添加評論" -#: skins/default/templates/macros.html:296 +#: skins/default/templates/macros.html:521 #, python-format msgid "see %(counter)s more" msgid_plural "see %(counter)s more" msgstr[0] "詳見 %(counter)s" -msgstr[1] "詳見 %(counter)s" -#: skins/default/templates/macros.html:298 +#: skins/default/templates/macros.html:523 #, fuzzy, python-format msgid "see %(counter)s more comment" msgid_plural "" "see %(counter)s more comments\n" -" " +" " msgstr[0] "更多評論, 詳見 %(counter)s" -msgstr[1] "更多評論, 詳見 %(counter)s" + +#: skins/default/templates/macros.html:661 +#, fuzzy +msgid "one of these is required" +msgstr " 標籤不能為空白。" # #, python-format # msgid "" @@ -3637,505 +4283,422 @@ msgstr[1] "更多評論, 詳見 %(counter)s" # msgstr "使用正確 %(email)s 張貼, \" # " 參考 %(email_validation_faq_url)s\n" # " " -#: skins/default/templates/macros.html:375 +#: skins/default/templates/macros.html:673 msgid "(required)" msgstr "(必要的)" -#: skins/default/templates/macros.html:396 +#: skins/default/templates/macros.html:696 msgid "Toggle the real time Markdown editor preview" msgstr "切換為 Markdown 編輯器的即時預覽" -#: skins/default/templates/privacy.html:3 -#: skins/default/templates/privacy.html:6 -msgid "Privacy policy" -msgstr "隱私政策" +#: skins/default/templates/macros.html:708 +#, fuzzy, python-format +msgid "responses for %(username)s" +msgstr "選擇一個用戶名" -#: skins/default/templates/question.html:30 -#: skins/default/templates/question.html:31 -#: skins/default/templates/question.html:46 -#: skins/default/templates/question.html:48 +#: skins/default/templates/macros.html:711 +#, python-format +msgid "you have a new response" +msgid_plural "you have %(response_count)s new responses" +msgstr[0] "" + +#: skins/default/templates/macros.html:714 +#, fuzzy +msgid "no new responses yet" +msgstr "回應" + +#: skins/default/templates/macros.html:729 +#: skins/default/templates/macros.html:730 +#, python-format +msgid "%(new)s new flagged posts and %(seen)s previous" +msgstr "" + +#: skins/default/templates/macros.html:732 +#: skins/default/templates/macros.html:733 +#, fuzzy, python-format +msgid "%(new)s new flagged posts" +msgstr "第一個標記張貼" + +#: skins/default/templates/macros.html:738 +#: skins/default/templates/macros.html:739 +#, fuzzy, python-format +msgid "%(seen)s flagged posts" +msgstr "第一個標記張貼" + +#: skins/default/templates/main_page.html:11 +msgid "Questions" +msgstr "問題列表" + +#: skins/default/templates/privacy.html:3 +#: skins/default/templates/privacy.html:5 +msgid "Privacy policy" +msgstr "隱私政策" + +#: skins/default/templates/question.html:26 +#: skins/default/templates/question.html:27 +#: skins/default/templates/question.html:42 +#: skins/default/templates/question.html:44 msgid "i like this post (click again to cancel)" msgstr "這篇帖子有價值(再次點擊取消操作)" -#: skins/default/templates/question.html:33 -#: skins/default/templates/question.html:50 -#: skins/default/templates/question.html:198 +#: skins/default/templates/question.html:29 +#: skins/default/templates/question.html:46 +#: skins/default/templates/question.html:186 msgid "current number of votes" msgstr "當前總票數" -#: skins/default/templates/question.html:42 -#: skins/default/templates/question.html:43 -#: skins/default/templates/question.html:55 -#: skins/default/templates/question.html:56 +#: skins/default/templates/question.html:38 +#: skins/default/templates/question.html:39 +#: skins/default/templates/question.html:51 +#: skins/default/templates/question.html:52 msgid "i dont like this post (click again to cancel)" msgstr "這篇帖子沒有價值(再次點擊取消操作)" -#: skins/default/templates/question.html:60 -#: skins/default/templates/question.html:61 -msgid "mark this question as favorite (click again to cancel)" -msgstr "我要收藏這個問題(再次點擊取消操作)" - -#: skins/default/templates/question.html:67 -#: skins/default/templates/question.html:68 -msgid "remove favorite mark from this question (click again to restore mark)" -msgstr "取消收藏這個問題(再次點擊取消操作)" - -#: skins/default/templates/question.html:74 -#, fuzzy -msgid "Share this question on twitter" -msgstr "發布我的提問到我的 Twitter " - -#: skins/default/templates/question.html:75 -msgid "Share this question on facebook" -msgstr "" - -#: skins/default/templates/question.html:97 +#: skins/default/templates/question.html:82 #, fuzzy msgid "retag" msgstr "更新了標籤" -#: skins/default/templates/question.html:104 +#: skins/default/templates/question.html:89 msgid "reopen" msgstr "打開" -#: skins/default/templates/question.html:108 +#: skins/default/templates/question.html:93 msgid "close" msgstr "關閉" -#: skins/default/templates/question.html:113 -#: skins/default/templates/question.html:251 +#: skins/default/templates/question.html:98 +#: skins/default/templates/question.html:239 msgid "" "report as offensive (i.e containing spam, advertising, malicious text, etc.)" msgstr "檢舉該帖為「惡意帖」(含廣告、人身攻擊、惡意言論等)" -#: skins/default/templates/question.html:114 -#: skins/default/templates/question.html:252 +#: skins/default/templates/question.html:99 +#: skins/default/templates/question.html:240 msgid "flag offensive" msgstr "標記惡意帖" -#: skins/default/templates/question.html:121 -#: skins/default/templates/question.html:262 -#: skins/default/templates/authopenid/signin.html:175 +# todo please check this in chinese +#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:250 +msgid "undelete" +msgstr "恢復" + +#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:250 +#: skins/default/templates/authopenid/signin.html:166 msgid "delete" msgstr "刪除" -#: skins/default/templates/question.html:156 +#: skins/default/templates/question.html:143 #, fuzzy, python-format msgid "" "The question has been closed for the following reason \"%(close_reason)s\" by" msgstr "問題已因 \"%(close_reason)s\" 的原因被關閉" -#: skins/default/templates/question.html:158 +#: skins/default/templates/question.html:145 #, python-format msgid "close date %(closed_at)s" msgstr "關閉日期 %(closed_at)s " -#: skins/default/templates/question.html:166 +#: skins/default/templates/question.html:151 #, 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 答案:" -msgstr[1] "" -"\n" -" %(counter)s 答案:" -#: skins/default/templates/question.html:174 +#: skins/default/templates/question.html:159 msgid "oldest answers will be shown first" msgstr "最先回答將顯示在最前面" -#: skins/default/templates/question.html:174 +#: skins/default/templates/question.html:160 msgid "oldest answers" msgstr "最先回答" -#: skins/default/templates/question.html:176 +#: skins/default/templates/question.html:162 msgid "newest answers will be shown first" msgstr "最晚回答將顯示在最前面" -#: skins/default/templates/question.html:176 +#: skins/default/templates/question.html:163 msgid "newest answers" msgstr "最近回答" -#: skins/default/templates/question.html:178 +#: skins/default/templates/question.html:165 msgid "most voted answers will be shown first" msgstr "投票次數最多的將顯示在最前面" -#: skins/default/templates/question.html:178 +#: skins/default/templates/question.html:166 msgid "popular answers" msgstr "投票最多" -#: skins/default/templates/question.html:196 -#: skins/default/templates/question.html:197 +#: skins/default/templates/question.html:184 +#: skins/default/templates/question.html:185 msgid "i like this answer (click again to cancel)" msgstr "這篇帖子有價值(再次點擊取消操作)" -#: skins/default/templates/question.html:207 -#: skins/default/templates/question.html:208 +#: skins/default/templates/question.html:195 +#: skins/default/templates/question.html:196 msgid "i dont like this answer (click again to cancel)" msgstr "這篇帖子沒有價值(再次點擊取消操作)" -#: skins/default/templates/question.html:216 -#: skins/default/templates/question.html:217 +#: skins/default/templates/question.html:204 +#: skins/default/templates/question.html:205 msgid "mark this answer as favorite (click again to undo)" msgstr "標記為最佳答案(再次點擊取消操作)" -#: skins/default/templates/question.html:226 -#: skins/default/templates/question.html:227 +#: skins/default/templates/question.html:214 +#: skins/default/templates/question.html:215 #, fuzzy, python-format msgid "%(question_author)s has selected this answer as correct" msgstr "這個答案已經被提問作者標記為最佳答案" -#: skins/default/templates/question.html:242 +#: skins/default/templates/question.html:230 msgid "answer permanent link" msgstr "回答的連結地址" -#: skins/default/templates/question.html:243 +#: skins/default/templates/question.html:231 msgid "permanent link" msgstr "永久連結" -# todo please check this in chinese -#: skins/default/templates/question.html:262 -msgid "undelete" -msgstr "恢復" +#: skins/default/templates/question.html:256 +#, fuzzy +msgid "swap with question" +msgstr "回答問題" + +#: skins/default/templates/question.html:297 +#, python-format +msgid "" +"Know someone who can answer? Share a link " +"to this question via" +msgstr "" + +#: skins/default/templates/question.html:303 +#, fuzzy +msgid " or" +msgstr "或者" + +#: skins/default/templates/question.html:305 +msgid "email" +msgstr "email" -#: skins/default/templates/question.html:309 -#: skins/default/templates/question.html:311 +#: skins/default/templates/question.html:320 +#: skins/default/templates/question.html:322 msgid "Notify me once a day when there are any new answers" msgstr "" -#: skins/default/templates/question.html:313 +#: skins/default/templates/question.html:324 msgid "Notify me weekly when there are any new answers" msgstr "若有新答案請知會我" -#: skins/default/templates/question.html:315 +#: skins/default/templates/question.html:326 #, fuzzy msgid "Notify me immediately when there are any new answers" msgstr "若有新答案請知會我" -#: skins/default/templates/question.html:318 +#: skins/default/templates/question.html:329 #, 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.html:323 +#: skins/default/templates/question.html:334 msgid "once you sign in you will be able to subscribe for any updates here" msgstr "一旦遷入你可以訂閱任何更新" -#: skins/default/templates/question.html:333 +#: skins/default/templates/question.html:344 +#, fuzzy +msgid "Login/Signup to Answer" +msgstr "登錄並回答該問題" + +#: skins/default/templates/question.html:352 msgid "Your answer" msgstr "您的回答" -#: skins/default/templates/question.html:335 +#: skins/default/templates/question.html:354 msgid "Be the first one to answer this question!" msgstr "這問題的第一個解答者" -#: skins/default/templates/question.html:341 +#: skins/default/templates/question.html:360 msgid "you can answer anonymously and then login" msgstr "你可以匿名回應再簽入" -#: skins/default/templates/question.html:345 +#: skins/default/templates/question.html:364 msgid "answer your own question only to give an answer" msgstr "自問自答" -#: skins/default/templates/question.html:347 +#: skins/default/templates/question.html:366 msgid "please only give an answer, no discussions" msgstr "請答複問題,而非討論。" -#: skins/default/templates/question.html:354 +#: skins/default/templates/question.html:373 msgid "Login/Signup to Post Your Answer" msgstr "" -#: skins/default/templates/question.html:357 +#: skins/default/templates/question.html:376 +#: skins/default/templates/question.html:389 msgid "Answer Your Own Question" msgstr "回答問題" -#: skins/default/templates/question.html:359 +#: skins/default/templates/question.html:378 msgid "Answer the question" msgstr "回答問題" -#: skins/default/templates/question.html:373 +#: skins/default/templates/question.html:397 +#, fuzzy +msgid "Question tools" +msgstr "問題標籤" + +#: skins/default/templates/question.html:400 +#, fuzzy +msgid "click to unfollow this question" +msgstr "點選觀看最熱門的問題" + +#: skins/default/templates/question.html:401 +msgid "Following" +msgstr "" + +#: skins/default/templates/question.html:402 +msgid "Unfollow" +msgstr "" + +#: skins/default/templates/question.html:406 +#, fuzzy +msgid "click to follow this question" +msgstr "點選觀看最熱門的問題" + +#: skins/default/templates/question.html:407 +msgid "Follow" +msgstr "" + +#: skins/default/templates/question.html:414 +#, python-format +msgid "%(count)s follower" +msgid_plural "%(count)s followers" +msgstr[0] "" + +#: skins/default/templates/question.html:420 +#, fuzzy +msgid "email the updates" +msgstr "取消電子郵件更新" + +#: skins/default/templates/question.html:423 +msgid "" +"Here (once you log in) you will be able to sign up for the " +"periodic email updates about this question." +msgstr "" + +#: skins/default/templates/question.html:428 +#, fuzzy +msgid "subscribe to this question rss feed" +msgstr "訂閱最新問題" + +#: skins/default/templates/question.html:429 +#, fuzzy +msgid "subsribe to rss feed" +msgstr "訂閱最新問題" + +#: skins/default/templates/question.html:438 msgid "Question tags" msgstr "問題標籤" -# this is how above two are supposed to be -#: skins/default/templates/question.html:378 -#: skins/default/templates/questions.html:222 -#: skins/default/templates/tag_selector.html:9 -#: skins/default/templates/tag_selector.html:26 -#, fuzzy, python-format -msgid "see questions tagged '%(tag_name)s'" -msgstr "查看有關 '%(tag_name)s' 的問題" +#: skins/default/templates/question.html:460 +msgid "Stats:" +msgstr "" -#: skins/default/templates/question.html:384 +#: skins/default/templates/question.html:462 #, fuzzy msgid "question asked" msgstr "提問時間" -#: skins/default/templates/question.html:387 +#: skins/default/templates/question.html:465 msgid "question was seen" msgstr "目前問題" -#: skins/default/templates/question.html:387 +#: skins/default/templates/question.html:465 msgid "times" msgstr "次" -#: skins/default/templates/question.html:390 +#: skins/default/templates/question.html:468 msgid "last updated" msgstr "最後更新時間" -#: skins/default/templates/question.html:397 +#: skins/default/templates/question.html:477 msgid "Related questions" msgstr "相似的問題" # page title #: skins/default/templates/question_edit.html:4 -#: skins/default/templates/question_edit.html:10 +#: skins/default/templates/question_edit.html:9 msgid "Edit question" msgstr "修改問題" -#: skins/default/templates/question_edit_tips.html:3 -msgid "question tips" -msgstr "提問技巧" - -#: skins/default/templates/question_edit_tips.html:6 -msgid "please ask a relevant question" -msgstr "我要提問" - -#: skins/default/templates/question_edit_tips.html:9 -msgid "please try provide enough details" -msgstr "請詳細描述您的問題。" - #: skins/default/templates/question_retag.html:3 -#: skins/default/templates/question_retag.html:6 +#: skins/default/templates/question_retag.html:5 msgid "Change tags" msgstr "修改標籤" -#: skins/default/templates/question_retag.html:25 +#: skins/default/templates/question_retag.html:21 #, fuzzy msgid "Retag" msgstr "標籤" -#: skins/default/templates/question_retag.html:34 +#: skins/default/templates/question_retag.html:28 msgid "Why use and modify tags?" msgstr "為什麼要用或修改標籤?" -#: skins/default/templates/question_retag.html:36 +#: skins/default/templates/question_retag.html:30 msgid "Tags help to keep the content better organized and searchable" msgstr "" -#: skins/default/templates/question_retag.html:38 +#: skins/default/templates/question_retag.html:32 msgid "tag editors receive special awards from the community" msgstr "將授予修改標籤的用戶特殊的社區獎勵" # todo: remove magic numbers from this file -#: skins/default/templates/question_retag.html:79 +#: skins/default/templates/question_retag.html:59 msgid "up to 5 tags, less than 20 characters each" msgstr "最多 5 個標籤,每個標籤長度小於 20 個字元。" -#: skins/default/templates/questions.html:4 -msgid "Questions" -msgstr "問題列表" - -#: skins/default/templates/questions.html:9 -msgid "In:" -msgstr "In:" - -#: skins/default/templates/questions.html:18 -#, fuzzy -msgid "see unanswered questions" -msgstr "沒有回答的問題" - -#: skins/default/templates/questions.html:24 -#, fuzzy -msgid "see your favorite questions" -msgstr "用戶收藏的問題" - -#: skins/default/templates/questions.html:29 -msgid "Sort by:" -msgstr "查詢性質: " - -#: skins/default/templates/questions.html:97 -#: skins/default/templates/questions.html:100 -msgid "subscribe to the questions feed" -msgstr "訂閱最新問題" - -#: skins/default/templates/questions.html:101 -msgid "rss feed" -msgstr "" - -#: skins/default/templates/questions.html:105 -#, fuzzy, python-format -msgid "" -"\n" -" %(q_num)s question\n" -" " -msgid_plural "" -"\n" -" %(q_num)s questions\n" -" " -msgstr[0] "" -"\n" -" %(counter)s 答案:\n" -msgstr[1] "" -"\n" -" %(counter)s 答案:\n" - -#: skins/default/templates/questions.html:111 views/readers.py:157 -#, fuzzy, python-format -msgid "%(q_num)s question" -msgid_plural "%(q_num)s questions" -msgstr[0] "第 %(q_num)s 個問題" -msgstr[1] "第 %(q_num)s 個問題" - -#: skins/default/templates/questions.html:114 -#, python-format -msgid "with %(author_name)s's contributions" -msgstr "%(author_name)s 的貢獻" - -#: skins/default/templates/questions.html:117 -msgid "tagged" -msgstr "標記" - -#: skins/default/templates/questions.html:122 -msgid "Search tips:" -msgstr "搜尋技巧: " - -#: skins/default/templates/questions.html:125 -msgid "reset author" -msgstr "重設作者" - -#: skins/default/templates/questions.html:127 -#: skins/default/templates/questions.html:130 -#: skins/default/templates/questions.html:168 -#: skins/default/templates/questions.html:171 -#, fuzzy -msgid " or " -msgstr "或者" - -#: skins/default/templates/questions.html:128 -msgid "reset tags" -msgstr "重設標籤" - -#: skins/default/templates/questions.html:131 -#: skins/default/templates/questions.html:134 -msgid "start over" -msgstr "重新開始" - -#: skins/default/templates/questions.html:136 -msgid " - to expand, or dig in by adding more tags and revising the query." -msgstr " - 使用更多的標籤更改查詢找資料" - -#: skins/default/templates/questions.html:139 -msgid "Search tip:" -msgstr "查詢技巧: " - -#: skins/default/templates/questions.html:139 -msgid "add tags and a query to focus your search" -msgstr "增加標籤和查詢加強搜尋" - -#: skins/default/templates/questions.html:154 -#: skins/default/templates/unused/questions_ajax.html:79 -msgid "There are no unanswered questions here" -msgstr "無未解答問題" - -#: skins/default/templates/questions.html:157 -#: skins/default/templates/unused/questions_ajax.html:82 -msgid "No favorite questions here. " -msgstr "無被收藏問題" - -#: skins/default/templates/questions.html:158 -#: skins/default/templates/unused/questions_ajax.html:83 -msgid "Please start (bookmark) some questions when you visit them" -msgstr "一旦開始觀看請記錄問題" - -#: skins/default/templates/questions.html:163 -#: skins/default/templates/unused/questions_ajax.html:88 -msgid "You can expand your search by " -msgstr "廣泛搜尋可由" - -#: skins/default/templates/questions.html:166 -#: skins/default/templates/unused/questions_ajax.html:92 -msgid "resetting author" -msgstr "重設作者" - -# book.html line 123 must be empty in english -#: skins/default/templates/questions.html:169 -#: skins/default/templates/unused/questions_ajax.html:96 -msgid "resetting tags" -msgstr "重設標籤" - -#: skins/default/templates/questions.html:172 -#: skins/default/templates/questions.html:175 -#: skins/default/templates/unused/questions_ajax.html:100 -#: skins/default/templates/unused/questions_ajax.html:104 -msgid "starting over" -msgstr "重新開始" - -#: skins/default/templates/questions.html:180 -#: skins/default/templates/unused/questions_ajax.html:109 -#, fuzzy -msgid "Please always feel free to ask your question!" -msgstr "歡迎提問! " - -#: skins/default/templates/questions.html:184 -#: skins/default/templates/unused/questions_ajax.html:113 -msgid "Did not find what you were looking for?" -msgstr "找不到結果? " - -#: skins/default/templates/questions.html:185 -#: skins/default/templates/unused/questions_ajax.html:114 -msgid "Please, post your question!" -msgstr "現在提問" - -#: skins/default/templates/questions.html:200 -msgid "Contributors" -msgstr "貢獻者" - -#: skins/default/templates/questions.html:217 -msgid "Related tags" -msgstr "相關標籤" - -#: skins/default/templates/reopen.html:3 skins/default/templates/reopen.html:6 +#: skins/default/templates/reopen.html:3 skins/default/templates/reopen.html:5 msgid "Reopen question" msgstr "重啟問題" -#: skins/default/templates/reopen.html:9 +#: skins/default/templates/reopen.html:6 #, fuzzy msgid "Title" msgstr "標題" -#: skins/default/templates/reopen.html:14 +#: skins/default/templates/reopen.html:11 #, python-format msgid "" "This question has been closed by \n" -" %(closed_by_username)s\n" -" " +" %(closed_by_username)s\n" msgstr "" # close.html -#: skins/default/templates/reopen.html:19 +#: skins/default/templates/reopen.html:16 #, fuzzy msgid "Close reason:" msgstr "結束問題" -#: skins/default/templates/reopen.html:22 +#: skins/default/templates/reopen.html:19 msgid "When:" msgstr "" -#: skins/default/templates/reopen.html:25 +#: skins/default/templates/reopen.html:22 #, fuzzy msgid "Reopen this question?" msgstr "重啟這個問題" -#: skins/default/templates/reopen.html:29 +#: skins/default/templates/reopen.html:26 #, fuzzy msgid "Reopen this question" msgstr "重啟這個問題" @@ -4155,1037 +4718,1391 @@ msgstr "點選 隱藏/展開 版本" msgid "revision %(number)s" msgstr "版本" -# book.html line 123 must be empty in english -#: skins/default/templates/tag_selector.html:3 -msgid "Interesting tags" -msgstr "有趣的標籤" - -#: skins/default/templates/tag_selector.html:13 -#, python-format -msgid "remove '%(tag_name)s' from the list of interesting tags" -msgstr "從有趣的標籤, 去除 '%(tag_name)s'" - -#: skins/default/templates/tag_selector.html:19 -#: skins/default/templates/tag_selector.html:36 -#: skins/default/templates/user_moderate.html:35 -msgid "Add" -msgstr "增加" - -#: skins/default/templates/tag_selector.html:20 -msgid "Ignored tags" -msgstr "忽視標籤" +#: skins/default/templates/subscribe_for_tags.html:3 +#: skins/default/templates/subscribe_for_tags.html:5 +#, fuzzy +msgid "Subscribe for tags" +msgstr "使用標籤" -#: skins/default/templates/tag_selector.html:30 -#, python-format -msgid "remove '%(tag_name)s' from the list of ignored tags" -msgstr "從忽視的標籤, 去除 '%(tag_name)s'" +#: skins/default/templates/subscribe_for_tags.html:6 +#, fuzzy +msgid "Please, subscribe for the following tags:" +msgstr "問題曾因下述原因結束" -#: skins/default/templates/tag_selector.html:39 -msgid "keep ignored questions hidden" -msgstr "繼續隱藏忽視的問題" +#: skins/default/templates/subscribe_for_tags.html:15 +msgid "Subscribe" +msgstr "" -#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:8 +#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:11 msgid "Tag list" msgstr "標籤列表" -#: skins/default/templates/tags.html:14 +#: skins/default/templates/tags.html:9 +#, python-format +msgid "Tags, matching \"%(stag)s\"" +msgstr "" + +#: skins/default/templates/tags.html:19 msgid "sorted alphabetically" msgstr "按名稱的字母先後順序排序" -#: skins/default/templates/tags.html:15 +#: skins/default/templates/tags.html:20 msgid "by name" msgstr "按名稱排序" -#: skins/default/templates/tags.html:20 +#: skins/default/templates/tags.html:25 msgid "sorted by frequency of tag use" msgstr "按標籤被使用的次數排序" -#: skins/default/templates/tags.html:21 +#: skins/default/templates/tags.html:26 msgid "by popularity" msgstr "按流行程度排序" -#: skins/default/templates/tags.html:27 -#, python-format -msgid "" -"All tags matching '%(stag)s'" -msgstr "合乎 '%(stag)s' 的標籤" - -#: skins/default/templates/tags.html:30 +#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:56 msgid "Nothing found" msgstr "毫無所獲" -#: skins/default/templates/user.html:14 -#, fuzzy, python-format -msgid "%(username)s's profile" -msgstr "用戶資料" - -#: skins/default/templates/user_edit.html:4 -msgid "Edit user profile" -msgstr "修改個人資料" +#: skins/default/templates/users.html:4 skins/default/templates/users.html:7 +msgid "Users" +msgstr "用戶列表" -#: skins/default/templates/user_edit.html:7 -msgid "edit profile" -msgstr "修改資料" +#: skins/default/templates/users.html:13 +msgid "see people with the highest reputation" +msgstr "" -#: skins/default/templates/user_edit.html:17 -#: skins/default/templates/user_info.html:11 -msgid "change picture" -msgstr "更換照片" +#: skins/default/templates/users.html:14 +#: skins/default/templates/user_profile/user_info.html:25 +msgid "reputation" +msgstr "積分" -#: skins/default/templates/user_edit.html:20 -msgid "Registered user" -msgstr "註冊用戶" +#: skins/default/templates/users.html:19 +msgid "see people who joined most recently" +msgstr "" -#: skins/default/templates/user_edit.html:27 -#, fuzzy -msgid "Screen Name" -msgstr "當頁" +#: skins/default/templates/users.html:20 +msgid "recent" +msgstr "最新加入" -#: skins/default/templates/user_edit.html:75 -#: skins/default/templates/user_email_subscriptions.html:18 -msgid "Update" -msgstr "更新" +#: skins/default/templates/users.html:25 +msgid "see people who joined the site first" +msgstr "" -#: skins/default/templates/user_email_subscriptions.html:4 -msgid "Email subscription settings" -msgstr "Email 訂閱設定" +#: skins/default/templates/users.html:31 +msgid "see people sorted by name" +msgstr "" -#: skins/default/templates/user_email_subscriptions.html:5 -msgid "email subscription settings info" -msgstr "Email 訂閱設定資料" +#: skins/default/templates/users.html:32 +msgid "by username" +msgstr "用戶名" -#: skins/default/templates/user_email_subscriptions.html:19 -msgid "Stop sending email" -msgstr "停止送出 email" +#: skins/default/templates/users.html:37 +#, python-format +msgid "users matching query %(suser)s:" +msgstr "合乎 %(suser)s 查詢的所有用戶名:" -#: skins/default/templates/user_inbox.html:31 -#, fuzzy -msgid "Sections:" -msgstr "問題" +#: skins/default/templates/users.html:40 +msgid "Nothing found." +msgstr "沒有找到相關數據。" + +#: skins/default/templates/authopenid/changeemail.html:2 +#: skins/default/templates/authopenid/changeemail.html:8 +#: skins/default/templates/authopenid/changeemail.html:36 +msgid "Change email" +msgstr "更換電子郵件" + +#: skins/default/templates/authopenid/changeemail.html:10 +msgid "Save your email address" +msgstr "儲存您的電子郵件地址" -#: skins/default/templates/user_inbox.html:35 +#: skins/default/templates/authopenid/changeemail.html:15 #, python-format -msgid "forum responses (%(re_count)s)" -msgstr "" +msgid "change %(email)s info" +msgstr "更換 %(email)s 電子郵件" -#: skins/default/templates/user_inbox.html:40 +#: skins/default/templates/authopenid/changeemail.html:17 #, python-format -msgid "flagged items (%(flag_count)s)" -msgstr "" +msgid "here is why email is required, see %(gravatar_faq_url)s" +msgstr "email 必要, 請參考 %(gravatar_faq_url)s" -#: skins/default/templates/user_inbox.html:46 -#, fuzzy -msgid "select:" -msgstr "刪除" +#: skins/default/templates/authopenid/changeemail.html:29 +msgid "Your new Email" +msgstr "新電子信箱" -#: skins/default/templates/user_inbox.html:48 -#, fuzzy -msgid "seen" -msgstr "查看" +#: skins/default/templates/authopenid/changeemail.html:29 +msgid "Your Email" +msgstr "電子信箱" -#: skins/default/templates/user_inbox.html:49 +#: skins/default/templates/authopenid/changeemail.html:36 #, fuzzy -msgid "new" -msgstr "最新問題" +msgid "Save Email" +msgstr "儲存電子信箱" -#: skins/default/templates/user_inbox.html:50 +#: skins/default/templates/authopenid/changeemail.html:45 #, fuzzy -msgid "none" -msgstr "第三名" +msgid "Validate email" +msgstr "驗證電子信箱" + +#: skins/default/templates/authopenid/changeemail.html:48 +#, python-format +msgid "validate %(email)s info or go to %(change_email_url)s" +msgstr "驗證 %(email)s 資料或到 %(change_email_url)s" + +#: skins/default/templates/authopenid/changeemail.html:52 +msgid "Email not changed" +msgstr "電子信箱不變" + +#: skins/default/templates/authopenid/changeemail.html:55 +#, python-format +msgid "old %(email)s kept, if you like go to %(change_email_url)s" +msgstr "如果你要到 %(change_email_url)s 舊 %(email)s 仍保留" -#: skins/default/templates/user_inbox.html:51 +#: skins/default/templates/authopenid/changeemail.html:59 #, fuzzy -msgid "mark as seen" -msgstr "上次活動時間" +msgid "Email changed" +msgstr "電子信箱已變" + +#: skins/default/templates/authopenid/changeemail.html:62 +#, python-format +msgid "your current %(email)s can be used for this" +msgstr "可以用電子信箱 %(email)s " + +#: skins/default/templates/authopenid/changeemail.html:66 +msgid "Email verified" +msgstr "驗證過電子信箱" + +#: skins/default/templates/authopenid/changeemail.html:69 +msgid "thanks for verifying email" +msgstr "感謝驗證電子信箱" + +#: skins/default/templates/authopenid/changeemail.html:73 +msgid "email key not sent" +msgstr "電子信箱 key 未傳送" + +#: skins/default/templates/authopenid/changeemail.html:76 +#, python-format +msgid "email key not sent %(email)s change email here %(change_link)s" +msgstr "%(change_link)s 未傳送電子信箱 key %(email)s" -#: skins/default/templates/user_inbox.html:52 +#: skins/default/templates/authopenid/complete.html:21 +#: skins/default/templates/authopenid/complete.html:23 #, fuzzy -msgid "mark as new" -msgstr "標記最佳答案" +msgid "Registration" +msgstr "註冊" -#: skins/default/templates/user_inbox.html:53 -msgid "dismiss" +#: skins/default/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/default/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/default/templates/user_info.html:18 -#: skins/default/templates/users.html:13 skins/default/templates/users.html:14 -msgid "reputation" -msgstr "積分" +#: skins/default/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/default/templates/user_info.html:30 -msgid "manage login methods" -msgstr "" +#: skins/default/templates/authopenid/complete.html:37 +#, python-format +msgid "register new Facebook connect account info, see %(gravatar_faq_url)s" +msgstr "註冊臉書新帳號, 請參考 %(gravatar_faq_url)s" -#: skins/default/templates/user_info.html:34 -msgid "update profile" -msgstr "更新我的資料" +# todo: review this message may be confusing user +#: skins/default/templates/authopenid/complete.html:40 +msgid "This account already exists, please use another." +msgstr "指定帳號已經存在, 請使用別的帳號。" -#: skins/default/templates/user_info.html:46 -msgid "real name" -msgstr "真名" +#: skins/default/templates/authopenid/complete.html:59 +msgid "Screen name label" +msgstr "畫面標題" -#: skins/default/templates/user_info.html:51 -msgid "member for" -msgstr "已加入" +#: skins/default/templates/authopenid/complete.html:66 +#, fuzzy +msgid "Email address label" +msgstr "您的電子郵件地址" -#: skins/default/templates/user_info.html:56 -msgid "last seen" -msgstr "上次活動時間" +#: skins/default/templates/authopenid/complete.html:72 +#: skins/default/templates/authopenid/signup_with_password.html:36 +msgid "receive updates motivational blurb" +msgstr "接收到更新的簡介" -#: skins/default/templates/user_info.html:62 -msgid "user website" -msgstr "個人網站" +#: skins/default/templates/authopenid/complete.html:76 +#: skins/default/templates/authopenid/signup_with_password.html:40 +msgid "please select one of the options above" +msgstr "請選取上數選項" -#: skins/default/templates/user_info.html:68 -msgid "location" -msgstr "城市" +#: skins/default/templates/authopenid/complete.html:79 +msgid "Tag filter tool will be your right panel, once you log in." +msgstr "一旦簽入, 標籤供聚會在右欄" -# user_info.html -#: skins/default/templates/user_info.html:75 -msgid "age" -msgstr "年齡" +#: skins/default/templates/authopenid/complete.html:80 +msgid "create account" +msgstr "新增帳號" -#: skins/default/templates/user_info.html:76 -msgid "age unit" -msgstr "歲" +#: skins/default/templates/authopenid/confirm_email.txt:1 +msgid "Thank you for registering at our Q&A forum!" +msgstr "感謝你加入我們的 Q&A 論壇" -#: skins/default/templates/user_info.html:83 -msgid "todays unused votes" -msgstr "今日剩餘投票數" +#: skins/default/templates/authopenid/confirm_email.txt:3 +msgid "Your account details are:" +msgstr "帳號詳細: " -#: skins/default/templates/user_info.html:84 -msgid "votes left" -msgstr "票" +#: skins/default/templates/authopenid/confirm_email.txt:5 +#, fuzzy +msgid "Username:" +msgstr "您的大名" -#: skins/default/templates/user_moderate.html:5 -#, python-format -msgid "%(username)s's current status is \"%(status)s\"" -msgstr "" +#: skins/default/templates/authopenid/confirm_email.txt:6 +msgid "Password:" +msgstr "密碼: " -#: skins/default/templates/user_moderate.html:8 -msgid "User status changed" +#: skins/default/templates/authopenid/confirm_email.txt:8 +msgid "Please sign in here:" +msgstr "請由此進入: " + +#: skins/default/templates/authopenid/confirm_email.txt:11 +#: skins/default/templates/authopenid/email_validation.txt:13 +msgid "" +"Sincerely,\n" +"Forum Administrator" msgstr "" +"你好, \n" +" 論壇管理者" -#: skins/default/templates/user_moderate.html:15 -msgid "Save" -msgstr "儲存" +#: skins/default/templates/authopenid/email_validation.txt:1 +msgid "Greetings from the Q&A forum" +msgstr "歡迎" -#: skins/default/templates/user_moderate.html:21 -#, python-format -msgid "Your current reputation is %(reputation)s points" -msgstr "" +#: skins/default/templates/authopenid/email_validation.txt:3 +msgid "To make use of the Forum, please follow the link below:" +msgstr "請依下列指引使用論壇: " -#: skins/default/templates/user_moderate.html:23 -#, python-format -msgid "User's current reputation is %(reputation)s points" -msgstr "" +#: skins/default/templates/authopenid/email_validation.txt:7 +msgid "Following the link above will help us verify your email address." +msgstr "請依上列指引認證電子郵件地址" -#: skins/default/templates/user_moderate.html:27 +#: skins/default/templates/authopenid/email_validation.txt:9 #, fuzzy -msgid "User reputation changed" -msgstr "用戶社區積分" +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 "如你肯定這訊息被誤送, 不需做任何動作, 並忽略此信, 非常抱歉 \n" -#: skins/default/templates/user_moderate.html:34 -msgid "Subtract" -msgstr "" +#: skins/default/templates/authopenid/logout.html:3 +msgid "Logout" +msgstr "登出" -#: skins/default/templates/user_moderate.html:39 -#, python-format -msgid "Send message to %(username)s" +#: skins/default/templates/authopenid/logout.html:5 +msgid "You have successfully logged out" msgstr "" -#: skins/default/templates/user_moderate.html:40 +#: skins/default/templates/authopenid/logout.html:7 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." +"However, you still may be logged in to your OpenID provider. Please logout " +"of your provider if you wish to do so." msgstr "" -#: skins/default/templates/user_moderate.html:42 +#: skins/default/templates/authopenid/macros.html:53 +msgid "Please enter your user name, then sign in" +msgstr "" + +#: skins/default/templates/authopenid/macros.html:54 +#: skins/default/templates/authopenid/signin.html:90 #, fuzzy -msgid "Message sent" -msgstr "訊息" +msgid "(or select another login method above)" +msgstr "請選取上數選項" -#: skins/default/templates/user_moderate.html:60 +#: skins/default/templates/authopenid/macros.html:56 #, fuzzy -msgid "Send message" -msgstr "Copyright(c)2009.CNPROG.COM" +msgid "Sign in" +msgstr "註冊帳號" -#: skins/default/templates/user_reputation.html:7 -msgid "Your karma change log." -msgstr "karma 更動日誌" +#: skins/default/templates/authopenid/signin.html:4 +msgid "User login" +msgstr "用戶登錄" -#: skins/default/templates/user_reputation.html:9 -#, python-format -msgid "%(user_name)s's karma change log" -msgstr "%(user_name)s karma 更動日誌" +#: skins/default/templates/authopenid/signin.html:14 +#, fuzzy, python-format +msgid "" +"\n" +" Your answer to %(title)s %(summary)s will be posted once you log in\n" +" " +msgstr "一旦登入, 你針對 %(title)s %(summary)s 的答覆將會被貼" -#: skins/default/templates/user_stats.html:7 -#, python-format -msgid "%(counter)s Question" -msgid_plural "%(counter)s Questions" -msgstr[0] "%(counter)s 問題" -msgstr[1] "%(counter)s 問題" +#: skins/default/templates/authopenid/signin.html:21 +#, fuzzy, python-format +msgid "" +"Your question \n" +" %(title)s %(summary)s will be posted once you log in\n" +" " +msgstr "一旦登入, 你針對 %(title)s %(summary)s 的答覆將會被貼" -#: skins/default/templates/user_stats.html:12 -#, python-format -msgid "%(counter)s Answer" -msgid_plural "%(counter)s Answers" -msgstr[0] "%(counter)s 答案" -msgstr[1] "%(counter)s 答案" +#: skins/default/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." +msgstr "" -#: skins/default/templates/user_stats.html:20 -#, python-format -msgid "the answer has been voted for %(answer_score)s times" -msgstr "該回答總共有 %(answer_score)s 個投票" +#: skins/default/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 "" -#: skins/default/templates/user_stats.html:20 -msgid "this answer has been selected as correct" -msgstr "該回答已被認為正確" +#: skins/default/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 "" -#: skins/default/templates/user_stats.html:30 -#, fuzzy, python-format -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 評論" +#: skins/default/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 "" -#: skins/default/templates/user_stats.html:40 -#, python-format -msgid "%(cnt)s Vote" -msgid_plural "%(cnt)s Votes " -msgstr[0] "%(cnt)s 票" -msgstr[1] "%(cnt)s 票" +#: skins/default/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 "" -#: skins/default/templates/user_stats.html:46 -msgid "thumb up" -msgstr "贊同" +#: skins/default/templates/authopenid/signin.html:42 +msgid "" +"Please check your email and visit the enclosed link to re-connect to your " +"account" +msgstr "" -#: skins/default/templates/user_stats.html:47 -msgid "user has voted up this many times" -msgstr "用戶已投贊成票數次" +#: skins/default/templates/authopenid/signin.html:87 +#, fuzzy +msgid "Please enter your user name and password, then sign in" +msgstr "使用帳號密碼登錄" -#: skins/default/templates/user_stats.html:50 -msgid "thumb down" -msgstr "反對" +#: skins/default/templates/authopenid/signin.html:93 +msgid "Login failed, please try again" +msgstr "" -#: skins/default/templates/user_stats.html:51 +#: skins/default/templates/authopenid/signin.html:97 #, fuzzy -msgid "user voted down this many times" -msgstr "用戶已投反對票數次" - -#: skins/default/templates/user_stats.html:59 -#, python-format -msgid "%(counter)s Tag" -msgid_plural "%(counter)s Tags" -msgstr[0] "%(counter)s 標籤" -msgstr[1] "%(counter)s 標籤" +msgid "Login or email" +msgstr "更換電子郵件" -#: skins/default/templates/user_stats.html:67 -#, fuzzy, python-format -msgid "" -"see other questions with %(view_user)s's contributions tagged '%(tag_name)s' " -msgstr "查看貢獻者 %(view_user)s 有關 '%(tag_name)s' 標籤的問題" +#: skins/default/templates/authopenid/signin.html:101 +msgid "Password" +msgstr "密碼" -#: skins/default/templates/user_stats.html:81 -#, python-format -msgid "%(counter)s Badge" -msgid_plural "%(counter)s Badges" -msgstr[0] "%(counter)s 標記" -msgstr[1] "%(counter)s 標記" +#: skins/default/templates/authopenid/signin.html:106 +msgid "Login" +msgstr "登錄" -#: skins/default/templates/user_tabs.html:5 -msgid "User profile" -msgstr "用戶資料" +#: skins/default/templates/authopenid/signin.html:113 +msgid "To change your password - please enter the new one twice, then submit" +msgstr "" -#: skins/default/templates/user_tabs.html:6 -msgid "overview" -msgstr "概覽" +#: skins/default/templates/authopenid/signin.html:117 +#, fuzzy +msgid "New password" +msgstr "重設密碼" -#: skins/default/templates/user_tabs.html:9 views/users.py:753 -msgid "comments and answers to others questions" -msgstr "其他用戶的回覆和評論" +#: skins/default/templates/authopenid/signin.html:124 +#, fuzzy +msgid "Please, retype" +msgstr "確認密碼" -#: skins/default/templates/user_tabs.html:10 -msgid "inbox" +#: skins/default/templates/authopenid/signin.html:146 +msgid "Here are your current login methods" msgstr "" -#: skins/default/templates/user_tabs.html:13 -msgid "graph of user reputation" -msgstr "用戶的社群積分圖示" +#: skins/default/templates/authopenid/signin.html:150 +#, fuzzy +msgid "provider" +msgstr "打開" -#: skins/default/templates/user_tabs.html:14 -msgid "reputation history" -msgstr "積分歷史" +#: skins/default/templates/authopenid/signin.html:151 +#, fuzzy +msgid "last used" +msgstr "上次活動時間" -#: skins/default/templates/user_tabs.html:16 -msgid "questions that user selected as his/her favorite" -msgstr "用戶收藏的問題" +#: skins/default/templates/authopenid/signin.html:152 +msgid "delete, if you like" +msgstr "" -#: skins/default/templates/user_tabs.html:17 -msgid "favorites" -msgstr "收藏" +#: skins/default/templates/authopenid/signin.html:168 +#, fuzzy +msgid "cannot be deleted" +msgstr "取消使用者" -#: skins/default/templates/user_tabs.html:19 -msgid "recent activity" -msgstr "最近活動" +#: skins/default/templates/authopenid/signin.html:181 +#, fuzzy +msgid "Still have trouble signing in?" +msgstr "還有其他問題?" -#: skins/default/templates/user_tabs.html:20 +#: skins/default/templates/authopenid/signin.html:186 #, fuzzy -msgid "activity" -msgstr "熱門問題" +msgid "Please, enter your email address below and obtain a new key" +msgstr "請輸入密碼" -#: skins/default/templates/user_tabs.html:23 views/users.py:818 -msgid "user vote record" -msgstr "用戶投票記錄" +#: skins/default/templates/authopenid/signin.html:188 +#, fuzzy +msgid "Please, enter your email address below to recover your account" +msgstr "請輸入密碼" -#: skins/default/templates/user_tabs.html:24 -msgid "casted votes" -msgstr "決定性投票" +#: skins/default/templates/authopenid/signin.html:191 +#, fuzzy +msgid "recover your account via email" +msgstr "請設新密碼" -#: skins/default/templates/user_tabs.html:28 views/users.py:928 -msgid "email subscription settings" -msgstr "email 訂閱設定" +#: skins/default/templates/authopenid/signin.html:202 +msgid "Send a new recovery key" +msgstr "" -#: skins/default/templates/user_tabs.html:29 +#: skins/default/templates/authopenid/signin.html:204 #, fuzzy -msgid "subscriptions" -msgstr "email 訂閱" +msgid "Recover your account via email" +msgstr "請設新密碼" -#: skins/default/templates/user_tabs.html:33 views/users.py:216 -#, fuzzy -msgid "moderate this user" -msgstr "管理用戶" +#: skins/default/templates/authopenid/signin.html:216 +msgid "Why use OpenID?" +msgstr "為什麼使用 OpenID 登錄?" -#: skins/default/templates/user_tabs.html:34 -#, fuzzy -msgid "moderation" -msgstr "城市" +#: skins/default/templates/authopenid/signin.html:219 +msgid "with openid it is easier" +msgstr "使用 OpenID 更為容易" -#: skins/default/templates/users.html:4 skins/default/templates/users.html:7 -msgid "Users" -msgstr "用戶列表" +#: skins/default/templates/authopenid/signin.html:222 +msgid "reuse openid" +msgstr "用同一個 opedid 帳號" -#: skins/default/templates/users.html:19 skins/default/templates/users.html:20 -msgid "recent" -msgstr "最新加入" +#: skins/default/templates/authopenid/signin.html:225 +msgid "openid is widely adopted" +msgstr "OpenID 廣為被人利用" -#: skins/default/templates/users.html:31 skins/default/templates/users.html:32 -msgid "by username" -msgstr "用戶名" +#: skins/default/templates/authopenid/signin.html:228 +msgid "openid is supported open standard" +msgstr "OpenID 為開放標準" -#: skins/default/templates/users.html:38 -#, python-format -msgid "users matching query %(suser)s:" -msgstr "合乎 %(suser)s 查詢的所有用戶名:" +#: skins/default/templates/authopenid/signin.html:232 +msgid "Find out more" +msgstr "查看更多" -#: skins/default/templates/users.html:41 -msgid "Nothing found." -msgstr "沒有找到相關數據。" +#: skins/default/templates/authopenid/signin.html:233 +msgid "Get OpenID" +msgstr "獲取 OpenID" -#: skins/default/templates/users_questions.html:9 -#: skins/default/templates/users_questions.html:17 -#, fuzzy, python-format -msgid "this questions was selected as favorite %(cnt)s time" -msgid_plural "this questions was selected as favorite %(cnt)s times" -msgstr[0] "這個問題被選為受歡迎" -msgstr[1] "這個問題被選為受歡迎" +#: skins/default/templates/authopenid/signup_with_password.html:4 +msgid "Signup" +msgstr "註冊帳號" -#: skins/default/templates/users_questions.html:10 -msgid "thumb-up on" -msgstr "同意 贊成 " +#: skins/default/templates/authopenid/signup_with_password.html:10 +#, fuzzy +msgid "Please register by clicking on any of the icons below" +msgstr "請選取上數選項" -#: skins/default/templates/users_questions.html:18 -msgid "thumb-up off" -msgstr "反對 贊成" +#: skins/default/templates/authopenid/signup_with_password.html:23 +#, fuzzy +msgid "or create a new user name and password here" +msgstr "新增帳號密碼" -#: skins/default/templates/authopenid/changeemail.html:2 -#: skins/default/templates/authopenid/changeemail.html:8 -#: skins/default/templates/authopenid/changeemail.html:36 -msgid "Change email" -msgstr "更換電子郵件" +#: skins/default/templates/authopenid/signup_with_password.html:25 +#, fuzzy +msgid "Create login name and password" +msgstr "新增帳號密碼" -#: skins/default/templates/authopenid/changeemail.html:10 -msgid "Save your email address" -msgstr "儲存您的電子郵件地址" +#: skins/default/templates/authopenid/signup_with_password.html:26 +msgid "Traditional signup info" +msgstr "傳統登入事項" -#: skins/default/templates/authopenid/changeemail.html:15 -#, python-format -msgid "change %(email)s info" -msgstr "更換 %(email)s 電子郵件" +#: skins/default/templates/authopenid/signup_with_password.html:44 +msgid "" +"Please read and type in the two words below to help us prevent automated " +"account creation." +msgstr "請讀取並輸入下列的字, 以防止自動場產生的帳號. " -#: skins/default/templates/authopenid/changeemail.html:17 -#, python-format -msgid "here is why email is required, see %(gravatar_faq_url)s" -msgstr "email 必要, 請參考 %(gravatar_faq_url)s" +#: skins/default/templates/authopenid/signup_with_password.html:47 +#, fuzzy +msgid "Create Account" +msgstr "新增帳號" -#: skins/default/templates/authopenid/changeemail.html:29 -msgid "Your new Email" -msgstr "新電子信箱" +#: skins/default/templates/authopenid/signup_with_password.html:49 +msgid "or" +msgstr "或者" -#: skins/default/templates/authopenid/changeemail.html:29 -msgid "Your Email" -msgstr "電子信箱" +#: skins/default/templates/authopenid/signup_with_password.html:50 +#, fuzzy +msgid "return to OpenID login" +msgstr "返回 OpenID 登錄" -#: skins/default/templates/authopenid/changeemail.html:36 +#: skins/default/templates/avatar/add.html:3 #, fuzzy -msgid "Save Email" -msgstr "儲存電子信箱" +msgid "add avatar" +msgstr "大頭像" -#: skins/default/templates/authopenid/changeemail.html:45 +#: skins/default/templates/avatar/add.html:5 #, fuzzy -msgid "Validate email" -msgstr "驗證電子信箱" +msgid "Change avatar" +msgstr "修改標籤" -#: skins/default/templates/authopenid/changeemail.html:48 -#, python-format -msgid "validate %(email)s info or go to %(change_email_url)s" -msgstr "驗證 %(email)s 資料或到 %(change_email_url)s" +#: skins/default/templates/avatar/add.html:6 +#: skins/default/templates/avatar/change.html:7 +#, fuzzy +msgid "Your current avatar: " +msgstr "帳號詳細: " -#: skins/default/templates/authopenid/changeemail.html:52 -msgid "Email not changed" -msgstr "電子信箱不變" +#: skins/default/templates/avatar/add.html:9 +#: skins/default/templates/avatar/change.html:11 +msgid "You haven't uploaded an avatar yet. Please upload one now." +msgstr "" -#: skins/default/templates/authopenid/changeemail.html:55 -#, python-format -msgid "old %(email)s kept, if you like go to %(change_email_url)s" -msgstr "如果你要到 %(change_email_url)s 舊 %(email)s 仍保留" +#: skins/default/templates/avatar/add.html:13 +msgid "Upload New Image" +msgstr "" -#: skins/default/templates/authopenid/changeemail.html:59 +#: skins/default/templates/avatar/change.html:4 #, fuzzy -msgid "Email changed" -msgstr "電子信箱已變" +msgid "change avatar" +msgstr "儲存修改" -#: skins/default/templates/authopenid/changeemail.html:62 -#, python-format -msgid "your current %(email)s can be used for this" -msgstr "可以用電子信箱 %(email)s " +#: skins/default/templates/avatar/change.html:17 +msgid "Choose new Default" +msgstr "" -#: skins/default/templates/authopenid/changeemail.html:66 -msgid "Email verified" -msgstr "驗證過電子信箱" +#: skins/default/templates/avatar/change.html:22 +#, fuzzy +msgid "Upload" +msgstr "個人資料" -#: skins/default/templates/authopenid/changeemail.html:69 -msgid "thanks for verifying email" -msgstr "感謝驗證電子信箱" +#: skins/default/templates/avatar/confirm_delete.html:3 +#, fuzzy +msgid "delete avatar" +msgstr "刪除回答" -#: skins/default/templates/authopenid/changeemail.html:73 -msgid "email key not sent" -msgstr "電子信箱 key 未傳送" +#: skins/default/templates/avatar/confirm_delete.html:5 +msgid "Please select the avatars that you would like to delete." +msgstr "" -#: skins/default/templates/authopenid/changeemail.html:76 +#: skins/default/templates/avatar/confirm_delete.html:7 #, python-format -msgid "email key not sent %(email)s change email here %(change_link)s" -msgstr "%(change_link)s 未傳送電子信箱 key %(email)s" +msgid "" +"You have no avatars to delete. Please upload one now." +msgstr "" -#: skins/default/templates/authopenid/complete.html:21 -#: skins/default/templates/authopenid/complete.html:24 +#: skins/default/templates/avatar/confirm_delete.html:13 #, fuzzy -msgid "Registration" -msgstr "註冊" +msgid "Delete These" +msgstr "刪除回答" -#: skins/default/templates/authopenid/complete.html:29 -#, python-format -msgid "register new %(provider)s account info, see %(gravatar_faq_url)s" -msgstr "註冊 %(provider)s 帳號, 參考 %(gravatar_faq_url)s" +#: skins/default/templates/blocks/answer_edit_tips.html:3 +msgid "answer tips" +msgstr "提問技巧" -#: skins/default/templates/authopenid/complete.html:32 -#, python-format +#: skins/default/templates/blocks/answer_edit_tips.html:6 +msgid "please make your answer relevant to this community" +msgstr "請回應相關答案" + +#: skins/default/templates/blocks/answer_edit_tips.html:9 +msgid "try to give an answer, rather than engage into a discussion" +msgstr "盡量答覆問題,而非討論。" + +#: skins/default/templates/blocks/answer_edit_tips.html:12 +msgid "please try to provide details" +msgstr "請詳細描述細節" + +#: skins/default/templates/blocks/answer_edit_tips.html:15 +#: skins/default/templates/blocks/question_edit_tips.html:11 +msgid "be clear and concise" +msgstr "簡單扼要" + +#: skins/default/templates/blocks/answer_edit_tips.html:19 +#: skins/default/templates/blocks/question_edit_tips.html:15 +msgid "see frequently asked questions" +msgstr "查看常見問題" + +#: skins/default/templates/blocks/answer_edit_tips.html:25 +#: skins/default/templates/blocks/question_edit_tips.html:20 +msgid "Markdown tips" +msgstr "Markdown 快速參考" + +#: skins/default/templates/blocks/answer_edit_tips.html:29 +#: skins/default/templates/blocks/question_edit_tips.html:24 +msgid "*italic*" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:32 +#: skins/default/templates/blocks/question_edit_tips.html:27 +msgid "**bold**" +msgstr "" + +#: skins/default/templates/blocks/answer_edit_tips.html:36 +#: skins/default/templates/blocks/question_edit_tips.html:31 +#, fuzzy +msgid "*italic* or _italic_" +msgstr "*斜體* 或者 _斜體_" + +#: skins/default/templates/blocks/answer_edit_tips.html:39 +#: skins/default/templates/blocks/question_edit_tips.html:34 +msgid "**bold** or __bold__" +msgstr "**加粗** 或者 __加粗__ " + +#: skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/question_edit_tips.html:38 +msgid "link" +msgstr "聯結" + +#: skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:38 +#: skins/default/templates/blocks/question_edit_tips.html:43 +msgid "text" +msgstr "文字" + +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:43 +msgid "image" +msgstr "圖片" + +#: skins/default/templates/blocks/answer_edit_tips.html:51 +#: skins/default/templates/blocks/question_edit_tips.html:47 +msgid "numbered list:" +msgstr "有序列表:" + +#: skins/default/templates/blocks/answer_edit_tips.html:56 +#: skins/default/templates/blocks/question_edit_tips.html:52 +msgid "basic HTML tags are also supported" +msgstr "支援基本的HTML標籤" + +#: skins/default/templates/blocks/answer_edit_tips.html:60 +#: skins/default/templates/blocks/question_edit_tips.html:56 +msgid "learn more about Markdown" +msgstr "有關 Markdown 詳細說明" + +#: skins/default/templates/blocks/ask_form.html:6 +msgid "login to post question info" +msgstr "簽入張貼問題" + +#: skins/default/templates/blocks/ask_form.html:10 +#, 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" -" " +"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" -" " -#: skins/default/templates/authopenid/complete.html:36 +#: skins/default/templates/blocks/ask_form.html:34 +msgid "Login/signup to post your question" +msgstr "請 Login/signup 進去張貼" + +#: skins/default/templates/blocks/ask_form.html:36 +msgid "Ask your question" +msgstr "現在提問" + +#: skins/default/templates/blocks/bottom_scripts.html:7 #, python-format msgid "" -"register new external %(provider)s account info, see %(gravatar_faq_url)s" -msgstr "註冊外在 %(provider)s 帳號, 請參考 %(gravatar_faq_url)s" +"Please note: %(app_name)s requires javascript to work properly, please " +"enable javascript in your browser, here is how" +msgstr "" + +#: skins/default/templates/blocks/editor_data.html:5 +#, 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/blocks/editor_data.html:7 +#, 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/blocks/editor_data.html:8 +#, fuzzy, python-format +msgid "" +"please use up to %(tag_count)s tags, less than %(max_chars)s characters each" +msgstr "最多 5 個標籤,每個標籤長度小於 %(tag_count)s 個字元。" + +# footer.html +#: skins/default/templates/blocks/footer.html:4 +#: skins/default/templates/blocks/header_meta_links.html:12 +msgid "about" +msgstr "關於本站" + +#: skins/default/templates/blocks/footer.html:6 +msgid "privacy policy" +msgstr "隱私政策" -#: skins/default/templates/authopenid/complete.html:39 +#: skins/default/templates/blocks/footer.html:15 +msgid "give feedback" +msgstr "問題回饋" + +#: skins/default/templates/blocks/footer.html:41 #, python-format -msgid "register new Facebook connect account info, see %(gravatar_faq_url)s" -msgstr "註冊臉書新帳號, 請參考 %(gravatar_faq_url)s" +msgid "Content on this site is licensed under a %(license)s" +msgstr "" -# todo: review this message may be confusing user -#: skins/default/templates/authopenid/complete.html:42 -msgid "This account already exists, please use another." -msgstr "指定帳號已經存在, 請使用別的帳號。" +#: skins/default/templates/blocks/header.html:8 +msgid "back to home page" +msgstr "回到首頁" -#: skins/default/templates/authopenid/complete.html:61 -msgid "Screen name label" -msgstr "畫面標題" +#: skins/default/templates/blocks/header.html:9 +#, fuzzy, python-format +msgid "%(site)s logo" +msgstr "社區通用語" + +#: skins/default/templates/blocks/header.html:20 +msgid "questions" +msgstr "問題" + +#: skins/default/templates/blocks/header.html:30 +msgid "users" +msgstr "用戶" -#: skins/default/templates/authopenid/complete.html:68 +#: skins/default/templates/blocks/header.html:35 +msgid "badges" +msgstr "獎勵榜" + +#: skins/default/templates/blocks/header.html:40 +msgid "ask a question" +msgstr "我要提問" + +#: skins/default/templates/blocks/header_meta_links.html:8 +msgid "logout" +msgstr "登出" + +#: skins/default/templates/blocks/header_meta_links.html:10 +msgid "login" +msgstr "登錄" + +# book.html line 123 must be empty in english +#: skins/default/templates/blocks/header_meta_links.html:15 #, fuzzy -msgid "Email address label" -msgstr "您的電子郵件地址" +msgid "settings" +msgstr "重設標籤" -#: skins/default/templates/authopenid/complete.html:74 -#: skins/default/templates/authopenid/signup_with_password.html:17 -msgid "receive updates motivational blurb" -msgstr "接收到更新的簡介" +#: skins/default/templates/blocks/input_bar.html:34 +msgid "search" +msgstr "搜索" -#: skins/default/templates/authopenid/complete.html:78 -#: skins/default/templates/authopenid/signup_with_password.html:21 -msgid "please select one of the options above" -msgstr "請選取上數選項" +#: skins/default/templates/blocks/question_edit_tips.html:3 +msgid "question tips" +msgstr "提問技巧" -#: skins/default/templates/authopenid/complete.html:81 -msgid "Tag filter tool will be your right panel, once you log in." -msgstr "一旦簽入, 標籤供聚會在右欄" +#: skins/default/templates/blocks/question_edit_tips.html:5 +msgid "please ask a relevant question" +msgstr "我要提問" -#: skins/default/templates/authopenid/complete.html:82 -msgid "create account" -msgstr "新增帳號" +#: skins/default/templates/blocks/question_edit_tips.html:8 +msgid "please try provide enough details" +msgstr "請詳細描述您的問題。" -#: skins/default/templates/authopenid/confirm_email.txt:1 -msgid "Thank you for registering at our Q&A forum!" -msgstr "感謝你加入我們的 Q&A 論壇" +# book.html line 123 must be empty in english +#: skins/default/templates/blocks/tag_selector.html:4 +msgid "Interesting tags" +msgstr "有趣的標籤" -#: skins/default/templates/authopenid/confirm_email.txt:3 -msgid "Your account details are:" -msgstr "帳號詳細: " +#: skins/default/templates/blocks/tag_selector.html:18 +#: skins/default/templates/blocks/tag_selector.html:34 +#: skins/default/templates/user_profile/user_moderate.html:40 +msgid "Add" +msgstr "增加" -#: skins/default/templates/authopenid/confirm_email.txt:5 +#: skins/default/templates/blocks/tag_selector.html:20 +msgid "Ignored tags" +msgstr "忽視標籤" + +#: skins/default/templates/blocks/tag_selector.html:36 #, fuzzy -msgid "Username:" -msgstr "您的大名" +msgid "Display tag filter" +msgstr "選擇 Email 標籤篩選" -#: skins/default/templates/authopenid/confirm_email.txt:6 -msgid "Password:" -msgstr "密碼: " +#: skins/default/templates/main_page/content.html:13 +msgid "Did not find what you were looking for?" +msgstr "找不到結果? " -#: skins/default/templates/authopenid/confirm_email.txt:8 -msgid "Please sign in here:" -msgstr "請由此進入: " +#: skins/default/templates/main_page/content.html:14 +msgid "Please, post your question!" +msgstr "現在提問" -#: skins/default/templates/authopenid/confirm_email.txt:11 -#: skins/default/templates/authopenid/email_validation.txt:13 -msgid "" -"Sincerely,\n" -"Forum Administrator" +#: skins/default/templates/main_page/headline.html:7 +msgid "subscribe to the questions feed" +msgstr "訂閱最新問題" + +#: skins/default/templates/main_page/headline.html:8 +msgid "rss feed" msgstr "" -"你好, \n" -" 論壇管理者" -#: skins/default/templates/authopenid/email_validation.txt:1 -msgid "Greetings from the Q&A forum" -msgstr "歡迎" +#: skins/default/templates/main_page/headline.html:12 views/readers.py:131 +#, fuzzy, python-format +msgid "%(q_num)s question, tagged" +msgid_plural "%(q_num)s questions, tagged" +msgstr[0] "第 %(q_num)s 個問題" -#: skins/default/templates/authopenid/email_validation.txt:3 -msgid "To make use of the Forum, please follow the link below:" -msgstr "請依下列指引使用論壇: " +#: skins/default/templates/main_page/headline.html:14 views/readers.py:139 +#, fuzzy, python-format +msgid "%(q_num)s question" +msgid_plural "%(q_num)s questions" +msgstr[0] "第 %(q_num)s 個問題" -#: skins/default/templates/authopenid/email_validation.txt:7 -msgid "Following the link above will help us verify your email address." -msgstr "請依上列指引認證電子郵件地址" +#: skins/default/templates/main_page/headline.html:17 +#, python-format +msgid "with %(author_name)s's contributions" +msgstr "%(author_name)s 的貢獻" -#: skins/default/templates/authopenid/email_validation.txt:9 +#: skins/default/templates/main_page/headline.html:28 +msgid "Search tips:" +msgstr "搜尋技巧: " + +#: skins/default/templates/main_page/headline.html:31 +msgid "reset author" +msgstr "重設作者" + +#: skins/default/templates/main_page/headline.html:33 +#: skins/default/templates/main_page/headline.html:36 +#: skins/default/templates/main_page/nothing_found.html:18 +#: skins/default/templates/main_page/nothing_found.html:21 #, 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" -"for any inconvenience" -msgstr "如你肯定這訊息被誤送, 不需做任何動作, 並忽略此信, 非常抱歉 \n" +msgid " or " +msgstr "或者" -#: skins/default/templates/authopenid/signin.html:3 -msgid "User login" -msgstr "用戶登錄" +#: skins/default/templates/main_page/headline.html:34 +msgid "reset tags" +msgstr "重設標籤" -#: skins/default/templates/authopenid/signin.html:11 -#, fuzzy, python-format -msgid "" -"\n" -" Your answer to %(title)s %(summary)s will be posted once you log in\n" -" " -msgstr "一旦登入, 你針對 %(title)s %(summary)s 的答覆將會被貼" +#: skins/default/templates/main_page/headline.html:37 +#: skins/default/templates/main_page/headline.html:40 +msgid "start over" +msgstr "重新開始" + +#: skins/default/templates/main_page/headline.html:42 +msgid " - to expand, or dig in by adding more tags and revising the query." +msgstr " - 使用更多的標籤更改查詢找資料" + +#: skins/default/templates/main_page/headline.html:45 +msgid "Search tip:" +msgstr "查詢技巧: " -#: skins/default/templates/authopenid/signin.html:18 +#: skins/default/templates/main_page/headline.html:45 +msgid "add tags and a query to focus your search" +msgstr "增加標籤和查詢加強搜尋" + +#: skins/default/templates/main_page/nothing_found.html:4 +msgid "There are no unanswered questions here" +msgstr "無未解答問題" + +#: skins/default/templates/main_page/nothing_found.html:7 +#, fuzzy +msgid "No questions here. " +msgstr "無被收藏問題" + +#: skins/default/templates/main_page/nothing_found.html:8 +#, fuzzy +msgid "Please star (bookmark) some questions or follow some users." +msgstr "一旦開始觀看請記錄問題" + +#: skins/default/templates/main_page/nothing_found.html:13 +msgid "You can expand your search by " +msgstr "廣泛搜尋可由" + +#: skins/default/templates/main_page/nothing_found.html:16 +msgid "resetting author" +msgstr "重設作者" + +# book.html line 123 must be empty in english +#: skins/default/templates/main_page/nothing_found.html:19 +msgid "resetting tags" +msgstr "重設標籤" + +#: skins/default/templates/main_page/nothing_found.html:22 +#: skins/default/templates/main_page/nothing_found.html:25 +msgid "starting over" +msgstr "重新開始" + +#: skins/default/templates/main_page/nothing_found.html:30 +#, fuzzy +msgid "Please always feel free to ask your question!" +msgstr "歡迎提問! " + +#: skins/default/templates/main_page/sidebar.html:8 +msgid "Contributors" +msgstr "貢獻者" + +#: skins/default/templates/main_page/sidebar.html:25 +msgid "Related tags" +msgstr "相關標籤" + +#: skins/default/templates/main_page/tab_bar.html:5 +msgid "In:" +msgstr "In:" + +#: skins/default/templates/main_page/tab_bar.html:14 +#, fuzzy +msgid "see unanswered questions" +msgstr "沒有回答的問題" + +#: skins/default/templates/main_page/tab_bar.html:20 +#, fuzzy +msgid "see your followed questions" +msgstr "用戶收藏的問題" + +#: skins/default/templates/main_page/tab_bar.html:21 +msgid "followed" +msgstr "" + +#: skins/default/templates/main_page/tab_bar.html:25 +msgid "Sort by:" +msgstr "查詢性質: " + +#: skins/default/templates/user_profile/user.html:13 #, fuzzy, python-format -msgid "" -"Your question \n" -" %(title)s %(summary)s will be posted once you log in\n" -" " -msgstr "一旦登入, 你針對 %(title)s %(summary)s 的答覆將會被貼" +msgid "%(username)s's profile" +msgstr "用戶資料" -#: skins/default/templates/authopenid/signin.html:25 -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." +#: skins/default/templates/user_profile/user_edit.html:4 +msgid "Edit user profile" +msgstr "修改個人資料" + +#: skins/default/templates/user_profile/user_edit.html:7 +msgid "edit profile" +msgstr "修改資料" + +#: skins/default/templates/user_profile/user_edit.html:17 +#: skins/default/templates/user_profile/user_info.html:15 +msgid "change picture" +msgstr "更換照片" + +#: skins/default/templates/user_profile/user_edit.html:20 +msgid "Registered user" +msgstr "註冊用戶" + +#: skins/default/templates/user_profile/user_edit.html:27 +#, fuzzy +msgid "Screen Name" +msgstr "當頁" + +#: skins/default/templates/user_profile/user_edit.html:83 +#: skins/default/templates/user_profile/user_email_subscriptions.html:21 +msgid "Update" +msgstr "更新" + +#: skins/default/templates/user_profile/user_email_subscriptions.html:4 +#: skins/default/templates/user_profile/user_tabs.html:42 +#, fuzzy +msgid "subscriptions" +msgstr "email 訂閱" + +#: skins/default/templates/user_profile/user_email_subscriptions.html:7 +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:22 +msgid "Stop sending email" +msgstr "停止送出 email" + +#: skins/default/templates/user_profile/user_favorites.html:4 +#: skins/default/templates/user_profile/user_tabs.html:27 +#, fuzzy +msgid "followed questions" +msgstr "所有問題" + +#: skins/default/templates/user_profile/user_inbox.html:18 +#: skins/default/templates/user_profile/user_tabs.html:12 +msgid "inbox" msgstr "" -#: skins/default/templates/authopenid/signin.html:28 -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." +#: skins/default/templates/user_profile/user_inbox.html:34 +#, fuzzy +msgid "Sections:" +msgstr "問題" + +#: skins/default/templates/user_profile/user_inbox.html:38 +#, python-format +msgid "forum responses (%(re_count)s)" msgstr "" -#: skins/default/templates/authopenid/signin.html:30 -msgid "" -"Please add a more permanent login method by clicking one of the icons below, " -"to avoid logging in via email each time." +#: skins/default/templates/user_profile/user_inbox.html:43 +#, python-format +msgid "flagged items (%(flag_count)s)" +msgstr "" + +#: skins/default/templates/user_profile/user_inbox.html:49 +#, fuzzy +msgid "select:" +msgstr "刪除" + +#: skins/default/templates/user_profile/user_inbox.html:51 +#, fuzzy +msgid "seen" +msgstr "查看" + +#: skins/default/templates/user_profile/user_inbox.html:52 +#, fuzzy +msgid "new" +msgstr "最新問題" + +#: skins/default/templates/user_profile/user_inbox.html:53 +#, fuzzy +msgid "none" +msgstr "第三名" + +#: skins/default/templates/user_profile/user_inbox.html:54 +#, fuzzy +msgid "mark as seen" +msgstr "上次活動時間" + +#: skins/default/templates/user_profile/user_inbox.html:55 +#, fuzzy +msgid "mark as new" +msgstr "標記最佳答案" + +#: skins/default/templates/user_profile/user_inbox.html:56 +msgid "dismiss" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:19 +msgid "remove" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:36 +msgid "update profile" +msgstr "更新我的資料" + +#: skins/default/templates/user_profile/user_info.html:40 +msgid "manage login methods" +msgstr "" + +#: skins/default/templates/user_profile/user_info.html:53 +msgid "real name" +msgstr "真名" + +#: skins/default/templates/user_profile/user_info.html:58 +msgid "member for" +msgstr "已加入" + +#: skins/default/templates/user_profile/user_info.html:63 +msgid "last seen" +msgstr "上次活動時間" + +#: skins/default/templates/user_profile/user_info.html:69 +msgid "user website" +msgstr "個人網站" + +#: skins/default/templates/user_profile/user_info.html:75 +msgid "location" +msgstr "城市" + +# user_info.html +#: skins/default/templates/user_profile/user_info.html:82 +msgid "age" +msgstr "年齡" + +#: skins/default/templates/user_profile/user_info.html:83 +msgid "age unit" +msgstr "歲" + +#: skins/default/templates/user_profile/user_info.html:90 +msgid "todays unused votes" +msgstr "今日剩餘投票數" + +#: skins/default/templates/user_profile/user_info.html:91 +msgid "votes left" +msgstr "票" + +#: skins/default/templates/user_profile/user_moderate.html:4 +#: skins/default/templates/user_profile/user_tabs.html:48 +#, fuzzy +msgid "moderation" +msgstr "城市" + +#: skins/default/templates/user_profile/user_moderate.html:8 +#, python-format +msgid "%(username)s's current status is \"%(status)s\"" +msgstr "" + +#: skins/default/templates/user_profile/user_moderate.html:11 +msgid "User status changed" msgstr "" -#: skins/default/templates/authopenid/signin.html:34 -msgid "" -"Click on one of the icons below to add a new login method or re-validate an " -"existing one." +#: skins/default/templates/user_profile/user_moderate.html:20 +msgid "Save" +msgstr "儲存" + +#: skins/default/templates/user_profile/user_moderate.html:26 +#, python-format +msgid "Your current reputation is %(reputation)s points" msgstr "" -#: skins/default/templates/authopenid/signin.html:36 -msgid "" -"You don't have a method to log in right now, please add one or more by " -"clicking any of the icons below." +#: skins/default/templates/user_profile/user_moderate.html:28 +#, python-format +msgid "User's current reputation is %(reputation)s points" msgstr "" -#: skins/default/templates/authopenid/signin.html:39 -msgid "" -"Please check your email and visit the enclosed link to re-connect to your " -"account" +#: skins/default/templates/user_profile/user_moderate.html:32 +#, fuzzy +msgid "User reputation changed" +msgstr "用戶社區積分" + +#: skins/default/templates/user_profile/user_moderate.html:39 +msgid "Subtract" msgstr "" -#: skins/default/templates/authopenid/signin.html:86 -msgid "Please enter your user name, then sign in" +#: skins/default/templates/user_profile/user_moderate.html:44 +#, python-format +msgid "Send message to %(username)s" msgstr "" -#: skins/default/templates/authopenid/signin.html:87 -#: skins/default/templates/authopenid/signin.html:109 -#, fuzzy -msgid "(or select another login method above)" -msgstr "請選取上數選項" +#: skins/default/templates/user_profile/user_moderate.html:45 +msgid "" +"An email will be sent to the user with 'reply-to' field set to your email " +"address. Please make sure that your address is entered correctly." +msgstr "" -#: skins/default/templates/authopenid/signin.html:89 +#: skins/default/templates/user_profile/user_moderate.html:47 #, fuzzy -msgid "Sign in" -msgstr "註冊帳號" +msgid "Message sent" +msgstr "訊息" -#: skins/default/templates/authopenid/signin.html:107 +#: skins/default/templates/user_profile/user_moderate.html:65 #, fuzzy -msgid "Please enter your user name and password, then sign in" -msgstr "使用帳號密碼登錄" +msgid "Send message" +msgstr "Copyright(c)2009.CNPROG.COM" -#: skins/default/templates/authopenid/signin.html:111 -msgid "Login failed, please try again" +#: skins/default/templates/user_profile/user_moderate.html:75 +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 "" -#: skins/default/templates/authopenid/signin.html:114 -msgid "Login name" -msgstr "用戶名" - -#: skins/default/templates/authopenid/signin.html:118 -msgid "Password" -msgstr "密碼" - -#: skins/default/templates/authopenid/signin.html:122 -msgid "Login" -msgstr "登錄" +#: skins/default/templates/user_profile/user_moderate.html:78 +msgid "" +"Moderators have the same privileges as administrators, but cannot add or " +"remove user status of 'moderator' or 'administrator'." +msgstr "" -#: skins/default/templates/authopenid/signin.html:129 -msgid "To change your password - please enter the new one twice, then submit" +#: skins/default/templates/user_profile/user_moderate.html:81 +msgid "'Approved' status means the same as regular user." msgstr "" -#: skins/default/templates/authopenid/signin.html:132 +#: skins/default/templates/user_profile/user_moderate.html:84 #, fuzzy -msgid "New password" -msgstr "重設密碼" +msgid "Suspended users can only edit or delete their own posts." +msgstr "被停用使用者不能張貼" -#: skins/default/templates/authopenid/signin.html:137 -#, fuzzy -msgid "Please, retype" -msgstr "確認密碼" +#: skins/default/templates/user_profile/user_moderate.html:87 +msgid "" +"Blocked users can only login and send feedback to the site administrators." +msgstr "" -#: skins/default/templates/authopenid/signin.html:156 -msgid "Here are your current login methods" +#: skins/default/templates/user_profile/user_network.html:5 +#: skins/default/templates/user_profile/user_tabs.html:18 +msgid "network" msgstr "" -#: skins/default/templates/authopenid/signin.html:160 -#, fuzzy -msgid "provider" -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] "" -#: skins/default/templates/authopenid/signin.html:161 -#, fuzzy -msgid "last used" -msgstr "上次活動時間" +#: skins/default/templates/user_profile/user_network.html:14 +#, python-format +msgid "Following %(count)s person" +msgid_plural "Following %(count)s people" +msgstr[0] "" -#: skins/default/templates/authopenid/signin.html:162 -msgid "delete, if you like" +#: skins/default/templates/user_profile/user_network.html:19 +msgid "" +"Your network is empty. Would you like to follow someone? - Just visit their " +"profiles and click \"follow\"" msgstr "" -#: skins/default/templates/authopenid/signin.html:187 -#, fuzzy -msgid "Still have trouble signing in?" -msgstr "還有其他問題?" - -#: skins/default/templates/authopenid/signin.html:192 -#, fuzzy -msgid "Please, enter your email address below and obtain a new key" -msgstr "請輸入密碼" +#: skins/default/templates/user_profile/user_network.html:21 +#, fuzzy, python-format +msgid "%(username)s's network is empty" +msgstr "用戶資料" -#: skins/default/templates/authopenid/signin.html:194 +#: skins/default/templates/user_profile/user_recent.html:4 +#: skins/default/templates/user_profile/user_tabs.html:31 #, fuzzy -msgid "Please, enter your email address below to recover your account" -msgstr "請輸入密碼" +msgid "activity" +msgstr "熱門問題" -#: skins/default/templates/authopenid/signin.html:197 -#, fuzzy -msgid "recover your account via email" -msgstr "請設新密碼" +#: skins/default/templates/user_profile/user_recent.html:21 +#: skins/default/templates/user_profile/user_recent.html:28 +msgid "source" +msgstr "" -#: skins/default/templates/authopenid/signin.html:208 -msgid "Send a new recovery key" +#: skins/default/templates/user_profile/user_reputation.html:4 +msgid "karma" msgstr "" -#: skins/default/templates/authopenid/signin.html:210 -#, fuzzy -msgid "Recover your account via email" -msgstr "請設新密碼" +#: skins/default/templates/user_profile/user_reputation.html:11 +msgid "Your karma change log." +msgstr "karma 更動日誌" -#: skins/default/templates/authopenid/signin.html:221 -msgid "Why use OpenID?" -msgstr "為什麼使用 OpenID 登錄?" +#: skins/default/templates/user_profile/user_reputation.html:13 +#, python-format +msgid "%(user_name)s's karma change log" +msgstr "%(user_name)s karma 更動日誌" -#: skins/default/templates/authopenid/signin.html:224 -msgid "with openid it is easier" -msgstr "使用 OpenID 更為容易" +#: skins/default/templates/user_profile/user_stats.html:5 +#: skins/default/templates/user_profile/user_tabs.html:7 +msgid "overview" +msgstr "概覽" -#: skins/default/templates/authopenid/signin.html:227 -msgid "reuse openid" -msgstr "用同一個 opedid 帳號" +#: skins/default/templates/user_profile/user_stats.html:11 +#, python-format +msgid "%(counter)s Question" +msgid_plural "%(counter)s Questions" +msgstr[0] "%(counter)s 問題" -#: skins/default/templates/authopenid/signin.html:230 -msgid "openid is widely adopted" -msgstr "OpenID 廣為被人利用" +#: skins/default/templates/user_profile/user_stats.html:16 +#, python-format +msgid "%(counter)s Answer" +msgid_plural "%(counter)s Answers" +msgstr[0] "%(counter)s 答案" -#: skins/default/templates/authopenid/signin.html:233 -msgid "openid is supported open standard" -msgstr "OpenID 為開放標準" +#: 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/authopenid/signin.html:237 -msgid "Find out more" -msgstr "查看更多" +#: skins/default/templates/user_profile/user_stats.html:24 +msgid "this answer has been selected as correct" +msgstr "該回答已被認為正確" -#: skins/default/templates/authopenid/signin.html:238 -msgid "Get OpenID" -msgstr "獲取 OpenID" +#: skins/default/templates/user_profile/user_stats.html:34 +#, fuzzy, python-format +msgid "(%(comment_count)s comment)" +msgid_plural "the answer has been commented %(comment_count)s times" +msgstr[0] "(%(comment_count)s 評論)" -#: skins/default/templates/authopenid/signup_with_password.html:3 -msgid "Signup" -msgstr "註冊帳號" +#: skins/default/templates/user_profile/user_stats.html:44 +#, python-format +msgid "%(cnt)s Vote" +msgid_plural "%(cnt)s Votes " +msgstr[0] "%(cnt)s 票" -#: skins/default/templates/authopenid/signup_with_password.html:6 -#, fuzzy -msgid "Create login name and password" -msgstr "新增帳號密碼" +#: skins/default/templates/user_profile/user_stats.html:50 +msgid "thumb up" +msgstr "贊同" -#: skins/default/templates/authopenid/signup_with_password.html:8 -msgid "Traditional signup info" -msgstr "傳統登入事項" +#: skins/default/templates/user_profile/user_stats.html:51 +msgid "user has voted up this many times" +msgstr "用戶已投贊成票數次" -#: skins/default/templates/authopenid/signup_with_password.html:24 -msgid "" -"Please read and type in the two words below to help us prevent automated " -"account creation." -msgstr "請讀取並輸入下列的字, 以防止自動場產生的帳號. " +#: skins/default/templates/user_profile/user_stats.html:54 +msgid "thumb down" +msgstr "反對" -#: skins/default/templates/authopenid/signup_with_password.html:26 +#: skins/default/templates/user_profile/user_stats.html:55 #, fuzzy -msgid "Create Account" -msgstr "新增帳號" +msgid "user voted down this many times" +msgstr "用戶已投反對票數次" -#: skins/default/templates/authopenid/signup_with_password.html:27 -msgid "or" -msgstr "或者" +#: skins/default/templates/user_profile/user_stats.html:63 +#, python-format +msgid "%(counter)s Tag" +msgid_plural "%(counter)s Tags" +msgstr[0] "%(counter)s 標籤" -#: skins/default/templates/authopenid/signup_with_password.html:28 -#, fuzzy -msgid "return to OpenID login" -msgstr "返回 OpenID 登錄" +#: skins/default/templates/user_profile/user_stats.html:99 +#, python-format +msgid "%(counter)s Badge" +msgid_plural "%(counter)s Badges" +msgstr[0] "%(counter)s 標記" -#: skins/default/templates/unused/email_base.html:8 +#: skins/default/templates/user_profile/user_stats.html:122 #, fuzzy -msgid "home" -msgstr "首頁" +msgid "Answer to:" +msgstr "提問技巧" -#: skins/default/templates/unused/notarobot.html:3 -msgid "Please prove that you are a Human Being" -msgstr "人? " +#: skins/default/templates/user_profile/user_tabs.html:5 +msgid "User profile" +msgstr "用戶資料" -#: skins/default/templates/unused/notarobot.html:10 -msgid "I am a Human Being" -msgstr "是人" +#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:772 +msgid "comments and answers to others questions" +msgstr "其他用戶的回覆和評論" -#: skins/default/templates/unused/question_counter_widget.html:78 -msgid "Please decide if you like this question or not by voting" -msgstr "請依是否喜愛選擇投票" +#: skins/default/templates/user_profile/user_tabs.html:16 +msgid "followers and followed users" +msgstr "" -#: skins/default/templates/unused/question_counter_widget.html:84 -msgid "" -"\n" -" vote\n" -" " -msgid_plural "" -"\n" -" votes\n" -" " -msgstr[0] "" -"\n" -" 投票\n" -" " -msgstr[1] "" -"\n" -" 投票\n" -" " +#: skins/default/templates/user_profile/user_tabs.html:21 +msgid "graph of user reputation" +msgstr "用戶的社群積分圖示" -#: skins/default/templates/unused/question_counter_widget.html:93 -#: skins/default/templates/unused/question_list.html:23 -#: skins/default/templates/unused/questions_ajax.html:27 +#: skins/default/templates/user_profile/user_tabs.html:23 +msgid "reputation history" +msgstr "積分歷史" + +#: skins/default/templates/user_profile/user_tabs.html:25 #, fuzzy -msgid "this answer has been accepted to be correct" -msgstr "有答案已被接受為正確答案" +msgid "questions that user is following" +msgstr "用戶收藏的問題" -#: skins/default/templates/unused/question_counter_widget.html:99 -msgid "" -"\n" -" answer \n" -" " -msgid_plural "" -"\n" -" answers \n" -" " -msgstr[0] "" -"\n" -" 答案\n" -" " -msgstr[1] "" -"\n" -" 答案\n" -" " +#: skins/default/templates/user_profile/user_tabs.html:29 +msgid "recent activity" +msgstr "最近活動" -#: skins/default/templates/unused/question_counter_widget.html:111 -msgid "" -"\n" -" view\n" -" " -msgid_plural "" -"\n" -" views\n" -" " -msgstr[0] "" -"\n" -" 觀看\n" -" " -msgstr[1] "" -"\n" -" 觀看\n" -" " +#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:847 +msgid "user vote record" +msgstr "用戶投票記錄" -#: skins/default/templates/unused/question_list.html:15 -#, fuzzy -msgid "" -"\n" -" vote\n" -" " -msgid_plural "" -"\n" -" votes\n" -" " -msgstr[0] "" -"\n" -" 投票\n" -" " -msgstr[1] "" -"\n" -" 投票\n" -" " +#: skins/default/templates/user_profile/user_tabs.html:36 +msgid "casted votes" +msgstr "決定性投票" -#: skins/default/templates/unused/question_list.html:35 -#, fuzzy -msgid "" -"\n" -" answer \n" -" " -msgid_plural "" -"\n" -" answers \n" -" " -msgstr[0] "" -"\n" -" 答案\n" -" " -msgstr[1] "" -"\n" -" 答案\n" -" " +#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:960 +msgid "email subscription settings" +msgstr "email 訂閱設定" -#: skins/default/templates/unused/question_list.html:47 +#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:224 #, fuzzy -msgid "" -"\n" -" view\n" -" " -msgid_plural "" -"\n" -" views\n" -" " -msgstr[0] "" -"\n" -" 觀看\n" -" " -msgstr[1] "" -"\n" -" 觀看\n" -" " - -#: skins/default/templates/unused/question_summary_list_roll.html:13 -msgid "answers" -msgstr "回答" +msgid "moderate this user" +msgstr "管理用戶" -#: skins/default/templates/unused/question_summary_list_roll.html:14 +#: skins/default/templates/user_profile/user_votes.html:4 msgid "votes" msgstr "投票" -#: skins/default/templates/unused/question_summary_list_roll.html:15 -msgid "views" -msgstr "瀏覽" - -#: templatetags/extra_filters.py:168 templatetags/extra_filters_jinja.py:234 +#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:240 #, fuzzy msgid "no items in counter" msgstr "無" -#: templatetags/extra_tags.py:155 views/readers.py:187 -#, python-format -msgid "%(badge_count)d %(badge_level)s badge" -msgid_plural "%(badge_count)d %(badge_level)s badges" -msgstr[0] "" -msgstr[1] "" - -#: templatetags/extra_tags.py:178 templatetags/extra_tags.py:225 -#: templatetags/extra_tags.py:229 -#, fuzzy -msgid "reputation points" -msgstr "積分" - -#: templatetags/extra_tags.py:221 -#, python-format -msgid "your karma is %(reputation)s" +#: utils/decorators.py:90 views/commands.py:112 views/commands.py:132 +msgid "Oops, apologies - there was some error" msgstr "" -#: templatetags/extra_tags.py:237 -#, fuzzy -msgid "badges: " -msgstr "獎勵榜" +#: utils/decorators.py:109 +msgid "Please login to post" +msgstr "" -#: utils/decorators.py:82 views/commands.py:132 views/commands.py:149 -msgid "Oops, apologies - there was some error" +#: utils/decorators.py:205 +msgid "Spam was detected on your post, sorry for if this is a mistake" msgstr "" #: utils/forms.py:32 @@ -5259,102 +6176,125 @@ msgstr "確認密碼" msgid "sorry, entered passwords did not match, please try again" msgstr "對不起, 密碼不合, 請重新輸入" -#: utils/functions.py:63 -#, python-format -msgid "on %(date)s" -msgstr "" - -#: utils/functions.py:67 +#: utils/functions.py:74 #, fuzzy msgid "2 days ago" msgstr "二天前" -#: utils/functions.py:69 +#: utils/functions.py:76 msgid "yesterday" msgstr "昨天" -#: utils/functions.py:71 +#: utils/functions.py:79 #, python-format msgid "%(hr)d hour ago" msgid_plural "%(hr)d hours ago" msgstr[0] "" -msgstr[1] "" -#: utils/functions.py:73 +#: utils/functions.py:85 #, python-format msgid "%(min)d min ago" msgid_plural "%(min)d mins ago" msgstr[0] "" -msgstr[1] "" -#: views/commands.py:42 +#: views/avatar_views.py:99 +msgid "Successfully uploaded a new avatar." +msgstr "" + +#: views/avatar_views.py:140 +msgid "Successfully updated your avatar." +msgstr "" + +#: views/avatar_views.py:180 +msgid "Successfully deleted the requested avatars." +msgstr "" + +#: views/commands.py:39 msgid "anonymous users cannot vote" msgstr "匿名用戶不能投票" -#: views/commands.py:62 +#: views/commands.py:59 msgid "Sorry you ran out of votes for today" msgstr "" -#: views/commands.py:68 +#: views/commands.py:65 #, python-format msgid "You have %(votes_left)s votes left for today" msgstr "" -#: views/commands.py:139 +#: views/commands.py:122 #, fuzzy msgid "Sorry, but anonymous users cannot access the inbox" msgstr "匿名用戶不能投票" -#: views/commands.py:209 +#: views/commands.py:192 msgid "Sorry, something is not right here..." msgstr "" -#: views/commands.py:224 +#: views/commands.py:207 #, fuzzy msgid "Sorry, but anonymous users cannot accept answers" msgstr "匿名用戶不能投票" -#: views/commands.py:305 +#: views/commands.py:288 #, python-format msgid "subscription saved, %(email)s needs validation, see %(details_url)s" msgstr "訂閱暫存, 需用 %(email)s 認證, 參考 %(details_url)s" -#: views/commands.py:313 +#: views/commands.py:295 msgid "email update frequency has been set to daily" msgstr "電子郵件每日更新" -#: views/commands.py:371 +#: views/commands.py:400 +#, python-format +msgid "Tag subscription was canceled (undo)." +msgstr "" + +#: views/commands.py:409 +#, python-format +msgid "Please sign in to subscribe for: %(tags)s" +msgstr "" + +#: views/commands.py:542 #, fuzzy -msgid "Bad request" -msgstr "無關緊要的問題" +msgid "Please sign in to vote" +msgstr "請由此進入: " -#: views/meta.py:58 +#: views/meta.py:83 msgid "Q&A forum feedback" msgstr "Q&A 論壇回饋" -#: views/meta.py:59 +#: views/meta.py:84 msgid "Thanks for the feedback!" msgstr "謝謝回饋" -#: views/meta.py:69 +#: views/meta.py:92 msgid "We look forward to hearing your feedback! Please, give it next time :)" msgstr "期待你的回饋" -#: views/readers.py:432 +#: views/readers.py:177 +#, python-format +msgid "%(badge_count)d %(badge_level)s badge" +msgid_plural "%(badge_count)d %(badge_level)s badges" +msgstr[0] "" + +#: views/readers.py:441 #, fuzzy -msgid "Sorry, this question has been deleted and is no longer accessible" +msgid "" +"Sorry, the comment you are looking for has been deleted and is no longer " +"accessible" msgstr "這個問題被" -#: views/users.py:217 +#: views/users.py:225 #, fuzzy msgid "moderate user" msgstr "管理用戶" -#: views/users.py:401 +#: views/users.py:380 msgid "user profile" msgstr "用戶資料" -#: views/users.py:402 +#: views/users.py:381 msgid "user profile overview" msgstr "用戶概覽" @@ -5366,87 +6306,511 @@ msgstr "最近活動" msgid "profile - recent activity" msgstr "最近活動" -#: views/users.py:754 +#: views/users.py:773 msgid "profile - responses" msgstr "用戶資料 - 回應 " -#: views/users.py:819 +#: views/users.py:848 msgid "profile - votes" msgstr "用戶資料 - 投票" -#: views/users.py:857 +#: views/users.py:883 msgid "user reputation in the community" msgstr "用戶社區積分" -#: views/users.py:858 +#: views/users.py:884 msgid "profile - user reputation" msgstr "用戶資料 - 積分" -#: views/users.py:886 +#: views/users.py:911 msgid "users favorite questions" msgstr "用戶收藏的問題" -#: views/users.py:887 +#: views/users.py:912 msgid "profile - favorite questions" msgstr "用戶資料 - 收藏" -#: views/users.py:907 views/users.py:911 +#: views/users.py:932 views/users.py:936 msgid "changes saved" msgstr "儲存修改" -#: views/users.py:917 +#: views/users.py:942 msgid "email updates canceled" msgstr "取消電子郵件更新" -#: views/users.py:929 +#: views/users.py:961 #, fuzzy msgid "profile - email subscriptions" msgstr "用戶資料 - email 訂閱" -#: views/writers.py:56 +#: views/writers.py:58 #, fuzzy msgid "Sorry, anonymous users cannot upload files" msgstr "匿名用戶不能投票" # todo take these out of settings -#: views/writers.py:65 +#: views/writers.py:68 #, python-format msgid "allowed file types are '%(file_types)s'" msgstr "只允許上傳 '%(file_types)s' 類型的文件!" -#: views/writers.py:88 +#: views/writers.py:91 #, fuzzy, python-format msgid "maximum upload file size is %(file_size)sK" msgstr "只允許上傳 %s K大小的文件!" -#: views/writers.py:96 +#: views/writers.py:99 #, fuzzy msgid "Error uploading file. Please contact the site administrator. Thank you." msgstr "在文件上傳過程中產生了錯誤,請聯系管理員,謝謝^_^" -#: views/writers.py:452 +#: views/writers.py:191 +#, fuzzy +msgid "Please log in to ask questions" +msgstr "歡迎提問! " + +#: views/writers.py:492 +#, fuzzy +msgid "Please log in to answer questions" +msgstr "沒有回答的問題" + +#: views/writers.py:598 #, python-format msgid "" "Sorry, you appear to be logged out and cannot post comments. Please sign in." msgstr "" -#: views/writers.py:497 +#: views/writers.py:646 #, fuzzy msgid "Sorry, anonymous users cannot edit comments" msgstr "匿名用戶不能投票" -#: views/writers.py:505 +#: views/writers.py:654 #, python-format msgid "" "Sorry, you appear to be logged out and cannot delete comments. Please sign in." msgstr "" -#: views/writers.py:526 +#: views/writers.py:675 msgid "sorry, we seem to have some technical difficulties" msgstr "" +# index.html +#~ msgid "community wiki" +#~ msgstr "社區 Wiki" + +#~ msgid "Location" +#~ msgstr "城市" + +#, fuzzy +#~ msgid "command/" +#~ msgstr "評論" + +#, fuzzy +#~ msgid "search/" +#~ msgstr "搜索" + +# footer.html +#, fuzzy +#~ msgid "Askbot" +#~ msgstr "關於" + +#~ msgid "allow only selected tags" +#~ msgstr "只允許選定標籤" + +#~ msgid "First time here? Check out the FAQ!" +#~ msgstr "第一次? 請點閱 FAQ 最常提問問題!" + +# translation and user name validation are language-specific +#, fuzzy +#~ msgid "MyOpenid user name" +#~ msgstr "不合法用戶名" + +#~ msgid "Email verification subject line" +#~ msgstr " email 主題認證" + +#~ msgid "disciplined" +#~ msgstr "井然有序" + +#~ msgid "Deleted own post with score of 3 or higher" +#~ msgstr "刪除記分超過三分的張貼" + +#~ msgid "peer-pressure" +#~ msgstr "同儕壓力" + +#~ msgid "nice-answer" +#~ msgstr "妙答" + +#~ msgid "nice-question" +#~ msgstr "好問題" + +#~ msgid "pundit" +#~ msgstr "權威人士" + +#~ msgid "popular-question" +#~ msgstr "常見問題" + +#~ msgid "citizen-patrol" +#~ msgstr "巡視員" + +#~ msgid "cleanup" +#~ msgstr "清除" + +#~ msgid "critic" +#~ msgstr "評論" + +#, fuzzy +#~ msgid "editor" +#~ msgstr "編輯" + +#~ msgid "organizer" +#~ msgstr "組織者" + +#~ msgid "scholar" +#~ msgstr "學者" + +#~ msgid "student" +#~ msgstr "學生" + +#~ msgid "supporter" +#~ msgstr "贊成者" + +#~ msgid "teacher" +#~ msgstr "老師" + +#~ msgid "Answered first question with at least one up vote" +#~ msgstr "回答至少有一票的問題" + +#~ msgid "autobiographer" +#~ msgstr "自傳" + +#~ msgid "self-learner" +#~ msgstr "自學者" + +#~ msgid "great-answer" +#~ msgstr "妙答" + +#~ msgid "Answer voted up 100 times" +#~ msgstr "贊成票總數超過 100 的答案" + +#~ msgid "great-question" +#~ msgstr "好問題" + +#~ msgid "Question voted up 100 times" +#~ msgstr "贊成票總數超過 100 的問題" + +#~ msgid "stellar-question" +#~ msgstr "主要的問題" + +#~ msgid "Question favorited by 100 users" +#~ msgstr "喜好者超過 100 的問題" + +#~ msgid "famous-question" +#~ msgstr "著名問題" + +#~ msgid "Asked a question with 10,000 views" +#~ msgstr "提問瀏覽數 10,000 的問題" + +#~ msgid "Alpha" +#~ msgstr "初版" + +#~ msgid "alpha" +#~ msgstr "初版" + +#~ msgid "Actively participated in the private alpha" +#~ msgstr "活躍的參予先前初版" + +#~ msgid "good-answer" +#~ msgstr "好回答" + +#~ msgid "Answer voted up 25 times" +#~ msgstr "贊成票總數超過 25 的答案" + +#~ msgid "good-question" +#~ msgstr "好問題" + +#~ msgid "Question voted up 25 times" +#~ msgstr "贊成票總數超過 25 的問題" + +#~ msgid "favorite-question" +#~ msgstr "珍藏問題" + +#~ msgid "civic-duty" +#~ msgstr "社會責任" + +#~ msgid "Strunk & White" +#~ msgstr "文體指南" + +#~ msgid "strunk-and-white" +#~ msgstr "文體指南" + +#~ msgid "Generalist" +#~ msgstr "通才" + +#~ msgid "generalist" +#~ msgstr "通才" + +#~ msgid "Active in many different tags" +#~ msgstr "在不同標籤啟用" + +#~ msgid "expert" +#~ msgstr "專家" + +#~ msgid "Yearling" +#~ msgstr "Yearling" + +#~ msgid "yearling" +#~ msgstr "yearling" + +#~ msgid "Active member for a year" +#~ msgstr "一年會員" + +#~ msgid "notable-question" +#~ msgstr "顯目問題" + +#~ msgid "Asked a question with 2,500 views" +#~ msgstr "提問瀏覽數 2,500 的問題" + +#~ msgid "enlightened" +#~ msgstr "開明" + +#~ msgid "beta" +#~ msgstr "測試" + +#~ msgid "Actively participated in the private beta" +#~ msgstr "極度參予測試" + +#~ msgid "guru" +#~ msgstr "大師" + +#~ msgid "Accepted answer and voted up 40 times" +#~ msgstr "認同超過 40 次的答案" + +#~ msgid "necromancer" +#~ msgstr "法師" + +#~ msgid "taxonomist" +#~ msgstr "分類專家" + +# footer.html +#~ msgid "About" +#~ 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 "how to validate email title" +#~ msgstr "如何認證 email 標題" + +#~ msgid "" +#~ "how to validate email info with %(send_email_key_url)s " +#~ "%(gravatar_faq_url)s" +#~ msgstr "如何認證 email %(send_email_key_url)s %(gravatar_faq_url)s 資料" + +#~ msgid "." +#~ msgstr "。" + +#~ msgid "Sender is" +#~ msgstr "送出人為" + +#~ msgid "Message body:" +#~ msgstr "訊息" + +#~ msgid "" +#~ "As a registered user you can login with your OpenID, log out of the site " +#~ "or permanently remove your account." +#~ msgstr "您是已注冊用戶,可以隨時使用OpenID帳號登錄系統或者註銷登錄。" + +#~ msgid "Logout now" +#~ msgstr "點擊登出" + +#~ msgid "mark this question as favorite (click again to cancel)" +#~ msgstr "我要收藏這個問題(再次點擊取消操作)" + +#~ msgid "" +#~ "remove favorite mark from this question (click again to restore mark)" +#~ msgstr "取消收藏這個問題(再次點擊取消操作)" + +# this is how above two are supposed to be +#, fuzzy +#~ msgid "see questions tagged '%(tag_name)s'" +#~ msgstr "查看有關 '%(tag_name)s' 的問題" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " %(q_num)s question\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " %(q_num)s questions\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ " %(counter)s 答案:\n" + +#~ msgid "tagged" +#~ msgstr "標記" + +#~ msgid "remove '%(tag_name)s' from the list of interesting tags" +#~ msgstr "從有趣的標籤, 去除 '%(tag_name)s'" + +#~ msgid "remove '%(tag_name)s' from the list of ignored tags" +#~ msgstr "從忽視的標籤, 去除 '%(tag_name)s'" + +#~ msgid "keep ignored questions hidden" +#~ msgstr "繼續隱藏忽視的問題" + +#~ msgid "" +#~ "All tags matching '%(stag)s'" +#~ msgstr "" +#~ "合乎 '%(stag)s' 的標籤" + +#, fuzzy +#~ msgid "" +#~ "see other questions with %(view_user)s's contributions tagged " +#~ "'%(tag_name)s' " +#~ msgstr "查看貢獻者 %(view_user)s 有關 '%(tag_name)s' 標籤的問題" + +#~ msgid "favorites" +#~ msgstr "收藏" + +#, fuzzy +#~ msgid "this questions was selected as favorite %(cnt)s time" +#~ msgid_plural "this questions was selected as favorite %(cnt)s times" +#~ msgstr[0] "這個問題被選為受歡迎" + +#~ msgid "thumb-up on" +#~ msgstr "同意 贊成 " + +#~ msgid "thumb-up off" +#~ msgstr "反對 贊成" + +#~ msgid "Login name" +#~ msgstr "用戶名" + +#, fuzzy +#~ msgid "home" +#~ msgstr "首頁" + +#~ msgid "Please prove that you are a Human Being" +#~ msgstr "人? " + +#~ msgid "I am a Human Being" +#~ msgstr "是人" + +#~ msgid "Please decide if you like this question or not by voting" +#~ msgstr "請依是否喜愛選擇投票" + +#~ msgid "" +#~ "\n" +#~ " vote\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " votes\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ " 投票\n" +#~ " " + +#, fuzzy +#~ msgid "this answer has been accepted to be correct" +#~ msgstr "有答案已被接受為正確答案" + +#~ msgid "" +#~ "\n" +#~ " answer \n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " answers \n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ " 答案\n" +#~ " " + +#~ msgid "" +#~ "\n" +#~ " view\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " views\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ " 觀看\n" +#~ " " + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " vote\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " votes\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ " 投票\n" +#~ " " + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " answer \n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " answers \n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ " 答案\n" +#~ " " + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ " view\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " views\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ " 觀看\n" +#~ " " + +#~ msgid "views" +#~ msgstr "瀏覽" + +#, fuzzy +#~ msgid "reputation points" +#~ msgstr "積分" + +#, fuzzy +#~ msgid "badges: " +#~ msgstr "獎勵榜" + +#, fuzzy +#~ msgid "Bad request" +#~ msgstr "無關緊要的問題" + #, fuzzy #~ msgid "comments/" #~ msgstr "評論" @@ -5498,9 +6862,6 @@ msgstr "" #~ msgid "OpenID %s is now associated with your account." #~ msgstr "OpenID 和其他使用者相關" -#~ msgid "Account deleted." -#~ msgstr "取消使用者" - #~ msgid "Request for new password" #~ msgstr "重設密碼" @@ -5536,21 +6897,9 @@ msgstr "" #~ msgid "Change OpenID" #~ msgstr "更換 OpenID 地址" -#~ msgid "Delete account" -#~ msgstr "刪除帳號" - #~ msgid "toggle preview" #~ 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" - # templates/book.html 78 #~ msgid "reading channel" #~ msgstr "閱讀頻道" @@ -5610,27 +6959,11 @@ msgstr "" #~ msgid "%(rev_count)s revision" #~ msgid_plural "%(rev_count)s revisions" #~ msgstr[0] "%(rev_count)s 更新本" -#~ msgstr[1] "%(rev_count)s 更新本" #, fuzzy #~ msgid "tags help us keep Questions organized" #~ msgstr "用標籤來分類系統的信息" -#~ msgid "click to see the newest questions" -#~ msgstr "點選觀看最新問題" - -#~ msgid "click to see the oldest questions" -#~ msgstr "點選觀看最早問題" - -#~ msgid "click to see the most recently updated questions" -#~ msgstr "點選觀看最近最常被更新的問題" - -#~ msgid "click to see the least recently updated questions" -#~ msgstr "點選觀看最近最少被更新的問題" - -#~ msgid "click to see hottest questions" -#~ msgstr "點選觀看最熱門的問題" - #~ msgid "less answers" #~ msgstr "減少回答" @@ -5640,16 +6973,9 @@ msgstr "" #~ msgid "more answers" #~ msgstr "更多回答" -#~ msgid "click to see most voted questions" -#~ msgstr "點選觀看投票次數最多的問題" - #~ msgid "unpopular" #~ msgstr "不討喜" -#, fuzzy -#~ msgid "click to see least voted questions" -#~ msgstr "點選觀看投票次數最少的問題" - #, fuzzy #~ msgid "popular" #~ msgstr "受歡迎" @@ -5713,8 +7039,8 @@ msgstr "" #~ msgstr "傳統簽入信息" #~ msgid "" -#~ "how to login with password through external login website or use %" -#~ "(feedback_url)s" +#~ "how to login with password through external login website or use " +#~ "%(feedback_url)s" #~ msgstr "如何使用外在帳號或使用 %(feedback_url)s 的帳號及密碼" #~ msgid "Send new password" @@ -5842,21 +7168,14 @@ msgstr "" #~ msgid "Unanswered questions" #~ msgstr "沒有回答的問題" -#~ msgid "All questions" -#~ msgstr "所有問題" - #, fuzzy #~ msgid " %(q_num)s question found" #~ msgid_plural "%(q_num)s questions found" #~ msgstr[0] "個" -#~ msgstr[1] "個" #~ msgid "Open the previously closed question" #~ msgstr "你將打開這個已經被關閉的問題" -#~ msgid "The question was closed for the following reason " -#~ msgstr "問題曾因下述原因結束" - #~ msgid "reason - leave blank in english" #~ msgstr "原因 - 留白" @@ -5884,13 +7203,11 @@ msgstr "" #~ msgid "one revision" #~ msgid_plural "%(rev_count)s revisions" #~ msgstr[0] "版本" -#~ msgstr[1] "版本" #, fuzzy #~ msgid " One question found" #~ msgid_plural "%(q_num)s questions found" -#~ msgstr[0] "有一問題" -#~ msgstr[1] "%(q_num)s 問題" +#~ msgstr[0] "%(q_num)s 問題" # minimal length of user name may be language specific #~ msgid "username too short" @@ -6010,9 +7327,6 @@ msgstr "" #~ msgid "Size per page:" #~ msgstr "每頁顯示" -#~ msgid "Login to answer" -#~ msgstr "登錄並回答該問題" - #~ msgid "ago" #~ msgstr "前" @@ -6031,9 +7345,6 @@ msgstr "" #~ msgid "all tags - make this empty in english" #~ msgstr "所有標籤" -#~ msgid "most recently asked questions" -#~ msgstr "最新加入的問題" - # in unanswered.html and somewhere else #~ msgid "Have a total of" #~ msgstr "您正在瀏覽所有" @@ -6041,9 +7352,6 @@ msgstr "" #~ msgid "image associated with your email address" #~ msgstr "和您的郵件地址是綁定的" -#~ msgid "avatar" -#~ msgstr "大頭像" - #~ msgid "" #~ "the answer has been commented %(answered_question.comment_count)s times" #~ msgstr "該回答有 %(answered_question.comment_count)s 條評論" @@ -6063,9 +7371,6 @@ msgstr "" #~ msgstr "" #~ "您的 OpenID 帳號已經驗證通過! 請完成最後一步 - 綁定 OpenID 到您的帳號。" -#~ msgid "New account" -#~ msgstr "新帳號" - #~ msgid "User name (will be shown to others, cannot be modified)" #~ msgstr "用戶名(在社區顯示友好名稱,不可更改)" @@ -6162,10 +7467,6 @@ msgstr "" #~ "\n" #~ "您正在瀏覽所有
        %(q_num)s
        個標記為%(tagname)s

        " -#~ msgstr[1] "" -#~ "\n" -#~ "您正在瀏覽所有
        %(q_num)s
        個標記為%(tagname)s

        " #~ msgid "" #~ "\n" @@ -6179,10 +7480,6 @@ msgstr "" #~ "\n" #~ "您正在瀏覽所有
        %(q_num)s
        個標題含有" #~ "%(searchtitle)s

        " -#~ msgstr[1] "" -#~ "\n" -#~ "您正在瀏覽所有
        %(q_num)s
        個標題含有" -#~ "%(searchtitle)s

        " #~ msgid "tagged with" #~ msgstr "標記為" diff --git a/askbot/locale/zh-tw/LC_MESSAGES/djangojs.mo b/askbot/locale/zh-tw/LC_MESSAGES/djangojs.mo new file mode 100644 index 00000000..496607ae Binary files /dev/null and b/askbot/locale/zh-tw/LC_MESSAGES/djangojs.mo differ diff --git a/askbot/locale/zh-tw/LC_MESSAGES/djangojs.po b/askbot/locale/zh-tw/LC_MESSAGES/djangojs.po new file mode 100644 index 00000000..7e7b0ccb --- /dev/null +++ b/askbot/locale/zh-tw/LC_MESSAGES/djangojs.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: 0.7\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-10-08 02:50-0500\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: skins/default/media/js/post.js:532 +msgid "Follow" +msgstr "" + +#: skins/default/media/js/post.js:541 skins/default/media/js/post.js.py:550 +#, perl-format +msgid "%s follower" +msgid_plural "%s followers" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/media/js/post.js:546 +msgid "
        Following
        Unfollow
        " +msgstr "" + +#: skins/default/media/js/post.js:1613 +msgid "Please enter question title (>10 characters)" +msgstr "" + +#: skins/default/media/js/tag_selector.js:15 +msgid "Tag \"\" matches:" +msgstr "" + +#: skins/default/media/js/tag_selector.js:84 +#, perl-format +msgid "and %s more, not shown..." +msgstr "" + +#: skins/default/media/js/user.js:129 +msgid "Please signin to follow %(username)s" +msgstr "" + +#: skins/default/media/js/user.js:161 +#, perl-format +msgid "unfollow %s" +msgstr "" + +#: skins/default/media/js/user.js:164 +#, perl-format +msgid "following %s" +msgstr "" + +#: skins/default/media/js/user.js:170 +#, perl-format +msgid "follow %s" +msgstr "" diff --git a/askbot/locale/zh_CN/LC_MESSAGES/django.mo b/askbot/locale/zh_CN/LC_MESSAGES/django.mo index 3f8f5df0..59fb0403 100644 Binary files a/askbot/locale/zh_CN/LC_MESSAGES/django.mo and b/askbot/locale/zh_CN/LC_MESSAGES/django.mo differ diff --git a/askbot/locale/zh_CN/LC_MESSAGES/django.po b/askbot/locale/zh_CN/LC_MESSAGES/django.po index 3ad97071..8ef2a2f9 100644 --- a/askbot/locale/zh_CN/LC_MESSAGES/django.po +++ b/askbot/locale/zh_CN/LC_MESSAGES/django.po @@ -2,360 +2,429 @@ # Copyright (C) 2009 Gang Chen # This file is distributed under the same license as the CNPROG package. # Evgeny Fadeev , 2009. -# +# msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: 0.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-12-11 23:41-0600\n" +"POT-Creation-Date: 2011-10-08 02:33-0500\n" "PO-Revision-Date: 2010-12-15 00:54\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" "X-Translated-Using: django-rosetta 0.5.6\n" +"Plural-Forms: nplurals=1; plural=0;\n" -#: exceptions.py:9 +#: exceptions.py:13 msgid "Sorry, but anonymous visitors cannot access this function" msgstr "对不起,匿名用户不能使用此功能" -#: feed.py:22 +#: feed.py:26 feed.py:100 msgid " - " msgstr "-" -#: feed.py:22 +#: feed.py:26 +#, fuzzy +msgid "Individual question feed" +msgstr "我选择的问题" + +#: feed.py:100 msgid "latest questions" msgstr "最新问题" -#: forms.py:54 skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:40 -#: skins/default/templates/question_edit_tips.html:45 +#: forms.py:74 +#, fuzzy +msgid "select country" +msgstr "删除帐号" + +#: forms.py:83 +msgid "Country" +msgstr "" + +#: forms.py:91 +#, fuzzy +msgid "Country field is required" +msgstr "必填项" + +#: forms.py:104 skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:38 +#: skins/default/templates/blocks/question_edit_tips.html:43 msgid "title" msgstr "标题" -#: forms.py:55 +#: forms.py:105 msgid "please enter a descriptive title for your question" msgstr "请输入对问题具有描述性质的标题 - “帮忙!紧急求助!”是不建议的标题。" -#: forms.py:60 +#: forms.py:110 msgid "title must be > 10 characters" msgstr "标题的长度必须大于10" -#: forms.py:69 +#: forms.py:119 msgid "content" msgstr "内容" -#: forms.py:75 +#: forms.py:125 msgid "question content must be > 10 characters" msgstr "内容至少要10个字符" -#: forms.py:84 skins/default/templates/header.html:105 +#: forms.py:134 skins/default/templates/macros.html:660 +#: skins/default/templates/macros.html:672 +#: skins/default/templates/blocks/header.html:25 msgid "tags" msgstr "标签" -#: forms.py:86 -msgid "Tags are short keywords, with no spaces within. Up to five tags can be used." +#: forms.py:136 +msgid "" +"Tags are short keywords, with no spaces within. Up to five tags can be used." msgstr "标签为不带空格的关键字,最多只能使用5个关键字。" -#: forms.py:93 skins/default/templates/question_retag.html:78 +#: forms.py:164 skins/default/templates/question_retag.html:58 msgid "tags are required" msgstr " 标签不能为空。" -#: forms.py:102 +#: forms.py:173 #, 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:111 +#: forms.py:181 +#, python-format +msgid "At least one of the following tags is required : %(tags)s" +msgstr "" + +#: forms.py:190 #, 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:119 +#: forms.py:198 msgid "use-these-chars-in-tags" msgstr "在标签中使用这些字符" -# index.html -#: forms.py:130 -#: skins/default/templates/unused/question_summary_list_roll.html:26 -#: skins/default/templates/unused/question_summary_list_roll.html:38 -msgid "community wiki" -msgstr "社区Wiki" - -#: forms.py:131 -msgid "if you choose community wiki option, the question and answer do not generate points and name of author will not be shown" +#: forms.py:233 +msgid "community wiki (karma is not awarded & many others can edit wiki post)" +msgstr "" + +#: forms.py:234 +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:147 +#: forms.py:250 msgid "update summary:" msgstr "更新概要:" -#: forms.py:148 -msgid "enter a brief summary of your revision (e.g. fixed spelling, grammar, improved style, this field is optional)" -msgstr "输入本次修改的简单概述(如:修改了别字,修正了语法,改进了样式等。非必填项。)" +#: forms.py:251 +msgid "" +"enter a brief summary of your revision (e.g. fixed spelling, grammar, " +"improved style, this field is optional)" +msgstr "" +"输入本次修改的简单概述(如:修改了别字,修正了语法,改进了样式等。非必填" +"项。)" -#: forms.py:204 +#: forms.py:327 msgid "Enter number of points to add or subtract" msgstr "输入要添加或减去的分数" -#: forms.py:218 const/__init__.py:220 +#: forms.py:341 const/__init__.py:245 msgid "approved" msgstr "已认证" -#: forms.py:219 const/__init__.py:221 +#: forms.py:342 const/__init__.py:246 msgid "watched" msgstr "查看" -#: forms.py:220 const/__init__.py:222 +#: forms.py:343 const/__init__.py:247 msgid "suspended" msgstr "暂停使用" -#: forms.py:221 const/__init__.py:223 +#: forms.py:344 const/__init__.py:248 msgid "blocked" msgstr "冻结" -#: forms.py:223 const/__init__.py:219 +#: forms.py:346 +#, fuzzy +msgid "administrator" +msgstr "网站管理员" + +#: forms.py:347 const/__init__.py:244 msgid "moderator" msgstr "版主" -#: forms.py:243 +#: forms.py:367 msgid "Change status to" msgstr "修改状态为" -#: forms.py:270 +#: forms.py:394 msgid "which one?" msgstr "哪个?" -#: forms.py:291 +#: forms.py:415 msgid "Cannot change own status" msgstr "不能修改自己的状态" -#: forms.py:297 +#: forms.py:421 msgid "Cannot turn other user to moderator" msgstr "不能把其他用户转为版主" -#: forms.py:304 +#: forms.py:428 msgid "Cannot change status of another moderator" msgstr "不能修改其他版主的状态" -#: forms.py:310 -#, python-format -msgid "If you wish to change %(username)s's status, " +#: forms.py:434 +#, fuzzy +msgid "Cannot change status to admin" +msgstr "不能修改自己的状态" + +#: forms.py:440 +#, fuzzy, python-format +msgid "" +"If you wish to change %(username)s's status, please make a meaningful " +"selection." msgstr "如果你希望修改%(username)s状态" -#: forms.py:319 +#: forms.py:449 msgid "Subject line" msgstr "主题" -#: forms.py:326 +#: forms.py:456 msgid "Message text" msgstr "信息文本" -#: forms.py:403 +#: forms.py:542 msgid "Your name:" msgstr "用户名" -#: forms.py:404 +#: forms.py:543 msgid "Email (not shared with anyone):" msgstr "电子邮件" -#: forms.py:405 +#: forms.py:544 msgid "Your message:" msgstr "你的信息:" -#: forms.py:492 -msgid "this email does not have to be linked to gravatar" +#: forms.py:581 +#, fuzzy +msgid "ask anonymously" +msgstr "匿名" + +#: forms.py:583 +msgid "Check if you do not want to reveal your name when asking this question" +msgstr "" + +#: forms.py:743 +msgid "" +"You have asked this question anonymously, if you decide to reveal your " +"identity, please check this box." +msgstr "" + +#: forms.py:747 +msgid "reveal identity" +msgstr "" + +#: forms.py:805 +msgid "" +"Sorry, only owner of the anonymous question can reveal his or her identity, " +"please uncheck the box" +msgstr "" + +#: forms.py:818 +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:856 +#, fuzzy +msgid "this email will be linked to gravatar" msgstr "不会公开,用于头像显示服务" -#: forms.py:499 +#: forms.py:863 msgid "Real name" msgstr "真实姓名" -#: forms.py:506 +#: forms.py:870 msgid "Website" msgstr "个人网站" -#: forms.py:513 -msgid "Location" -msgstr "城市" +#: forms.py:877 +msgid "City" +msgstr "" + +#: forms.py:886 +#, fuzzy +msgid "Show country" +msgstr "新帐号" -#: forms.py:520 +#: forms.py:891 msgid "Date of birth" msgstr "生日" -#: forms.py:521 +#: forms.py:892 msgid "will not be shown, used to calculate age, format: YYYY-MM-DD" msgstr "不会公开,只会显示您的年龄,格式为:YYYY-MM-DD" -#: forms.py:527 +#: forms.py:898 msgid "Profile" msgstr "个人简介" -#: forms.py:536 +#: forms.py:907 msgid "Screen name" msgstr "昵称" -#: forms.py:561 forms.py:562 +#: forms.py:938 forms.py:939 msgid "this email has already been registered, please use another one" msgstr "该电子邮件已被注册,请选择另一个再试。" -#: forms.py:568 +#: forms.py:946 msgid "Choose email tag filter" msgstr "选择邮件标签过来" -#: forms.py:607 +#: forms.py:993 msgid "Asked by me" msgstr "我的提问" -#: forms.py:610 +#: forms.py:996 msgid "Answered by me" msgstr "我的回答" -#: forms.py:613 +#: forms.py:999 msgid "Individually selected" msgstr "个人选项" -#: forms.py:616 +#: forms.py:1002 msgid "Entire forum (tag filtered)" msgstr "整个论坛(标签过滤)" -#: forms.py:620 +#: forms.py:1006 msgid "Comments and posts mentioning me" msgstr "留言并提交我" -#: forms.py:678 +#: forms.py:1085 msgid "okay, let's try!" msgstr "试一试" -#: forms.py:679 +#: forms.py:1086 msgid "no community email please, thanks" msgstr "不需要邮件,谢谢" -#: forms.py:683 +#: forms.py:1090 msgid "please choose one of the options above" msgstr "请从以上选项中选择一项" # footer.html -#: urls.py:45 +#: urls.py:53 msgid "about/" msgstr "关于本站/" -#: urls.py:46 conf/site_settings.py:79 +#: urls.py:54 msgid "faq/" msgstr "常见问题/" -#: urls.py:47 +#: urls.py:55 msgid "privacy/" msgstr "隐私政策/" -#: urls.py:48 -msgid "logout/" -msgstr "退出登录/" - -#: urls.py:50 urls.py:55 +#: urls.py:57 urls.py:62 msgid "answers/" msgstr "回答/" -#: urls.py:50 urls.py:71 urls.py:167 +#: urls.py:57 urls.py:83 urls.py:198 msgid "edit/" msgstr "编辑/" -#: urls.py:55 urls.py:101 +#: urls.py:62 urls.py:113 msgid "revisions/" msgstr "版本/" -#: urls.py:61 urls.py:66 urls.py:71 urls.py:76 urls.py:81 urls.py:86 -#: urls.py:91 urls.py:96 urls.py:101 +#: urls.py:68 urls.py:78 urls.py:83 urls.py:88 urls.py:93 urls.py:98 +#: urls.py:103 urls.py:108 urls.py:113 urls.py:285 +#: skins/default/templates/question.html:508 msgid "questions/" msgstr "问题/" -#: urls.py:66 +#: urls.py:78 msgid "ask/" msgstr "提问/" -#: urls.py:76 +#: urls.py:88 msgid "retag/" msgstr "修改标签/" -#: urls.py:81 +#: urls.py:93 msgid "close/" msgstr "关闭/" -#: urls.py:86 +#: urls.py:98 msgid "reopen/" msgstr "打开/" -#: urls.py:91 +#: urls.py:103 msgid "answer/" msgstr "回答/" -#: urls.py:96 +#: urls.py:108 skins/default/templates/question.html:508 msgid "vote/" msgstr "票/" -#: urls.py:117 -msgid "command/" -msgstr "命令/" - -#: urls.py:133 -msgid "question/" -msgstr "提问/" - -#: urls.py:138 +#: urls.py:144 msgid "tags/" msgstr "标签/" -#: urls.py:143 urls.py:149 -msgid "mark-tag/" -msgstr "标记标签/" - -#: urls.py:143 -msgid "interesting/" -msgstr "感兴趣/" - -#: urls.py:149 -msgid "ignored/" -msgstr "忽略/" - -#: urls.py:155 -msgid "unmark-tag/" -msgstr "未标记标签/" +#: urls.py:187 +msgid "subscribe-for-tags/" +msgstr "" -#: urls.py:161 urls.py:167 urls.py:172 +#: urls.py:192 urls.py:198 urls.py:204 urls.py:212 +#: skins/default/templates/main_page/javascript.html:23 msgid "users/" msgstr "用户/" -#: urls.py:177 urls.py:182 +#: urls.py:205 +#, fuzzy +msgid "subscriptions/" +msgstr "订阅" + +#: urls.py:217 +msgid "users/update_has_custom_avatar/" +msgstr "" + +#: urls.py:222 urls.py:227 msgid "badges/" msgstr "奖牌榜/" -#: urls.py:187 +#: urls.py:232 msgid "messages/" msgstr "信息/" -#: urls.py:187 +#: urls.py:232 msgid "markread/" msgstr "标记已读/" -#: urls.py:202 +#: urls.py:248 msgid "upload/" msgstr "上传/" -#: urls.py:203 -msgid "search/" -msgstr "搜索/" - -#: urls.py:204 +#: urls.py:249 msgid "feedback/" msgstr "问题反馈/" -#: urls.py:205 setup_templates/settings.py:182 -#: skins/default/templates/authopenid/signin.html:249 +#: urls.py:291 skins/default/templates/question.html:506 +#: skins/default/templates/main_page/javascript.html:22 +msgid "question/" +msgstr "提问/" + +#: urls.py:298 setup_templates/settings.py:202 +#: skins/default/templates/authopenid/providers_javascript.html:7 msgid "account/" msgstr "账户/" @@ -448,47 +517,121 @@ msgstr "收藏问题:最少星数" msgid "Stellar Question: minimum stars" msgstr "重要问题:最少星数" -#: conf/email.py:12 +#: conf/badges.py:210 +msgid "Commentator: minimum comments" +msgstr "" + +#: conf/badges.py:219 +msgid "Taxonomist: minimum tag use count" +msgstr "" + +#: conf/badges.py:228 +msgid "Enthusiast: minimum days" +msgstr "" + +#: conf/email.py:14 msgid "Email and email alert settings" msgstr "邮件及邮件提醒设置" -#: conf/email.py:20 +#: conf/email.py:22 +msgid "Prefix for the email subject line" +msgstr "邮件主题前缀" + +#: conf/email.py:24 +msgid "" +"This setting takes default from the django settingEMAIL_SUBJECT_PREFIX. A " +"value entered here will overridethe default." +msgstr "" + +#: conf/email.py:36 msgid "Maximum number of news entries in an email alert" msgstr "邮件提醒的最大新问题数" -#: conf/email.py:30 +#: conf/email.py:46 msgid "Default news notification frequency" msgstr "默认新问题通知频率" -#: conf/email.py:32 -msgid "This option currently defines default frequency of emailed updates in the following five categories: questions asked by user, answered by user, individually selected, entire forum (per person tag filter applies) and posts mentioning the user and comment responses" -msgstr "此选项用于定义在下面的5个分类中当前默认邮件更新频率:用户问的问题,用户问的问题,个人选择,整个讨论(每个用户标签过滤的请求)和用户提醒及留言回应" +#: conf/email.py:48 +msgid "" +"This option currently defines default frequency of emailed updates in the " +"following five categories: questions asked by user, answered by user, " +"individually selected, entire forum (per person tag filter applies) and " +"posts mentioning the user and comment responses" +msgstr "" +"此选项用于定义在下面的5个分类中当前默认邮件更新频率:用户问的问题,用户问的问" +"题,个人选择,整个讨论(每个用户标签过滤的请求)和用户提醒及留言回应" + +#: conf/email.py:62 +#, fuzzy +msgid "Send periodic reminders about unanswered questions" +msgstr "没有未回答的问题" + +#: conf/email.py:64 +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) and an IMAP server with a dedicated inbox " +"must be configured " +msgstr "" + +#: conf/email.py:78 +#, fuzzy +msgid "Days before starting to send reminders about unanswered questions" +msgstr "没有未回答的问题" + +#: conf/email.py:89 +msgid "" +"How often to send unanswered question reminders (in days between the " +"reminders sent)." +msgstr "" + +#: conf/email.py:101 +msgid "Max. number of reminders to send about unanswered questions" +msgstr "" -#: conf/email.py:47 +#: conf/email.py:113 msgid "Require email verification before allowing to post" msgstr "在提交前需要邮件确认" -#: conf/email.py:48 -msgid "Active email verification is done by sending a verification key in email" +#: conf/email.py:114 +msgid "" +"Active email verification is done by sending a verification key in email" msgstr "通过发送确认邮件完成邮件激活确认" -#: conf/email.py:57 +#: conf/email.py:123 msgid "Allow only one account per email address" msgstr "每个邮件地址只允许关联一个账户" -#: conf/email.py:66 +#: conf/email.py:132 msgid "Fake email for anonymous user" msgstr "匿名用户邮件" -#: conf/email.py:67 +#: conf/email.py:133 msgid "Use this setting to control gravatar for email-less user" msgstr "使用这个设置没有邮件的用户图像" -#: conf/email.py:76 -msgid "Prefix for the email subject line" -msgstr "邮件主题前缀" +#: conf/email.py:142 +#, fuzzy +msgid "Allow posting questions by email" +msgstr "登录并提交问题" + +#: conf/email.py:144 +msgid "" +"Before enabling this setting - please fill out IMAP settings in the settings." +"py file" +msgstr "" -#: conf/external_keys.py:11 +#: conf/email.py:155 +msgid "Replace space in emailed tags with dash" +msgstr "" + +#: conf/email.py:157 +msgid "" +"This setting applies to tags written in the subject line of questions asked " +"by email" +msgstr "" + +#: conf/external_keys.py:10 msgid "Keys to connect the site with external services like Facebook, etc." msgstr "链接到其他服务网站的keys,像Fackbook等" @@ -497,87 +640,136 @@ msgid "Google site verification key" msgstr "Google网站确认key" #: conf/external_keys.py:20 -#, python-format -msgid "This key helps google index your site please obtain is at google webmasters tools site" +#, fuzzy, python-format +msgid "" +"This key helps google index your site please obtain is at google webmasters tools site" msgstr "" -"请插入google webmasters tools site\n" +"请插入google webmasters tools " +"site\n" "以帮助google索引你的网站" -#: conf/external_keys.py:34 +#: conf/external_keys.py:35 msgid "Google Analytics key" msgstr "Google Analytics key" -#: conf/external_keys.py:36 -#, python-format -msgid "Obtain is at Google Analytics site, if you wish to use Google Analytics to monitor your site" -msgstr "如果你希望使用Google Analytics监控你的网站,请在这里设置 Google Analytics" +#: conf/external_keys.py:37 +#, fuzzy, python-format +msgid "" +"Obtain is at Google Analytics site, if you wish to " +"use Google Analytics to monitor your site" +msgstr "" +"如果你希望使用Google Analytics监控你的网站,请在这里设置 Google Analytics" -#: conf/external_keys.py:49 +#: conf/external_keys.py:50 msgid "Enable recaptcha (keys below are required)" msgstr "激活recaptcha(下面的keys是必须的)" -#: conf/external_keys.py:58 +#: conf/external_keys.py:59 msgid "Recaptcha public key" msgstr "Recaptcha public key" -#: conf/external_keys.py:66 +#: conf/external_keys.py:67 msgid "Recaptcha private key" msgstr "Recaptcha private key" -#: conf/external_keys.py:68 -msgid "Recaptcha is a tool that helps distinguish real people from annoying spam robots. Please get this and a public key at the recaptcha.net" +#: conf/external_keys.py:69 +#, fuzzy, 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 %(url)s" msgstr "" "Recaptcha这个工具帮助我们辨别出垃圾邮件中的真实用户,\n" "请从这里获取public key recaptcha.net" -#: conf/external_keys.py:80 +#: conf/external_keys.py:81 msgid "Facebook public API key" msgstr "Facebook public API key" -#: conf/external_keys.py:82 -msgid "Facebook API key and Facebook secret allow to use Facebook Connect login method at your site. Please obtain these keys at facebook create app site" +#: conf/external_keys.py:83 +#, fuzzy, python-format +msgid "" +"Facebook API key and Facebook secret allow to use Facebook Connect login " +"method at your site. Please obtain these keys at facebook create app site" msgstr "" -"Facebook API key 和 Facebook secret 允许用户通过Facebook Connect方法在你网站上登录\n" +"Facebook API key 和 Facebook secret 允许用户通过Facebook Connect方法在你网站" +"上登录\n" "获取这些,通过facebook create app 网站" -#: conf/external_keys.py:95 +#: conf/external_keys.py:96 msgid "Facebook secret key" msgstr "Facebook secret key" -#: conf/external_keys.py:103 +#: conf/external_keys.py:104 msgid "Twitter consumer key" msgstr "Twitter consumer key" -#: conf/external_keys.py:105 conf/external_keys.py:126 -msgid "Please register your forum at twitter applications site" -msgstr "请在这里注册你的网站 twitter applications site" +#: conf/external_keys.py:106 +#, fuzzy, python-format +msgid "" +"Please register your forum at twitter applications site" +msgstr "" +"请在这里注册你的网站 twitter " +"applications site" -#: conf/external_keys.py:116 +#: conf/external_keys.py:117 msgid "Twitter consumer secret" msgstr "Twitter consumer secret" -#: conf/external_keys.py:124 +#: conf/external_keys.py:125 msgid "LinkedIn consumer key" msgstr "LinkedIn consumer key" -#: conf/external_keys.py:137 +#: conf/external_keys.py:127 +#, fuzzy, python-format +msgid "" +"Please register your forum at LinkedIn developer site" +msgstr "" +"请在这里注册你的网站 twitter " +"applications site" + +#: conf/external_keys.py:138 msgid "LinkedIn consumer secret" msgstr "LinkedIn consumer secret" -#: conf/external_keys.py:145 -msgid "User LDAP authentication for the password login" +#: conf/external_keys.py:146 +#, fuzzy +msgid "ident.ca consumer key" +msgstr "LinkedIn consumer key" + +#: conf/external_keys.py:148 +#, fuzzy, python-format +msgid "" +"Please register your forum at Identi.ca applications " +"site" +msgstr "" +"请在这里注册你的网站 twitter " +"applications site" + +#: conf/external_keys.py:159 +#, fuzzy +msgid "ident.ca consumer secret" +msgstr "LinkedIn consumer secret" + +#: conf/external_keys.py:167 +#, fuzzy +msgid "Use LDAP authentication for the password login" msgstr "为使用密码登录的用户进行LDAP验证" -#: conf/external_keys.py:154 +#: conf/external_keys.py:176 msgid "LDAP service provider name" msgstr "LDAP服务提供商" -#: conf/external_keys.py:162 +#: conf/external_keys.py:184 msgid "URL for the LDAP service" msgstr "LDAP服务URL" -#: conf/external_keys.py:170 +#: conf/external_keys.py:192 msgid "Explain how to change LDAP password" msgstr "如何修改LDAP密码" @@ -590,154 +782,452 @@ msgid "Text of the Q&A forum About page (html format)" msgstr "关于页面的Q&A讨论内容(html格式)" #: conf/flatpages.py:20 -msgid "Save, then use HTML validator on the \"about\" page to check your input." -msgstr "保存, 然后开启 使用HTML验证 \"关于\" 页面去检查你的输入." +msgid "" +"Save, then use HTML validator on " +"the \"about\" page to check your input." +msgstr "" +"保存, 然后开启 使用HTML验证 \"关于" +"\" 页面去检查你的输入." #: conf/flatpages.py:30 +#, fuzzy +msgid "Text of the Q&A forum FAQ page (html format)" +msgstr "关于页面的Q&A讨论内容(html格式)" + +#: conf/flatpages.py:33 +#, fuzzy +msgid "" +"Save, then use HTML validator on " +"the \"faq\" page to check your input." +msgstr "" +"保存, 然后开启 使用HTML验证 \"关于" +"\" 页面去检查你的输入." + +#: conf/flatpages.py:44 msgid "Text of the Q&A forum Privacy Policy (html format)" msgstr "Q&A讨论的隐私政策(html格式)" -#: conf/flatpages.py:33 -msgid "Save, then use HTML validator on the \"privacy\" page to check your input." -msgstr "保存, 然后开启 使用HTML验证\"隐私\" 页面去检查你的输入." +#: conf/flatpages.py:47 +msgid "" +"Save, then use HTML validator on " +"the \"privacy\" page to check your input." +msgstr "" +"保存, 然后开启 使用HTML验证\"隐私\" " +"页面去检查你的输入." -#: conf/forum_data_rules.py:12 -msgid "Settings for askbot data entry and display" +#: conf/forum_data_rules.py:11 +#, fuzzy +msgid "Data entry and display" msgstr "设置数据显示方式" #: conf/forum_data_rules.py:20 +#, python-format +msgid "" +"Enable embedding videos. Note: please read read this first." +msgstr "" + +#: conf/forum_data_rules.py:31 msgid "Check to enable community wiki feature" msgstr "开启社区wiki功能" -#: conf/forum_data_rules.py:29 +#: conf/forum_data_rules.py:40 +msgid "Allow asking questions anonymously" +msgstr "" + +#: conf/forum_data_rules.py:42 +msgid "" +"Users do not accrue reputation for anonymous questions and their identity is " +"not revealed until they change their mind" +msgstr "" + +#: conf/forum_data_rules.py:54 +msgid "Allow posting before logging in" +msgstr "" + +#: conf/forum_data_rules.py:56 +msgid "" +"Check if you want to allow users start posting questions or answers before " +"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 "" + +#: conf/forum_data_rules.py:71 +#, fuzzy +msgid "Allow swapping answer with question" +msgstr "回答该问题" + +#: conf/forum_data_rules.py:73 +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 "" + +#: conf/forum_data_rules.py:85 msgid "Maximum length of tag (number of characters)" msgstr "标签最大长度(字符数)" -#: conf/forum_data_rules.py:39 +#: conf/forum_data_rules.py:93 +#, fuzzy +msgid "Mandatory tags" +msgstr "更新标签" + +#: conf/forum_data_rules.py:96 +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:108 +msgid "Force lowercase the tags" +msgstr "" + +#: conf/forum_data_rules.py:110 +msgid "" +"Attention: after checking this, please back up the database, and run a " +"management command: python manage.py fix_question_tags to " +"globally rename the tags" +msgstr "" + +#: conf/forum_data_rules.py:124 +msgid "Format of tag list" +msgstr "" + +#: conf/forum_data_rules.py:126 +msgid "" +"Select the format to show tags in, either as a simple list, or as a tag cloud" +msgstr "" + +#: conf/forum_data_rules.py:138 +#, fuzzy +msgid "Use wildcard tags" +msgstr "相关标签" + +#: conf/forum_data_rules.py:140 +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:153 msgid "Default max number of comments to display under posts" msgstr "默认显示最大留言数" -#: conf/forum_data_rules.py:50 +#: conf/forum_data_rules.py:164 #, python-format msgid "Maximum comment length, must be < %(max_len)s" msgstr "最大留言长度,必须小于%(max_len)s" -#: conf/forum_data_rules.py:60 +#: conf/forum_data_rules.py:174 +msgid "Limit time to edit comments" +msgstr "" + +#: conf/forum_data_rules.py:176 +msgid "If unchecked, there will be no time limit to edit the comments" +msgstr "" + +#: conf/forum_data_rules.py:187 +msgid "Minutes allowed to edit a comment" +msgstr "" + +#: conf/forum_data_rules.py:188 +msgid "To enable this setting, check the previous one" +msgstr "" + +#: conf/forum_data_rules.py:197 +msgid "Save comment by pressing key" +msgstr "" + +#: conf/forum_data_rules.py:206 msgid "Minimum length of search term for Ajax search" msgstr "搜索最小长度" -#: conf/forum_data_rules.py:61 +#: conf/forum_data_rules.py:207 msgid "Must match the corresponding database backend setting" msgstr "必须匹配相关数据库设置" -#: conf/forum_data_rules.py:70 +#: conf/forum_data_rules.py:216 +msgid "Do not make text query sticky in search" +msgstr "" + +#: conf/forum_data_rules.py:218 +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:231 msgid "Maximum number of tags per question" msgstr "每个问题的最多标签数" -#: conf/forum_data_rules.py:82 +#: conf/forum_data_rules.py:243 msgid "Number of questions to list by default" msgstr "默认显示的问题数" -#: conf/forum_data_rules.py:92 +#: conf/forum_data_rules.py:253 msgid "What should \"unanswered question\" mean?" msgstr "\"未回答\"问题是什么?" -#: conf/markup.py:15 -msgid "Markup formatting" -msgstr "标记格式" - -#: conf/markup.py:29 -msgid "Enable code-friendly Markdown" -msgstr "激活code-friendly Markdown" +#: conf/license.py:12 +#, fuzzy +msgid "License settings" +msgstr "基本设置" -#: conf/markup.py:31 -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 \"MathJax support\" implicitly turns this feature on, because underscores are heavily used in LaTeX input." -msgstr "下划线的字符将不会有斜体或粗体格式,粗体和斜体内容仍然可以用*号标记。注意\"MathJax support\" 功能默认是打开的,因为下划线在LaTeX输入中是重度使用的。" +#: conf/license.py:19 +msgid "Show license clause in the site footer" +msgstr "" -#: conf/markup.py:46 -msgid "Mathjax support (rendering of LaTeX)" -msgstr "Mathjax支持(LaTex渲染)" +#: conf/license.py:28 +msgid "Short name for the license" +msgstr "" -#: conf/markup.py:48 -#, python-format -msgid "If you enable this feature, mathjax must be installed in directory %(dir)s" -msgstr "激活此功能, mathjax 必须安装到 %(dir)s目录" +#: conf/license.py:37 +msgid "Full name of the license" +msgstr "" -#: conf/markup.py:63 -msgid "Base url of MathJax deployment" -msgstr "部署MathJax的基本url" +#: conf/license.py:38 +msgid "Creative Commons Attribution Share Alike 3.0" +msgstr "" -#: conf/markup.py:65 -msgid "Note - MathJax is not included with askbot - you should deploy it yourself, preferably at a separate domain and enter url pointing to the \"mathjax\" directory (for example: http://mysite.com/mathjax)" +#: conf/license.py:46 +msgid "Add link to the license page" msgstr "" -#: conf/minimum_reputation.py:11 -msgid "Minimum reputation required to perform actions" -msgstr "完成这个动作需要最小积分" +#: conf/license.py:55 +#, fuzzy +msgid "License homepage" +msgstr "回到首页" -#: conf/minimum_reputation.py:20 -msgid "Upvote" -msgstr "投赞成票" +#: conf/license.py:57 +msgid "URL of the official page with all the license legal clauses" +msgstr "" -#: conf/minimum_reputation.py:29 -msgid "Downvote" -msgstr "投反对票" +#: conf/license.py:67 +#, fuzzy +msgid "Use license logo" +msgstr "%(site)s logo" -#: conf/minimum_reputation.py:38 -msgid "Flag offensive" -msgstr "垃圾帖" +#: conf/license.py:76 +msgid "License logo image" +msgstr "" -# todo - check if it's indeed plural -#: conf/minimum_reputation.py:47 -msgid "Leave comments" -msgstr "添加留言" +#: conf/login_providers.py:12 +msgid "Login provider setings" +msgstr "" -#: conf/minimum_reputation.py:56 -msgid "Delete comments posted by others" -msgstr "删除其他人的留言" +#: conf/login_providers.py:20 +msgid "" +"Show alternative login provider buttons on the password \"Sign Up\" page" +msgstr "" -#: conf/minimum_reputation.py:65 +#: conf/login_providers.py:29 +msgid "Always display local login form and hide \"Askbot\" button." +msgstr "" + +#: conf/login_providers.py:38 +msgid "Activate to allow login with self-hosted wordpress site" +msgstr "" + +#: conf/login_providers.py:39 +msgid "" +"to activate this feature you must fill out the wordpress xml-rpc setting " +"bellow" +msgstr "" + +#: conf/login_providers.py:48 +msgid "" +"Fill it with the wordpress url to the xml-rpc, normally http://mysite.com/" +"xmlrpc.php" +msgstr "" + +#: conf/login_providers.py:49 +msgid "" +"To enable, go to Settings->Writing->Remote Publishing and check the box for " +"XML-RPC" +msgstr "" + +#: conf/login_providers.py:60 +msgid "Upload your icon" +msgstr "" + +#: conf/login_providers.py:90 +#, fuzzy, python-format +msgid "Activate %(provider)s login" +msgstr "你的%(provider)s登录成功" + +#: conf/login_providers.py:95 +#, python-format +msgid "" +"Note: to really enable %(provider)s login some additional parameters will " +"need to be set in the \"External keys\" section" +msgstr "" + +#: conf/markup.py:14 +msgid "Markup formatting" +msgstr "标记格式" + +#: conf/markup.py:39 +msgid "Enable code-friendly Markdown" +msgstr "激活code-friendly Markdown" + +#: conf/markup.py:41 +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 " +"\"MathJax support\" implicitly turns this feature on, because underscores " +"are heavily used in LaTeX input." +msgstr "" +"下划线的字符将不会有斜体或粗体格式,粗体和斜体内容仍然可以用*号标记。注意" +"\"MathJax support\" 功能默认是打开的,因为下划线在LaTeX输入中是重度使用的。" + +#: conf/markup.py:56 +msgid "Mathjax support (rendering of LaTeX)" +msgstr "Mathjax支持(LaTex渲染)" + +#: conf/markup.py:58 +#, fuzzy, python-format +msgid "" +"If you enable this feature, mathjax must be " +"installed on your server in its own directory." +msgstr "激活此功能, mathjax 必须安装到 %(dir)s目录" + +#: conf/markup.py:72 +msgid "Base url of MathJax deployment" +msgstr "部署MathJax的基本url" + +#: conf/markup.py:74 +msgid "" +"Note - MathJax is not included with askbot - 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 "" + +#: conf/markup.py:89 +msgid "Enable autolinking with specific patterns" +msgstr "" + +#: conf/markup.py:91 +msgid "" +"If you enable this feature, the application will be able to detect patterns " +"and auto link to URLs" +msgstr "" + +#: conf/markup.py:104 +msgid "Regexes to detect the link patterns" +msgstr "" + +#: conf/markup.py:106 +msgid "" +"Enter valid regular expressions for the patters, one per line. For example " +"to detect a bug pattern like #bug123, use the following regex: #bug(\\d+). " +"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 "" + +#: conf/markup.py:125 +msgid "URLs for autolinking" +msgstr "" + +#: conf/markup.py:127 +msgid "" +"Here, please enter url templates for the patterns entered in the previous " +"setting, also one entry per line. Make sure that number of lines in " +"this setting and the previous one are the same 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 "" + +#: conf/minimum_reputation.py:11 +msgid "Minimum reputation required to perform actions" +msgstr "完成这个动作需要最小积分" + +#: conf/minimum_reputation.py:20 +msgid "Upvote" +msgstr "投赞成票" + +#: conf/minimum_reputation.py:29 +msgid "Downvote" +msgstr "投反对票" + +#: conf/minimum_reputation.py:38 +#, fuzzy +msgid "Answer own question immediately" +msgstr "回答你自己的问题" + +#: conf/minimum_reputation.py:47 +#, fuzzy +msgid "Accept own answer" +msgstr "编辑问题" + +#: conf/minimum_reputation.py:56 +msgid "Flag offensive" +msgstr "垃圾帖" + +# todo - check if it's indeed plural +#: conf/minimum_reputation.py:65 +msgid "Leave comments" +msgstr "添加留言" + +#: conf/minimum_reputation.py:74 +msgid "Delete comments posted by others" +msgstr "删除其他人的留言" + +#: conf/minimum_reputation.py:83 msgid "Delete questions and answers posted by others" msgstr "删除任何一个问题或答案,及其他管理功能" -#: conf/minimum_reputation.py:74 +#: conf/minimum_reputation.py:92 msgid "Upload files" msgstr "上传文件" # close.html -#: conf/minimum_reputation.py:83 +#: conf/minimum_reputation.py:101 msgid "Close own questions" msgstr "关闭自己的问题" -#: conf/minimum_reputation.py:92 +#: conf/minimum_reputation.py:110 msgid "Retag questions posted by other people" msgstr "为其他人发布的问题重新设置标签" -#: conf/minimum_reputation.py:101 +#: conf/minimum_reputation.py:119 msgid "Reopen own questions" msgstr "重设问题" -#: conf/minimum_reputation.py:110 +#: conf/minimum_reputation.py:128 msgid "Edit community wiki posts" msgstr "编辑wiki类问题" -#: conf/minimum_reputation.py:119 +#: conf/minimum_reputation.py:137 msgid "Edit posts authored by other people" msgstr "编辑其他人的发布权限" -#: conf/minimum_reputation.py:128 +#: conf/minimum_reputation.py:146 msgid "View offensive flags" msgstr "查看标记垃圾帖" # must have extra space after in english -#: conf/minimum_reputation.py:137 +#: conf/minimum_reputation.py:155 msgid "Close questions asked by others" msgstr "关闭其他人的问题" -#: conf/minimum_reputation.py:146 +#: conf/minimum_reputation.py:164 msgid "Lock posts" msgstr "锁定发布" +#: conf/minimum_reputation.py:173 +msgid "Remove rel=nofollow from own homepage" +msgstr "" + +#: conf/minimum_reputation.py:175 +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 "" + #: conf/reputation_changes.py:12 msgid "Reputation loss and gain rules" msgstr "积分规则" @@ -798,52 +1288,169 @@ msgstr "减少发布者积分当问题被5次同样的修改标记时" msgid "Loss for post owner when upvote is canceled" msgstr "减少发布者积分当推荐票取消时" -#: conf/site_settings.py:13 +#: conf/sidebar_main.py:11 +msgid "Sidebar widget settings - main page" +msgstr "" + +#: conf/sidebar_main.py:18 conf/sidebar_profile.py:18 +#: conf/sidebar_question.py:18 +msgid "Custom sidebar header" +msgstr "" + +#: conf/sidebar_main.py:21 conf/sidebar_profile.py:21 +#: conf/sidebar_question.py:21 +msgid "" +"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." +msgstr "" + +#: conf/sidebar_main.py:34 +msgid "Show avatar block in sidebar" +msgstr "" + +#: conf/sidebar_main.py:36 +msgid "Uncheck this if you want to hide the avatar block from the sidebar " +msgstr "" + +#: conf/sidebar_main.py:47 +msgid "Limit how many avatars will be displayed on the sidebar" +msgstr "" + +#: conf/sidebar_main.py:57 +msgid "Show tag selector in sidebar" +msgstr "" + +#: conf/sidebar_main.py:59 +msgid "" +"Uncheck this if you want to hide the options for choosing interesting and " +"ignored tags " +msgstr "" + +#: conf/sidebar_main.py:70 +msgid "Show tag list/cloud in sidebar" +msgstr "" + +#: conf/sidebar_main.py:72 +msgid "" +"Uncheck this if you want to hide the tag cloud or tag list from the sidebar " +msgstr "" + +#: conf/sidebar_main.py:83 conf/sidebar_profile.py:34 +#: conf/sidebar_question.py:74 +msgid "Custom sidebar footer" +msgstr "" + +#: conf/sidebar_main.py:86 conf/sidebar_profile.py:37 +#: conf/sidebar_question.py:77 +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 "" + +#: conf/sidebar_profile.py:11 +msgid "Sidebar widget settings - profile page" +msgstr "" + +#: conf/sidebar_question.py:11 +msgid "Sidebar widget settings - question page" +msgstr "" + +#: conf/sidebar_question.py:34 +msgid "Show tag list in sidebar" +msgstr "" + +#: conf/sidebar_question.py:36 +msgid "Uncheck this if you want to hide the tag list from the sidebar " +msgstr "" + +#: conf/sidebar_question.py:47 +msgid "Show meta information in sidebar" +msgstr "" + +#: conf/sidebar_question.py:49 +msgid "" +"Uncheck this if you want to hide the meta information about the question " +"(post date, views, last updated). " +msgstr "" + +#: conf/sidebar_question.py:61 +#, fuzzy +msgid "Show related questions in sidebar" +msgstr "相似的问题" + +#: conf/sidebar_question.py:63 +#, fuzzy +msgid "Uncheck this if you want to hide the list of related questions. " +msgstr "最近被更新的问题" + +#: conf/site_modes.py:63 +#, fuzzy +msgid "Site modes" +msgstr "网站" + +#: conf/site_modes.py:72 +msgid "Activate a \"Bootstrap\" mode" +msgstr "" + +#: conf/site_modes.py:74 +msgid "" +"Bootstrap mode lowers reputation and certain badge thresholds, to values, " +"more suitable for the smaller communities, WARNING: your " +"current value for Minimum reputation, Bagde Settings and Vote Rules will be " +"changed after you modify this setting." +msgstr "" + +#: conf/site_settings.py:11 msgid "Q&A forum website parameters and urls" msgstr "网站参数及urls" -#: conf/site_settings.py:21 +#: conf/site_settings.py:19 msgid "Site title for the Q&A forum" msgstr "网站标题" -#: conf/site_settings.py:30 +#: conf/site_settings.py:28 msgid "Comma separated list of Q&A site keywords" msgstr "以逗号分隔的网站关键字列表" -#: conf/site_settings.py:40 +#: conf/site_settings.py:37 msgid "Copyright message to show in the footer" msgstr "显示在页脚的版权信息" -#: conf/site_settings.py:50 +#: conf/site_settings.py:47 msgid "Site description for the search engines" msgstr "为搜索引擎添加的网站描述" -# footer.html -#: conf/site_settings.py:58 -msgid "Askbot" -msgstr "关于本站" - -#: conf/site_settings.py:59 +#: conf/site_settings.py:56 msgid "Short name for your Q&A forum" msgstr "网站缩写" -#: conf/site_settings.py:69 +#: conf/site_settings.py:66 msgid "Base URL for your Q&A forum, must start with http or https" msgstr "网站根地址,必须以http或https开头" -#: conf/site_settings.py:82 -msgid "Link shown in the greeting message shown to the anonymous user" +#: conf/site_settings.py:77 +#, fuzzy +msgid "Check to enable greeting for anonymous user" +msgstr "匿名用户邮件" + +#: conf/site_settings.py:88 +#, fuzzy +msgid "Text shown in the greeting message shown to the anonymous user" msgstr "为匿名用户显示的问候语" -#: conf/site_settings.py:85 -msgid "If you change this url from the default - then you will also probably want to adjust translation of the following string: " -msgstr "如果你想改变默认url,你可能想挑战下面内容的翻译:" +#: conf/site_settings.py:92 +msgid "Use HTML to format the message " +msgstr "" -#: conf/site_settings.py:98 +#: conf/site_settings.py:101 msgid "Feedback site URL" msgstr "问题反馈URL" -#: conf/site_settings.py:100 +#: conf/site_settings.py:103 msgid "If left empty, a simple internal feedback form will be used instead" msgstr "如果留空,一个简单的内部反馈将被发送" @@ -956,390 +1563,719 @@ msgstr "接受背景色" msgid "Foreground color for accepted answer" msgstr "接受回答前景色" -#: conf/skin_general_settings.py:15 +#: conf/skin_general_settings.py:14 msgid "Skin and User Interface settings" msgstr "主题设置" -#: conf/skin_general_settings.py:22 +#: conf/skin_general_settings.py:21 msgid "Q&A site logo" msgstr "网站logo" -#: conf/skin_general_settings.py:24 +#: conf/skin_general_settings.py:23 msgid "To change the logo, select new file, then submit this whole form." msgstr "改logo,选择一个新文件并提交" -#: conf/skin_general_settings.py:38 +#: conf/skin_general_settings.py:37 +msgid "Show logo" +msgstr "" + +#: 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 msgid "Site favicon" msgstr "网站favicon" -#: conf/skin_general_settings.py:40 +#: 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 this page." -msgstr "16x16 或 32x32像素icon图片用于区分你网站的浏览器用户接口。请查看更多favicon信息在this page." +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 this page." +msgstr "" +"16x16 或 32x32像素icon图片用于区分你网站的浏览器用户接口。请查看更多favicon信" +"息在this page." -#: conf/skin_general_settings.py:56 +#: conf/skin_general_settings.py:71 msgid "Password login button" msgstr "密码登录按钮" -#: conf/skin_general_settings.py:58 -msgid "An 88x38 pixel image that is used on the login screen for the password login button." +#: conf/skin_general_settings.py:73 +msgid "" +"An 88x38 pixel image that is used on the login screen for the password login " +"button." msgstr "88x38像素的图片被用于登录界面的密码登录按钮" -#: conf/skin_general_settings.py:73 +#: conf/skin_general_settings.py:88 msgid "Show all UI functions to all users" msgstr "显示所有UI功能给所有用户" -#: conf/skin_general_settings.py:75 -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:90 +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:105 msgid "Select skin" msgstr "选择主题" -#: conf/skin_general_settings.py:99 -msgid "Skin media revision number" -msgstr "主题修正数字" +#: conf/skin_general_settings.py:116 +msgid "Customize HTML " +msgstr "" -#: conf/skin_general_settings.py:101 -msgid "Increment this number when you change image in skin media or stylesheet. This helps avoid showing your users outdated images from their browser cache." -msgstr "当你选择时在主题或表格的数字会增长,这将帮助你避免在浏览器缓存过期的图片." +#: conf/skin_general_settings.py:125 +msgid "Custom portion of the HTML " +msgstr "" -#: conf/social_sharing.py:10 -msgid "Sharing content on social networks" -msgstr "在社会化网络上共享信息" +#: conf/skin_general_settings.py:127 +msgid "" +"To use this option, check \"Customize HTML <HEAD>\" " +"above. Contents of this box will be inserted into the <HEAD> portion " +"of the HTML output, where elements such as <script>, <link>, <" +"meta> may be added. Please, keep in mind that adding external javascript " +"to the <HEAD> 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. Note: if you do use this setting, " +"please test the site with the W3C HTML validator service." +msgstr "" -#: conf/social_sharing.py:18 -msgid "Check to enable sharing of questions on Twitter and Facebook" -msgstr "激活在Twitter和Facebook上共享问答" +#: conf/skin_general_settings.py:149 +msgid "Custom header additions" +msgstr "" -#: conf/user_settings.py:10 -msgid "User policy settings" -msgstr "用户隐私设置" +#: conf/skin_general_settings.py:151 +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 " +"headerin the HTML format. When customizing the site header (as well as " +"footer and the HTML <HEAD>), use the HTML validation service to make " +"sure that your input is valid and works well in all browsers." +msgstr "" -#: conf/user_settings.py:18 -msgid "Allow editing user screen name" -msgstr "允许修改用户昵称" +#: conf/skin_general_settings.py:166 +msgid "Site footer mode" +msgstr "" -#: conf/user_settings.py:28 -msgid "Minimum allowed length for screen name" -msgstr "用户昵称允许的最小长度" +#: conf/skin_general_settings.py:168 +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/vote_rules.py:13 -msgid "Limits applicable to votes and moderation flags" -msgstr "限制合适的投票数和标记" +#: conf/skin_general_settings.py:185 +msgid "Custom footer (HTML format)" +msgstr "" -#: conf/vote_rules.py:22 -msgid "Number of votes a user can cast per day" -msgstr "每用户每天允许的投票数" +#: conf/skin_general_settings.py:187 +msgid "" +"To enable this function, please select option 'customize' " +"in the \"Site footer mode\" above. Use this area to enter contents of the " +"footer in the HTML format. When customizing the site footer (as well as the " +"header and HTML <HEAD>), use the HTML validation service to make sure " +"that your input is valid and works well in all browsers." +msgstr "" -#: conf/vote_rules.py:31 -msgid "Maximum number of flags per user per day" -msgstr "每用户每天的最多标记" +#: conf/skin_general_settings.py:202 +msgid "Apply custom style sheet (CSS)" +msgstr "" -#: conf/vote_rules.py:40 -msgid "Threshold for warning about remaining daily votes" -msgstr "提醒用户每天投票的剩余数" +#: conf/skin_general_settings.py:204 +msgid "" +"Check if you want to change appearance of your form by adding custom style " +"sheet rules (please see the next item)" +msgstr "" -#: conf/vote_rules.py:49 -msgid "Number of days to allow canceling votes" -msgstr "每天允许取消的投票数" +#: conf/skin_general_settings.py:216 +msgid "Custom style sheet (CSS)" +msgstr "" -#: conf/vote_rules.py:58 -msgid "Number of flags required to automatically hide posts" -msgstr "要求自动隐藏标志数" +#: conf/skin_general_settings.py:218 +msgid "" +"To use this function, 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 \"<forum url>/custom.css\", where the \"<forum url> part " +"depends (default is empty string) on the url configuration in your urls.py." +msgstr "" -#: conf/vote_rules.py:67 -msgid "Number of flags required to automatically delete posts" -msgstr "要求自动删除的标志数" +#: conf/skin_general_settings.py:234 +msgid "Add custom javascript" +msgstr "" -#: const/__init__.py:9 -msgid "duplicate question" -msgstr "完全重复的问题" +#: conf/skin_general_settings.py:237 +msgid "Check to enable javascript that you can enter in the next field" +msgstr "" -# chinese translation is domain specific -#: const/__init__.py:10 -msgid "question is off-topic or not relevant" -msgstr "偏离主题的问题" +#: conf/skin_general_settings.py:247 +msgid "Custom javascript" +msgstr "" -#: const/__init__.py:11 -msgid "too subjective and argumentative" -msgstr "太主观性、引起争吵的问题" +#: conf/skin_general_settings.py:249 +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 \"<forum url>/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 (to " +"enable your custom code, check \"Add custom javascript\" option " +"above)." +msgstr "" -#: const/__init__.py:12 +#: conf/skin_general_settings.py:267 +msgid "Skin media revision number" +msgstr "主题修正数字" + +#: conf/skin_general_settings.py:269 +msgid "Will be set automatically but you can modify it if necessary." +msgstr "" + +#: conf/skin_general_settings.py:280 +msgid "Hash to update the media revision number automatically." +msgstr "" + +#: conf/skin_general_settings.py:284 +msgid "Will be set automatically, it is not necesary to modify manually." +msgstr "" + +#: conf/social_sharing.py:10 +msgid "Sharing content on social networks" +msgstr "在社会化网络上共享信息" + +#: conf/social_sharing.py:18 +#, fuzzy +msgid "Check to enable sharing of questions on Twitter" +msgstr "激活在Twitter和Facebook上共享问答" + +#: conf/social_sharing.py:27 +#, fuzzy +msgid "Check to enable sharing of questions on Facebook" +msgstr "激活在Twitter和Facebook上共享问答" + +#: conf/social_sharing.py:36 +#, fuzzy +msgid "Check to enable sharing of questions on LinkedIn" +msgstr "激活在Twitter和Facebook上共享问答" + +#: conf/social_sharing.py:45 +#, fuzzy +msgid "Check to enable sharing of questions on Identi.ca" +msgstr "激活在Twitter和Facebook上共享问答" + +#: conf/social_sharing.py:54 +#, fuzzy +msgid "Check to enable sharing of questions on Google+" +msgstr "激活在Twitter和Facebook上共享问答" + +#: conf/spam_and_moderation.py:9 +msgid "Spam control and content moderation" +msgstr "" + +#: conf/spam_and_moderation.py:16 +#, fuzzy +msgid "Enable Akismet spam detection(keys below are required)" +msgstr "激活recaptcha(下面的keys是必须的)" + +#: conf/spam_and_moderation.py:19 +#, python-format +msgid "To get an Akismet key please visit Akismet site" +msgstr "" + +#: conf/spam_and_moderation.py:29 +msgid "Akismet key for spam detection" +msgstr "" + +#: conf/user_settings.py:11 +#, fuzzy +msgid "User settings" +msgstr "用户隐私设置" + +#: conf/user_settings.py:19 +msgid "Allow editing user screen name" +msgstr "允许修改用户昵称" + +#: conf/user_settings.py:28 +#, fuzzy +msgid "Allow account recovery by email" +msgstr "发送账户恢复邮件" + +#: conf/user_settings.py:37 +#, fuzzy +msgid "Allow adding and removing login methods" +msgstr "请添加一个或多个登录方式" + +#: conf/user_settings.py:47 +msgid "Minimum allowed length for screen name" +msgstr "用户昵称允许的最小长度" + +#: conf/user_settings.py:57 +msgid "Default Gravatar icon type" +msgstr "" + +#: conf/user_settings.py:59 +msgid "" +"This option allows you to set the default avatar type for email addresses " +"without associated gravatar images. For more information, please visit this page." +msgstr "" + +#: conf/user_settings.py:69 +#, fuzzy +msgid "Name for the Anonymous user" +msgstr "匿名用户邮件" + +#: conf/vote_rules.py:13 +msgid "Limits applicable to votes and moderation flags" +msgstr "限制合适的投票数和标记" + +#: conf/vote_rules.py:22 +msgid "Number of votes a user can cast per day" +msgstr "每用户每天允许的投票数" + +#: conf/vote_rules.py:31 +msgid "Maximum number of flags per user per day" +msgstr "每用户每天的最多标记" + +#: conf/vote_rules.py:40 +msgid "Threshold for warning about remaining daily votes" +msgstr "提醒用户每天投票的剩余数" + +#: conf/vote_rules.py:49 +msgid "Number of days to allow canceling votes" +msgstr "每天允许取消的投票数" + +#: conf/vote_rules.py:58 +#, fuzzy +msgid "Number of days required before answering own question" +msgstr "每天允许取消的投票数" + +#: conf/vote_rules.py:67 +msgid "Number of flags required to automatically hide posts" +msgstr "要求自动隐藏标志数" + +#: conf/vote_rules.py:76 +msgid "Number of flags required to automatically delete posts" +msgstr "要求自动删除的标志数" + +#: const/__init__.py:10 +msgid "duplicate question" +msgstr "完全重复的问题" + +# chinese translation is domain specific +#: const/__init__.py:11 +msgid "question is off-topic or not relevant" +msgstr "偏离主题的问题" + +#: const/__init__.py:12 +msgid "too subjective and argumentative" +msgstr "太主观性、引起争吵的问题" + +#: const/__init__.py:13 msgid "not a real question" msgstr "不是一个真正的问题" -#: const/__init__.py:13 +#: const/__init__.py:14 msgid "the question is answered, right answer was accepted" msgstr "问题已经解决,已得到正确答案" -#: const/__init__.py:14 +#: const/__init__.py:15 msgid "question is not relevant or outdated" msgstr "已经过时、不可重现的问题" -#: const/__init__.py:15 +#: const/__init__.py:16 msgid "question contains offensive or malicious remarks" msgstr "恶意言论" -#: const/__init__.py:16 +#: const/__init__.py:17 msgid "spam or advertising" msgstr "垃圾广告" -#: const/__init__.py:17 +#: const/__init__.py:18 msgid "too localized" msgstr "太地域化" -#: const/__init__.py:40 +#: const/__init__.py:41 msgid "newest" msgstr "最新问题" -#: const/__init__.py:41 skins/default/templates/users.html:25 -#: skins/default/templates/users.html:26 +#: const/__init__.py:42 skins/default/templates/users.html:26 msgid "oldest" msgstr "按最早加入" -#: const/__init__.py:42 +#: const/__init__.py:43 msgid "active" msgstr "活跃" -#: const/__init__.py:43 +#: const/__init__.py:44 msgid "inactive" msgstr "不活跃" -#: const/__init__.py:44 +#: const/__init__.py:45 msgid "hottest" msgstr "热门问题" -#: const/__init__.py:45 +#: const/__init__.py:46 msgid "coldest" msgstr "最酷" # "最有价值问题" # "最新问题" -#: const/__init__.py:46 +#: const/__init__.py:47 msgid "most voted" msgstr "最有价值的问题" # "最有价值问题" # "最新问题" -#: const/__init__.py:47 +#: const/__init__.py:48 msgid "least voted" msgstr "投票最少" -#: const/__init__.py:48 +#: const/__init__.py:49 msgid "relevance" msgstr "相关" -#: const/__init__.py:55 skins/default/templates/questions.html:14 -#: skins/default/templates/user_inbox.html:47 +#: const/__init__.py:57 skins/default/templates/main_page/tab_bar.html:10 +#: skins/default/templates/user_profile/user_inbox.html:50 msgid "all" msgstr "所有" -#: const/__init__.py:56 skins/default/templates/questions.html:19 +#: const/__init__.py:58 skins/default/templates/main_page/tab_bar.html:15 msgid "unanswered" msgstr "未回答" -#: const/__init__.py:57 skins/default/templates/questions.html:25 +#: const/__init__.py:59 msgid "favorite" msgstr "收藏" -#: const/__init__.py:71 +#: const/__init__.py:64 +#, fuzzy +msgid "list" +msgstr "标签列表" + +#: const/__init__.py:65 +msgid "cloud" +msgstr "" + +#: const/__init__.py:78 msgid "Question has no answers" msgstr "未回答的问题" -#: const/__init__.py:72 +#: const/__init__.py:79 msgid "Question has no accepted answers" msgstr "仍没有正确答案的问题" -#: const/__init__.py:112 +#: const/__init__.py:121 msgid "asked a question" msgstr "我要提问" -#: const/__init__.py:113 +#: const/__init__.py:122 msgid "answered a question" msgstr "回答问题" -#: const/__init__.py:114 +#: const/__init__.py:123 msgid "commented question" msgstr "评论问题" -#: const/__init__.py:115 +#: const/__init__.py:124 msgid "commented answer" msgstr "评论回答" -#: const/__init__.py:116 +#: const/__init__.py:125 msgid "edited question" msgstr "修改问题" -#: const/__init__.py:117 +#: const/__init__.py:126 msgid "edited answer" msgstr "修改回答" -#: const/__init__.py:118 +#: const/__init__.py:127 msgid "received award" msgstr "获奖" -#: const/__init__.py:119 +#: const/__init__.py:128 msgid "marked best answer" msgstr "标记最佳答案" -#: const/__init__.py:120 +#: const/__init__.py:129 msgid "upvoted" msgstr "投赞成票" -#: const/__init__.py:121 +#: const/__init__.py:130 msgid "downvoted" msgstr "投反对票" -#: const/__init__.py:122 +#: const/__init__.py:131 msgid "canceled vote" msgstr "撤销投票" -#: const/__init__.py:123 +#: const/__init__.py:132 msgid "deleted question" msgstr "删除问题" -#: const/__init__.py:124 +#: const/__init__.py:133 msgid "deleted answer" msgstr "删除回答" -#: const/__init__.py:125 +#: const/__init__.py:134 msgid "marked offensive" msgstr "标记垃圾帖" -#: const/__init__.py:126 +#: const/__init__.py:135 msgid "updated tags" msgstr "更新标签" -#: const/__init__.py:127 +#: const/__init__.py:136 msgid "selected favorite" msgstr "收藏" -#: const/__init__.py:128 +#: const/__init__.py:137 msgid "completed user profile" msgstr "完成个人所有资料" -#: const/__init__.py:129 +#: const/__init__.py:138 msgid "email update sent to user" msgstr "发送邮件更新" -#: const/__init__.py:130 +#: const/__init__.py:141 +#, fuzzy +msgid "reminder about unanswered questions sent" +msgstr "查看没有回答的问题" + +#: const/__init__.py:143 msgid "mentioned in the post" msgstr "发布提醒" -#: const/__init__.py:181 +#: const/__init__.py:194 msgid "question_answered" msgstr "回答的问题" -#: const/__init__.py:182 +#: const/__init__.py:195 msgid "question_commented" msgstr "留言的问题" -#: const/__init__.py:183 +#: const/__init__.py:196 msgid "answer_commented" msgstr "留言的回答" -#: const/__init__.py:184 +#: const/__init__.py:197 msgid "answer_accepted" msgstr "已接受的回答" -#: const/__init__.py:188 +#: const/__init__.py:201 msgid "[closed]" msgstr "[已关闭]" -#: const/__init__.py:189 +#: const/__init__.py:202 msgid "[deleted]" msgstr "[已删除]" -#: const/__init__.py:190 views/readers.py:623 +#: const/__init__.py:203 views/readers.py:614 msgid "initial version" msgstr "初始版本" -#: const/__init__.py:191 +#: const/__init__.py:204 msgid "retagged" msgstr "更新了标签" -#: const/__init__.py:196 -msgid "exclude ignored tags" +#: const/__init__.py:212 +msgid "off" +msgstr "" + +#: const/__init__.py:213 +#, fuzzy +msgid "exclude ignored" msgstr "包含忽略标签" -#: const/__init__.py:197 -msgid "allow only selected tags" -msgstr "只有已选标签" +#: const/__init__.py:214 +#, fuzzy +msgid "only selected" +msgstr "个人选项" -#: const/__init__.py:201 +#: const/__init__.py:218 msgid "instantly" msgstr "立即" -#: const/__init__.py:202 +#: const/__init__.py:219 msgid "daily" msgstr "每日" -#: const/__init__.py:203 +#: const/__init__.py:220 msgid "weekly" msgstr "每周" -#: const/__init__.py:204 +#: const/__init__.py:221 msgid "no email" msgstr "没有邮件" -#: const/__init__.py:241 skins/default/templates/badges.html:43 +#: const/__init__.py:228 +msgid "identicon" +msgstr "" + +#: const/__init__.py:229 +#, fuzzy +msgid "mystery-man" +msgstr "昨天" + +#: const/__init__.py:230 +msgid "monsterid" +msgstr "" + +#: const/__init__.py:231 +#, fuzzy +msgid "wavatar" +msgstr "修改头像" + +#: const/__init__.py:232 +msgid "retro" +msgstr "" + +#: const/__init__.py:279 skins/default/templates/badges.html:37 msgid "gold" msgstr "金牌" -#: const/__init__.py:242 skins/default/templates/badges.html:52 +#: const/__init__.py:280 skins/default/templates/badges.html:46 msgid "silver" msgstr "银牌" -#: const/__init__.py:243 skins/default/templates/badges.html:59 +#: const/__init__.py:281 skins/default/templates/badges.html:53 msgid "bronze" msgstr "铜牌" +#: const/__init__.py:293 +msgid "None" +msgstr "" + +#: const/__init__.py:294 +#, fuzzy +msgid "Gravatar" +msgstr "修改头像" + +#: const/__init__.py:295 +msgid "Uploaded Avatar" +msgstr "" + +#: const/message_keys.py:15 +#, fuzzy +msgid "most relevant questions" +msgstr "最新加入系统的问题" + +#: const/message_keys.py:16 +#, fuzzy +msgid "click to see most relevant questions" +msgstr "投票次数最多的问题" + +#: const/message_keys.py:17 +#, fuzzy +msgid "by relevance" +msgstr "相关" + +#: const/message_keys.py:18 +msgid "click to see the oldest questions" +msgstr "最新问题" + #: const/message_keys.py:19 -#, python-format -msgid "First time here? Check out the FAQ!" -msgstr "第一次来?查看FAQ!" +#, fuzzy +msgid "by date" +msgstr "更新" + +#: const/message_keys.py:20 +msgid "click to see the newest questions" +msgstr "最新问题" + +#: const/message_keys.py:21 +msgid "click to see the least recently updated questions" +msgstr "最近被更新的问题" + +#: const/message_keys.py:22 +#, fuzzy +msgid "by activity" +msgstr "活跃问题" + +#: const/message_keys.py:23 +msgid "click to see the most recently updated questions" +msgstr "最近被更新的问题" + +#: const/message_keys.py:24 +#, fuzzy +msgid "click to see the least answered questions" +msgstr "最新问题" + +#: const/message_keys.py:25 +#, fuzzy +msgid "by answers" +msgstr "回答" + +#: const/message_keys.py:26 +#, fuzzy +msgid "click to see the most answered questions" +msgstr "投票次数最多的问题" + +#: const/message_keys.py:27 +msgid "click to see least voted questions" +msgstr "投票次数最多的问题" + +#: const/message_keys.py:28 +#, fuzzy +msgid "by votes" +msgstr "票" + +#: const/message_keys.py:29 +msgid "click to see most voted questions" +msgstr "投票次数最多的问题" + +#: deps/django_authopenid/backends.py:88 +msgid "" +"Welcome! Please set email address (important!) in your profile and adjust " +"screen name, if necessary." +msgstr "" -#: deps/django_authopenid/forms.py:116 deps/django_authopenid/views.py:137 +#: deps/django_authopenid/forms.py:110 deps/django_authopenid/views.py:151 msgid "i-names are not supported" msgstr "支持基本的HTML标签" -#: deps/django_authopenid/forms.py:237 +#: deps/django_authopenid/forms.py:233 #, python-format msgid "Please enter your %(username_token)s" msgstr "请输入%(username_token)s" -#: deps/django_authopenid/forms.py:263 +#: deps/django_authopenid/forms.py:259 msgid "Please, enter your user name" msgstr "请输入用户名" -#: deps/django_authopenid/forms.py:267 +#: deps/django_authopenid/forms.py:263 msgid "Please, enter your password" msgstr "请输入密码" -#: deps/django_authopenid/forms.py:274 deps/django_authopenid/forms.py:278 +#: deps/django_authopenid/forms.py:270 deps/django_authopenid/forms.py:274 msgid "Please, enter your new password" msgstr "请输入新密码" -#: deps/django_authopenid/forms.py:289 +#: deps/django_authopenid/forms.py:285 msgid "Passwords did not match" msgstr "密码不匹配" -#: deps/django_authopenid/forms.py:301 +#: deps/django_authopenid/forms.py:297 #, python-format msgid "Please choose password > %(len)s characters" msgstr "密码长度必须大于%(len)s" -#: deps/django_authopenid/forms.py:336 +#: deps/django_authopenid/forms.py:335 msgid "Current password" msgstr "当前密码" -#: deps/django_authopenid/forms.py:347 -msgid "Old password is incorrect. Please enter the correct password." +#: deps/django_authopenid/forms.py:346 +msgid "" +"Old password is incorrect. Please enter the correct " +"password." msgstr "旧密码不对,请输入正确密码." -#: deps/django_authopenid/forms.py:400 +#: deps/django_authopenid/forms.py:399 msgid "Sorry, we don't have this email address in the database" msgstr "对不起,邮件地址不存在" @@ -1351,204 +2287,201 @@ msgstr "用户名是必需项" msgid "Incorrect username." msgstr "选择一个用户名" -#: deps/django_authopenid/urls.py:13 deps/django_authopenid/urls.py:14 -#: deps/django_authopenid/urls.py:17 deps/django_authopenid/urls.py:20 -#: setup_templates/settings.py:182 +#: deps/django_authopenid/urls.py:9 deps/django_authopenid/urls.py:12 +#: deps/django_authopenid/urls.py:15 setup_templates/settings.py:202 msgid "signin/" msgstr "登录/" -#: deps/django_authopenid/urls.py:13 -msgid "newquestion/" -msgstr "提问/" - -#: deps/django_authopenid/urls.py:14 -msgid "newanswer/" -msgstr "回答/" - -#: deps/django_authopenid/urls.py:15 +#: deps/django_authopenid/urls.py:10 msgid "signout/" msgstr "退出/" -#: deps/django_authopenid/urls.py:17 +#: deps/django_authopenid/urls.py:12 msgid "complete/" msgstr "完成/" -#: deps/django_authopenid/urls.py:20 +#: deps/django_authopenid/urls.py:15 msgid "complete-oauth/" msgstr "完成验证/" -#: deps/django_authopenid/urls.py:24 +#: deps/django_authopenid/urls.py:19 msgid "register/" msgstr "注册/" -#: deps/django_authopenid/urls.py:26 +#: deps/django_authopenid/urls.py:21 msgid "signup/" msgstr "登录/" -#: deps/django_authopenid/urls.py:34 +#: deps/django_authopenid/urls.py:25 +msgid "logout/" +msgstr "退出登录/" + +#: deps/django_authopenid/urls.py:30 msgid "recover/" msgstr "恢复/" -#: deps/django_authopenid/util.py:196 +#: deps/django_authopenid/util.py:378 #, python-format msgid "%(site)s user name and password" msgstr "使用%(site)s 帐号密码登录" -#: deps/django_authopenid/util.py:202 -#: skins/default/templates/authopenid/signin.html:124 +#: deps/django_authopenid/util.py:384 +#: skins/default/templates/authopenid/signin.html:108 msgid "Create a password-protected account" msgstr "创建一个密码保护账户" -#: deps/django_authopenid/util.py:203 +#: deps/django_authopenid/util.py:385 msgid "Change your password" msgstr "修改密码" -#: deps/django_authopenid/util.py:265 +#: deps/django_authopenid/util.py:473 msgid "Sign in with Yahoo" msgstr "使用Yahoo用户登录" -#: deps/django_authopenid/util.py:272 +#: deps/django_authopenid/util.py:480 msgid "AOL screen name" msgstr "AOL用户名" -#: deps/django_authopenid/util.py:280 +#: deps/django_authopenid/util.py:488 msgid "OpenID url" msgstr "OpenID url" # translation and user name validation are language-specific -#: deps/django_authopenid/util.py:297 -msgid "MyOpenid user name" -msgstr "MyOpenid用户名" - -# translation and user name validation are language-specific -#: deps/django_authopenid/util.py:305 deps/django_authopenid/util.py:313 +#: deps/django_authopenid/util.py:517 msgid "Flickr user name" msgstr "Flickr 用户名" -#: deps/django_authopenid/util.py:321 +#: deps/django_authopenid/util.py:525 msgid "Technorati user name" msgstr "Technorati 用户名" -#: deps/django_authopenid/util.py:329 +#: deps/django_authopenid/util.py:533 msgid "WordPress blog name" msgstr "WordPress 博客名称" -#: deps/django_authopenid/util.py:337 +#: deps/django_authopenid/util.py:541 msgid "Blogger blog name" msgstr "Blogger 博客名称" -#: deps/django_authopenid/util.py:345 +#: deps/django_authopenid/util.py:549 msgid "LiveJournal blog name" msgstr "LiveJournal 博客名称" # translation and user name validation are language-specific -#: deps/django_authopenid/util.py:353 +#: deps/django_authopenid/util.py:557 msgid "ClaimID user name" msgstr "ClaimID 用户名" # translation and user name validation are language-specific -#: deps/django_authopenid/util.py:361 +#: deps/django_authopenid/util.py:565 msgid "Vidoop user name" msgstr "Vidoop 用户名" # translation and user name validation are language-specific -#: deps/django_authopenid/util.py:369 +#: deps/django_authopenid/util.py:573 msgid "Verisign user name" msgstr "Verisign用户名" -#: deps/django_authopenid/util.py:393 +#: deps/django_authopenid/util.py:608 #, python-format msgid "Change your %(provider)s password" msgstr "修改%(provider)s密码" -#: deps/django_authopenid/util.py:397 +#: deps/django_authopenid/util.py:612 #, python-format msgid "Click to see if your %(provider)s signin still works for %(site_name)s" msgstr "点击查看你的 %(provider)s登录是否被%(site_name)s支持" -#: deps/django_authopenid/util.py:406 +#: deps/django_authopenid/util.py:621 #, python-format msgid "Create password for %(provider)s" msgstr "为%(provider)s创建密码" -#: deps/django_authopenid/util.py:410 +#: deps/django_authopenid/util.py:625 #, python-format msgid "Connect your %(provider)s account to %(site_name)s" msgstr "链接你的%(provider)s账户到%(site_name)s" -#: deps/django_authopenid/util.py:419 +#: deps/django_authopenid/util.py:634 #, python-format msgid "Signin with %(provider)s user name and password" msgstr "使用%(provider)s帐号密码登录" -#: deps/django_authopenid/util.py:426 +#: deps/django_authopenid/util.py:641 #, python-format msgid "Sign in with your %(provider)s account" msgstr "用你的%(provider)s 账户登录" -#: deps/django_authopenid/views.py:144 +#: deps/django_authopenid/views.py:158 #, python-format msgid "OpenID %(openid_url)s is invalid" msgstr "OpenID %(openid_url)s是不正确的" -#: deps/django_authopenid/views.py:256 deps/django_authopenid/views.py:399 -#: deps/django_authopenid/views.py:427 +#: deps/django_authopenid/views.py:270 deps/django_authopenid/views.py:415 +#: deps/django_authopenid/views.py:443 #, python-format -msgid "Unfortunately, there was some problem when connecting to %(provider)s, please try again or use another provider" +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:349 +#: deps/django_authopenid/views.py:365 msgid "Your new password saved" msgstr "你的新密码已保存" -#: deps/django_authopenid/views.py:511 +#: deps/django_authopenid/views.py:469 +msgid "The login password combination was not correct" +msgstr "" + +#: deps/django_authopenid/views.py:573 msgid "Please click any of the icons below to sign in" msgstr "请点击下面任何一个图标登录" -#: deps/django_authopenid/views.py:513 +#: deps/django_authopenid/views.py:575 msgid "Account recovery email sent" msgstr "发送账户恢复邮件" -#: deps/django_authopenid/views.py:516 +#: deps/django_authopenid/views.py:578 msgid "Please add one or more login methods." msgstr "请添加一个或多个登录方式" -#: deps/django_authopenid/views.py:518 +#: deps/django_authopenid/views.py:580 msgid "If you wish, please add, remove or re-validate your login methods" msgstr "您可以添加,删除或重新验证你的登录方式" -#: deps/django_authopenid/views.py:520 +#: deps/django_authopenid/views.py:582 msgid "Please wait a second! Your account is recovered, but ..." msgstr "请稍等,你的账户正在恢复..." -#: deps/django_authopenid/views.py:522 +#: deps/django_authopenid/views.py:584 msgid "Sorry, this account recovery key has expired or is invalid" msgstr "对不起,这个账户恢复已过期或不正确" -#: deps/django_authopenid/views.py:578 +#: deps/django_authopenid/views.py:657 #, python-format msgid "Login method %(provider_name)s does not exist" msgstr "%(provider_name)s登录方式不存在" -#: deps/django_authopenid/views.py:584 +#: deps/django_authopenid/views.py:663 msgid "Oops, sorry - there was some error - please try again" msgstr "对不起,系统出错,请重试" -#: deps/django_authopenid/views.py:675 +#: deps/django_authopenid/views.py:754 #, python-format msgid "Your %(provider)s login works fine" msgstr "你的%(provider)s登录成功" -#: deps/django_authopenid/views.py:973 deps/django_authopenid/views.py:979 +#: deps/django_authopenid/views.py:1065 deps/django_authopenid/views.py:1071 #, python-format msgid "your email needs to be validated see %(details_url)s" msgstr "你的email需要验证,看这里%(details_url)s" -#: deps/django_authopenid/views.py:1000 -msgid "Email verification subject line" -msgstr "邮件确认" +#: deps/django_authopenid/views.py:1092 +#, fuzzy, python-format +msgid "Recover your %(site)s account" +msgstr "通过邮件恢复你的账户" -#: deps/django_authopenid/views.py:1066 +#: deps/django_authopenid/views.py:1162 msgid "Please check your email and visit the enclosed link." msgstr "请检查你的邮件并访问其内部链接" @@ -1556,1084 +2489,906 @@ msgstr "请检查你的邮件并访问其内部链接" msgid "Site" msgstr "网站" -#: deps/livesettings/values.py:107 +#: deps/livesettings/values.py:106 msgid "Base Settings" msgstr "基本设置" -#: deps/livesettings/values.py:214 +#: deps/livesettings/values.py:213 msgid "Default value: \"\"" msgstr "默认值:" -#: deps/livesettings/values.py:221 +#: deps/livesettings/values.py:220 msgid "Default value: " msgstr "默认值:" -#: deps/livesettings/values.py:224 +#: deps/livesettings/values.py:223 #, python-format msgid "Default value: %s" msgstr "默认值: %s" # todo take these out of settings -#: deps/livesettings/values.py:589 +#: deps/livesettings/values.py:601 +#, fuzzy, python-format msgid "Allowed image file types are %(types)s" msgstr "只允许上传'%(file_types)s'类型的文件!" #: deps/livesettings/templates/livesettings/_admin_site_views.html:4 -#: skins/default/templates/askbot.deps.livesettings/_admin_site_views.html:4 msgid "Sites" msgstr "网站" #: deps/livesettings/templates/livesettings/group_settings.html:11 #: deps/livesettings/templates/livesettings/site_settings.html:23 -#: skins/default/templates/askbot.deps.livesettings/group_settings.html:11 -#: skins/default/templates/askbot.deps.livesettings/site_settings.html:23 msgid "Documentation" msgstr "文档" #: deps/livesettings/templates/livesettings/group_settings.html:11 #: deps/livesettings/templates/livesettings/site_settings.html:23 -#: skins/default/templates/askbot.deps.livesettings/group_settings.html:11 -#: skins/default/templates/askbot.deps.livesettings/site_settings.html:23 -#: skins/default/templates/authopenid/signin.html:142 +#: skins/default/templates/authopenid/signin.html:132 msgid "Change password" msgstr "修改密码" #: deps/livesettings/templates/livesettings/group_settings.html:11 #: deps/livesettings/templates/livesettings/site_settings.html:23 -#: skins/default/templates/askbot.deps.livesettings/group_settings.html:11 -#: skins/default/templates/askbot.deps.livesettings/site_settings.html:23 msgid "Log out" msgstr "退出登录" #: deps/livesettings/templates/livesettings/group_settings.html:14 #: deps/livesettings/templates/livesettings/site_settings.html:26 -#: skins/default/templates/askbot.deps.livesettings/group_settings.html:14 -#: skins/default/templates/askbot.deps.livesettings/site_settings.html:26 msgid "Home" msgstr "首页" # page title #: deps/livesettings/templates/livesettings/group_settings.html:15 -#: skins/default/templates/askbot.deps.livesettings/group_settings.html:15 msgid "Edit Group Settings" msgstr "修改组设置" #: deps/livesettings/templates/livesettings/group_settings.html:22 #: deps/livesettings/templates/livesettings/site_settings.html:50 -#: skins/default/templates/askbot.deps.livesettings/group_settings.html:22 -#: skins/default/templates/askbot.deps.livesettings/site_settings.html:50 msgid "Please correct the error below." msgid_plural "Please correct the errors below." msgstr[0] "请改正下面的错误" -msgstr[1] "请改正下面的错误" #: deps/livesettings/templates/livesettings/group_settings.html:28 -#: skins/default/templates/askbot.deps.livesettings/group_settings.html:28 #, python-format msgid "Settings included in %(name)s." msgstr "设置包含在%(name)s." #: deps/livesettings/templates/livesettings/group_settings.html:62 #: deps/livesettings/templates/livesettings/site_settings.html:97 -#: skins/default/templates/askbot.deps.livesettings/group_settings.html:62 -#: skins/default/templates/askbot.deps.livesettings/site_settings.html:97 msgid "You don't have permission to edit values." msgstr "你没有权限修改这些值" # book.html line 123 must be empty in english #: deps/livesettings/templates/livesettings/group_settings.html:68 -#: skins/default/templates/askbot.deps.livesettings/group_settings.html:68 msgid "Setting groups" msgstr "设置组" #: deps/livesettings/templates/livesettings/site_settings.html:27 -#: skins/default/templates/askbot.deps.livesettings/site_settings.html:27 msgid "Edit Site Settings" msgstr "编辑网站设置" #: deps/livesettings/templates/livesettings/site_settings.html:43 -#: skins/default/templates/askbot.deps.livesettings/site_settings.html:43 msgid "Livesettings are disabled for this site." msgstr "此功能不支持" #: deps/livesettings/templates/livesettings/site_settings.html:44 -#: skins/default/templates/askbot.deps.livesettings/site_settings.html:44 msgid "All configuration options must be edited in the site settings.py file" msgstr "所有配置选项都必须在网站的settings.py文件中设置" #: deps/livesettings/templates/livesettings/site_settings.html:66 -#: skins/default/templates/askbot.deps.livesettings/site_settings.html:66 #, python-format msgid "Group settings: %(name)s" msgstr "组别设置: %(name)s" #: deps/livesettings/templates/livesettings/site_settings.html:93 -#: skins/default/templates/askbot.deps.livesettings/site_settings.html:93 msgid "Uncollapse all" msgstr "" -#: deps/recaptcha_django/__init__.py:19 deps/recaptcha_django/__init__.py:80 -msgid "Unknown error." -msgstr "未知错误." - -#: deps/recaptcha_django/__init__.py:20 deps/recaptcha_django/__init__.py:21 -msgid "ReCAPTCHA is wrongly configured." -msgstr "ReCAPTCHA配置错误." - -#: deps/recaptcha_django/__init__.py:22 -msgid "Bad reCAPTCHA challenge parameter." -msgstr "错误的ReCAPTCHA挑战参数" - -#: deps/recaptcha_django/__init__.py:23 -msgid "The CAPTCHA solution was incorrect." -msgstr "CAPTCHA不正确" - -#: deps/recaptcha_django/__init__.py:24 -msgid "Bad reCAPTCHA verification parameters." -msgstr "错误reCAPTCHA确认参数" - -#: deps/recaptcha_django/__init__.py:25 -msgid "Provided reCAPTCHA API keys are not valid for this domain." -msgstr "为这个域名提供的reCAPTCHA API keys都不正确" - -#: deps/recaptcha_django/__init__.py:26 -msgid "ReCAPTCHA could not be reached." -msgstr "不能到达ReCAPTCHA " - -#: deps/recaptcha_django/__init__.py:73 -msgid "Invalid request" -msgstr "不正确的请求" - # base_content.html -#: importers/stackexchange/management/commands/load_stackexchange.py:126 +#: importers/stackexchange/management/commands/load_stackexchange.py:141 msgid "Congratulations, you are now an Administrator" msgstr "恭喜您,社区给您颁发了奖牌" -#: management/commands/send_email_alerts.py:105 -#, python-format -msgid "\" and \"%s\"" -msgstr "\" 和 \"%s\"" +#: 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/send_email_alerts.py:108 -msgid "\" and more" -msgstr "查看更多" +#: management/commands/post_emailed_questions.py:35 +msgid "" +"

        To ask by email, please:

        \n" +"
          \n" +"
        • Format the subject line as: [Tag1; Tag2] Question title
        • \n" +"
        • Type details of your question into the email body
        • \n" +"
        \n" +"

        Note that tags may consist of more than one word, and tags\n" +"may be separated by a semicolon or a comma

        \n" +msgstr "" + +#: management/commands/post_emailed_questions.py:55 +#, python-format +msgid "" +"

        Sorry, there was an error posting your question please contact the " +"%(site)s administrator

        " +msgstr "" -#: management/commands/send_email_alerts.py:116 +#: management/commands/post_emailed_questions.py:61 #, python-format -msgid "%(question_count)d updated question tagged %(topics)s" -msgid_plural "%(question_count)d updated questions tagged %(topics)s" +msgid "" +"

        Sorry, in order to post questions on %(site)s by email, please register first

        " +msgstr "" + +#: management/commands/post_emailed_questions.py:69 +msgid "" +"

        Sorry, your question could not be posted due to insufficient privileges " +"of your user account

        " +msgstr "" + +#: management/commands/send_email_alerts.py:411 +#, fuzzy, 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 个更新" -msgstr[1] "关于 %(topics)s问题有%(question_count)d 个更新" -#: management/commands/send_email_alerts.py:472 +#: management/commands/send_email_alerts.py:421 #, python-format msgid "%(name)s, this is an update message header for %(num)d question" msgid_plural "%(name)s, this is an update message header for %(num)d questions" msgstr[0] "%(name)s, %(num)d 个问题的更新标题" -msgstr[1] "%(name)s, %(num)d 个问题的更新标题" -#: management/commands/send_email_alerts.py:489 +#: management/commands/send_email_alerts.py:438 msgid "new question" msgstr "提问" -#: management/commands/send_email_alerts.py:506 -msgid "Please visit askbot forum and see what's new! " -msgstr "请访问askbot论坛查看更新" +#: 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:515 -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: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:521 -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: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:527 -msgid "There is a chance that you may be receiving links seen before - due to a technicality that will eventually go away. " +#: 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:532 +#: management/commands/send_email_alerts.py:490 #, python-format -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管理员" - -#: migrations/0005_install_badges.py:11 models/badges.py:132 -msgid "Disciplined" -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管理员" -#: migrations/0005_install_badges.py:11 -msgid "disciplined" -msgstr "规则" +#: management/commands/send_unanswered_question_reminders.py:80 +#, fuzzy, python-format +msgid "%(question_count)d unanswered question about %(topics)s" +msgid_plural "%(question_count)d unanswered questions about %(topics)s" +msgstr[0] "关于 %(topics)s问题有%(question_count)d 个更新" -#: migrations/0005_install_badges.py:11 -msgid "Deleted own post with score of 3 or higher" -msgstr "删除自己3分或以上的问题" +#: models/__init__.py:316 +msgid "" +"Sorry, you cannot accept or unaccept best answers because your account is " +"blocked" +msgstr "对不起,你不能认定或否决最佳答案因为你的账户已冻结" -#: migrations/0005_install_badges.py:12 models/badges.py:154 -msgid "Peer Pressure" -msgstr "同等压力" +#: models/__init__.py:320 +msgid "" +"Sorry, you cannot accept or unaccept best answers because your account is " +"suspended" +msgstr "对不起,你不能认定或否决最佳答案因为你的账户已暂停使用" -#: migrations/0005_install_badges.py:12 -msgid "peer-pressure" -msgstr "同等压力" +#: models/__init__.py:333 +#, fuzzy, python-format +msgid "" +">%(points)s points required to accept or unaccept your own answer to your " +"own question" +msgstr "对不起,你不能认定或否决你自己的回答的自己的问题" -#: migrations/0005_install_badges.py:12 -msgid "Deleted own post with score of -3 or lower" -msgstr "删除自己-3分或更低的问题" +#: models/__init__.py:347 +#, fuzzy, python-format +msgid "" +"Sorry, only original author of the question - %(username)s - can accept or " +"unaccept the best answer" +msgstr "对不起,只有问题的提问者 - %(username)s - 可以认定最佳答案" -#: migrations/0005_install_badges.py:13 -msgid "Nice answer" -msgstr "好回答" +#: models/__init__.py:375 +msgid "cannot vote for own posts" +msgstr "不能给自己的帖子投票" -#: migrations/0005_install_badges.py:13 -msgid "nice-answer" -msgstr "好回答" +#: models/__init__.py:378 +msgid "Sorry your account appears to be blocked " +msgstr "对不起你的账户已冻结" -#: migrations/0005_install_badges.py:13 -msgid "Answer voted up 10 times" -msgstr "投票10次以上的回答" +#: models/__init__.py:383 +msgid "Sorry your account appears to be suspended " +msgstr "对不起你的账户已暂停使用" -#: migrations/0005_install_badges.py:14 models/badges.py:339 -msgid "Nice Question" -msgstr "好问题" +#: models/__init__.py:393 +#, python-format +msgid ">%(points)s points required to upvote" +msgstr "需要+%(points)s积分才能投支持票。" -#: migrations/0005_install_badges.py:14 -msgid "nice-question" -msgstr "好提问" +#: models/__init__.py:399 +#, python-format +msgid ">%(points)s points required to downvote" +msgstr "需要+%(points)s积分才能投反对票。" -#: migrations/0005_install_badges.py:14 -msgid "Question voted up 10 times" -msgstr "投票10次以上的问题" +#: models/__init__.py:414 +msgid "Sorry, blocked users cannot upload files" +msgstr "对不起,冻结用户不能上传文件" -#: migrations/0005_install_badges.py:15 models/badges.py:576 -msgid "Pundit" -msgstr "学者" +#: models/__init__.py:415 +msgid "Sorry, suspended users cannot upload files" +msgstr "对不起,暂停使用用户不能上传文件" -#: migrations/0005_install_badges.py:15 -msgid "pundit" -msgstr "学者" +#: models/__init__.py:417 +#, python-format +msgid "" +"uploading images is limited to users with >%(min_rep)s reputation points" +msgstr "上传图片只限于积分+%(min_rep)s以上注册用户!" -#: migrations/0005_install_badges.py:15 models/badges.py:579 -msgid "Left 10 comments with score of 10 or more" -msgstr "留言超过10且得分上10的问题" +#: models/__init__.py:436 models/__init__.py:503 models/__init__.py:918 +msgid "blocked users cannot post" +msgstr "冻结用户不能发布信息" -#: migrations/0005_install_badges.py:16 models/badges.py:413 -msgid "Popular Question" -msgstr "受欢迎的问题" +#: models/__init__.py:437 models/__init__.py:921 +msgid "suspended users cannot post" +msgstr "暂停使用用户不能发布信息" -#: migrations/0005_install_badges.py:16 -msgid "popular-question" -msgstr "受欢迎的问题" +#: models/__init__.py:464 +#, fuzzy, python-format +msgid "" +"Sorry, comments (except the last one) are editable only within %(minutes)s " +"minute from posting" +msgid_plural "" +"Sorry, comments (except the last one) are editable only within %(minutes)s " +"minutes from posting" +msgstr[0] "对不起,留言只能在发布后10分钟内可编辑" -#: migrations/0005_install_badges.py:16 -msgid "Asked a question with 1,000 views" -msgstr "1000次查看的问题" +#: models/__init__.py:476 +msgid "Sorry, but only post owners or moderators can edit comments" +msgstr "对不起,只有发布者或版主才能修改留言" -#: migrations/0005_install_badges.py:17 -msgid "Citizen patrol" -msgstr "社区居民" +#: models/__init__.py:489 +msgid "" +"Sorry, since your account is suspended you can comment only your own posts" +msgstr "对不起,因为你的账户已暂停使用,你只能留言你自己发布的信息" -#: migrations/0005_install_badges.py:17 -msgid "citizen-patrol" -msgstr "社区居民" +#: models/__init__.py:493 +#, 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积分值,你可以留言你自己发布或回答的" +"问题" -#: migrations/0005_install_badges.py:17 models/badges.py:550 -msgid "First flagged post" -msgstr "第一次标记" +#: models/__init__.py:521 +msgid "" +"This post has been deleted and can be seen only by post owners, site " +"administrators and moderators" +msgstr "这个问题已经被删除,而且只能被发布者,网站管理员和版主查看" -#: migrations/0005_install_badges.py:18 models/badges.py:562 -msgid "Cleanup" -msgstr "清除" +#: models/__init__.py:538 +msgid "" +"Sorry, only moderators, site administrators and post owners can edit deleted " +"posts" +msgstr "对不起,只有版主,网站管理员及发布者可以编辑删除此信息" -#: migrations/0005_install_badges.py:18 -msgid "cleanup" -msgstr "清除" +#: models/__init__.py:553 +msgid "Sorry, since your account is blocked you cannot edit posts" +msgstr "对不起,你不能编辑信息因为你的账户被冻结" -#: migrations/0005_install_badges.py:18 models/badges.py:565 -msgid "First rollback" -msgstr "第一次回滚" +#: models/__init__.py:557 +msgid "Sorry, since your account is suspended you can edit only your own posts" +msgstr "对不起,你只能编辑你自己发布的信息因为你的账户被暂停使用" -#: migrations/0005_install_badges.py:19 models/badges.py:226 -msgid "Critic" -msgstr "评论家" +#: models/__init__.py:562 +#, python-format +msgid "" +"Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required" +msgstr "对不起,编辑wiki信息需要最低积分%(min_rep)s" -#: migrations/0005_install_badges.py:19 -msgid "critic" -msgstr "评论家" +#: models/__init__.py:569 +#, python-format +msgid "" +"Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is " +"required" +msgstr "对不起,编辑其他人的信息需要最低积分%(min_rep)s" -#: migrations/0005_install_badges.py:19 -msgid "First down vote" -msgstr "第一个反对票" +#: models/__init__.py:632 +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] "对不起,你不能删除问题因为它已经有了投赞成票的答案" -#: migrations/0005_install_badges.py:20 models/badges.py:611 -msgid "Editor" -msgstr "编辑" +#: models/__init__.py:647 +msgid "Sorry, since your account is blocked you cannot delete posts" +msgstr "对不起,你不能删除发布的信息,因为你的账户被冻结了" -#: migrations/0005_install_badges.py:20 -msgid "editor" -msgstr "编辑" +#: models/__init__.py:651 +msgid "" +"Sorry, since your account is suspended you can delete only your own posts" +msgstr "对不起,你只能删除你自己发布的信息因为你的账户被暂停使用了" -#: migrations/0005_install_badges.py:20 models/badges.py:614 -msgid "First edit" -msgstr "第一次编辑" +#: models/__init__.py:655 +#, python-format +msgid "" +"Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s " +"is required" +msgstr "对不起,你必须有%(min_rep)s积分才能删除别人发布的信息" -#: migrations/0005_install_badges.py:21 models/badges.py:633 -msgid "Organizer" -msgstr "组织者" +#: models/__init__.py:675 +msgid "Sorry, since your account is blocked you cannot close questions" +msgstr "对不起,因为你的账户已冻结你不能关闭问题" -#: migrations/0005_install_badges.py:21 -msgid "organizer" -msgstr "组织者" +#: models/__init__.py:679 +msgid "Sorry, since your account is suspended you cannot close questions" +msgstr "对不起,因为你的账户已暂停使用你不能关闭问题" -#: migrations/0005_install_badges.py:21 models/badges.py:636 -msgid "First retag" -msgstr "第一次修改标签" +#: models/__init__.py:683 +#, python-format +msgid "" +"Sorry, to close other people' posts, a minimum reputation of %(min_rep)s is " +"required" +msgstr "对不起,你必须有%(min_rep)s积分才能关闭别人发布的信息" -#: migrations/0005_install_badges.py:22 models/badges.py:452 -msgid "Scholar" -msgstr "学者" +#: models/__init__.py:692 +#, python-format +msgid "" +"Sorry, to close own question a minimum reputation of %(min_rep)s is required" +msgstr "对不起,你必须有%(min_rep)s积分才能关闭自己发布的问题" -#: migrations/0005_install_badges.py:22 -msgid "scholar" -msgstr "学者" +#: models/__init__.py:716 +#, python-format +msgid "" +"Sorry, only administrators, moderators or post owners with reputation > " +"%(min_rep)s can reopen questions." +msgstr "对不起,只有管理员,版主和有%(min_rep)s积分的发布者才能重开问题" -#: migrations/0005_install_badges.py:22 -msgid "First accepted answer on your own question" -msgstr "自己接受的第一个回答" +#: models/__init__.py:722 +#, python-format +msgid "" +"Sorry, to reopen own question a minimum reputation of %(min_rep)s is required" +msgstr "对不起,你必须有%(min_rep)s积分才能重开自己发布的问题" -#: migrations/0005_install_badges.py:23 models/badges.py:375 -msgid "Student" -msgstr "学生" +#: models/__init__.py:742 +msgid "cannot flag message as offensive twice" +msgstr "不能两次标记同一信息为垃圾信息" -#: migrations/0005_install_badges.py:23 -msgid "student" -msgstr "学生" +#: models/__init__.py:747 +msgid "blocked users cannot flag posts" +msgstr "冻结用户不能标记信息" -#: migrations/0005_install_badges.py:23 models/badges.py:380 -msgid "Asked first question with at least one up vote" -msgstr "得到至少一个赞成票的问题" +#: models/__init__.py:749 +msgid "suspended users cannot flag posts" +msgstr "暂停使用的用户不能标记信息" -#: migrations/0005_install_badges.py:24 models/badges.py:217 -msgid "Supporter" -msgstr "拥护者" +#: models/__init__.py:751 +#, python-format +msgid "need > %(min_rep)s points to flag spam" +msgstr "需要大于%(min_rep)s积分值才能标记垃圾信息" -#: migrations/0005_install_badges.py:24 -msgid "supporter" -msgstr "拥护者" +#: models/__init__.py:770 +#, python-format +msgid "%(max_flags_per_day)s exceeded" +msgstr "%(max_flags_per_day)s 被处理" -#: migrations/0005_install_badges.py:24 -msgid "First up vote" -msgstr "第一个赞成票" +#: models/__init__.py:785 +msgid "" +"Sorry, only question owners, site administrators and moderators can retag " +"deleted questions" +msgstr "对不起,只有发问者,网站管理员和版主才能为已删除问题修改标签" -#: migrations/0005_install_badges.py:25 models/badges.py:177 -msgid "Teacher" -msgstr "老师" +#: models/__init__.py:792 +msgid "Sorry, since your account is blocked you cannot retag questions" +msgstr "对不起,你的账户已冻结,你不能为问题修改标签" -#: migrations/0005_install_badges.py:25 -msgid "teacher" -msgstr "老师" +#: models/__init__.py:796 +msgid "" +"Sorry, since your account is suspended you can retag only your own questions" +msgstr "对不起,你的账户已暂停使用,你只能为你自己的问题修改标签" -#: migrations/0005_install_badges.py:25 -msgid "Answered first question with at least one up vote" -msgstr "回答的至少有一个赞成票的问题" +#: models/__init__.py:800 +#, python-format +msgid "" +"Sorry, to retag questions a minimum reputation of %(min_rep)s is required" +msgstr "对不起,为问题修改标签必须有%(min_rep)s积分值" -#: migrations/0005_install_badges.py:26 models/badges.py:643 -msgid "Autobiographer" -msgstr "完善个人资料者" +#: models/__init__.py:819 +msgid "Sorry, since your account is blocked you cannot delete comment" +msgstr "对不起,因为你的账户已冻结你不能删除留言" -#: migrations/0005_install_badges.py:26 -msgid "autobiographer" -msgstr "完善个人资料者" +#: models/__init__.py:823 +msgid "" +"Sorry, since your account is suspended you can delete only your own comments" +msgstr "对不起,因为你的账户暂停使用,你只能删除你自己的留言" -#: migrations/0005_install_badges.py:26 models/badges.py:646 -msgid "Completed all user profile fields" -msgstr "完善个人所有资料" +#: models/__init__.py:827 +#, python-format +msgid "Sorry, to delete comments reputation of %(min_rep)s is required" +msgstr "对不起,删除留言必须有%(min_rep)s积分值" -#: migrations/0005_install_badges.py:27 models/badges.py:255 -msgid "Self-Learner" -msgstr "自学者" +#: models/__init__.py:850 +msgid "cannot revoke old vote" +msgstr "这个投票已经过时,不能撤销。" -#: migrations/0005_install_badges.py:27 -msgid "self-learner" -msgstr "自学者" +#: models/__init__.py:1325 utils/functions.py:70 +#, python-format +msgid "on %(date)s" +msgstr "在%(date)s" -#: migrations/0005_install_badges.py:27 -msgid "Answered your own question with at least 3 up votes" -msgstr "回答的至少有三个赞成票的问题" +#: models/__init__.py:1327 +#, fuzzy +msgid "in two days" +msgstr "登录并回答该问题" -#: migrations/0005_install_badges.py:28 models/badges.py:327 -msgid "Great Answer" -msgstr "完美答案" +#: models/__init__.py:1329 +msgid "tomorrow" +msgstr "" -#: migrations/0005_install_badges.py:28 -msgid "great-answer" -msgstr "完美-答案" +#: models/__init__.py:1331 +#, fuzzy, python-format +msgid "in %(hr)d hour" +msgid_plural "in %(hr)d hours" +msgstr[0] "%(hr)d小时前" -#: migrations/0005_install_badges.py:28 -msgid "Answer voted up 100 times" -msgstr "赞成票达到100的答案" +#: models/__init__.py:1333 +#, fuzzy, python-format +msgid "in %(min)d min" +msgid_plural "in %(min)d mins" +msgstr[0] "%(min)d分钟前" -#: migrations/0005_install_badges.py:29 models/badges.py:363 -msgid "Great Question" -msgstr "完美的问题" +#: models/__init__.py:1334 +#, python-format +msgid "%(days)d day" +msgid_plural "%(days)d days" +msgstr[0] "" -#: migrations/0005_install_badges.py:29 -msgid "great-question" -msgstr "完美-问题" +#: models/__init__.py:1336 +#, python-format +msgid "" +"New users must wait %(days)s before answering their own question. You can " +"post an answer %(left)s" +msgstr "" -#: migrations/0005_install_badges.py:29 -msgid "Question voted up 100 times" -msgstr "有100赞成票的问题" +#: models/__init__.py:1501 skins/default/templates/feedback_email.txt:9 +#, fuzzy +msgid "Anonymous" +msgstr "匿名" -#: migrations/0005_install_badges.py:30 models/badges.py:688 -msgid "Stellar Question" -msgstr "重要问题" +#: models/__init__.py:1597 views/users.py:365 +msgid "Site Adminstrator" +msgstr "网站管理员" -#: migrations/0005_install_badges.py:30 -msgid "stellar-question" -msgstr "重要问题" +#: models/__init__.py:1599 views/users.py:367 +msgid "Forum Moderator" +msgstr "论坛版主" -#: migrations/0005_install_badges.py:30 -msgid "Question favorited by 100 users" -msgstr "被100个用户收藏的问题" +#: models/__init__.py:1601 views/users.py:369 +msgid "Suspended User" +msgstr "暂停账户" -# close.html -#: migrations/0005_install_badges.py:31 -msgid "Famous question" -msgstr "极好的问题" +#: models/__init__.py:1603 views/users.py:371 +msgid "Blocked User" +msgstr "冻结账户" -#: migrations/0005_install_badges.py:31 -msgid "famous-question" -msgstr "极好的问题" +#: models/__init__.py:1605 views/users.py:373 +msgid "Registered User" +msgstr "注册用户" -#: migrations/0005_install_badges.py:31 -msgid "Asked a question with 10,000 views" -msgstr "被点击10000此的问题" +#: models/__init__.py:1607 +msgid "Watched User" +msgstr "浏览用户" -#: migrations/0005_install_badges.py:32 -msgid "Alpha" -msgstr "Alpha" +#: models/__init__.py:1609 +msgid "Approved User" +msgstr "认证用户" -#: migrations/0005_install_badges.py:32 -msgid "alpha" -msgstr "alpha" +#: models/__init__.py:1718 +#, python-format +msgid "%(username)s karma is %(reputation)s" +msgstr "%(username)s 积分是 %(reputation)s" -#: migrations/0005_install_badges.py:32 -msgid "Actively participated in the private alpha" -msgstr "在alpha阶段积极贡献" +#: models/__init__.py:1728 +#, python-format +msgid "one gold badge" +msgid_plural "%(count)d gold badges" +msgstr[0] "%(count)d 金牌" -#: migrations/0005_install_badges.py:33 models/badges.py:315 -msgid "Good Answer" -msgstr "好回答" +#: models/__init__.py:1735 +#, python-format +msgid "one silver badge" +msgid_plural "%(count)d silver badges" +msgstr[0] "%(count)d 银牌" -#: migrations/0005_install_badges.py:33 -msgid "good-answer" -msgstr "好回答" +#: models/__init__.py:1742 +#, python-format +msgid "one bronze badge" +msgid_plural "%(count)d bronze badges" +msgstr[0] "%(count)d 铜牌" -#: migrations/0005_install_badges.py:33 -msgid "Answer voted up 25 times" -msgstr "有25次投票的回答" +#: models/__init__.py:1753 +#, python-format +msgid "%(item1)s and %(item2)s" +msgstr "%(item1)s 和 %(item2)s" -#: migrations/0005_install_badges.py:34 models/badges.py:351 -msgid "Good Question" -msgstr "好问题" +#: models/__init__.py:1757 +#, python-format +msgid "%(user)s has %(badges)s" +msgstr "%(user)s 有 %(badges)s" -#: migrations/0005_install_badges.py:34 -msgid "good-question" -msgstr "好问题" +#: models/__init__.py:2164 models/__init__.py:2170 models/__init__.py:2175 +#: models/__init__.py:2180 +#, python-format +msgid "Re: \"%(title)s\"" +msgstr "Re: \"%(title)s\"" -#: migrations/0005_install_badges.py:34 -msgid "Question voted up 25 times" -msgstr "有25次投票的问题" +#: models/__init__.py:2185 models/__init__.py:2190 +#, python-format +msgid "Question: \"%(title)s\"" +msgstr "问题:\"%(title)s\"" -#: migrations/0005_install_badges.py:35 models/badges.py:697 -msgid "Favorite Question" -msgstr "收藏问题" +#: models/__init__.py:2371 +#, python-format +msgid "" +"Congratulations, you have received a badge '%(badge_name)s'. Check out your profile." +msgstr "" +"恭喜,你获得一块'%(badge_name)s'徽章,查看你的资料." -#: migrations/0005_install_badges.py:35 -msgid "favorite-question" -msgstr "收藏问题" +#: models/__init__.py:2550 views/commands.py:396 +msgid "Your tag subscription was saved, thanks!" +msgstr "" -#: migrations/0005_install_badges.py:35 -msgid "Question favorited by 25 users" -msgstr "被25人收藏的问题" +#: models/answer.py:105 +msgid "" +"Sorry, the answer you are looking for is no longer available, because the " +"parent question has been removed" +msgstr "对不起,你查找的问题已失效,因为问题已删除" -#: migrations/0005_install_badges.py:36 -msgid "Civic duty" -msgstr "居民义务" +#: models/answer.py:112 +msgid "Sorry, this answer has been removed and is no longer accessible" +msgstr "对不起,这个问题已删除" + +#: models/badges.py:129 +#, python-format +msgid "Deleted own post with %(votes)s or more upvotes" +msgstr "删除自己发布的有%(votes)s或更多推荐票的问题" + +#: models/badges.py:133 +msgid "Disciplined" +msgstr "规则" + +#: models/badges.py:151 +#, python-format +msgid "Deleted own post with %(votes)s or more downvotes" +msgstr "删除自己发布的%(votes)s或更多反对票的信息" + +#: models/badges.py:155 +msgid "Peer Pressure" +msgstr "同等压力" + +#: models/badges.py:174 +#, python-format +msgid "Received at least %(votes)s upvote for an answer for the first time" +msgstr "获取至少有%(votes)s推荐票的问题" + +#: models/badges.py:178 +msgid "Teacher" +msgstr "老师" + +#: models/badges.py:218 +msgid "Supporter" +msgstr "拥护者" + +#: models/badges.py:219 +msgid "First upvote" +msgstr "第一个赞成票" + +#: models/badges.py:227 +msgid "Critic" +msgstr "评论家" + +#: models/badges.py:228 +msgid "First downvote" +msgstr "第一个反对票" -#: migrations/0005_install_badges.py:36 -msgid "civic-duty" +#: models/badges.py:237 +msgid "Civic Duty" msgstr "居民义务" -#: migrations/0005_install_badges.py:36 -msgid "Voted 300 times" -msgstr "已投票300次" +#: models/badges.py:238 +#, python-format +msgid "Voted %(num)s times" +msgstr "已投票%(num)s次" -#: migrations/0005_install_badges.py:37 -msgid "Strunk & White" -msgstr "" +#: models/badges.py:252 +#, python-format +msgid "Answered own question with at least %(num)s up votes" +msgstr "自己回答的至少有%(num)s次推荐票的问题" -#: migrations/0005_install_badges.py:37 -msgid "strunk-and-white" -msgstr "" +#: models/badges.py:256 +msgid "Self-Learner" +msgstr "自学者" -#: migrations/0005_install_badges.py:37 -msgid "Edited 100 entries" -msgstr "编辑了100个问题" +#: models/badges.py:304 +msgid "Nice Answer" +msgstr "好回答" -#: migrations/0005_install_badges.py:38 -msgid "Generalist" -msgstr "通才" +#: models/badges.py:309 models/badges.py:321 models/badges.py:333 +#, python-format +msgid "Answer voted up %(num)s times" +msgstr "该用户投的赞成票回答总数%(num)s" -#: migrations/0005_install_badges.py:38 -msgid "generalist" -msgstr "通才" +#: models/badges.py:316 +msgid "Good Answer" +msgstr "好回答" -#: migrations/0005_install_badges.py:38 -msgid "Active in many different tags" -msgstr "激活许多不同的标签" +#: models/badges.py:328 +msgid "Great Answer" +msgstr "完美答案" -#: migrations/0005_install_badges.py:39 -msgid "Expert" -msgstr "专家" +#: models/badges.py:340 +msgid "Nice Question" +msgstr "好问题" -#: migrations/0005_install_badges.py:39 -msgid "expert" -msgstr "专家" +#: models/badges.py:345 models/badges.py:357 models/badges.py:369 +#, python-format +msgid "Question voted up %(num)s times" +msgstr "该用户投的赞成票问题总数%(num)s" -#: migrations/0005_install_badges.py:39 -msgid "Very active in one tag" -msgstr "非常活跃的标签" +#: models/badges.py:352 +msgid "Good Question" +msgstr "好问题" + +#: models/badges.py:364 +msgid "Great Question" +msgstr "完美的问题" + +#: models/badges.py:376 +msgid "Student" +msgstr "学生" -#: migrations/0005_install_badges.py:40 -msgid "Yearling" -msgstr "一年" +#: models/badges.py:381 +msgid "Asked first question with at least one up vote" +msgstr "得到至少一个赞成票的问题" -#: migrations/0005_install_badges.py:40 -msgid "yearling" -msgstr "一年" +#: models/badges.py:414 +msgid "Popular Question" +msgstr "受欢迎的问题" -#: migrations/0005_install_badges.py:40 -msgid "Active member for a year" -msgstr "一年中活跃用户" +#: models/badges.py:418 models/badges.py:429 models/badges.py:441 +#, python-format +msgid "Asked a question with %(views)s views" +msgstr "被查看 %(views)s次的问题" -#: migrations/0005_install_badges.py:41 models/badges.py:424 +#: models/badges.py:425 msgid "Notable Question" msgstr "关注的问题" -#: migrations/0005_install_badges.py:41 -msgid "notable-question" -msgstr "关注的问题" +# close.html +#: models/badges.py:436 +msgid "Famous Question" +msgstr "著名问题" + +#: models/badges.py:450 +msgid "Asked a question and accepted an answer" +msgstr "提问的有正确答案的问题" -#: migrations/0005_install_badges.py:41 -msgid "Asked a question with 2,500 views" -msgstr "有2500次点击的问题" +#: models/badges.py:453 +msgid "Scholar" +msgstr "学者" -#: migrations/0005_install_badges.py:42 models/badges.py:494 +#: models/badges.py:495 msgid "Enlightened" msgstr "文明的" -#: migrations/0005_install_badges.py:42 -msgid "enlightened" -msgstr "文明的" - -#: migrations/0005_install_badges.py:42 -msgid "First answer was accepted with at least 10 up votes" -msgstr "第一个被接受的有10个推荐票的答案" - -#: migrations/0005_install_badges.py:43 -msgid "Beta" -msgstr "Beta" - -#: migrations/0005_install_badges.py:43 -msgid "beta" -msgstr "Beta" - -#: migrations/0005_install_badges.py:43 -msgid "Actively participated in the private beta" -msgstr "在beta时有贡献的" +#: models/badges.py:499 +#, python-format +msgid "First answer was accepted with %(num)s or more votes" +msgstr "第一个正确且被投了%(num)s或更多票的答案" -#: migrations/0005_install_badges.py:44 models/badges.py:506 +#: models/badges.py:507 msgid "Guru" msgstr "专家" -#: migrations/0005_install_badges.py:44 -msgid "guru" -msgstr "专家" +#: models/badges.py:510 +#, python-format +msgid "Answer accepted with %(num)s or more votes" +msgstr "被接受的且被投了%(num)s或更多此的回答" -#: migrations/0005_install_badges.py:44 -msgid "Accepted answer and voted up 40 times" -msgstr "投票超过40次的回答" +#: models/badges.py:518 +#, python-format +msgid "" +"Answered a question more than %(days)s days later with at least %(votes)s " +"votes" +msgstr "问了一个超过%(days)s天且至少有%(votes)s投票的问题" -#: migrations/0005_install_badges.py:45 models/badges.py:524 +#: models/badges.py:525 msgid "Necromancer" msgstr "" -#: migrations/0005_install_badges.py:45 -msgid "necromancer" -msgstr "" +#: models/badges.py:548 +msgid "Citizen Patrol" +msgstr "社区居民" -#: migrations/0005_install_badges.py:45 -msgid "Answered a question more than 60 days later with at least 5 votes" -msgstr "回答问题超过60天且至少有5个投票" +#: models/badges.py:551 +msgid "First flagged post" +msgstr "第一次标记" -#: migrations/0005_install_badges.py:46 -msgid "Taxonomist" -msgstr "分类学者" +#: models/badges.py:563 +msgid "Cleanup" +msgstr "清除" -#: migrations/0005_install_badges.py:46 -msgid "taxonomist" -msgstr "分类学者" +#: models/badges.py:566 +msgid "First rollback" +msgstr "第一次回滚" -#: migrations/0005_install_badges.py:46 -msgid "Created a tag used by 50 questions" -msgstr "创建一个50个问题都用到的标签" +#: models/badges.py:577 +msgid "Pundit" +msgstr "学者" -#: models/__init__.py:170 -msgid "Sorry, you cannot accept or unaccept best answers because your account is blocked" -msgstr "对不起,你不能认定或否决最佳答案因为你的账户已冻结" +#: models/badges.py:580 +msgid "Left 10 comments with score of 10 or more" +msgstr "留言超过10且得分上10的问题" -#: models/__init__.py:175 -msgid "Sorry, you cannot accept or unaccept best answers because your account is suspended" -msgstr "对不起,你不能认定或否决最佳答案因为你的账户已暂停使用" +#: models/badges.py:612 +msgid "Editor" +msgstr "编辑" -#: models/__init__.py:181 -msgid "Sorry, you cannot accept or unaccept your own answer to your own question" -msgstr "对不起,你不能认定或否决你自己的回答的自己的问题" +#: models/badges.py:615 +msgid "First edit" +msgstr "第一次编辑" + +#: models/badges.py:623 +msgid "Associate Editor" +msgstr "联合编辑" -#: models/__init__.py:188 +#: models/badges.py:627 #, python-format -msgid "Sorry, only original author of the question - %(username)s - can accept the best answer" -msgstr "对不起,只有问题的提问者 - %(username)s - 可以认定最佳答案" +msgid "Edited %(num)s entries" +msgstr "编辑了%(num)s条目" -#: models/__init__.py:211 -msgid "cannot vote for own posts" -msgstr "不能给自己的帖子投票" +#: models/badges.py:634 +msgid "Organizer" +msgstr "组织者" -#: models/__init__.py:214 -msgid "Sorry your account appears to be blocked " -msgstr "对不起你的账户已冻结" +#: models/badges.py:637 +msgid "First retag" +msgstr "第一次修改标签" -#: models/__init__.py:219 -msgid "Sorry your account appears to be suspended " -msgstr "对不起你的账户已暂停使用" +#: models/badges.py:644 +msgid "Autobiographer" +msgstr "完善个人资料者" -#: models/__init__.py:229 -#, python-format -msgid ">%(points)s points required to upvote" -msgstr "需要+%(points)s积分才能投支持票。" +#: models/badges.py:647 +msgid "Completed all user profile fields" +msgstr "完善个人所有资料" -#: models/__init__.py:235 +#: models/badges.py:663 #, python-format -msgid ">%(points)s points required to downvote" -msgstr "需要+%(points)s积分才能投反对票。" - -#: models/__init__.py:250 -msgid "Sorry, blocked users cannot upload files" -msgstr "对不起,冻结用户不能上传文件" +msgid "Question favorited by %(num)s users" +msgstr "被%(num)s用户收藏的问题" -#: models/__init__.py:251 -msgid "Sorry, suspended users cannot upload files" -msgstr "对不起,暂停使用用户不能上传文件" +#: models/badges.py:689 +msgid "Stellar Question" +msgstr "重要问题" -#: models/__init__.py:253 -#, python-format -msgid "uploading images is limited to users with >%(min_rep)s reputation points" -msgstr "上传图片只限于积分+%(min_rep)s以上注册用户!" +#: models/badges.py:698 +msgid "Favorite Question" +msgstr "收藏问题" -#: models/__init__.py:272 models/__init__.py:332 models/__init__.py:2021 -msgid "blocked users cannot post" -msgstr "冻结用户不能发布信息" +#: models/badges.py:710 +msgid "Enthusiast" +msgstr "热心人" -#: models/__init__.py:273 models/__init__.py:2024 -msgid "suspended users cannot post" -msgstr "暂停使用用户不能发布信息" +#: models/badges.py:714 +#, fuzzy, python-format +msgid "Visited site every day for %(num)s days in a row" +msgstr "过去30天每天都来访问网站的用户" -#: models/__init__.py:298 -msgid "Sorry, comments (except the last one) are editable only within 10 minutes from posting" -msgstr "对不起,留言只能在发布后10分钟内可编辑" +#: models/badges.py:732 +msgid "Commentator" +msgstr "评论员" -#: models/__init__.py:304 -msgid "Sorry, but only post owners or moderators can edit comments" -msgstr "对不起,只有发布者或版主才能修改留言" +#: models/badges.py:736 +#, fuzzy, python-format +msgid "Posted %(num_comments)s comments" +msgstr "%(comment_count)s次评论" -#: models/__init__.py:318 -msgid "Sorry, since your account is suspended you can comment only your own posts" -msgstr "对不起,因为你的账户已暂停使用,你只能留言你自己发布的信息" +#: models/badges.py:752 +msgid "Taxonomist" +msgstr "分类学者" -#: models/__init__.py:322 -#, 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/badges.py:756 +#, fuzzy, python-format +msgid "Created a tag used by %(num)s questions" +msgstr "创建一个50个问题都用到的标签" -#: models/__init__.py:350 -msgid "This post has been deleted and can be seen only by post owners, site administrators and moderators" -msgstr "这个问题已经被删除,而且只能被发布者,网站管理员和版主查看" +#: models/badges.py:776 +msgid "Expert" +msgstr "专家" -#: models/__init__.py:367 -msgid "Sorry, only moderators, site administrators and post owners can edit deleted posts" -msgstr "对不起,只有版主,网站管理员及发布者可以编辑删除此信息" +#: models/badges.py:779 +msgid "Very active in one tag" +msgstr "非常活跃的标签" -#: models/__init__.py:382 -msgid "Sorry, since your account is blocked you cannot edit posts" -msgstr "对不起,你不能编辑信息因为你的账户被冻结" +#: models/meta.py:112 +msgid "" +"Sorry, the comment you are looking for is no longer accessible, because the " +"parent question has been removed" +msgstr "对不起,你查找的评论不能访问,因为问题已删除" -#: models/__init__.py:386 -msgid "Sorry, since your account is suspended you can edit only your own posts" -msgstr "对不起,你只能编辑你自己发布的信息因为你的账户被暂停使用" +#: models/meta.py:119 +msgid "" +"Sorry, the comment you are looking for is no longer accessible, because the " +"parent answer has been removed" +msgstr "对不起,你查找的评论不能访问,因为回答已删除" -#: models/__init__.py:391 +#: models/question.py:72 #, python-format -msgid "Sorry, to edit wiki posts, a minimum reputation of %(min_rep)s is required" -msgstr "对不起,编辑wiki信息需要最低积分%(min_rep)s" +msgid "\" and \"%s\"" +msgstr "\" 和 \"%s\"" -#: models/__init__.py:398 -#, python-format -msgid "Sorry, to edit other people's posts, a minimum reputation of %(min_rep)s is required" -msgstr "对不起,编辑其他人的信息需要最低积分%(min_rep)s" +#: models/question.py:75 +msgid "\" and more" +msgstr "查看更多" -#: models/__init__.py:461 -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] "对不起,你不能删除问题因为它已经有了投赞成票的答案" -msgstr[1] "对不起,你不能删除问题因为它已经有了投赞成票的答案" +#: models/question.py:452 +msgid "Sorry, this question has been deleted and is no longer accessible" +msgstr "对不起,此问题已删除" -#: models/__init__.py:476 -msgid "Sorry, since your account is blocked you cannot delete posts" -msgstr "对不起,你不能删除发布的信息,因为你的账户被冻结了" +#: models/question.py:908 +#, python-format +msgid "%(author)s modified the question" +msgstr "%(author)s修改了问题" -#: models/__init__.py:480 -msgid "Sorry, since your account is suspended you can delete only your own posts" -msgstr "对不起,你只能删除你自己发布的信息因为你的账户被暂停使用了" +#: models/question.py:912 +#, python-format +msgid "%(people)s posted %(new_answer_count)s new answers" +msgstr "%(people)s 发布了 %(new_answer_count)s 新答案" -#: models/__init__.py:484 +#: models/question.py:917 #, python-format -msgid "Sorry, to deleted other people' posts, a minimum reputation of %(min_rep)s is required" -msgstr "对不起,你必须有%(min_rep)s积分才能删除别人发布的信息" +msgid "%(people)s commented the question" +msgstr "%(people)s评论了问题" -#: models/__init__.py:504 -msgid "Sorry, since your account is blocked you cannot close questions" -msgstr "对不起,因为你的账户已冻结你不能关闭问题" - -#: models/__init__.py:508 -msgid "Sorry, since your account is suspended you cannot close questions" -msgstr "对不起,因为你的账户已暂停使用你不能关闭问题" - -#: models/__init__.py:512 -#, 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:521 -#, python-format -msgid "Sorry, to close own question a minimum reputation of %(min_rep)s is required" -msgstr "对不起,你必须有%(min_rep)s积分才能关闭自己发布的问题" - -#: models/__init__.py:545 -#, 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:551 -#, python-format -msgid "Sorry, to reopen own question a minimum reputation of %(min_rep)s is required" -msgstr "对不起,你必须有%(min_rep)s积分才能重开自己发布的问题" - -#: models/__init__.py:571 -msgid "cannot flag message as offensive twice" -msgstr "不能两次标记同一信息为垃圾信息" - -#: models/__init__.py:576 -msgid "blocked users cannot flag posts" -msgstr "冻结用户不能标记信息" - -#: models/__init__.py:578 -msgid "suspended users cannot flag posts" -msgstr "暂停使用的用户不能标记信息" - -#: models/__init__.py:580 -#, python-format -msgid "need > %(min_rep)s points to flag spam" -msgstr "需要大于%(min_rep)s积分值才能标记垃圾信息" - -#: models/__init__.py:599 -#, python-format -msgid "%(max_flags_per_day)s exceeded" -msgstr "%(max_flags_per_day)s 被处理" - -#: models/__init__.py:614 -msgid "Sorry, only question owners, site administrators and moderators can retag deleted questions" -msgstr "对不起,只有发问者,网站管理员和版主才能为已删除问题修改标签" - -#: models/__init__.py:621 -msgid "Sorry, since your account is blocked you cannot retag questions" -msgstr "对不起,你的账户已冻结,你不能为问题修改标签" - -#: models/__init__.py:625 -msgid "Sorry, since your account is suspended you can retag only your own questions" -msgstr "对不起,你的账户已暂停使用,你只能为你自己的问题修改标签" - -#: models/__init__.py:629 -#, python-format -msgid "Sorry, to retag questions a minimum reputation of %(min_rep)s is required" -msgstr "对不起,为问题修改标签必须有%(min_rep)s积分值" - -#: models/__init__.py:648 -msgid "Sorry, since your account is blocked you cannot delete comment" -msgstr "对不起,因为你的账户已冻结你不能删除留言" - -#: models/__init__.py:652 -msgid "Sorry, since your account is suspended you can delete only your own comments" -msgstr "对不起,因为你的账户暂停使用,你只能删除你自己的留言" - -#: models/__init__.py:656 -#, python-format -msgid "Sorry, to delete comments reputation of %(min_rep)s is required" -msgstr "对不起,删除留言必须有%(min_rep)s积分值" - -#: models/__init__.py:679 -msgid "cannot revoke old vote" -msgstr "这个投票已经过时,不能撤销。" - -#: models/__init__.py:1213 views/users.py:363 -msgid "Site Adminstrator" -msgstr "网站管理员" - -#: models/__init__.py:1215 views/users.py:365 -msgid "Forum Moderator" -msgstr "论坛版主" - -#: models/__init__.py:1217 views/users.py:367 -msgid "Suspended User" -msgstr "暂停账户" - -#: models/__init__.py:1219 views/users.py:369 -msgid "Blocked User" -msgstr "冻结账户" - -#: models/__init__.py:1221 views/users.py:371 -msgid "Registered User" -msgstr "注册用户" - -#: models/__init__.py:1223 -msgid "Watched User" -msgstr "浏览用户" - -#: models/__init__.py:1225 -msgid "Approved User" -msgstr "认证用户" - -#: models/__init__.py:1281 -#, python-format -msgid "%(username)s karma is %(reputation)s" -msgstr "%(username)s 积分是 %(reputation)s" - -#: models/__init__.py:1291 -#, python-format -msgid "one gold badge" -msgid_plural "%(count)d gold badges" -msgstr[0] "一块金牌" -msgstr[1] "%(count)d 金牌" - -#: models/__init__.py:1298 -#, python-format -msgid "one silver badge" -msgid_plural "%(count)d silver badges" -msgstr[0] "一块银牌" -msgstr[1] "%(count)d 银牌" - -#: models/__init__.py:1305 -#, python-format -msgid "one bronze badge" -msgid_plural "%(count)d bronze badges" -msgstr[0] "一块铜牌" -msgstr[1] "%(count)d 铜牌" - -#: models/__init__.py:1316 -#, python-format -msgid "%(item1)s and %(item2)s" -msgstr "%(item1)s 和 %(item2)s" - -#: models/__init__.py:1320 -#, python-format -msgid "%(user)s has %(badges)s" -msgstr "%(user)s 有 %(badges)s" - -#: models/__init__.py:1633 models/__init__.py:1639 models/__init__.py:1644 -#: models/__init__.py:1649 -#, python-format -msgid "Re: \"%(title)s\"" -msgstr "Re: \"%(title)s\"" - -#: models/__init__.py:1654 models/__init__.py:1659 -#, python-format -msgid "Question: \"%(title)s\"" -msgstr "问题:\"%(title)s\"" - -#: models/__init__.py:1844 -#, python-format -msgid "Congratulations, you have received a badge '%(badge_name)s'. Check out your profile." -msgstr "" -"恭喜,你获得一块'%(badge_name)s'徽章,查看你的资料." - -#: models/answer.py:105 -msgid "Sorry, the answer you are looking for is no longer available, because the parent question has been removed" -msgstr "对不起,你查找的问题已失效,因为问题已删除" - -#: models/answer.py:112 -msgid "Sorry, this answer has been removed and is no longer accessible" -msgstr "对不起,这个问题已删除" - -#: models/badges.py:128 -#, python-format -msgid "Deleted own post with %(votes)s or more upvotes" -msgstr "删除自己发布的有%(votes)s或更多推荐票的问题" - -#: models/badges.py:150 -#, python-format -msgid "Deleted own post with %(votes)s or more downvotes" -msgstr "删除自己发布的%(votes)s或更多反对票的信息" - -#: models/badges.py:173 -#, python-format -msgid "Received at least %(votes)s upvote for an answer for the first time" -msgstr "获取至少有%(votes)s推荐票的问题" - -#: models/badges.py:218 -msgid "First upvote" -msgstr "第一个赞成票" - -#: models/badges.py:227 -msgid "First downvote" -msgstr "第一个反对票" - -#: models/badges.py:236 -msgid "Civic Duty" -msgstr "居民义务" - -#: models/badges.py:237 -#, python-format -msgid "Voted %(num)s times" -msgstr "已投票%(num)s次" - -#: models/badges.py:251 -#, python-format -msgid "Answered own question with at least %(num)s up votes" -msgstr "自己回答的至少有%(num)s次推荐票的问题" - -#: models/badges.py:303 -msgid "Nice Answer" -msgstr "好回答" - -#: models/badges.py:308 models/badges.py:320 models/badges.py:332 -#, python-format -msgid "Answer voted up %(num)s times" -msgstr "该用户投的赞成票回答总数%(num)s" - -#: models/badges.py:344 models/badges.py:356 models/badges.py:368 -#, python-format -msgid "Question voted up %(num)s times" -msgstr "该用户投的赞成票问题总数%(num)s" - -#: models/badges.py:417 models/badges.py:428 models/badges.py:440 -#, python-format -msgid "Asked a question with %(views)s views" -msgstr "被查看 %(views)s次的问题" - -# close.html -#: models/badges.py:435 -msgid "Famous Question" -msgstr "著名问题" - -#: models/badges.py:449 -msgid "Asked a question and accepted an answer" -msgstr "提问的有正确答案的问题" - -#: models/badges.py:498 -#, python-format -msgid "First answer was accepted with %(num)s or more votes" -msgstr "第一个正确且被投了%(num)s或更多票的答案" - -#: models/badges.py:509 -#, python-format -msgid "Answer accepted with %(num)s or more votes" -msgstr "被接受的且被投了%(num)s或更多此的回答" - -#: models/badges.py:517 -#, python-format -msgid "Answered a question more than %(days)s days later with at least %(votes)s votes" -msgstr "问了一个超过%(days)s天且至少有%(votes)s投票的问题" - -#: models/badges.py:547 -msgid "Citizen Patrol" -msgstr "社区居民" - -#: models/badges.py:622 -msgid "Associate Editor" -msgstr "联合编辑" - -#: models/badges.py:626 -#, python-format -msgid "Edited %(num)s entries" -msgstr "编辑了%(num)s条目" - -#: models/badges.py:662 -#, python-format -msgid "Question favorited by %(num)s users" -msgstr "被%(num)s用户收藏的问题" - -#: models/badges.py:707 -msgid "Enthusiast" -msgstr "热心人" - -#: models/badges.py:710 -msgid "Visited site every day for 30 days in a row" -msgstr "过去30天每天都来访问网站的用户" - -#: models/badges.py:718 -msgid "Commentator" -msgstr "评论员" - -# todo - check if it's indeed plural -#: models/badges.py:721 -msgid "Posted 10 comments" -msgstr "已发布10条评论" - -#: models/meta.py:110 -msgid "Sorry, the comment you are looking for is no longer accessible, because the parent question has been removed" -msgstr "对不起,你查找的评论不能访问,因为问题已删除" - -#: models/meta.py:117 -msgid "Sorry, the comment you are looking for is no longer accessible, because the parent answer has been removed" -msgstr "对不起,你查找的评论不能访问,因为回答已删除" - -#: models/question.py:326 -msgid "Sorry, this question has been deleted and is no longer accessible" -msgstr "对不起,此问题已删除" - -#: models/question.py:715 -#, python-format -msgid "%(author)s modified the question" -msgstr "%(author)s修改了问题" - -#: models/question.py:719 -#, python-format -msgid "%(people)s posted %(new_answer_count)s new answers" -msgstr "%(people)s 发布了 %(new_answer_count)s 新答案" - -#: models/question.py:724 -#, python-format -msgid "%(people)s commented the question" -msgstr "%(people)s评论了问题" - -#: models/question.py:729 +#: models/question.py:922 #, python-format msgid "%(people)s commented answers" msgstr "%(people)s 评论了答案" -#: models/question.py:731 +#: models/question.py:924 #, python-format msgid "%(people)s commented an answer" msgstr "%(people)s 评论了答案" @@ -2645,136 +3400,143 @@ msgstr "被版主修改. 原因: %(reason)s" #: models/repute.py:153 #, python-format -msgid "%(points)s points were added for %(username)s's contribution to question %(question_title)s" +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 #, python-format -msgid "%(points)s points were subtracted for %(username)s's contribution to question %(question_title)s" +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:91 +#: models/tag.py:151 msgid "interesting" msgstr "感兴趣" -#: models/tag.py:91 +#: models/tag.py:151 msgid "ignored" msgstr "有趣的" -#: models/user.py:265 +#: models/user.py:264 msgid "Entire forum" msgstr "忽略的" -#: models/user.py:266 +#: models/user.py:265 msgid "Questions that I asked" msgstr "我问的问题" -#: models/user.py:267 +#: models/user.py:266 msgid "Questions that I answered" msgstr "我答的问题" -#: models/user.py:268 +#: models/user.py:267 msgid "Individually selected questions" msgstr "我选择的问题" -#: models/user.py:269 +#: models/user.py:268 msgid "Mentions and comment responses" msgstr "提醒及留言回复" -#: models/user.py:272 +#: models/user.py:271 msgid "Instantly" msgstr "立即" -#: models/user.py:273 +#: models/user.py:272 msgid "Daily" msgstr "每日" -#: models/user.py:274 +#: models/user.py:273 msgid "Weekly" msgstr "每周" -#: models/user.py:275 +#: models/user.py:274 msgid "No email" msgstr "没有邮件" #: skins/default/templates/404.jinja.html:3 -#: skins/default/templates/404.jinja.html:11 +#: skins/default/templates/404.jinja.html:10 msgid "Page not found" msgstr "此页未找到" -#: skins/default/templates/404.jinja.html:15 +#: skins/default/templates/404.jinja.html:13 msgid "Sorry, could not find the page you requested." msgstr "对不起,没有找到您请求的页面!" -#: skins/default/templates/404.jinja.html:17 +#: skins/default/templates/404.jinja.html:15 msgid "This might have happened for the following reasons:" msgstr "有可能是以下原因导致:" -#: skins/default/templates/404.jinja.html:19 +#: skins/default/templates/404.jinja.html:17 msgid "this question or answer has been deleted;" msgstr "你正在查看的问题或答案已经被删除;" -#: skins/default/templates/404.jinja.html:20 +#: skins/default/templates/404.jinja.html:18 msgid "url has error - please check it;" msgstr "请求的地址有误 - 请核实原始URL地址;" -#: skins/default/templates/404.jinja.html:21 -msgid "the page you tried to visit is protected or you don't have sufficient points, see" -msgstr "访问的页面被保护或你的积分不够,参见" +#: skins/default/templates/404.jinja.html:19 +msgid "" +"the page you tried to visit is protected or you don't have sufficient " +"points, see" +msgstr "访问的页面被保护或你的积分不够,参见" -#: skins/default/templates/404.jinja.html:21 -#: skins/default/templates/footer.html:6 -#: skins/default/templates/question_edit_tips.html:16 +#: skins/default/templates/404.jinja.html:19 +#: skins/default/templates/blocks/footer.html:5 +#: skins/default/templates/blocks/header_meta_links.html:13 +#: skins/default/templates/blocks/question_edit_tips.html:15 msgid "faq" msgstr "常见问题" -#: skins/default/templates/404.jinja.html:22 +#: skins/default/templates/404.jinja.html:20 msgid "if you believe this error 404 should not have occured, please" msgstr "如果你确信不该出现404错误,请" -#: skins/default/templates/404.jinja.html:23 +#: skins/default/templates/404.jinja.html:21 msgid "report this problem" msgstr "报告这个问题" -#: skins/default/templates/404.jinja.html:32 -#: skins/default/templates/500.jinja.html:13 +#: skins/default/templates/404.jinja.html:30 +#: skins/default/templates/500.jinja.html:11 msgid "back to previous page" msgstr "返回前页" -#: skins/default/templates/404.jinja.html:33 -#: skins/default/templates/questions.html:13 +#: skins/default/templates/404.jinja.html:31 +#: skins/default/templates/main_page/tab_bar.html:9 msgid "see all questions" msgstr "查看最新问题" -#: skins/default/templates/404.jinja.html:34 +#: skins/default/templates/404.jinja.html:32 msgid "see all tags" msgstr "查看标签列表" #: skins/default/templates/500.jinja.html:3 -#: skins/default/templates/500.jinja.html:6 +#: skins/default/templates/500.jinja.html:5 msgid "Internal server error" msgstr "服务器内部错误" -#: skins/default/templates/500.jinja.html:10 +#: skins/default/templates/500.jinja.html:8 msgid "system error log is recorded, error will be fixed as soon as possible" msgstr "系统错误日志已记录,此错误将尽快被解决" -#: skins/default/templates/500.jinja.html:11 +#: skins/default/templates/500.jinja.html:9 msgid "please report the error to the site administrators if you wish" msgstr "请报告这些错误给网站管理员" -#: skins/default/templates/500.jinja.html:14 +#: skins/default/templates/500.jinja.html:12 msgid "see latest questions" msgstr "最新问题" -#: skins/default/templates/500.jinja.html:15 +#: skins/default/templates/500.jinja.html:13 msgid "see tags" msgstr "查看标签" -# footer.html -#: skins/default/templates/about.html:3 skins/default/templates/about.html:6 -msgid "About" -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 @@ -2782,616 +3544,447 @@ msgid "Edit answer" msgstr "修改回答" #: skins/default/templates/answer_edit.html:10 -#: skins/default/templates/question_edit.html:10 -#: skins/default/templates/question_retag.html:6 +#: skins/default/templates/question_edit.html:9 +#: skins/default/templates/question_retag.html:5 #: skins/default/templates/revisions.html:7 msgid "back" msgstr "返回" -#: skins/default/templates/answer_edit.html:15 -#: skins/default/templates/question_edit.html:14 +#: skins/default/templates/answer_edit.html:14 msgid "revision" msgstr "版本" -#: skins/default/templates/answer_edit.html:18 -#: skins/default/templates/question_edit.html:19 +#: skins/default/templates/answer_edit.html:17 +#: skins/default/templates/question_edit.html:16 msgid "select revision" msgstr "选择版本" # synonym of above in Edit question -#: skins/default/templates/answer_edit.html:22 -#: skins/default/templates/question_edit.html:28 +#: skins/default/templates/answer_edit.html:21 +#: skins/default/templates/question_edit.html:27 msgid "Save edit" msgstr "现在修改" -#: skins/default/templates/answer_edit.html:23 -#: skins/default/templates/close.html:19 -#: skins/default/templates/feedback.html:45 -#: skins/default/templates/question_edit.html:29 -#: skins/default/templates/question_retag.html:26 -#: skins/default/templates/reopen.html:30 -#: skins/default/templates/user_edit.html:76 +#: skins/default/templates/answer_edit.html:22 +#: skins/default/templates/close.html:16 +#: skins/default/templates/feedback.html:42 +#: skins/default/templates/question_edit.html:28 +#: skins/default/templates/question_retag.html:22 +#: skins/default/templates/reopen.html:27 +#: skins/default/templates/subscribe_for_tags.html:16 #: skins/default/templates/authopenid/changeemail.html:38 +#: skins/default/templates/user_profile/user_edit.html:84 msgid "Cancel" msgstr "取消" -#: skins/default/templates/answer_edit.html:59 -#: skins/default/templates/answer_edit.html:62 -#: skins/default/templates/ask.html:36 skins/default/templates/ask.html:39 -#: skins/default/templates/macros.html:445 -#: skins/default/templates/question.html:462 -#: skins/default/templates/question.html:465 -#: skins/default/templates/question_edit.html:63 -#: skins/default/templates/question_edit.html:66 +#: skins/default/templates/answer_edit.html:60 +#: skins/default/templates/answer_edit.html:63 +#: skins/default/templates/ask.html:46 skins/default/templates/ask.html:49 +#: skins/default/templates/macros.html:698 +#: skins/default/templates/question.html:562 +#: skins/default/templates/question.html:565 +#: skins/default/templates/question_edit.html:72 +#: skins/default/templates/question_edit.html:75 msgid "hide preview" msgstr "禁用预览" -#: skins/default/templates/answer_edit.html:62 -#: skins/default/templates/ask.html:39 -#: skins/default/templates/question.html:465 -#: skins/default/templates/question_edit.html:66 +#: skins/default/templates/answer_edit.html:63 +#: skins/default/templates/ask.html:49 +#: skins/default/templates/question.html:565 +#: skins/default/templates/question_edit.html:75 msgid "show preview" msgstr "启用预览" -#: skins/default/templates/answer_edit_tips.html:3 -msgid "answer tips" -msgstr "受欢迎的提问" - -#: skins/default/templates/answer_edit_tips.html:6 -msgid "please make your answer relevant to this community" -msgstr "请确认你的答案和这个主题相关" - -#: skins/default/templates/answer_edit_tips.html:9 -msgid "try to give an answer, rather than engage into a discussion" -msgstr "建议您提的问题是可以被答复的,而不仅仅是可以讨论。" - -#: skins/default/templates/answer_edit_tips.html:12 -msgid "please try to provide details" -msgstr "请详细描述您的问题" - -#: skins/default/templates/answer_edit_tips.html:15 -#: skins/default/templates/question_edit_tips.html:12 -msgid "be clear and concise" -msgstr "我们推荐您使用中文描述问题,这样可以得到更多的答复机会。" - -#: skins/default/templates/answer_edit_tips.html:19 -#: skins/default/templates/question_edit_tips.html:16 -msgid "see frequently asked questions" -msgstr "查看常见问题" - -#: skins/default/templates/answer_edit_tips.html:25 -#: skins/default/templates/question_edit_tips.html:22 -msgid "Markdown tips" -msgstr "标记栏参考" - -#: skins/default/templates/answer_edit_tips.html:29 -#: skins/default/templates/question_edit_tips.html:26 -msgid "*italic*" -msgstr "*斜体*表示*号内字体为斜体" - -#: skins/default/templates/answer_edit_tips.html:32 -#: skins/default/templates/question_edit_tips.html:29 -msgid "**bold**" -msgstr "**粗体**表示2个*号内字体为粗体" - -#: skins/default/templates/answer_edit_tips.html:36 -#: skins/default/templates/question_edit_tips.html:33 -msgid "*italic* or _italic_" -msgstr "*斜体* , _斜体_表示*号或_号内字体为斜体" - -#: skins/default/templates/answer_edit_tips.html:39 -#: skins/default/templates/question_edit_tips.html:36 -msgid "**bold** or __bold__" -msgstr "**加粗** 或者 __加粗__ " - -#: skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/question_edit_tips.html:40 -msgid "link" -msgstr "链接" - -#: skins/default/templates/answer_edit_tips.html:43 -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:40 -#: skins/default/templates/question_edit_tips.html:45 -msgid "text" -msgstr "文本" - -#: skins/default/templates/answer_edit_tips.html:47 -#: skins/default/templates/question_edit_tips.html:45 -msgid "image" -msgstr "图片" - -#: skins/default/templates/answer_edit_tips.html:51 -#: skins/default/templates/question_edit_tips.html:49 -msgid "numbered list:" -msgstr "列表:" - -#: skins/default/templates/answer_edit_tips.html:56 -#: skins/default/templates/question_edit_tips.html:54 -msgid "basic HTML tags are also supported" -msgstr "支持基本的HTML标签" - -#: skins/default/templates/answer_edit_tips.html:60 -#: skins/default/templates/question_edit_tips.html:58 -msgid "learn more about Markdown" -msgstr "有关Markdown详细说明" - -#: skins/default/templates/ask.html:3 +#: skins/default/templates/ask.html:4 msgid "Ask a question" msgstr "我要提问" -#: skins/default/templates/ask_form.html:7 -msgid "login to post question info" -msgstr "登录并提交问题" - -#: skins/default/templates/ask_form.html:11 -#, python-format -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/ask_form.html:27 -msgid "Login/signup to post your question" -msgstr "登录并发布问题" - -#: skins/default/templates/ask_form.html:29 -msgid "Ask your question" -msgstr "现在提问" - -#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:11 -#: skins/default/templates/badges.html:28 -#: skins/default/templates/user_recent.html:13 -#: skins/default/templates/user_stats.html:88 +#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:8 +#: skins/default/templates/user_profile/user_recent.html:16 +#: skins/default/templates/user_profile/user_stats.html:110 #, python-format msgid "%(name)s" msgstr "%(name)s" -#: skins/default/templates/badge.html:4 skins/default/templates/badge.html:7 +#: skins/default/templates/badge.html:4 msgid "Badge" msgstr "奖牌" -#: skins/default/templates/badge.html:11 -#: skins/default/templates/badges.html:27 -#: skins/default/templates/badges.html:31 -#: skins/default/templates/user_recent.html:13 -#: skins/default/templates/user_stats.html:88 +#: skins/default/templates/badge.html:6 +#, fuzzy, python-format +msgid "Badge \"%(name)s\"" +msgstr "%(name)s" + +#: skins/default/templates/badge.html:8 +#: skins/default/templates/user_profile/user_recent.html:16 +#: skins/default/templates/user_profile/user_stats.html:108 #, python-format msgid "%(description)s" msgstr "%(description)s" -#: skins/default/templates/badge.html:16 +#: skins/default/templates/badge.html:13 msgid "user received this badge:" 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:6 +#: skins/default/templates/badges.html:5 msgid "Badges" msgstr "奖牌" -#: skins/default/templates/badges.html:10 +#: skins/default/templates/badges.html:7 msgid "Community gives you awards for your questions, answers and votes." msgstr "提出问题,给予回答,投出你的票 - 社区会对你的表现,授予你各类奖牌。" -#: skins/default/templates/badges.html:11 -#, python-format +#: skins/default/templates/badges.html:8 +#, 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 "这里列出社区所有的奖牌,以及每类奖牌获取的所需条件。点击这里<\\a>给我们反馈。" - -#: skins/default/templates/badges.html:27 -#, python-format -msgid "%(type)s" -msgstr "%(type)s" +"of times each type of badge has been awarded. Give us feedback at " +"%(feedback_faq_url)s.\n" +msgstr "" +"这里列出社区所有的奖牌,以及每类奖牌获取的所需条件。点击这里<\\a>给我们反馈。" -#: skins/default/templates/badges.html:40 +#: skins/default/templates/badges.html:35 msgid "Community badges" msgstr "奖牌等级" -#: skins/default/templates/badges.html:43 +#: skins/default/templates/badges.html:37 msgid "gold badge: the highest honor and is very rare" msgstr "金牌:十分罕见之最高奖励" -#: skins/default/templates/badges.html:46 +#: skins/default/templates/badges.html:40 msgid "gold badge description" msgstr "金牌:十分罕见之最高奖励" -#: skins/default/templates/badges.html:51 -msgid "silver badge: occasionally awarded for the very high quality contributions" +#: skins/default/templates/badges.html:45 +msgid "" +"silver badge: occasionally awarded for the very high quality contributions" msgstr "银牌:偶尔颁发之优质奖章" -#: skins/default/templates/badges.html:55 +#: skins/default/templates/badges.html:49 msgid "silver badge description" msgstr "银牌:偶尔颁发之优质奖章" -#: skins/default/templates/badges.html:58 +#: skins/default/templates/badges.html:52 msgid "bronze badge: often given as a special honor" msgstr "铜牌:时常授予之特殊荣誉" -#: skins/default/templates/badges.html:62 +#: skins/default/templates/badges.html:56 msgid "bronze badge description" msgstr "铜牌:时常授予之特殊荣誉" # close.html -#: skins/default/templates/close.html:3 skins/default/templates/close.html:6 +#: skins/default/templates/close.html:3 skins/default/templates/close.html:5 msgid "Close question" msgstr "关闭问题" -#: skins/default/templates/close.html:9 +#: skins/default/templates/close.html:6 msgid "Close the question" msgstr "由于以下原因,你要关闭这个问题" -#: skins/default/templates/close.html:14 +#: skins/default/templates/close.html:11 msgid "Reasons" msgstr "原因" -#: skins/default/templates/close.html:18 +#: skins/default/templates/close.html:15 msgid "OK to close" msgstr "确定关闭" -#: skins/default/templates/editor_data.html:8 -#, 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" -msgstr[1] "每个标签的长度不超过%(max_chars)s" - -#: skins/default/templates/editor_data.html:10 -#, python-format -msgid "please use %(tag_count)s tag" -msgid_plural "please use %(tag_count)s tags or less" -msgstr[0] "最多只能有%(tag_count)s个标签" -msgstr[1] "最多只能有%(tag_count)s个标签" - -# todo: remove magic numbers from this file -#: skins/default/templates/editor_data.html:11 -#, 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/faq.html:3 skins/default/templates/faq.html.py:6 +#: skins/default/templates/faq.html:3 +#: skins/default/templates/faq_static.html:3 +#: skins/default/templates/faq_static.html:5 msgid "FAQ" msgstr "问答" -#: skins/default/templates/faq.html:6 +#: skins/default/templates/faq_static.html:5 msgid "Frequently Asked Questions " msgstr "常见问题" -#: skins/default/templates/faq.html:11 +#: skins/default/templates/faq_static.html:6 msgid "What kinds of questions can I ask here?" msgstr "我可以在这里提问什么样的问题?" -#: skins/default/templates/faq.html:12 -msgid "Most importanly - questions should be relevant to this community." +#: skins/default/templates/faq_static.html:7 +msgid "" +"Most importanly - questions should be relevant to this " +"community." msgstr "毫无疑问,首先必须是和此社区相关问题" -#: skins/default/templates/faq.html:13 -msgid "Before asking the question - please make sure to use search to see whether your question has alredy been answered." -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." +msgstr "" +"提问之前,充分利用系统的自动查找、标签和搜索,看看是否已经有一样的问题并有了" +"答案。" -#: skins/default/templates/faq.html:15 +#: skins/default/templates/faq_static.html:10 msgid "What questions should I avoid asking?" msgstr "什么样的问题我不该在这里提问?" -#: skins/default/templates/faq.html:16 -msgid "Please avoid asking questions that are not relevant to this community, too subjective and argumentative." -msgstr "请避免引起争吵或太过于主观性等违背社区宗旨的内容。" +#: skins/default/templates/faq_static.html:11 +msgid "" +"Please avoid asking questions that are not relevant to this community, too " +"subjective and argumentative." +msgstr "" +"请避免引起争吵或太过于主观性等违背社区宗旨的内容。" -#: skins/default/templates/faq.html:20 +#: skins/default/templates/faq_static.html:13 msgid "What should I avoid in my answers?" msgstr "什么样的回答是不受欢迎的?" -#: skins/default/templates/faq.html:21 -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 "希望用户针对提问的问题回答,可以是进一步了解问题实质,给予参考方案,或完全解决问题的回答。我们希望通过问答的形式解决用户的实际问题。因此,我们不欢迎在回答中出现不是回答问题的内容,包括针对他人回答的讨论,和其他无意义的浪费网络资源行为。" +#: 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 "" +"希望用户针对提问的问题回答,可以是进一步了解问题实质,给予参考方案,或完全解" +"决问题的回答。我们希望通过问答的形式解决用户的实际问题。因此,我们不欢迎在回" +"答中出现不是回答问题的内容,包括针对他人回答的讨论,和其他无意义的浪费网络资" +"源行为。" -#: skins/default/templates/faq.html:24 +#: skins/default/templates/faq_static.html:15 msgid "Who moderates this community?" msgstr "谁是社区的管理员?" -#: skins/default/templates/faq.html:25 +#: skins/default/templates/faq_static.html:16 msgid "The short answer is: you." msgstr "答案是:每个用户。" -#: skins/default/templates/faq.html:26 +#: skins/default/templates/faq_static.html:17 msgid "This website is moderated by the users." msgstr "社区没有严格意义上的管理员身份。" -#: skins/default/templates/faq.html:27 -msgid "The reputation system allows users earn the authorization to perform a variety of moderation tasks." -msgstr "通过积分运作,每个用户都有权限创建标签,对所有问题、回答投票、编辑、关闭等操作。" +#: skins/default/templates/faq_static.html:18 +msgid "" +"The reputation system allows users earn the authorization to perform a " +"variety of moderation tasks." +msgstr "" +"通过积分运作,每个用户都有权限创建标签,对所有问题、回答投票、编辑、关闭等操" +"作。" -#: skins/default/templates/faq.html:32 +#: skins/default/templates/faq_static.html:20 msgid "How does reputation system work?" msgstr "什么是社区积分?" -#: skins/default/templates/faq.html:33 +#: skins/default/templates/faq_static.html:21 msgid "Rep system summary" msgstr "更新概要:" -#: skins/default/templates/faq.html:34 +#: 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 %(REP_GAIN_FOR_RECEIVING_UPVOTE)s points, each vote against will subtract %(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s points. There is a limit of %(MAX_REP_GAIN_PER_USER_PER_DAY)s 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." +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 " +"%(REP_GAIN_FOR_RECEIVING_UPVOTE)s points, each vote against will " +"subtract %(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s points. There " +"is a limit of %(MAX_REP_GAIN_PER_USER_PER_DAY)s 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 "" -"例如,如果你问一个有趣的问题或给别人一个有帮助的答案,你的输入将被投赞成票。否则你的答案是误导的,你将被投反对票。\n" -"每个赞成票将增加%(REP_GAIN_FOR_RECEIVING_UPVOTE)s分,每个反对票将减去%(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s分,\n" -"每个问题或答案都将有一个%(MAX_REP_GAIN_PER_USER_PER_DAY)s分限制。下表解释了每个相应动作的积分要求:" - -#: skins/default/templates/faq.html:44 -#: skins/default/templates/user_votes.html:10 +"例如,如果你问一个有趣的问题或给别人一个有帮助的答案,你的输入将被投赞成票。" +"否则你的答案是误导的,你将被投反对票。\n" +"每个赞成票将增加%(REP_GAIN_FOR_RECEIVING_UPVOTE)s分,每个反" +"对票将减去%(REP_LOSS_FOR_RECEIVING_DOWNVOTE)s分,\n" +"每个问题或答案都将有一个%(MAX_REP_GAIN_PER_USER_PER_DAY)s分" +"限制。下表解释了每个相应动作的积分要求:" + +#: skins/default/templates/faq_static.html:32 +#: skins/default/templates/user_profile/user_votes.html:13 msgid "upvote" msgstr "投赞成票" -#: skins/default/templates/faq.html:49 +#: skins/default/templates/faq_static.html:37 msgid "use tags" msgstr "标记垃圾帖" # todo - check if it's indeed plural -#: skins/default/templates/faq.html:54 +#: skins/default/templates/faq_static.html:42 msgid "add comments" msgstr "添加评论" -#: skins/default/templates/faq.html:58 -#: skins/default/templates/user_votes.html:12 +#: skins/default/templates/faq_static.html:46 +#: skins/default/templates/user_profile/user_votes.html:15 msgid "downvote" msgstr "投反对票" -#: skins/default/templates/faq.html:61 +#: skins/default/templates/faq_static.html:49 +#, fuzzy +msgid " accept own answer to own questions" +msgstr "自己接受的第一个回答" + +#: skins/default/templates/faq_static.html:53 msgid "open and close own questions" msgstr "打开关闭任何人的问题" -#: skins/default/templates/faq.html:65 +#: skins/default/templates/faq_static.html:57 msgid "retag other's questions" msgstr "整理标签" -#: skins/default/templates/faq.html:70 +#: skins/default/templates/faq_static.html:62 msgid "edit community wiki questions" msgstr "编辑wiki类问题" -#: skins/default/templates/faq.html:75 -msgid "edit any answer" +#: skins/default/templates/faq_static.html:67 +#, fuzzy +msgid "\"edit any answer" msgstr "编辑问题" -#: skins/default/templates/faq.html:79 -msgid "delete any comment" +#: skins/default/templates/faq_static.html:71 +#, fuzzy +msgid "\"delete any comment" msgstr "删除评论" -#: skins/default/templates/faq.html:86 -msgid "how to validate email title" -msgstr "如何验证邮件标题" - -#: skins/default/templates/faq.html:88 -#, python-format -msgid "how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)s" -msgstr "如何使用%(send_email_key_url)s %(gravatar_faq_url)s验证邮件信息" - -#: skins/default/templates/faq.html:93 +#: skins/default/templates/faq_static.html:74 msgid "what is gravatar" msgstr "什么是图像及如何修改?" -#: skins/default/templates/faq.html:94 +#: skins/default/templates/faq_static.html:75 msgid "gravatar faq info" msgstr "图像常见问题" -#: skins/default/templates/faq.html:97 +#: skins/default/templates/faq_static.html:76 msgid "To register, do I need to create new password?" msgstr "我需要注册一个新用户吗?" -#: skins/default/templates/faq.html:98 -msgid "No, you don't have to. You can login through any service that supports OpenID, e.g. Google, Yahoo, AOL, etc.\"" -msgstr "不需要。社区提供了OpenID的登录支持,你要用Google、Yahoo等任何支持OpenID登录的帐号就可以使用系统。" +#: skins/default/templates/faq_static.html:77 +msgid "" +"No, you don't have to. You can login through any service that supports " +"OpenID, e.g. Google, Yahoo, AOL, etc.\"" +msgstr "" +"不需要。社区提供了OpenID的登录支持,你要用Google、Yahoo等任何支持OpenID登录的" +"帐号就可以使用系统。" -#: skins/default/templates/faq.html:99 +#: skins/default/templates/faq_static.html:78 msgid "\"Login now!\"" msgstr "马上登录" -#: skins/default/templates/faq.html:103 +#: skins/default/templates/faq_static.html:80 msgid "Why other people can edit my questions/answers?" msgstr "为什么其他人可以修改我的问题/回答?" -#: skins/default/templates/faq.html:104 +#: skins/default/templates/faq_static.html:81 msgid "Goal of this site is..." msgstr "此网站的木的是帮助大家更好更全面的解决自己的问题。" -#: skins/default/templates/faq.html:104 -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:81 +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.html:105 +#: skins/default/templates/faq_static.html:82 msgid "If this approach is not for you, we respect your choice." msgstr "如果您不喜欢这种方式,我们尊重你的选择。" -#: skins/default/templates/faq.html:109 +#: skins/default/templates/faq_static.html:84 msgid "Still have questions?" msgstr "还有其他问题?" -#: skins/default/templates/faq.html:110 +#: skins/default/templates/faq_static.html:85 #, python-format -msgid "Please ask your question at %(ask_question_url)s, help make our community better!" -msgstr "请提交你的疑问<\\a>,帮助我们一起完善网站" - -#: skins/default/templates/faq.html:112 -#: skins/default/templates/header.html:100 -msgid "questions" -msgstr "问题" - -#: skins/default/templates/faq.html:112 -msgid "." -msgstr "。" +msgid "" +"Please ask your question at %(ask_question_url)s, help make our community " +"better!" +msgstr "" +"请提交你的疑问<\\a>,帮助我们一起完善网站" #: skins/default/templates/feedback.html:3 msgid "Feedback" msgstr "问题反馈" -#: skins/default/templates/feedback.html:6 +#: skins/default/templates/feedback.html:5 msgid "Give us your feedback!" msgstr "反馈" -#: skins/default/templates/feedback.html:12 -#, python-format +#: skins/default/templates/feedback.html:9 +#, fuzzy, python-format msgid "" "\n" -" Dear %(user_name)s, we look forward to hearing your feedback. \n" -" Please type and send us your message below.\n" -" " +" Dear %(user_name)s, we look forward " +"to hearing your feedback. \n" +" Please type and send us your message below.\n" +" " msgstr "" "\n" -"亲爱的 %(user_name)s, 我们盼望收到你的反馈. \n" +"亲爱的 %(user_name)s, 我们盼望收到你的反" +"馈. \n" "请发送你的反馈信息给我们,以帮助我们更好的改进." -#: skins/default/templates/feedback.html:19 +#: skins/default/templates/feedback.html:16 +#, fuzzy msgid "" "\n" -" Dear visitor, we look forward to hearing your feedback.\n" -" Please type and send us your message below.\n" -" " +" Dear visitor, we look forward to " +"hearing your feedback.\n" +" Please type and send us your message below.\n" +" " msgstr "" "\n" " 亲爱的访客, 我们盼望收到你的反馈. \n" "请发送你的反馈信息给我们,以帮助我们更好的改进 ." -#: skins/default/templates/feedback.html:28 +#: skins/default/templates/feedback.html:25 msgid "(please enter a valid email)" msgstr "请输入正确的email地址" -#: skins/default/templates/feedback.html:36 +#: skins/default/templates/feedback.html:33 msgid "(this field is required)" msgstr "必填项" -#: skins/default/templates/feedback.html:44 +#: skins/default/templates/feedback.html:41 msgid "Send Feedback" msgstr "问题反馈" -#: skins/default/templates/feedback_email.txt:3 -#, python-format +#: skins/default/templates/feedback_email.txt:2 +#, fuzzy, python-format msgid "" "\n" -"Hello, this is a %(site_title)s forum feedback message\n" +"Hello, this is a %(site_title)s forum feedback message.\n" msgstr "" "\n" "你好, 这是从 %(site_title)s 网站发出的反馈信息。\n" -#: skins/default/templates/feedback_email.txt:9 -msgid "Sender is" -msgstr "发件人" - -#: skins/default/templates/feedback_email.txt:11 -#: skins/default/templates/feedback_email.txt:14 -msgid "email" -msgstr "邮件" - -#: skins/default/templates/feedback_email.txt:13 -msgid "anonymous" -msgstr "匿名" - -#: skins/default/templates/feedback_email.txt:19 -msgid "Message body:" -msgstr "内容:" - -# footer.html -#: skins/default/templates/footer.html:5 -msgid "about" -msgstr "关于本站" - -#: skins/default/templates/footer.html:7 -msgid "privacy policy" -msgstr "隐私政策" - -#: skins/default/templates/footer.html:16 -msgid "give feedback" -msgstr "问题反馈" - -#: skins/default/templates/header.html:13 -#, python-format -msgid "responses for %(username)s" -msgstr "回应%(username)s" - -#: skins/default/templates/header.html:16 -#, python-format -msgid "you have a new response" -msgid_plural "you nave %(response_count)s new responses" -msgstr[0] "你有一个新回应" -msgstr[1] "你有 %(response_count)s 个新回应" - -#: skins/default/templates/header.html:19 -msgid "no new responses yet" -msgstr "仍没有回应" - -#: skins/default/templates/header.html:31 -#: skins/default/templates/header.html:32 -#, python-format -msgid "%(new)s new flagged posts and %(seen)s previous" -msgstr "%(new)s 新标记的发布和之前查看的 %(seen)s" - -#: skins/default/templates/header.html:34 -#: skins/default/templates/header.html:35 -#, python-format -msgid "%(new)s new flagged posts" -msgstr "%(new)s 新标记的发布信息" - -#: skins/default/templates/header.html:40 -#: skins/default/templates/header.html:41 -#, python-format -msgid "%(seen)s flagged posts" -msgstr "\"%(seen)s 已标记的发布信息" - -#: skins/default/templates/header.html:54 -msgid "sign out from askbot" -msgstr "退出" - -#: skins/default/templates/header.html:55 -msgid "logout" -msgstr "退出登录" - -#: skins/default/templates/header.html:58 -msgid "Please, sign in or Join askbot!" -msgstr "请登录" - -#: skins/default/templates/header.html:59 -msgid "login" -msgstr "登录" - -#: skins/default/templates/header.html:79 -msgid "please help translate! see credits" -msgstr "请帮忙翻译" - -# book.html line 123 must be empty in english -#: skins/default/templates/header.html:81 -msgid "settings" -msgstr "设置" - -#: skins/default/templates/header.html:90 -msgid "back to home page" -msgstr "回到首页" - -#: skins/default/templates/header.html:91 -#, python-format -msgid "%(site)s logo" -msgstr "%(site)s logo" +#: skins/default/templates/import_data.html:2 +#: skins/default/templates/import_data.html:4 +msgid "Import StackExchange data" +msgstr "" -#: skins/default/templates/header.html:110 -msgid "users" -msgstr "用户" +#: skins/default/templates/import_data.html:13 +msgid "" +"Warning: if your database is not empty, please back it up\n" +" before attempting this operation." +msgstr "" -#: skins/default/templates/header.html:115 -msgid "badges" -msgstr "奖牌榜" +#: skins/default/templates/import_data.html:16 +msgid "" +"Upload your stackexchange dump .zip file, then wait until\n" +" the data import completes. This process may take several minutes.\n" +" Please note that feedback will be printed in plain text.\n" +" " +msgstr "" -#: skins/default/templates/header.html:120 -msgid "ask a question" -msgstr "我要提问" +#: skins/default/templates/import_data.html:25 +msgid "Import data" +msgstr "" -#: skins/default/templates/input_bar.html:32 -msgid "search" -msgstr "搜索" +#: 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: python manage." +"py load_stackexchange path/to/your-data.zip" +msgstr "" #: skins/default/templates/instant_notification.html:1 #, python-format @@ -3402,19 +3995,23 @@ msgstr "

        亲爱的 %(receiving_user_name)s,

        " #, python-format msgid "" "\n" -"

        %(update_author_name)s left a new comment:

        \n" +"

        %(update_author_name)s left a new comment:\n" msgstr "" "\n" -"

        %(update_author_name)s 留下一个新留言,点击 新留言

        \n" +"

        %(update_author_name)s 留下一个新留言,点击 新留" +"言

        \n" #: skins/default/templates/instant_notification.html:8 #, python-format msgid "" "\n" -"

        %(update_author_name)s left a new comment

        \n" +"

        %(update_author_name)s left a new comment\n" msgstr "" "\n" -"

        %(update_author_name)s 留下一个新留言,点击 新留言

        \n" +"

        %(update_author_name)s 留下一个新留言,点击 新留" +"言

        \n" #: skins/default/templates/instant_notification.html:13 #, python-format @@ -3465,8 +4062,10 @@ msgstr "" msgid "" "\n" "
        %(content_preview)s
        \n" -"

        Please note - you can easily change\n" -"how often you receive these notifications or unsubscribe. Thank you for your interest in our forum!

        \n" +"

        Please note - you can easily change\n" +"how often you receive these notifications or unsubscribe. Thank you for your " +"interest in our forum!

        \n" msgstr "" "\n" "
        %(content_preview)s
        \n" @@ -3477,59 +4076,77 @@ msgstr "" msgid "

        Sincerely,
        Forum Administrator

        " msgstr "

        忠实的
        网站管理员

        " -#: skins/default/templates/logout.html:3 skins/default/templates/logout.html:6 -msgid "Logout" -msgstr "退出登录" +#: skins/default/templates/macros.html:25 +#, fuzzy, python-format +msgid "Share this question on %(site)s" +msgstr "发布我的提问到Twitter" + +#: skins/default/templates/macros.html:36 +#, python-format +msgid "follow %(alias)s" +msgstr "" -#: skins/default/templates/logout.html:9 -msgid "As a registered user you can login with your OpenID, log out of the site or permanently remove your account." -msgstr "您是系统的注册用户,可以随时使用OpenID帐号登录系统或者注销登录。" +#: skins/default/templates/macros.html:39 +#, python-format +msgid "unfollow %(alias)s" +msgstr "" -#: skins/default/templates/logout.html:10 -msgid "Logout now" -msgstr "点击退出登录" +#: skins/default/templates/macros.html:40 +#, python-format +msgid "following %(alias)s" +msgstr "" -#: skins/default/templates/macros.html:26 +#: skins/default/templates/macros.html:63 msgid "karma:" msgstr "按积分排序" -#: skins/default/templates/macros.html:30 +#: skins/default/templates/macros.html:67 msgid "badges:" msgstr "奖牌榜" -#: skins/default/templates/macros.html:52 -#: skins/default/templates/macros.html:53 +#: skins/default/templates/macros.html:143 +#: skins/default/templates/macros.html:144 msgid "previous" msgstr "上一页" -#: skins/default/templates/macros.html:64 +#: skins/default/templates/macros.html:155 msgid "current page" msgstr "当前页" -#: skins/default/templates/macros.html:66 -#: skins/default/templates/macros.html:73 +#: skins/default/templates/macros.html:157 +#: skins/default/templates/macros.html:164 #, python-format msgid "page number %(num)s" msgstr "第%(num)s页" -#: skins/default/templates/macros.html:77 +#: skins/default/templates/macros.html:168 msgid "next page" msgstr "下一页" -#: skins/default/templates/macros.html:88 +#: skins/default/templates/macros.html:179 msgid "posts per page" msgstr "每页显示:" -#: skins/default/templates/macros.html:119 templatetags/extra_tags.py:44 +#: skins/default/templates/macros.html:211 templatetags/extra_tags.py:43 #, python-format msgid "%(username)s gravatar image" msgstr "%(username)s 图像" -#: skins/default/templates/macros.html:142 +#: skins/default/templates/macros.html:220 +#, fuzzy, python-format +msgid "%(username)s's website is %(url)s" +msgstr "%(username)s当前的状态是 \"%(status)s\"" + +#: skins/default/templates/macros.html:232 +#, fuzzy +msgid "anonymous user" +msgstr "匿名" + +#: skins/default/templates/macros.html:260 msgid "this post is marked as community wiki" msgstr "这个发布像社区wiki被标记" -#: skins/default/templates/macros.html:145 +#: skins/default/templates/macros.html:263 #, python-format msgid "" "This post is a wiki.\n" @@ -3538,574 +4155,489 @@ msgstr "" "这个发布是wiki.\n" "任何积分为 >%(wiki_min_rep)s 都可以改进它." -#: skins/default/templates/macros.html:151 +#: skins/default/templates/macros.html:269 msgid "asked" msgstr "提问于" -#: skins/default/templates/macros.html:153 +#: skins/default/templates/macros.html:271 msgid "answered" msgstr "回答" -#: skins/default/templates/macros.html:155 +#: skins/default/templates/macros.html:273 msgid "posted" msgstr "发布" -#: skins/default/templates/macros.html:185 +#: skins/default/templates/macros.html:303 msgid "updated" msgstr "更新于" -#: skins/default/templates/macros.html:210 -#: skins/default/templates/unused/questions_ajax.html:23 views/readers.py:250 -msgid "vote" -msgid_plural "votes" -msgstr[0] "票" -msgstr[1] "票" - -#: skins/default/templates/macros.html:227 -#: skins/default/templates/unused/questions_ajax.html:43 views/readers.py:253 -msgid "answer" -msgid_plural "answers" -msgstr[0] "回答" -msgstr[1] "回答" - -#: skins/default/templates/macros.html:239 -#: skins/default/templates/unused/questions_ajax.html:55 views/readers.py:256 -msgid "view" -msgid_plural "views" -msgstr[0] "浏览" -msgstr[1] "浏览" - # this is how above two are supposed to be -#: skins/default/templates/macros.html:251 -#: skins/default/templates/question.html:88 -#: skins/default/templates/tags.html:38 -#: skins/default/templates/unused/question_list.html:64 -#: skins/default/templates/unused/question_summary_list_roll.html:52 -#: skins/default/templates/unused/questions_ajax.html:68 +#: skins/default/templates/macros.html:379 #, python-format msgid "see questions tagged '%(tag)s'" msgstr "查看有关%(tag)s的问题" -#: skins/default/templates/macros.html:267 -#: skins/default/templates/question.html:94 -#: skins/default/templates/question.html:250 -#: skins/default/templates/revisions.html:37 -msgid "edit" -msgstr "编辑" +#: skins/default/templates/macros.html:424 views/readers.py:239 +msgid "view" +msgid_plural "views" +msgstr[0] "浏览" + +#: skins/default/templates/macros.html:441 views/readers.py:236 +msgid "answer" +msgid_plural "answers" +msgstr[0] "回答" -#: skins/default/templates/macros.html:272 +#: skins/default/templates/macros.html:452 views/readers.py:233 +msgid "vote" +msgid_plural "votes" +msgstr[0] "票" + +#: skins/default/templates/macros.html:491 msgid "delete this comment" msgstr "删除这个留言" -#: skins/default/templates/macros.html:290 -#: skins/default/templates/macros.html:298 -#: skins/default/templates/question.html:429 +#: skins/default/templates/macros.html:502 +#: skins/default/templates/question.html:79 +#: skins/default/templates/question.html:235 +#: skins/default/templates/revisions.html:37 +msgid "edit" +msgstr "编辑" + +#: skins/default/templates/macros.html:520 +#: skins/default/templates/macros.html:528 +#: skins/default/templates/question.html:511 msgid "add comment" msgstr "添加评论" -#: skins/default/templates/macros.html:291 +#: skins/default/templates/macros.html:521 #, python-format msgid "see %(counter)s more" msgid_plural "see %(counter)s more" msgstr[0] "查看%(counter)s更多" -msgstr[1] "查看%(counter)s更多" -#: skins/default/templates/macros.html:293 +#: skins/default/templates/macros.html:523 #, python-format msgid "see %(counter)s more comment" msgid_plural "" "see %(counter)s more comments\n" " " msgstr[0] "查看%(counter)s更多评论" -msgstr[1] "查看%(counter)s更多评论" -#: skins/default/templates/macros.html:422 +#: skins/default/templates/macros.html:661 +#, fuzzy +msgid "one of these is required" +msgstr "必填项" + +#: skins/default/templates/macros.html:673 msgid "(required)" msgstr "必填" -#: skins/default/templates/macros.html:443 +#: skins/default/templates/macros.html:696 msgid "Toggle the real time Markdown editor preview" msgstr "打开或者关闭Markdown编辑器的实时预览" +#: skins/default/templates/macros.html:708 +#, python-format +msgid "responses for %(username)s" +msgstr "回应%(username)s" + +#: skins/default/templates/macros.html:711 +#, fuzzy, python-format +msgid "you have a new response" +msgid_plural "you have %(response_count)s new responses" +msgstr[0] "你有 %(response_count)s 个新回应" + +#: skins/default/templates/macros.html:714 +msgid "no new responses yet" +msgstr "仍没有回应" + +#: skins/default/templates/macros.html:729 +#: skins/default/templates/macros.html:730 +#, python-format +msgid "%(new)s new flagged posts and %(seen)s previous" +msgstr "%(new)s 新标记的发布和之前查看的 %(seen)s" + +#: skins/default/templates/macros.html:732 +#: skins/default/templates/macros.html:733 +#, python-format +msgid "%(new)s new flagged posts" +msgstr "%(new)s 新标记的发布信息" + +#: skins/default/templates/macros.html:738 +#: skins/default/templates/macros.html:739 +#, python-format +msgid "%(seen)s flagged posts" +msgstr "\"%(seen)s 已标记的发布信息" + +#: skins/default/templates/main_page.html:11 +msgid "Questions" +msgstr "问题列表" + #: skins/default/templates/privacy.html:3 -#: skins/default/templates/privacy.html:6 +#: skins/default/templates/privacy.html:5 msgid "Privacy policy" msgstr "隐私政策" -#: skins/default/templates/question.html:30 -#: skins/default/templates/question.html:31 -#: skins/default/templates/question.html:46 -#: skins/default/templates/question.html:48 +#: skins/default/templates/question.html:26 +#: skins/default/templates/question.html:27 +#: skins/default/templates/question.html:42 +#: skins/default/templates/question.html:44 msgid "i like this post (click again to cancel)" msgstr "这篇帖子有价值(再次点击取消操作)" -#: skins/default/templates/question.html:33 -#: skins/default/templates/question.html:50 -#: skins/default/templates/question.html:201 +#: skins/default/templates/question.html:29 +#: skins/default/templates/question.html:46 +#: skins/default/templates/question.html:186 msgid "current number of votes" msgstr "当前总票数" -#: skins/default/templates/question.html:42 -#: skins/default/templates/question.html:43 -#: skins/default/templates/question.html:55 -#: skins/default/templates/question.html:56 +#: skins/default/templates/question.html:38 +#: skins/default/templates/question.html:39 +#: skins/default/templates/question.html:51 +#: skins/default/templates/question.html:52 msgid "i dont like this post (click again to cancel)" msgstr "这篇帖子没有价值(再次点击取消操作)" -#: skins/default/templates/question.html:60 -#: skins/default/templates/question.html:61 -msgid "mark this question as favorite (click again to cancel)" -msgstr "我要收藏这个问题(再次点击取消操作)" - -#: skins/default/templates/question.html:67 -#: skins/default/templates/question.html:68 -msgid "remove favorite mark from this question (click again to restore mark)" -msgstr "我要收藏这个问题(再次点击取消操作)" - -#: skins/default/templates/question.html:74 -msgid "Share this question on twitter" -msgstr "发布我的提问到Twitter" - -#: skins/default/templates/question.html:75 -msgid "Share this question on facebook" -msgstr "分享提问到我的facebook" - -#: skins/default/templates/question.html:97 +#: skins/default/templates/question.html:82 msgid "retag" msgstr "更新标签" -#: skins/default/templates/question.html:104 +#: skins/default/templates/question.html:89 msgid "reopen" msgstr "打开" -#: skins/default/templates/question.html:108 +#: skins/default/templates/question.html:93 msgid "close" msgstr "关闭" -#: skins/default/templates/question.html:113 -#: skins/default/templates/question.html:254 -msgid "report as offensive (i.e containing spam, advertising, malicious text, etc.)" +#: skins/default/templates/question.html:98 +#: skins/default/templates/question.html:239 +msgid "" +"report as offensive (i.e containing spam, advertising, malicious text, etc.)" msgstr "检举该帖为垃“水帖”(含广告、人身攻击、恶意言论等)" -#: skins/default/templates/question.html:114 -#: skins/default/templates/question.html:255 +#: skins/default/templates/question.html:99 +#: skins/default/templates/question.html:240 msgid "flag offensive" msgstr "垃圾帖?" # todo please check this in chinese -#: skins/default/templates/question.html:121 -#: skins/default/templates/question.html:265 +#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:250 msgid "undelete" msgstr "取消" -#: skins/default/templates/question.html:121 -#: skins/default/templates/question.html:265 -#: skins/default/templates/authopenid/signin.html:175 +#: skins/default/templates/question.html:106 +#: skins/default/templates/question.html:250 +#: skins/default/templates/authopenid/signin.html:166 msgid "delete" msgstr "删除" -#: skins/default/templates/question.html:159 +#: skins/default/templates/question.html:143 #, python-format -msgid "The question has been closed for the following reason \"%(close_reason)s\" by" +msgid "" +"The question has been closed for the following reason \"%(close_reason)s\" by" msgstr "问题因\"%(close_reason)s\"原因已被关闭" -#: skins/default/templates/question.html:161 +#: skins/default/templates/question.html:145 #, python-format msgid "close date %(closed_at)s" msgstr "%(closed_at)s日关闭" -#: skins/default/templates/question.html:169 -#, python-format +#: skins/default/templates/question.html:151 +#, 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个回答:" -msgstr[1] "" -"\n" -"%(counter)s个回答:" -#: skins/default/templates/question.html:177 +#: skins/default/templates/question.html:159 msgid "oldest answers will be shown first" msgstr "最先回答显示在最前面" -#: skins/default/templates/question.html:177 +#: skins/default/templates/question.html:160 msgid "oldest answers" msgstr "最先回答" -#: skins/default/templates/question.html:179 +#: skins/default/templates/question.html:162 msgid "newest answers will be shown first" msgstr "最晚回答显示在最前面" -#: skins/default/templates/question.html:179 +#: skins/default/templates/question.html:163 msgid "newest answers" msgstr "最近回答" -#: skins/default/templates/question.html:181 +#: skins/default/templates/question.html:165 msgid "most voted answers will be shown first" msgstr "投票次数最多的显示在最前面" -#: skins/default/templates/question.html:181 +#: skins/default/templates/question.html:166 msgid "popular answers" msgstr "受欢迎的答案" -#: skins/default/templates/question.html:199 -#: skins/default/templates/question.html:200 +#: skins/default/templates/question.html:184 +#: skins/default/templates/question.html:185 msgid "i like this answer (click again to cancel)" msgstr "这篇帖子有价值(再次点击取消操作)" -#: skins/default/templates/question.html:210 -#: skins/default/templates/question.html:211 +#: skins/default/templates/question.html:195 +#: skins/default/templates/question.html:196 msgid "i dont like this answer (click again to cancel)" msgstr "这篇帖子没有价值(再次点击取消操作)" -#: skins/default/templates/question.html:219 -#: skins/default/templates/question.html:220 +#: skins/default/templates/question.html:204 +#: skins/default/templates/question.html:205 msgid "mark this answer as favorite (click again to undo)" msgstr "最佳答案(再次点击取消操作)" -#: skins/default/templates/question.html:229 -#: skins/default/templates/question.html:230 +#: skins/default/templates/question.html:214 +#: skins/default/templates/question.html:215 #, python-format msgid "%(question_author)s has selected this answer as correct" msgstr "这个答案已经被%(question_author)s标记为正确答案" -#: skins/default/templates/question.html:245 +#: skins/default/templates/question.html:230 msgid "answer permanent link" msgstr "该回答的链接地址" -#: skins/default/templates/question.html:246 +#: skins/default/templates/question.html:231 msgid "permanent link" msgstr "永久链接" -#: skins/default/templates/question.html:315 -#: skins/default/templates/question.html:317 +#: skins/default/templates/question.html:256 +#, fuzzy +msgid "swap with question" +msgstr "回答该问题" + +#: skins/default/templates/question.html:297 +#, python-format +msgid "" +"Know someone who can answer? Share a link " +"to this question via" +msgstr "" + +#: skins/default/templates/question.html:303 +#, fuzzy +msgid " or" +msgstr "或者" + +#: skins/default/templates/question.html:305 +msgid "email" +msgstr "邮件" + +#: skins/default/templates/question.html:320 +#: skins/default/templates/question.html:322 msgid "Notify me once a day when there are any new answers" msgstr "当有新回答的时候每天提醒我一次" -#: skins/default/templates/question.html:319 +#: skins/default/templates/question.html:324 msgid "Notify me weekly when there are any new answers" msgstr "当有新回答的时候每周提醒我一次" -#: skins/default/templates/question.html:321 +#: skins/default/templates/question.html:326 msgid "Notify me immediately when there are any new answers" msgstr "当有新回答的时候立即提醒我一次" -#: skins/default/templates/question.html:324 +#: skins/default/templates/question.html:329 #, python-format -msgid "You can always adjust frequency of email updates from your %(profile_url)s" +msgid "" +"You can always adjust frequency of email updates from your %(profile_url)s" msgstr "你可以通过%(profile_url)s调整你的邮件更新频率" -#: skins/default/templates/question.html:329 +#: skins/default/templates/question.html:334 msgid "once you sign in you will be able to subscribe for any updates here" msgstr "一旦你注册你就可以订阅这里的任何更新" -#: skins/default/templates/question.html:339 +#: skins/default/templates/question.html:344 +#, fuzzy +msgid "Login/Signup to Answer" +msgstr "登录发布你的答案" + +#: skins/default/templates/question.html:352 msgid "Your answer" msgstr "您的回答" -#: skins/default/templates/question.html:341 +#: skins/default/templates/question.html:354 msgid "Be the first one to answer this question!" msgstr "成为第一个回答此问题的人!" -#: skins/default/templates/question.html:347 +#: skins/default/templates/question.html:360 msgid "you can answer anonymously and then login" msgstr "你可以匿名回答,然后登录" -#: skins/default/templates/question.html:351 +#: skins/default/templates/question.html:364 msgid "answer your own question only to give an answer" msgstr "仅仅为了回答你自己的问题而给一个答案" -#: skins/default/templates/question.html:353 +#: skins/default/templates/question.html:366 msgid "please only give an answer, no discussions" msgstr "建议您提的问题是可以被答复的,而不仅仅是可以讨论。" -#: skins/default/templates/question.html:360 +#: skins/default/templates/question.html:373 msgid "Login/Signup to Post Your Answer" msgstr "登录发布你的答案" -#: skins/default/templates/question.html:363 +#: skins/default/templates/question.html:376 +#: skins/default/templates/question.html:389 msgid "Answer Your Own Question" msgstr "回答你自己的问题" -#: skins/default/templates/question.html:365 +#: skins/default/templates/question.html:378 msgid "Answer the question" msgstr "回答该问题" -#: skins/default/templates/question.html:379 -msgid "Question tags" +#: skins/default/templates/question.html:397 +#, fuzzy +msgid "Question tools" msgstr "您正在浏览的问题含有以下标签" -# this is how above two are supposed to be -#: skins/default/templates/question.html:384 -#: skins/default/templates/questions.html:222 -#: skins/default/templates/tag_selector.html:9 -#: skins/default/templates/tag_selector.html:26 +#: skins/default/templates/question.html:400 +#, fuzzy +msgid "click to unfollow this question" +msgstr "被回复最多的问题" + +#: skins/default/templates/question.html:401 +msgid "Following" +msgstr "" + +#: skins/default/templates/question.html:402 +msgid "Unfollow" +msgstr "" + +#: skins/default/templates/question.html:406 +#, fuzzy +msgid "click to follow this question" +msgstr "被回复最多的问题" + +#: skins/default/templates/question.html:407 +msgid "Follow" +msgstr "" + +#: skins/default/templates/question.html:414 #, python-format -msgid "see questions tagged '%(tag_name)s'" -msgstr "查看有关%(tag_name)s的问题" +msgid "%(count)s follower" +msgid_plural "%(count)s followers" +msgstr[0] "" + +#: skins/default/templates/question.html:420 +#, fuzzy +msgid "email the updates" +msgstr "邮件更新取消" + +#: skins/default/templates/question.html:423 +msgid "" +"Here (once you log in) you will be able to sign up for the " +"periodic email updates about this question." +msgstr "" + +#: skins/default/templates/question.html:428 +#, fuzzy +msgid "subscribe to this question rss feed" +msgstr "订阅最新问题" -#: skins/default/templates/question.html:390 +#: skins/default/templates/question.html:429 +#, fuzzy +msgid "subsribe to rss feed" +msgstr "订阅最新问题" + +#: skins/default/templates/question.html:438 +msgid "Question tags" +msgstr "您正在浏览的问题含有以下标签" + +#: skins/default/templates/question.html:460 +msgid "Stats:" +msgstr "" + +#: skins/default/templates/question.html:462 msgid "question asked" msgstr "已问问题" -#: skins/default/templates/question.html:393 +#: skins/default/templates/question.html:465 msgid "question was seen" msgstr "浏览量" -#: skins/default/templates/question.html:393 +#: skins/default/templates/question.html:465 msgid "times" msgstr "次" -#: skins/default/templates/question.html:396 +#: skins/default/templates/question.html:468 msgid "last updated" msgstr "最后更新时间" -#: skins/default/templates/question.html:403 +#: skins/default/templates/question.html:477 msgid "Related questions" msgstr "相似的问题" # page title #: skins/default/templates/question_edit.html:4 -#: skins/default/templates/question_edit.html:10 +#: skins/default/templates/question_edit.html:9 msgid "Edit question" msgstr "修改问题" -#: skins/default/templates/question_edit_tips.html:3 -msgid "question tips" -msgstr "受欢迎的提问" - -#: skins/default/templates/question_edit_tips.html:6 -msgid "please ask a relevant question" -msgstr "请问与此社区相关的问题" - -#: skins/default/templates/question_edit_tips.html:9 -msgid "please try provide enough details" -msgstr "请详细描述您的问题" - #: skins/default/templates/question_retag.html:3 -#: skins/default/templates/question_retag.html:6 +#: skins/default/templates/question_retag.html:5 msgid "Change tags" msgstr "修改标签" -#: skins/default/templates/question_retag.html:25 +#: skins/default/templates/question_retag.html:21 msgid "Retag" msgstr "修改标签" -#: skins/default/templates/question_retag.html:34 +#: skins/default/templates/question_retag.html:28 msgid "Why use and modify tags?" msgstr "为什么我只能修改问题标签?" -#: skins/default/templates/question_retag.html:36 +#: skins/default/templates/question_retag.html:30 msgid "Tags help to keep the content better organized and searchable" msgstr "标签使内容可以更好的组织及搜索" -#: skins/default/templates/question_retag.html:38 +#: skins/default/templates/question_retag.html:32 msgid "tag editors receive special awards from the community" msgstr "修改标签的用户将授予特殊的社区奖牌" # todo: remove magic numbers from this file -#: skins/default/templates/question_retag.html:79 +#: skins/default/templates/question_retag.html:59 msgid "up to 5 tags, less than 20 characters each" msgstr "最多5个标签,每个标签长度小于20个字符。" -#: skins/default/templates/questions.html:4 -msgid "Questions" -msgstr "问题列表" - -#: skins/default/templates/questions.html:9 -msgid "In:" -msgstr "选择:" - -#: skins/default/templates/questions.html:18 -msgid "see unanswered questions" -msgstr "查看没有回答的问题" - -#: skins/default/templates/questions.html:24 -msgid "see your favorite questions" -msgstr "查看我收藏问题" - -#: skins/default/templates/questions.html:29 -msgid "Sort by:" -msgstr "排序" - -#: skins/default/templates/questions.html:97 -#: skins/default/templates/questions.html:100 -msgid "subscribe to the questions feed" -msgstr "订阅最新问题" - -#: skins/default/templates/questions.html:101 -msgid "rss feed" -msgstr "rss " - -#: skins/default/templates/questions.html:105 -#, python-format -msgid "" -"\n" -" %(q_num)s question\n" -" " -msgid_plural "" -"\n" -" %(q_num)s questions\n" -" " -msgstr[0] "" -"\n" -"%(q_num)s个问题" -msgstr[1] "" -"\n" -"%(q_num)s个问题" - -#: skins/default/templates/questions.html:111 views/readers.py:170 -#, python-format -msgid "%(q_num)s question" -msgid_plural "%(q_num)s questions" -msgstr[0] "%(q_num)s个问题" -msgstr[1] "%(q_num)s个问题" - -#: skins/default/templates/questions.html:114 -#, python-format -msgid "with %(author_name)s's contributions" -msgstr "%(author_name)s的贡献" - -#: skins/default/templates/questions.html:117 -msgid "tagged" -msgstr "已加标签" - -#: skins/default/templates/questions.html:122 -msgid "Search tips:" -msgstr "搜索主题" - -#: skins/default/templates/questions.html:125 -msgid "reset author" -msgstr "重置作者" - -#: skins/default/templates/questions.html:127 -#: skins/default/templates/questions.html:130 -#: skins/default/templates/questions.html:168 -#: skins/default/templates/questions.html:171 -msgid " or " -msgstr "或者" - -#: skins/default/templates/questions.html:128 -msgid "reset tags" -msgstr "重置标签" - -#: skins/default/templates/questions.html:131 -#: skins/default/templates/questions.html:134 -msgid "start over" -msgstr "重新开始" - -#: skins/default/templates/questions.html:136 -msgid " - to expand, or dig in by adding more tags and revising the query." -msgstr " - 通过添加更多标签和改进查询来扩展和挖掘信息" - -#: skins/default/templates/questions.html:139 -msgid "Search tip:" -msgstr "搜索主题 :" - -#: skins/default/templates/questions.html:139 -msgid "add tags and a query to focus your search" -msgstr "添加标签和查询条件进行更精确查询" - -#: skins/default/templates/questions.html:154 -#: skins/default/templates/unused/questions_ajax.html:79 -msgid "There are no unanswered questions here" -msgstr "没有未回答的问题" - -#: skins/default/templates/questions.html:157 -#: skins/default/templates/unused/questions_ajax.html:82 -msgid "No favorite questions here. " -msgstr "还没有收藏" - -#: skins/default/templates/questions.html:158 -#: skins/default/templates/unused/questions_ajax.html:83 -msgid "Please start (bookmark) some questions when you visit them" -msgstr "当你查看问题时可以收藏" - -#: skins/default/templates/questions.html:163 -#: skins/default/templates/unused/questions_ajax.html:88 -msgid "You can expand your search by " -msgstr "扩展你的查询" - -#: skins/default/templates/questions.html:166 -#: skins/default/templates/unused/questions_ajax.html:92 -msgid "resetting author" -msgstr "重置作者" - -# book.html line 123 must be empty in english -#: skins/default/templates/questions.html:169 -#: skins/default/templates/unused/questions_ajax.html:96 -msgid "resetting tags" -msgstr "重置标签" - -#: skins/default/templates/questions.html:172 -#: skins/default/templates/questions.html:175 -#: skins/default/templates/unused/questions_ajax.html:100 -#: skins/default/templates/unused/questions_ajax.html:104 -msgid "starting over" -msgstr "重新开始" - -#: skins/default/templates/questions.html:180 -#: skins/default/templates/unused/questions_ajax.html:109 -msgid "Please always feel free to ask your question!" -msgstr "发布你自己的问题" - -#: skins/default/templates/questions.html:184 -#: skins/default/templates/unused/questions_ajax.html:113 -msgid "Did not find what you were looking for?" -msgstr "你找的问题没有?" - -#: skins/default/templates/questions.html:185 -#: skins/default/templates/unused/questions_ajax.html:114 -msgid "Please, post your question!" -msgstr "现在提问" - -#: skins/default/templates/questions.html:200 -msgid "Contributors" -msgstr "贡献者" - -#: skins/default/templates/questions.html:217 -msgid "Related tags" -msgstr "相关标签" - -#: skins/default/templates/reopen.html:3 skins/default/templates/reopen.html:6 +#: skins/default/templates/reopen.html:3 skins/default/templates/reopen.html:5 msgid "Reopen question" msgstr "重设问题" -#: skins/default/templates/reopen.html:9 +#: skins/default/templates/reopen.html:6 msgid "Title" msgstr "标题" -#: skins/default/templates/reopen.html:14 -#, python-format +#: skins/default/templates/reopen.html:11 +#, fuzzy, python-format msgid "" "This question has been closed by \n" -" %(closed_by_username)s\n" -" " +" %(closed_by_username)s\n" msgstr "" "此问题已被\n" "%(closed_by_username)s关闭" # close.html -#: skins/default/templates/reopen.html:19 +#: skins/default/templates/reopen.html:16 msgid "Close reason:" msgstr "关闭原因" -#: skins/default/templates/reopen.html:22 +#: skins/default/templates/reopen.html:19 msgid "When:" msgstr "当:" -#: skins/default/templates/reopen.html:25 +#: skins/default/templates/reopen.html:22 msgid "Reopen this question?" msgstr "确定打开这个问题" -#: skins/default/templates/reopen.html:29 +#: skins/default/templates/reopen.html:26 msgid "Reopen this question" msgstr "确定打开这个问题" @@ -4124,935 +4656,1357 @@ msgstr "点击隐藏或显示版本" msgid "revision %(number)s" msgstr "版本%(number)s" -# book.html line 123 must be empty in english -#: skins/default/templates/tag_selector.html:3 -msgid "Interesting tags" -msgstr "感兴趣的标签" +#: skins/default/templates/subscribe_for_tags.html:3 +#: skins/default/templates/subscribe_for_tags.html:5 +#, fuzzy +msgid "Subscribe for tags" +msgstr "标记垃圾帖" -#: skins/default/templates/tag_selector.html:13 -#, python-format -msgid "remove '%(tag_name)s' from the list of interesting tags" -msgstr "从感兴趣的标签列表中删除 '%(tag_name)s' 标签" +#: skins/default/templates/subscribe_for_tags.html:6 +#, fuzzy +msgid "Please, subscribe for the following tags:" +msgstr "问题曾以" -#: skins/default/templates/tag_selector.html:19 -#: skins/default/templates/tag_selector.html:36 -#: skins/default/templates/user_moderate.html:35 -msgid "Add" -msgstr "添加" +#: skins/default/templates/subscribe_for_tags.html:15 +msgid "Subscribe" +msgstr "" -#: skins/default/templates/tag_selector.html:20 -msgid "Ignored tags" -msgstr "忽略标签" +#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:11 +msgid "Tag list" +msgstr "标签列表" -#: skins/default/templates/tag_selector.html:30 +#: skins/default/templates/tags.html:9 #, python-format -msgid "remove '%(tag_name)s' from the list of ignored tags" -msgstr "从忽略标签列表中删除'%(tag_name)s'标签" +msgid "Tags, matching \"%(stag)s\"" +msgstr "" -#: skins/default/templates/tag_selector.html:39 -msgid "keep ignored questions hidden" -msgstr "忽略问题保持隐藏" +#: skins/default/templates/tags.html:19 +msgid "sorted alphabetically" +msgstr "按名称的字母先后顺序排序" -#: skins/default/templates/tags.html:4 skins/default/templates/tags.html:8 -msgid "Tag list" -msgstr "标签列表" - -#: skins/default/templates/tags.html:14 -msgid "sorted alphabetically" -msgstr "按名称的字母先后顺序排序" - -#: skins/default/templates/tags.html:15 +#: skins/default/templates/tags.html:20 msgid "by name" msgstr "按名称排序" -#: skins/default/templates/tags.html:20 +#: skins/default/templates/tags.html:25 msgid "sorted by frequency of tag use" msgstr "按标签流行度排序" -#: skins/default/templates/tags.html:21 +#: skins/default/templates/tags.html:26 msgid "by popularity" msgstr "按流行度排序" -#: skins/default/templates/tags.html:27 -#, python-format -msgid "All tags matching '%(stag)s'" -msgstr "匹配 '%(stag)s的标签" - -#: skins/default/templates/tags.html:30 +#: skins/default/templates/tags.html:31 skins/default/templates/tags.html:56 msgid "Nothing found" msgstr "没有找到相关数据。" -#: skins/default/templates/user.html:14 -#, python-format -msgid "%(username)s's profile" -msgstr "%(username)s用户概览" +#: skins/default/templates/users.html:4 skins/default/templates/users.html:7 +msgid "Users" +msgstr "用户列表" -#: skins/default/templates/user_edit.html:4 -msgid "Edit user profile" -msgstr "修改个人资料" +#: skins/default/templates/users.html:13 +msgid "see people with the highest reputation" +msgstr "" -#: skins/default/templates/user_edit.html:7 -msgid "edit profile" -msgstr "修改资料" +#: skins/default/templates/users.html:14 +#: skins/default/templates/user_profile/user_info.html:25 +msgid "reputation" +msgstr "积分" -#: skins/default/templates/user_edit.html:17 -#: skins/default/templates/user_info.html:11 -msgid "change picture" -msgstr "修改图片" +#: skins/default/templates/users.html:19 +msgid "see people who joined most recently" +msgstr "" -#: skins/default/templates/user_edit.html:20 -msgid "Registered user" -msgstr "注册用户" +#: skins/default/templates/users.html:20 +msgid "recent" +msgstr "按最新注册" -#: skins/default/templates/user_edit.html:27 -msgid "Screen Name" -msgstr "用户名" +#: skins/default/templates/users.html:25 +msgid "see people who joined the site first" +msgstr "" -#: skins/default/templates/user_edit.html:75 -#: skins/default/templates/user_email_subscriptions.html:18 -msgid "Update" -msgstr "更新" +#: skins/default/templates/users.html:31 +msgid "see people sorted by name" +msgstr "" -#: skins/default/templates/user_email_subscriptions.html:4 -msgid "Email subscription settings" -msgstr "邮件订阅设置" +#: skins/default/templates/users.html:32 +msgid "by username" +msgstr "按用户名" -#: skins/default/templates/user_email_subscriptions.html:5 -msgid "email subscription settings info" -msgstr "邮件订阅设置信息" +#: skins/default/templates/users.html:37 +#, python-format +msgid "users matching query %(suser)s:" +msgstr "匹配查询%(suser)s用户:" -#: skins/default/templates/user_email_subscriptions.html:19 -msgid "Stop sending email" -msgstr "停止发送邮件" +#: skins/default/templates/users.html:40 +msgid "Nothing found." +msgstr "没有找到相关数据。" -#: skins/default/templates/user_inbox.html:31 -msgid "Sections:" -msgstr "段" +#: skins/default/templates/authopenid/changeemail.html:2 +#: skins/default/templates/authopenid/changeemail.html:8 +#: skins/default/templates/authopenid/changeemail.html:36 +msgid "Change email" +msgstr "更换电子邮件" -#: skins/default/templates/user_inbox.html:35 -#, python-format -msgid "forum responses (%(re_count)s)" -msgstr "论坛回应 (%(re_count)s)" +#: skins/default/templates/authopenid/changeemail.html:10 +msgid "Save your email address" +msgstr "保存您的电子邮件地址" -#: skins/default/templates/user_inbox.html:40 +#: skins/default/templates/authopenid/changeemail.html:15 #, python-format -msgid "flagged items (%(flag_count)s)" -msgstr "已标记项目 (%(flag_count)s)" - -#: skins/default/templates/user_inbox.html:46 -msgid "select:" -msgstr "选择:" +msgid "change %(email)s info" +msgstr "更换%(email)s电子邮件" -#: skins/default/templates/user_inbox.html:48 -msgid "seen" -msgstr "查看" +#: skins/default/templates/authopenid/changeemail.html:17 +#, python-format +msgid "here is why email is required, see %(gravatar_faq_url)s" +msgstr "为什么邮件是必须的,查看 %(gravatar_faq_url)s" -#: skins/default/templates/user_inbox.html:49 -msgid "new" -msgstr "新" +#: skins/default/templates/authopenid/changeemail.html:29 +msgid "Your new Email" +msgstr "你的新邮件地址" -#: skins/default/templates/user_inbox.html:50 -msgid "none" -msgstr "无" +#: skins/default/templates/authopenid/changeemail.html:29 +msgid "Your Email" +msgstr "你的邮件" -#: skins/default/templates/user_inbox.html:51 -msgid "mark as seen" -msgstr "已看标记" +#: skins/default/templates/authopenid/changeemail.html:36 +msgid "Save Email" +msgstr "保存邮件地址" -#: skins/default/templates/user_inbox.html:52 -msgid "mark as new" -msgstr "新标记" +#: skins/default/templates/authopenid/changeemail.html:45 +msgid "Validate email" +msgstr "更换电子邮件" -#: skins/default/templates/user_inbox.html:53 -msgid "dismiss" -msgstr "驳回" +#: skins/default/templates/authopenid/changeemail.html:48 +#, python-format +msgid "validate %(email)s info or go to %(change_email_url)s" +msgstr "验证%(email)s 信息或到%(change_email_url)s" -#: skins/default/templates/user_info.html:18 -#: skins/default/templates/users.html:13 skins/default/templates/users.html:14 -msgid "reputation" -msgstr "积分" +#: skins/default/templates/authopenid/changeemail.html:52 +msgid "Email not changed" +msgstr "邮件地址未修改" -#: skins/default/templates/user_info.html:30 -msgid "manage login methods" -msgstr "管理登录方法" +#: skins/default/templates/authopenid/changeemail.html:55 +#, python-format +msgid "old %(email)s kept, if you like go to %(change_email_url)s" +msgstr "旧邮件%(email)s被保存,你可以去%(change_email_url)s修改" -#: skins/default/templates/user_info.html:34 -msgid "update profile" -msgstr "更新我的资料" +#: skins/default/templates/authopenid/changeemail.html:59 +msgid "Email changed" +msgstr "邮件地址已改" -#: skins/default/templates/user_info.html:46 -msgid "real name" -msgstr "姓名" +#: skins/default/templates/authopenid/changeemail.html:62 +#, python-format +msgid "your current %(email)s can be used for this" +msgstr "你目前的%(email)s邮件地址可以被用于这里" -#: skins/default/templates/user_info.html:51 -msgid "member for" -msgstr "已加入" +#: skins/default/templates/authopenid/changeemail.html:66 +msgid "Email verified" +msgstr "邮件地址确认" -#: skins/default/templates/user_info.html:56 -msgid "last seen" -msgstr "上次活动时间" +#: skins/default/templates/authopenid/changeemail.html:69 +msgid "thanks for verifying email" +msgstr "感谢你确认邮件地址" -#: skins/default/templates/user_info.html:62 -msgid "user website" -msgstr "个人网站" +#: skins/default/templates/authopenid/changeemail.html:73 +msgid "email key not sent" +msgstr "邮件地址未发送" -#: skins/default/templates/user_info.html:68 -msgid "location" -msgstr "城市" +#: skins/default/templates/authopenid/changeemail.html:76 +#, python-format +msgid "email key not sent %(email)s change email here %(change_link)s" +msgstr "邮件地址未发送%(email)s,点这里修改%(change_link)s" -# user_info.html -#: skins/default/templates/user_info.html:75 -msgid "age" -msgstr "年龄" +#: skins/default/templates/authopenid/complete.html:21 +#: skins/default/templates/authopenid/complete.html:23 +msgid "Registration" +msgstr "注册" -#: skins/default/templates/user_info.html:76 -msgid "age unit" -msgstr "岁" +#: skins/default/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/default/templates/user_info.html:83 -msgid "todays unused votes" -msgstr "今日剩余投票数" +#: skins/default/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/default/templates/user_info.html:84 -msgid "votes left" -msgstr "剩余投票数" +#: skins/default/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/default/templates/user_moderate.html:5 +#: skins/default/templates/authopenid/complete.html:37 #, python-format -msgid "%(username)s's current status is \"%(status)s\"" -msgstr "%(username)s当前的状态是 \"%(status)s\"" +msgid "register new Facebook connect account info, see %(gravatar_faq_url)s" +msgstr "注册新Facebook账户信息, 查看 %(gravatar_faq_url)s" -#: skins/default/templates/user_moderate.html:8 -msgid "User status changed" -msgstr "用户状态已修改" +# todo: review this message may be confusing user +#: skins/default/templates/authopenid/complete.html:40 +msgid "This account already exists, please use another." +msgstr "输入您的新帐号已经存在,请使用其他帐号。" -#: skins/default/templates/user_moderate.html:15 -msgid "Save" -msgstr "保存" +#: skins/default/templates/authopenid/complete.html:59 +msgid "Screen name label" +msgstr "昵称" -#: skins/default/templates/user_moderate.html:21 -#, python-format -msgid "Your current reputation is %(reputation)s points" -msgstr "你当前的积分是 %(reputation)s " +#: skins/default/templates/authopenid/complete.html:66 +msgid "Email address label" +msgstr "您的电子邮件地址" -#: skins/default/templates/user_moderate.html:23 -#, python-format -msgid "User's current reputation is %(reputation)s points" -msgstr "用户当前的积分是 %(reputation)s" +#: skins/default/templates/authopenid/complete.html:72 +#: skins/default/templates/authopenid/signup_with_password.html:36 +msgid "receive updates motivational blurb" +msgstr "获取商品信息更新" -#: skins/default/templates/user_moderate.html:27 -msgid "User reputation changed" -msgstr "用户积分已修改" +#: skins/default/templates/authopenid/complete.html:76 +#: skins/default/templates/authopenid/signup_with_password.html:40 +msgid "please select one of the options above" +msgstr "请从以上选项中选择一项" -#: skins/default/templates/user_moderate.html:34 -msgid "Subtract" -msgstr "减去" +#: skins/default/templates/authopenid/complete.html:79 +msgid "Tag filter tool will be your right panel, once you log in." +msgstr "当你登录后,标签过滤工具将出现在你右边的面板里" -#: skins/default/templates/user_moderate.html:39 -#, python-format -msgid "Send message to %(username)s" -msgstr "发送信息给%(username)s" +#: skins/default/templates/authopenid/complete.html:80 +msgid "create account" +msgstr "创建帐号" -#: skins/default/templates/user_moderate.html:40 -msgid "An email will be sent to the user with 'reply-to' field set to your email address. Please make sure that your address is entered correctly." -msgstr "邮件将被发送给接受回复的用户地址,请确保你输入的邮件地址是正确的" +#: skins/default/templates/authopenid/confirm_email.txt:1 +msgid "Thank you for registering at our Q&A forum!" +msgstr "感谢你在我们的Q&A论坛注册" -#: skins/default/templates/user_moderate.html:42 -msgid "Message sent" -msgstr "发送消息" +#: skins/default/templates/authopenid/confirm_email.txt:3 +msgid "Your account details are:" +msgstr "你的详细账户信息为:" -#: skins/default/templates/user_moderate.html:60 -msgid "Send message" -msgstr "发送消息" +#: skins/default/templates/authopenid/confirm_email.txt:5 +msgid "Username:" +msgstr "用户名" -#: skins/default/templates/user_reputation.html:7 -msgid "Your karma change log." -msgstr "你的积分历史" +#: skins/default/templates/authopenid/confirm_email.txt:6 +msgid "Password:" +msgstr "密码" -#: skins/default/templates/user_reputation.html:9 -#, python-format -msgid "%(user_name)s's karma change log" -msgstr "%(user_name)s的积分历史" +#: skins/default/templates/authopenid/confirm_email.txt:8 +msgid "Please sign in here:" +msgstr "请在这登录" -#: skins/default/templates/user_stats.html:7 -#, python-format -msgid "%(counter)s Question" -msgid_plural "%(counter)s Questions" -msgstr[0] "%(counter)s个问题" -msgstr[1] "%(counter)s个问题" +#: skins/default/templates/authopenid/confirm_email.txt:11 +#: skins/default/templates/authopenid/email_validation.txt:13 +msgid "" +"Sincerely,\n" +"Forum Administrator" +msgstr "您忠实的管理员" -#: skins/default/templates/user_stats.html:12 -#, python-format -msgid "%(counter)s Answer" -msgid_plural "%(counter)s Answers" -msgstr[0] "%(counter)s个答案" -msgstr[1] "%(counter)s个答案" +#: skins/default/templates/authopenid/email_validation.txt:1 +msgid "Greetings from the Q&A forum" +msgstr "来自Q&A论坛的祝福" -#: skins/default/templates/user_stats.html:20 -msgid "the answer has been voted for %(answer_score)s times" -msgstr "该回答总共有%(answer_score)s个投票" +#: skins/default/templates/authopenid/email_validation.txt:3 +msgid "To make use of the Forum, please follow the link below:" +msgstr "请跟随以下的链接来使用论坛:" -#: skins/default/templates/user_stats.html:20 -msgid "this answer has been selected as correct" -msgstr "该回答已被设为最佳答案" +#: skins/default/templates/authopenid/email_validation.txt:7 +msgid "Following the link above will help us verify your email address." +msgstr "点击上面的链接可以帮助我们确认你的邮件地址" -#: skins/default/templates/user_stats.html:30 -#, python-format -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次评论" +#: skins/default/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" +"for any inconvenience" +msgstr "" +"如果你认为此消息被错误的发送,不要进行更进一步的动作.仅仅忽略这封邮件,为给您带" +"来的不便道歉." + +#: skins/default/templates/authopenid/logout.html:3 +msgid "Logout" +msgstr "退出登录" + +#: skins/default/templates/authopenid/logout.html:5 +msgid "You have successfully logged out" +msgstr "" -#: skins/default/templates/user_stats.html:40 +#: skins/default/templates/authopenid/logout.html: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 "" + +#: skins/default/templates/authopenid/macros.html:53 +msgid "Please enter your user name, then sign in" +msgstr "请输入你的用户名,然后登录" + +#: skins/default/templates/authopenid/macros.html:54 +#: skins/default/templates/authopenid/signin.html:90 +msgid "(or select another login method above)" +msgstr "(或从上面选择一个登录方式)" + +#: skins/default/templates/authopenid/macros.html:56 +msgid "Sign in" +msgstr "注册帐号" + +#: skins/default/templates/authopenid/signin.html:4 +msgid "User login" +msgstr "用户登录" + +#: skins/default/templates/authopenid/signin.html:14 #, python-format -msgid "%(cnt)s Vote" -msgid_plural "%(cnt)s Votes " -msgstr[0] "%(cnt)s投票" -msgstr[1] "%(cnt)s投票" +msgid "" +"\n" +" Your answer to %(title)s %(summary)s will be posted once you log in\n" +" " +msgstr "" +"\n" +"登录后,你的关于 %(title)s %(summary)s 的回答将被发布" -#: skins/default/templates/user_stats.html:46 -msgid "thumb up" -msgstr "好" +#: skins/default/templates/authopenid/signin.html:21 +#, python-format +msgid "" +"Your question \n" +" %(title)s %(summary)s will be posted once you log in\n" +" " +msgstr "登录后,你的关于 %(title)s %(summary)s 的问题将被发布" -#: skins/default/templates/user_stats.html:47 -msgid "user has voted up this many times" -msgstr "该用户投的赞成票总数" +#: skins/default/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." +msgstr "" +"选择以下你最喜欢的方式登录,你的扩展服务密码将被保护且你不需.要记住或创建一个" +"新密码." -#: skins/default/templates/user_stats.html:50 -msgid "thumb down" -msgstr "差" +#: skins/default/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 "" +"你最好确认你目前的登录方式可以工作,或者你需要添加一个新的登录方式。请点击下" +"面任何一个icon选择添加一个新登录方式。" -#: skins/default/templates/user_stats.html:51 -msgid "user voted down this many times" -msgstr "用户投的反对票总数" +#: skins/default/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 "" +"请通过点击以下icon添加更多永久的登录方式,从而避免每次都是用email登录。" + +#: skins/default/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 "点击以下icon,添加一个新的登录方式或者重验证已经存在的登录方式。" + +#: skins/default/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 "你目前还没有一个登录方式,请添加一个或多个通过点击下面的icons。" + +#: skins/default/templates/authopenid/signin.html:42 +msgid "" +"Please check your email and visit the enclosed link to re-connect to your " +"account" +msgstr "请检查你的邮件并访问邮件里链接重连你的账户" + +#: skins/default/templates/authopenid/signin.html:87 +msgid "Please enter your user name and password, then sign in" +msgstr "使用帐号密码登录" + +#: skins/default/templates/authopenid/signin.html:93 +msgid "Login failed, please try again" +msgstr "登录失败,请重试" + +#: skins/default/templates/authopenid/signin.html:97 +#, fuzzy +msgid "Login or email" +msgstr "没有邮件" + +#: skins/default/templates/authopenid/signin.html:101 +msgid "Password" +msgstr "密码" + +#: skins/default/templates/authopenid/signin.html:106 +msgid "Login" +msgstr "登录" + +#: skins/default/templates/authopenid/signin.html:113 +msgid "To change your password - please enter the new one twice, then submit" +msgstr "修改密码-请输入新密码两次并提交" + +#: skins/default/templates/authopenid/signin.html:117 +msgid "New password" +msgstr "新密码" + +#: skins/default/templates/authopenid/signin.html:124 +msgid "Please, retype" +msgstr "确认密码" + +#: skins/default/templates/authopenid/signin.html:146 +msgid "Here are your current login methods" +msgstr "这里有你的登录方式" + +#: skins/default/templates/authopenid/signin.html:150 +msgid "provider" +msgstr "提供者" + +#: skins/default/templates/authopenid/signin.html:151 +msgid "last used" +msgstr "上次活动时间" + +#: skins/default/templates/authopenid/signin.html:152 +msgid "delete, if you like" +msgstr "可以删除" + +#: skins/default/templates/authopenid/signin.html:168 +#, fuzzy +msgid "cannot be deleted" +msgstr "取消" + +#: skins/default/templates/authopenid/signin.html:181 +msgid "Still have trouble signing in?" +msgstr "还有其他问题?" + +#: skins/default/templates/authopenid/signin.html:186 +msgid "Please, enter your email address below and obtain a new key" +msgstr "请输入你的邮件地址及验证码" + +#: skins/default/templates/authopenid/signin.html:188 +msgid "Please, enter your email address below to recover your account" +msgstr "恢复账户,请在下面输入你的邮件地址" + +#: skins/default/templates/authopenid/signin.html:191 +msgid "recover your account via email" +msgstr "通过邮件恢复你的账户" + +#: skins/default/templates/authopenid/signin.html:202 +msgid "Send a new recovery key" +msgstr "发送一个恢复建" + +#: skins/default/templates/authopenid/signin.html:204 +msgid "Recover your account via email" +msgstr "通过邮件恢复你的账户" + +#: skins/default/templates/authopenid/signin.html:216 +msgid "Why use OpenID?" +msgstr "为什么需要OpenID登录?" + +#: skins/default/templates/authopenid/signin.html:219 +msgid "with openid it is easier" +msgstr "" +"构建在OpenID网络认证上的本系统,不需要你注册新的帐号,即可使用我们系统的所有" +"功能" + +#: skins/default/templates/authopenid/signin.html:222 +msgid "reuse openid" +msgstr "用同一个帐号可登录互联网所有激活OpenID的网站" + +#: skins/default/templates/authopenid/signin.html:225 +msgid "openid is widely adopted" +msgstr "全世界有1.6亿OpenID帐号,和10,000个支持OpenID的站点" + +#: skins/default/templates/authopenid/signin.html:228 +msgid "openid is supported open standard" +msgstr "OpenID是有开放标准,并且有相关的基金组织提供支持" + +#: skins/default/templates/authopenid/signin.html:232 +msgid "Find out more" +msgstr "查看更多" + +#: skins/default/templates/authopenid/signin.html:233 +msgid "Get OpenID" +msgstr "获取OpenID" + +#: skins/default/templates/authopenid/signup_with_password.html:4 +msgid "Signup" +msgstr "注册帐号" + +#: skins/default/templates/authopenid/signup_with_password.html:10 +#, fuzzy +msgid "Please register by clicking on any of the icons below" +msgstr "请点击下面任何一个图标登录" + +#: skins/default/templates/authopenid/signup_with_password.html:23 +#, fuzzy +msgid "or create a new user name and password here" +msgstr "使用帐号密码登录" + +#: skins/default/templates/authopenid/signup_with_password.html:25 +msgid "Create login name and password" +msgstr "使用帐号密码登录" + +#: skins/default/templates/authopenid/signup_with_password.html:26 +msgid "Traditional signup info" +msgstr "传统登录信息" + +#: skins/default/templates/authopenid/signup_with_password.html:44 +msgid "" +"Please read and type in the two words below to help us prevent automated " +"account creation." +msgstr "请输入验证信息" + +#: skins/default/templates/authopenid/signup_with_password.html:47 +msgid "Create Account" +msgstr "创建帐号" -#: skins/default/templates/user_stats.html:59 +#: skins/default/templates/authopenid/signup_with_password.html:49 +msgid "or" +msgstr "或者" + +#: skins/default/templates/authopenid/signup_with_password.html:50 +msgid "return to OpenID login" +msgstr "返回登录" + +#: skins/default/templates/avatar/add.html:3 +#, fuzzy +msgid "add avatar" +msgstr "修改头像" + +#: skins/default/templates/avatar/add.html:5 +#, fuzzy +msgid "Change avatar" +msgstr "修改标签" + +#: skins/default/templates/avatar/add.html:6 +#: skins/default/templates/avatar/change.html:7 +#, fuzzy +msgid "Your current avatar: " +msgstr "你的详细账户信息为:" + +#: skins/default/templates/avatar/add.html:9 +#: skins/default/templates/avatar/change.html:11 +msgid "You haven't uploaded an avatar yet. Please upload one now." +msgstr "" + +#: skins/default/templates/avatar/add.html:13 +msgid "Upload New Image" +msgstr "" + +#: skins/default/templates/avatar/change.html:4 +#, fuzzy +msgid "change avatar" +msgstr "修改已保存" + +#: skins/default/templates/avatar/change.html:17 +msgid "Choose new Default" +msgstr "" + +#: skins/default/templates/avatar/change.html:22 +#, fuzzy +msgid "Upload" +msgstr "上传/" + +#: skins/default/templates/avatar/confirm_delete.html:3 +#, fuzzy +msgid "delete avatar" +msgstr "删除回答" + +#: skins/default/templates/avatar/confirm_delete.html:5 +msgid "Please select the avatars that you would like to delete." +msgstr "" + +#: skins/default/templates/avatar/confirm_delete.html:7 #, python-format -msgid "%(counter)s Tag" -msgid_plural "%(counter)s Tags" -msgstr[0] "%(counter)s标签" -msgstr[1] "%(counter)s标签" +msgid "" +"You have no avatars to delete. Please upload one now." +msgstr "" + +#: skins/default/templates/avatar/confirm_delete.html:13 +#, fuzzy +msgid "Delete These" +msgstr "删除回答" -#: skins/default/templates/user_stats.html:67 +#: skins/default/templates/blocks/answer_edit_tips.html:3 +msgid "answer tips" +msgstr "受欢迎的提问" + +#: skins/default/templates/blocks/answer_edit_tips.html:6 +msgid "please make your answer relevant to this community" +msgstr "请确认你的答案和这个主题相关" + +#: skins/default/templates/blocks/answer_edit_tips.html:9 +msgid "try to give an answer, rather than engage into a discussion" +msgstr "建议您提的问题是可以被答复的,而不仅仅是可以讨论。" + +#: skins/default/templates/blocks/answer_edit_tips.html:12 +msgid "please try to provide details" +msgstr "请详细描述您的问题" + +#: skins/default/templates/blocks/answer_edit_tips.html:15 +#: skins/default/templates/blocks/question_edit_tips.html:11 +msgid "be clear and concise" +msgstr "我们推荐您使用中文描述问题,这样可以得到更多的答复机会。" + +#: skins/default/templates/blocks/answer_edit_tips.html:19 +#: skins/default/templates/blocks/question_edit_tips.html:15 +msgid "see frequently asked questions" +msgstr "查看常见问题" + +#: skins/default/templates/blocks/answer_edit_tips.html:25 +#: skins/default/templates/blocks/question_edit_tips.html:20 +msgid "Markdown tips" +msgstr "标记栏参考" + +#: skins/default/templates/blocks/answer_edit_tips.html:29 +#: skins/default/templates/blocks/question_edit_tips.html:24 +msgid "*italic*" +msgstr "*斜体*表示*号内字体为斜体" + +#: skins/default/templates/blocks/answer_edit_tips.html:32 +#: skins/default/templates/blocks/question_edit_tips.html:27 +msgid "**bold**" +msgstr "**粗体**表示2个*号内字体为粗体" + +#: skins/default/templates/blocks/answer_edit_tips.html:36 +#: skins/default/templates/blocks/question_edit_tips.html:31 +msgid "*italic* or _italic_" +msgstr "*斜体* , _斜体_表示*号或_号内字体为斜体" + +#: skins/default/templates/blocks/answer_edit_tips.html:39 +#: skins/default/templates/blocks/question_edit_tips.html:34 +msgid "**bold** or __bold__" +msgstr "**加粗** 或者 __加粗__ " + +#: skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/question_edit_tips.html:38 +msgid "link" +msgstr "链接" + +#: skins/default/templates/blocks/answer_edit_tips.html:43 +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:38 +#: skins/default/templates/blocks/question_edit_tips.html:43 +msgid "text" +msgstr "文本" + +#: skins/default/templates/blocks/answer_edit_tips.html:47 +#: skins/default/templates/blocks/question_edit_tips.html:43 +msgid "image" +msgstr "图片" + +#: skins/default/templates/blocks/answer_edit_tips.html:51 +#: skins/default/templates/blocks/question_edit_tips.html:47 +msgid "numbered list:" +msgstr "列表:" + +#: skins/default/templates/blocks/answer_edit_tips.html:56 +#: skins/default/templates/blocks/question_edit_tips.html:52 +msgid "basic HTML tags are also supported" +msgstr "支持基本的HTML标签" + +#: skins/default/templates/blocks/answer_edit_tips.html:60 +#: skins/default/templates/blocks/question_edit_tips.html:56 +msgid "learn more about Markdown" +msgstr "有关Markdown详细说明" + +#: skins/default/templates/blocks/ask_form.html:6 +msgid "login to post question info" +msgstr "登录并提交问题" + +#: skins/default/templates/blocks/ask_form.html:10 +#, fuzzy, python-format +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/blocks/ask_form.html:34 +msgid "Login/signup to post your question" +msgstr "登录并发布问题" + +#: skins/default/templates/blocks/ask_form.html:36 +msgid "Ask your question" +msgstr "现在提问" + +#: skins/default/templates/blocks/bottom_scripts.html:7 #, python-format -msgid "see other questions with %(view_user)s's contributions tagged '%(tag_name)s' " -msgstr "查看有关%(view_user)s的%(tag_name)s标签的分享" +msgid "" +"Please note: %(app_name)s requires javascript to work properly, please " +"enable javascript in your browser, here is how" +msgstr "" -#: skins/default/templates/user_stats.html:81 +#: skins/default/templates/blocks/editor_data.html:5 #, python-format -msgid "%(counter)s Badge" -msgid_plural "%(counter)s Badges" -msgstr[0] "%(counter)s奖牌" -msgstr[1] "%(counter)s奖牌" +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/user_tabs.html:5 -msgid "User profile" -msgstr "用户概览" +#: skins/default/templates/blocks/editor_data.html:7 +#, python-format +msgid "please use %(tag_count)s tag" +msgid_plural "please use %(tag_count)s tags or less" +msgstr[0] "最多只能有%(tag_count)s个标签" -#: skins/default/templates/user_tabs.html:6 -msgid "overview" -msgstr "概览" +# todo: remove magic numbers from this file +#: skins/default/templates/blocks/editor_data.html:8 +#, 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/user_tabs.html:9 views/users.py:729 -msgid "comments and answers to others questions" -msgstr "其他问题的回复和评论" +# footer.html +#: skins/default/templates/blocks/footer.html:4 +#: skins/default/templates/blocks/header_meta_links.html:12 +msgid "about" +msgstr "关于本站" -#: skins/default/templates/user_tabs.html:10 -msgid "inbox" -msgstr "收件箱" +#: skins/default/templates/blocks/footer.html:6 +msgid "privacy policy" +msgstr "隐私政策" -#: skins/default/templates/user_tabs.html:13 -msgid "graph of user reputation" -msgstr "用户的社区积分历史" +#: skins/default/templates/blocks/footer.html:15 +msgid "give feedback" +msgstr "问题反馈" -#: skins/default/templates/user_tabs.html:14 -msgid "reputation history" -msgstr "积分" +#: skins/default/templates/blocks/footer.html:41 +#, python-format +msgid "Content on this site is licensed under a %(license)s" +msgstr "" -#: skins/default/templates/user_tabs.html:16 -msgid "questions that user selected as his/her favorite" -msgstr "用户收藏的问题" +#: skins/default/templates/blocks/header.html:8 +msgid "back to home page" +msgstr "回到首页" -#: skins/default/templates/user_tabs.html:17 -msgid "favorites" -msgstr "收藏" +#: skins/default/templates/blocks/header.html:9 +#, python-format +msgid "%(site)s logo" +msgstr "%(site)s logo" -#: skins/default/templates/user_tabs.html:19 -msgid "recent activity" -msgstr "最近活跃" +#: skins/default/templates/blocks/header.html:20 +msgid "questions" +msgstr "问题" -#: skins/default/templates/user_tabs.html:20 -msgid "activity" -msgstr "活跃问题" +#: skins/default/templates/blocks/header.html:30 +msgid "users" +msgstr "用户" -#: skins/default/templates/user_tabs.html:23 views/users.py:794 -msgid "user vote record" -msgstr "用户所有投票" +#: skins/default/templates/blocks/header.html:35 +msgid "badges" +msgstr "奖牌榜" -#: skins/default/templates/user_tabs.html:24 -msgid "casted votes" -msgstr "投票" +#: skins/default/templates/blocks/header.html:40 +msgid "ask a question" +msgstr "我要提问" -#: skins/default/templates/user_tabs.html:28 views/users.py:904 -msgid "email subscription settings" -msgstr "邮件订阅设置" +#: skins/default/templates/blocks/header_meta_links.html:8 +msgid "logout" +msgstr "退出登录" -#: skins/default/templates/user_tabs.html:29 -msgid "subscriptions" -msgstr "订阅" +#: skins/default/templates/blocks/header_meta_links.html:10 +msgid "login" +msgstr "登录" -#: skins/default/templates/user_tabs.html:33 views/users.py:216 -msgid "moderate this user" -msgstr "设为版主" +# book.html line 123 must be empty in english +#: skins/default/templates/blocks/header_meta_links.html:15 +msgid "settings" +msgstr "设置" + +#: skins/default/templates/blocks/input_bar.html:34 +msgid "search" +msgstr "搜索" + +#: skins/default/templates/blocks/question_edit_tips.html:3 +msgid "question tips" +msgstr "受欢迎的提问" + +#: skins/default/templates/blocks/question_edit_tips.html:5 +msgid "please ask a relevant question" +msgstr "请问与此社区相关的问题" + +#: skins/default/templates/blocks/question_edit_tips.html:8 +msgid "please try provide enough details" +msgstr "请详细描述您的问题" + +# book.html line 123 must be empty in english +#: skins/default/templates/blocks/tag_selector.html:4 +msgid "Interesting tags" +msgstr "感兴趣的标签" + +#: skins/default/templates/blocks/tag_selector.html:18 +#: skins/default/templates/blocks/tag_selector.html:34 +#: skins/default/templates/user_profile/user_moderate.html:40 +msgid "Add" +msgstr "添加" + +#: skins/default/templates/blocks/tag_selector.html:20 +msgid "Ignored tags" +msgstr "忽略标签" + +#: skins/default/templates/blocks/tag_selector.html:36 +#, fuzzy +msgid "Display tag filter" +msgstr "选择邮件标签过来" + +#: skins/default/templates/main_page/content.html:13 +msgid "Did not find what you were looking for?" +msgstr "你找的问题没有?" + +#: skins/default/templates/main_page/content.html:14 +msgid "Please, post your question!" +msgstr "现在提问" + +#: skins/default/templates/main_page/headline.html:7 +msgid "subscribe to the questions feed" +msgstr "订阅最新问题" + +#: skins/default/templates/main_page/headline.html:8 +msgid "rss feed" +msgstr "rss " + +#: skins/default/templates/main_page/headline.html:12 views/readers.py:131 +#, fuzzy, python-format +msgid "%(q_num)s question, tagged" +msgid_plural "%(q_num)s questions, tagged" +msgstr[0] "%(q_num)s个问题" + +#: skins/default/templates/main_page/headline.html:14 views/readers.py:139 +#, python-format +msgid "%(q_num)s question" +msgid_plural "%(q_num)s questions" +msgstr[0] "%(q_num)s个问题" + +#: skins/default/templates/main_page/headline.html:17 +#, python-format +msgid "with %(author_name)s's contributions" +msgstr "%(author_name)s的贡献" + +#: skins/default/templates/main_page/headline.html:28 +msgid "Search tips:" +msgstr "搜索主题" + +#: skins/default/templates/main_page/headline.html:31 +msgid "reset author" +msgstr "重置作者" + +#: skins/default/templates/main_page/headline.html:33 +#: skins/default/templates/main_page/headline.html:36 +#: 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:34 +msgid "reset tags" +msgstr "重置标签" + +#: skins/default/templates/main_page/headline.html:37 +#: skins/default/templates/main_page/headline.html:40 +msgid "start over" +msgstr "重新开始" + +#: skins/default/templates/main_page/headline.html:42 +msgid " - to expand, or dig in by adding more tags and revising the query." +msgstr " - 通过添加更多标签和改进查询来扩展和挖掘信息" + +#: skins/default/templates/main_page/headline.html:45 +msgid "Search tip:" +msgstr "搜索主题 :" + +#: skins/default/templates/main_page/headline.html:45 +msgid "add tags and a query to focus your search" +msgstr "添加标签和查询条件进行更精确查询" + +#: skins/default/templates/main_page/nothing_found.html:4 +msgid "There are no unanswered questions here" +msgstr "没有未回答的问题" -#: skins/default/templates/user_tabs.html:34 +#: skins/default/templates/main_page/nothing_found.html:7 #, fuzzy -msgid "moderation" -msgstr "" +msgid "No questions here. " +msgstr "还没有收藏" -#: skins/default/templates/users.html:4 skins/default/templates/users.html:7 -msgid "Users" -msgstr "用户列表" +#: skins/default/templates/main_page/nothing_found.html:8 +#, fuzzy +msgid "Please star (bookmark) some questions or follow some users." +msgstr "当你查看问题时可以收藏" -#: skins/default/templates/users.html:19 skins/default/templates/users.html:20 -msgid "recent" -msgstr "按最新注册" +#: skins/default/templates/main_page/nothing_found.html:13 +msgid "You can expand your search by " +msgstr "扩展你的查询" -#: skins/default/templates/users.html:31 skins/default/templates/users.html:32 -msgid "by username" -msgstr "按用户名" +#: skins/default/templates/main_page/nothing_found.html:16 +msgid "resetting author" +msgstr "重置作者" -#: skins/default/templates/users.html:38 -#, python-format -msgid "users matching query %(suser)s:" -msgstr "匹配查询%(suser)s用户:" +# book.html line 123 must be empty in english +#: skins/default/templates/main_page/nothing_found.html:19 +msgid "resetting tags" +msgstr "重置标签" -#: skins/default/templates/users.html:41 -msgid "Nothing found." -msgstr "没有找到相关数据。" +#: skins/default/templates/main_page/nothing_found.html:22 +#: skins/default/templates/main_page/nothing_found.html:25 +msgid "starting over" +msgstr "重新开始" -#: skins/default/templates/users_questions.html:9 -#: skins/default/templates/users_questions.html:17 -#, python-format -msgid "this questions was selected as favorite %(cnt)s time" -msgid_plural "this questions was selected as favorite %(cnt)s times" -msgstr[0] "这个问题被收藏%(cnt)s次" -msgstr[1] "这个问题被收藏%(cnt)s次" +#: skins/default/templates/main_page/nothing_found.html:30 +msgid "Please always feel free to ask your question!" +msgstr "发布你自己的问题" -#: skins/default/templates/users_questions.html:10 -msgid "thumb-up on" -msgstr "叫好开" +#: skins/default/templates/main_page/sidebar.html:8 +msgid "Contributors" +msgstr "贡献者" -#: skins/default/templates/users_questions.html:18 -msgid "thumb-up off" -msgstr "叫好关" +#: skins/default/templates/main_page/sidebar.html:25 +msgid "Related tags" +msgstr "相关标签" -#: skins/default/templates/authopenid/changeemail.html:2 -#: skins/default/templates/authopenid/changeemail.html:8 -#: skins/default/templates/authopenid/changeemail.html:36 -msgid "Change email" -msgstr "更换电子邮件" +#: skins/default/templates/main_page/tab_bar.html:5 +msgid "In:" +msgstr "选择:" -#: skins/default/templates/authopenid/changeemail.html:10 -msgid "Save your email address" -msgstr "保存您的电子邮件地址" +#: skins/default/templates/main_page/tab_bar.html:14 +msgid "see unanswered questions" +msgstr "查看没有回答的问题" -#: skins/default/templates/authopenid/changeemail.html:15 -#, python-format -msgid "change %(email)s info" -msgstr "更换%(email)s电子邮件" +#: skins/default/templates/main_page/tab_bar.html:20 +#, fuzzy +msgid "see your followed questions" +msgstr "查看我收藏问题" -#: skins/default/templates/authopenid/changeemail.html:17 -#, python-format -msgid "here is why email is required, see %(gravatar_faq_url)s" -msgstr "为什么邮件是必须的,查看 %(gravatar_faq_url)s" +#: skins/default/templates/main_page/tab_bar.html:21 +msgid "followed" +msgstr "" -#: skins/default/templates/authopenid/changeemail.html:29 -msgid "Your new Email" -msgstr "你的新邮件地址" +#: skins/default/templates/main_page/tab_bar.html:25 +msgid "Sort by:" +msgstr "排序" -#: skins/default/templates/authopenid/changeemail.html:29 -msgid "Your Email" -msgstr "你的邮件" +#: skins/default/templates/user_profile/user.html:13 +#, python-format +msgid "%(username)s's profile" +msgstr "%(username)s用户概览" -#: skins/default/templates/authopenid/changeemail.html:36 -msgid "Save Email" -msgstr "保存邮件地址" +#: skins/default/templates/user_profile/user_edit.html:4 +msgid "Edit user profile" +msgstr "修改个人资料" -#: skins/default/templates/authopenid/changeemail.html:45 -msgid "Validate email" -msgstr "更换电子邮件" +#: skins/default/templates/user_profile/user_edit.html:7 +msgid "edit profile" +msgstr "修改资料" -#: skins/default/templates/authopenid/changeemail.html:48 -#, python-format -msgid "validate %(email)s info or go to %(change_email_url)s" -msgstr "验证%(email)s 信息或到%(change_email_url)s" +#: skins/default/templates/user_profile/user_edit.html:17 +#: skins/default/templates/user_profile/user_info.html:15 +msgid "change picture" +msgstr "修改图片" -#: skins/default/templates/authopenid/changeemail.html:52 -msgid "Email not changed" -msgstr "邮件地址未修改" +#: skins/default/templates/user_profile/user_edit.html:20 +msgid "Registered user" +msgstr "注册用户" -#: skins/default/templates/authopenid/changeemail.html:55 -#, python-format -msgid "old %(email)s kept, if you like go to %(change_email_url)s" -msgstr "旧邮件%(email)s被保存,你可以去%(change_email_url)s修改" +#: skins/default/templates/user_profile/user_edit.html:27 +msgid "Screen Name" +msgstr "用户名" -#: skins/default/templates/authopenid/changeemail.html:59 -msgid "Email changed" -msgstr "邮件地址已改" +#: skins/default/templates/user_profile/user_edit.html:83 +#: skins/default/templates/user_profile/user_email_subscriptions.html:21 +msgid "Update" +msgstr "更新" -#: skins/default/templates/authopenid/changeemail.html:62 -#, python-format -msgid "your current %(email)s can be used for this" -msgstr "你目前的%(email)s邮件地址可以被用于这里" +#: skins/default/templates/user_profile/user_email_subscriptions.html:4 +#: skins/default/templates/user_profile/user_tabs.html:42 +msgid "subscriptions" +msgstr "订阅" -#: skins/default/templates/authopenid/changeemail.html:66 -msgid "Email verified" -msgstr "邮件地址确认" +#: skins/default/templates/user_profile/user_email_subscriptions.html:7 +msgid "Email subscription settings" +msgstr "邮件订阅设置" -#: skins/default/templates/authopenid/changeemail.html:69 -msgid "thanks for verifying email" -msgstr "感谢你确认邮件地址" +#: skins/default/templates/user_profile/user_email_subscriptions.html:8 +msgid "email subscription settings info" +msgstr "邮件订阅设置信息" -#: skins/default/templates/authopenid/changeemail.html:73 -msgid "email key not sent" -msgstr "邮件地址未发送" +#: skins/default/templates/user_profile/user_email_subscriptions.html:22 +msgid "Stop sending email" +msgstr "停止发送邮件" -#: skins/default/templates/authopenid/changeemail.html:76 -#, python-format -msgid "email key not sent %(email)s change email here %(change_link)s" -msgstr "邮件地址未发送%(email)s,点这里修改%(change_link)s" +#: skins/default/templates/user_profile/user_favorites.html:4 +#: skins/default/templates/user_profile/user_tabs.html:27 +#, fuzzy +msgid "followed questions" +msgstr "所有问题" -#: skins/default/templates/authopenid/complete.html:21 -#: skins/default/templates/authopenid/complete.html:24 -msgid "Registration" -msgstr "注册" +#: skins/default/templates/user_profile/user_inbox.html:18 +#: skins/default/templates/user_profile/user_tabs.html:12 +msgid "inbox" +msgstr "收件箱" -#: skins/default/templates/authopenid/complete.html:29 -#, python-format -msgid "register new %(provider)s account info, see %(gravatar_faq_url)s" -msgstr "注册新 %(provider)s 账户信息, 查看 %(gravatar_faq_url)s" +#: skins/default/templates/user_profile/user_inbox.html:34 +msgid "Sections:" +msgstr "段" -#: skins/default/templates/authopenid/complete.html:32 +#: skins/default/templates/user_profile/user_inbox.html:38 #, 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" +msgid "forum responses (%(re_count)s)" +msgstr "论坛回应 (%(re_count)s)" -#: skins/default/templates/authopenid/complete.html:36 +#: skins/default/templates/user_profile/user_inbox.html:43 #, python-format -msgid "register new external %(provider)s account info, see %(gravatar_faq_url)s" -msgstr "注册新扩展%(provider)s 账户信息, 查看 %(gravatar_faq_url)s" +msgid "flagged items (%(flag_count)s)" +msgstr "已标记项目 (%(flag_count)s)" -#: skins/default/templates/authopenid/complete.html:39 -#, python-format -msgid "register new Facebook connect account info, see %(gravatar_faq_url)s" -msgstr "注册新Facebook账户信息, 查看 %(gravatar_faq_url)s" +#: skins/default/templates/user_profile/user_inbox.html:49 +msgid "select:" +msgstr "选择:" -# todo: review this message may be confusing user -#: skins/default/templates/authopenid/complete.html:42 -msgid "This account already exists, please use another." -msgstr "输入您的新帐号已经存在,请使用其他帐号。" +#: skins/default/templates/user_profile/user_inbox.html:51 +msgid "seen" +msgstr "查看" -#: skins/default/templates/authopenid/complete.html:61 -msgid "Screen name label" -msgstr "昵称" +#: skins/default/templates/user_profile/user_inbox.html:52 +msgid "new" +msgstr "新" -#: skins/default/templates/authopenid/complete.html:68 -msgid "Email address label" -msgstr "您的电子邮件地址" +#: skins/default/templates/user_profile/user_inbox.html:53 +msgid "none" +msgstr "无" -#: skins/default/templates/authopenid/complete.html:74 -#: skins/default/templates/authopenid/signup_with_password.html:17 -msgid "receive updates motivational blurb" -msgstr "获取商品信息更新" +#: skins/default/templates/user_profile/user_inbox.html:54 +msgid "mark as seen" +msgstr "已看标记" -#: skins/default/templates/authopenid/complete.html:78 -#: skins/default/templates/authopenid/signup_with_password.html:21 -msgid "please select one of the options above" -msgstr "请从以上选项中选择一项" +#: skins/default/templates/user_profile/user_inbox.html:55 +msgid "mark as new" +msgstr "新标记" -#: skins/default/templates/authopenid/complete.html:81 -msgid "Tag filter tool will be your right panel, once you log in." -msgstr "当你登录后,标签过滤工具将出现在你右边的面板里" +#: skins/default/templates/user_profile/user_inbox.html:56 +msgid "dismiss" +msgstr "驳回" -#: skins/default/templates/authopenid/complete.html:82 -msgid "create account" -msgstr "创建帐号" +#: skins/default/templates/user_profile/user_info.html:19 +msgid "remove" +msgstr "" -#: skins/default/templates/authopenid/confirm_email.txt:1 -msgid "Thank you for registering at our Q&A forum!" -msgstr "感谢你在我们的Q&A论坛注册" +#: skins/default/templates/user_profile/user_info.html:36 +msgid "update profile" +msgstr "更新我的资料" -#: skins/default/templates/authopenid/confirm_email.txt:3 -msgid "Your account details are:" -msgstr "你的详细账户信息为:" +#: skins/default/templates/user_profile/user_info.html:40 +msgid "manage login methods" +msgstr "管理登录方法" -#: skins/default/templates/authopenid/confirm_email.txt:5 -msgid "Username:" -msgstr "用户名" +#: skins/default/templates/user_profile/user_info.html:53 +msgid "real name" +msgstr "姓名" -#: skins/default/templates/authopenid/confirm_email.txt:6 -msgid "Password:" -msgstr "密码" +#: skins/default/templates/user_profile/user_info.html:58 +msgid "member for" +msgstr "已加入" -#: skins/default/templates/authopenid/confirm_email.txt:8 -msgid "Please sign in here:" -msgstr "请在这登录" +#: skins/default/templates/user_profile/user_info.html:63 +msgid "last seen" +msgstr "上次活动时间" -#: skins/default/templates/authopenid/confirm_email.txt:11 -#: skins/default/templates/authopenid/email_validation.txt:13 -msgid "" -"Sincerely,\n" -"Forum Administrator" -msgstr "您忠实的管理员" +#: skins/default/templates/user_profile/user_info.html:69 +msgid "user website" +msgstr "个人网站" -#: skins/default/templates/authopenid/email_validation.txt:1 -msgid "Greetings from the Q&A forum" -msgstr "来自Q&A论坛的祝福" +#: skins/default/templates/user_profile/user_info.html:75 +msgid "location" +msgstr "城市" -#: skins/default/templates/authopenid/email_validation.txt:3 -msgid "To make use of the Forum, please follow the link below:" -msgstr "请跟随以下的链接来使用论坛:" +# user_info.html +#: skins/default/templates/user_profile/user_info.html:82 +msgid "age" +msgstr "年龄" -#: skins/default/templates/authopenid/email_validation.txt:7 -msgid "Following the link above will help us verify your email address." -msgstr "点击上面的链接可以帮助我们确认你的邮件地址" +#: skins/default/templates/user_profile/user_info.html:83 +msgid "age unit" +msgstr "岁" -#: skins/default/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" -"for any inconvenience" -msgstr "如果你认为此消息被错误的发送,不要进行更进一步的动作.仅仅忽略这封邮件,为给您带来的不便道歉." +#: skins/default/templates/user_profile/user_info.html:90 +msgid "todays unused votes" +msgstr "今日剩余投票数" -#: skins/default/templates/authopenid/signin.html:3 -msgid "User login" -msgstr "用户登录" +#: skins/default/templates/user_profile/user_info.html:91 +msgid "votes left" +msgstr "剩余投票数" -#: skins/default/templates/authopenid/signin.html:11 -#, python-format -msgid "" -"\n" -" Your answer to %(title)s %(summary)s will be posted once you log in\n" -" " +#: skins/default/templates/user_profile/user_moderate.html:4 +#: skins/default/templates/user_profile/user_tabs.html:48 +msgid "moderation" msgstr "" -"\n" -"登录后,你的关于 %(title)s %(summary)s 的回答将被发布" -#: skins/default/templates/authopenid/signin.html:18 +#: skins/default/templates/user_profile/user_moderate.html:8 #, python-format -msgid "" -"Your question \n" -" %(title)s %(summary)s will be posted once you log in\n" -" " -msgstr "登录后,你的关于 %(title)s %(summary)s 的问题将被发布" - -#: skins/default/templates/authopenid/signin.html:25 -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 "选择以下你最喜欢的方式登录,你的扩展服务密码将被保护且你不需.要记住或创建一个新密码." - -#: skins/default/templates/authopenid/signin.html:28 -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 "你最好确认你目前的登录方式可以工作,或者你需要添加一个新的登录方式。请点击下面任何一个icon选择添加一个新登录方式。" - -#: skins/default/templates/authopenid/signin.html:30 -msgid "Please add a more permanent login method by clicking one of the icons below, to avoid logging in via email each time." -msgstr "请通过点击以下icon添加更多永久的登录方式,从而避免每次都是用email登录。" +msgid "%(username)s's current status is \"%(status)s\"" +msgstr "%(username)s当前的状态是 \"%(status)s\"" -#: skins/default/templates/authopenid/signin.html:34 -msgid "Click on one of the icons below to add a new login method or re-validate an existing one." -msgstr "点击以下icon,添加一个新的登录方式或者重验证已经存在的登录方式。" +#: skins/default/templates/user_profile/user_moderate.html:11 +msgid "User status changed" +msgstr "用户状态已修改" -#: skins/default/templates/authopenid/signin.html:36 -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 "你目前还没有一个登录方式,请添加一个或多个通过点击下面的icons。" +#: skins/default/templates/user_profile/user_moderate.html:20 +msgid "Save" +msgstr "保存" -#: skins/default/templates/authopenid/signin.html:39 -msgid "Please check your email and visit the enclosed link to re-connect to your account" -msgstr "请检查你的邮件并访问邮件里链接重连你的账户" +#: skins/default/templates/user_profile/user_moderate.html:26 +#, python-format +msgid "Your current reputation is %(reputation)s points" +msgstr "你当前的积分是 %(reputation)s " -#: skins/default/templates/authopenid/signin.html:86 -msgid "Please enter your user name, then sign in" -msgstr "请输入你的用户名,然后登录" +#: skins/default/templates/user_profile/user_moderate.html:28 +#, python-format +msgid "User's current reputation is %(reputation)s points" +msgstr "用户当前的积分是 %(reputation)s" -#: skins/default/templates/authopenid/signin.html:87 -#: skins/default/templates/authopenid/signin.html:109 -msgid "(or select another login method above)" -msgstr "(或从上面选择一个登录方式)" +#: skins/default/templates/user_profile/user_moderate.html:32 +msgid "User reputation changed" +msgstr "用户积分已修改" -#: skins/default/templates/authopenid/signin.html:89 -msgid "Sign in" -msgstr "注册帐号" +#: skins/default/templates/user_profile/user_moderate.html:39 +msgid "Subtract" +msgstr "减去" -#: skins/default/templates/authopenid/signin.html:107 -msgid "Please enter your user name and password, then sign in" -msgstr "使用帐号密码登录" +#: skins/default/templates/user_profile/user_moderate.html:44 +#, python-format +msgid "Send message to %(username)s" +msgstr "发送信息给%(username)s" -#: skins/default/templates/authopenid/signin.html:111 -msgid "Login failed, please try again" -msgstr "登录失败,请重试" +#: skins/default/templates/user_profile/user_moderate.html:45 +msgid "" +"An email will be sent to the user with 'reply-to' field set to your email " +"address. Please make sure that your address is entered correctly." +msgstr "邮件将被发送给接受回复的用户地址,请确保你输入的邮件地址是正确的" -#: skins/default/templates/authopenid/signin.html:114 -msgid "Login name" -msgstr "用户名" +#: skins/default/templates/user_profile/user_moderate.html:47 +msgid "Message sent" +msgstr "发送消息" -#: skins/default/templates/authopenid/signin.html:118 -msgid "Password" -msgstr "密码" +#: skins/default/templates/user_profile/user_moderate.html:65 +msgid "Send message" +msgstr "发送消息" -#: skins/default/templates/authopenid/signin.html:122 -msgid "Login" -msgstr "登录" +#: skins/default/templates/user_profile/user_moderate.html:75 +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 "" -#: skins/default/templates/authopenid/signin.html:129 -msgid "To change your password - please enter the new one twice, then submit" -msgstr "修改密码-请输入新密码两次并提交" +#: skins/default/templates/user_profile/user_moderate.html:78 +msgid "" +"Moderators have the same privileges as administrators, but cannot add or " +"remove user status of 'moderator' or 'administrator'." +msgstr "" -#: skins/default/templates/authopenid/signin.html:132 -msgid "New password" -msgstr "新密码" +#: skins/default/templates/user_profile/user_moderate.html:81 +msgid "'Approved' status means the same as regular user." +msgstr "" -#: skins/default/templates/authopenid/signin.html:137 -msgid "Please, retype" -msgstr "确认密码" +#: skins/default/templates/user_profile/user_moderate.html:84 +#, fuzzy +msgid "Suspended users can only edit or delete their own posts." +msgstr "暂停使用的用户不能标记信息" -#: skins/default/templates/authopenid/signin.html:156 -msgid "Here are your current login methods" -msgstr "这里有你的登录方式" +#: skins/default/templates/user_profile/user_moderate.html:87 +msgid "" +"Blocked users can only login and send feedback to the site administrators." +msgstr "" -#: skins/default/templates/authopenid/signin.html:160 -msgid "provider" -msgstr "提供者" +#: skins/default/templates/user_profile/user_network.html:5 +#: skins/default/templates/user_profile/user_tabs.html:18 +msgid "network" +msgstr "" -#: skins/default/templates/authopenid/signin.html:161 -msgid "last used" -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] "" -#: skins/default/templates/authopenid/signin.html:162 -msgid "delete, if you like" -msgstr "可以删除" +#: skins/default/templates/user_profile/user_network.html:14 +#, python-format +msgid "Following %(count)s person" +msgid_plural "Following %(count)s people" +msgstr[0] "" -#: skins/default/templates/authopenid/signin.html:187 -msgid "Still have trouble signing in?" -msgstr "还有其他问题?" +#: skins/default/templates/user_profile/user_network.html:19 +msgid "" +"Your network is empty. Would you like to follow someone? - Just visit their " +"profiles and click \"follow\"" +msgstr "" -#: skins/default/templates/authopenid/signin.html:192 -msgid "Please, enter your email address below and obtain a new key" -msgstr "请输入你的邮件地址及验证码" +#: skins/default/templates/user_profile/user_network.html:21 +#, fuzzy, python-format +msgid "%(username)s's network is empty" +msgstr "%(username)s用户概览" -#: skins/default/templates/authopenid/signin.html:194 -msgid "Please, enter your email address below to recover your account" -msgstr "恢复账户,请在下面输入你的邮件地址" +#: skins/default/templates/user_profile/user_recent.html:4 +#: skins/default/templates/user_profile/user_tabs.html:31 +msgid "activity" +msgstr "活跃问题" -#: skins/default/templates/authopenid/signin.html:197 -msgid "recover your account via email" -msgstr "通过邮件恢复你的账户" +#: skins/default/templates/user_profile/user_recent.html:21 +#: skins/default/templates/user_profile/user_recent.html:28 +msgid "source" +msgstr "" -#: skins/default/templates/authopenid/signin.html:208 -msgid "Send a new recovery key" -msgstr "发送一个恢复建" +#: skins/default/templates/user_profile/user_reputation.html:4 +#, fuzzy +msgid "karma" +msgstr "按积分排序" -#: skins/default/templates/authopenid/signin.html:210 -msgid "Recover your account via email" -msgstr "通过邮件恢复你的账户" +#: skins/default/templates/user_profile/user_reputation.html:11 +msgid "Your karma change log." +msgstr "你的积分历史" -#: skins/default/templates/authopenid/signin.html:221 -msgid "Why use OpenID?" -msgstr "为什么需要OpenID登录?" +#: skins/default/templates/user_profile/user_reputation.html:13 +#, python-format +msgid "%(user_name)s's karma change log" +msgstr "%(user_name)s的积分历史" -#: skins/default/templates/authopenid/signin.html:224 -msgid "with openid it is easier" -msgstr "构建在OpenID网络认证上的本系统,不需要你注册新的帐号,即可使用我们系统的所有功能" +#: skins/default/templates/user_profile/user_stats.html:5 +#: skins/default/templates/user_profile/user_tabs.html:7 +msgid "overview" +msgstr "概览" -#: skins/default/templates/authopenid/signin.html:227 -msgid "reuse openid" -msgstr "用同一个帐号可登录互联网所有激活OpenID的网站" +#: skins/default/templates/user_profile/user_stats.html:11 +#, python-format +msgid "%(counter)s Question" +msgid_plural "%(counter)s Questions" +msgstr[0] "%(counter)s个问题" -#: skins/default/templates/authopenid/signin.html:230 -msgid "openid is widely adopted" -msgstr "全世界有1.6亿OpenID帐号,和10,000个支持OpenID的站点" +#: skins/default/templates/user_profile/user_stats.html:16 +#, python-format +msgid "%(counter)s Answer" +msgid_plural "%(counter)s Answers" +msgstr[0] "%(counter)s个答案" -#: skins/default/templates/authopenid/signin.html:233 -msgid "openid is supported open standard" -msgstr "OpenID是有开放标准,并且有相关的基金组织提供支持" +#: 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/authopenid/signin.html:237 -msgid "Find out more" -msgstr "查看更多" +#: skins/default/templates/user_profile/user_stats.html:24 +msgid "this answer has been selected as correct" +msgstr "该回答已被设为最佳答案" -#: skins/default/templates/authopenid/signin.html:238 -msgid "Get OpenID" -msgstr "获取OpenID" +#: skins/default/templates/user_profile/user_stats.html:34 +#, python-format +msgid "(%(comment_count)s comment)" +msgid_plural "the answer has been commented %(comment_count)s times" +msgstr[0] "%(comment_count)s次评论" -#: skins/default/templates/authopenid/signup_with_password.html:3 -msgid "Signup" -msgstr "注册帐号" +#: skins/default/templates/user_profile/user_stats.html:44 +#, python-format +msgid "%(cnt)s Vote" +msgid_plural "%(cnt)s Votes " +msgstr[0] "%(cnt)s投票" -#: skins/default/templates/authopenid/signup_with_password.html:6 -msgid "Create login name and password" -msgstr "使用帐号密码登录" +#: skins/default/templates/user_profile/user_stats.html:50 +msgid "thumb up" +msgstr "好" -#: skins/default/templates/authopenid/signup_with_password.html:8 -msgid "Traditional signup info" -msgstr "传统登录信息" +#: skins/default/templates/user_profile/user_stats.html:51 +msgid "user has voted up this many times" +msgstr "该用户投的赞成票总数" -#: skins/default/templates/authopenid/signup_with_password.html:24 -msgid "Please read and type in the two words below to help us prevent automated account creation." -msgstr "请输入验证信息" +#: skins/default/templates/user_profile/user_stats.html:54 +msgid "thumb down" +msgstr "差" -#: skins/default/templates/authopenid/signup_with_password.html:26 -msgid "Create Account" -msgstr "创建帐号" +#: skins/default/templates/user_profile/user_stats.html:55 +msgid "user voted down this many times" +msgstr "用户投的反对票总数" -#: skins/default/templates/authopenid/signup_with_password.html:27 -msgid "or" -msgstr "或者" +#: skins/default/templates/user_profile/user_stats.html:63 +#, python-format +msgid "%(counter)s Tag" +msgid_plural "%(counter)s Tags" +msgstr[0] "%(counter)s标签" -#: skins/default/templates/authopenid/signup_with_password.html:28 -msgid "return to OpenID login" -msgstr "返回登录" +#: skins/default/templates/user_profile/user_stats.html:99 +#, python-format +msgid "%(counter)s Badge" +msgid_plural "%(counter)s Badges" +msgstr[0] "%(counter)s奖牌" -#: skins/default/templates/unused/email_base.html:8 -msgid "home" -msgstr "首页" +#: skins/default/templates/user_profile/user_stats.html:122 +#, fuzzy +msgid "Answer to:" +msgstr "受欢迎的提问" -#: skins/default/templates/unused/notarobot.html:3 -msgid "Please prove that you are a Human Being" -msgstr "请证明你是人" +#: skins/default/templates/user_profile/user_tabs.html:5 +msgid "User profile" +msgstr "用户概览" -#: skins/default/templates/unused/notarobot.html:10 -msgid "I am a Human Being" -msgstr "我是人" +#: skins/default/templates/user_profile/user_tabs.html:10 views/users.py:772 +msgid "comments and answers to others questions" +msgstr "其他问题的回复和评论" -#: skins/default/templates/unused/question_counter_widget.html:78 -msgid "Please decide if you like this question or not by voting" -msgstr "请通过投票决定你是否喜欢此问题" +#: skins/default/templates/user_profile/user_tabs.html:16 +msgid "followers and followed users" +msgstr "" -#: skins/default/templates/unused/question_counter_widget.html:84 -msgid "" -"\n" -" vote\n" -" " -msgid_plural "" -"\n" -" votes\n" -" " -msgstr[0] "" -"\n" -"投票" -msgstr[1] "" -"\n" -"投票" +#: skins/default/templates/user_profile/user_tabs.html:21 +msgid "graph of user reputation" +msgstr "用户的社区积分历史" -#: skins/default/templates/unused/question_counter_widget.html:93 -#: skins/default/templates/unused/question_list.html:23 -#: skins/default/templates/unused/questions_ajax.html:27 -msgid "this answer has been accepted to be correct" -msgstr "答案已被接受为正确答案" +#: skins/default/templates/user_profile/user_tabs.html:23 +msgid "reputation history" +msgstr "积分" -#: skins/default/templates/unused/question_counter_widget.html:99 -msgid "" -"\n" -" answer \n" -" " -msgid_plural "" -"\n" -" answers \n" -" " -msgstr[0] "" -"\n" -"回答" -msgstr[1] "" -"\n" -"回答" +#: skins/default/templates/user_profile/user_tabs.html:25 +#, fuzzy +msgid "questions that user is following" +msgstr "用户收藏的问题" -#: skins/default/templates/unused/question_counter_widget.html:111 -msgid "" -"\n" -" view\n" -" " -msgid_plural "" -"\n" -" views\n" -" " -msgstr[0] "" -"\n" -"浏览" -msgstr[1] "" -"\n" -"浏览" +#: skins/default/templates/user_profile/user_tabs.html:29 +msgid "recent activity" +msgstr "最近活跃" -#: skins/default/templates/unused/question_list.html:15 -msgid "" -"\n" -" vote\n" -" " -msgid_plural "" -"\n" -" votes\n" -" " -msgstr[0] "" -"\n" -"投票" -msgstr[1] "" -"\n" -"投票" +#: skins/default/templates/user_profile/user_tabs.html:34 views/users.py:847 +msgid "user vote record" +msgstr "用户所有投票" -#: skins/default/templates/unused/question_list.html:35 -msgid "" -"\n" -" answer \n" -" " -msgid_plural "" -"\n" -" answers \n" -" " -msgstr[0] "" -"\n" -"回答" -msgstr[1] "" -"\n" -"回答" +#: skins/default/templates/user_profile/user_tabs.html:36 +msgid "casted votes" +msgstr "投票" -#: skins/default/templates/unused/question_list.html:47 -msgid "" -"\n" -" view\n" -" " -msgid_plural "" -"\n" -" views\n" -" " -msgstr[0] "" -"\n" -"浏览" -msgstr[1] "" -"\n" -"浏览" +#: skins/default/templates/user_profile/user_tabs.html:40 views/users.py:960 +msgid "email subscription settings" +msgstr "邮件订阅设置" -#: skins/default/templates/unused/question_summary_list_roll.html:13 -msgid "answers" -msgstr "回答" +#: skins/default/templates/user_profile/user_tabs.html:46 views/users.py:224 +msgid "moderate this user" +msgstr "设为版主" -#: skins/default/templates/unused/question_summary_list_roll.html:14 +#: skins/default/templates/user_profile/user_votes.html:4 msgid "votes" msgstr "票" -#: skins/default/templates/unused/question_summary_list_roll.html:15 -msgid "views" -msgstr "浏览" - -#: templatetags/extra_filters.py:168 templatetags/extra_filters_jinja.py:234 +#: templatetags/extra_filters.py:145 templatetags/extra_filters_jinja.py:240 msgid "no items in counter" msgstr "无" -#: utils/decorators.py:82 views/commands.py:132 views/commands.py:149 +#: utils/decorators.py:90 views/commands.py:112 views/commands.py:132 msgid "Oops, apologies - there was some error" msgstr "对不起,系统错误" +#: utils/decorators.py:109 +#, fuzzy +msgid "Please login to post" +msgstr "请登录" + +#: utils/decorators.py:205 +msgid "Spam was detected on your post, sorry for if this is a mistake" +msgstr "" + #: utils/forms.py:32 msgid "this field is required" msgstr "必填项" @@ -5121,188 +6075,717 @@ msgstr "确认密码" msgid "sorry, entered passwords did not match, please try again" msgstr "对不起,你输入的密码不匹配,请重新输入" -#: utils/functions.py:63 -#, python-format -msgid "on %(date)s" -msgstr "在%(date)s" - -#: utils/functions.py:67 +#: utils/functions.py:74 msgid "2 days ago" msgstr "2天前" -#: utils/functions.py:69 +#: utils/functions.py:76 msgid "yesterday" msgstr "昨天" -#: utils/functions.py:71 +#: utils/functions.py:79 #, python-format msgid "%(hr)d hour ago" msgid_plural "%(hr)d hours ago" msgstr[0] "%(hr)d小时前" -msgstr[1] "%(hr)d小时前" -#: utils/functions.py:73 +#: utils/functions.py:85 #, python-format msgid "%(min)d min ago" msgid_plural "%(min)d mins ago" msgstr[0] "%(min)d分钟前" -msgstr[1] "%(min)d分钟前" -#: views/commands.py:42 +#: views/avatar_views.py:99 +msgid "Successfully uploaded a new avatar." +msgstr "" + +#: views/avatar_views.py:140 +msgid "Successfully updated your avatar." +msgstr "" + +#: views/avatar_views.py:180 +msgid "Successfully deleted the requested avatars." +msgstr "" + +#: views/commands.py:39 msgid "anonymous users cannot vote" msgstr "匿名用户不能投票" -#: views/commands.py:62 +#: views/commands.py:59 msgid "Sorry you ran out of votes for today" msgstr "对不起,你今天的投票已用完" -#: views/commands.py:68 +#: views/commands.py:65 #, python-format msgid "You have %(votes_left)s votes left for today" msgstr "你今天还可以投%(votes_left)s次票" -#: views/commands.py:139 +#: views/commands.py:122 msgid "Sorry, but anonymous users cannot access the inbox" msgstr "对不起,匿名用户没有收件箱" -#: views/commands.py:211 +#: views/commands.py:192 msgid "Sorry, something is not right here..." msgstr "对不起,这里出了些问题" -#: views/commands.py:226 +#: views/commands.py:207 msgid "Sorry, but anonymous users cannot accept answers" msgstr "匿名用户不能接受回答" -#: views/commands.py:307 +#: views/commands.py:288 #, python-format msgid "subscription saved, %(email)s needs validation, see %(details_url)s" msgstr "订阅已保存,%(email)s邮件需要验证, 查看 %(details_url)s" -#: views/commands.py:315 +#: views/commands.py:295 msgid "email update frequency has been set to daily" msgstr "邮件更新频率已设置成每日更新" -#: views/commands.py:373 -msgid "Bad request" -msgstr "错误请求" +#: views/commands.py:400 +#, python-format +msgid "Tag subscription was canceled (undo)." +msgstr "" + +#: views/commands.py:409 +#, fuzzy, python-format +msgid "Please sign in to subscribe for: %(tags)s" +msgstr "请登录" + +#: views/commands.py:542 +#, fuzzy +msgid "Please sign in to vote" +msgstr "请在这登录" -#: views/meta.py:59 +#: views/meta.py:83 msgid "Q&A forum feedback" msgstr "Q&A反馈" -#: views/meta.py:60 +#: views/meta.py:84 msgid "Thanks for the feedback!" msgstr "感谢你的反馈" -#: views/meta.py:70 +#: views/meta.py:92 msgid "We look forward to hearing your feedback! Please, give it next time :)" msgstr "我们期望你的反馈" -#: views/readers.py:200 +#: views/readers.py:177 #, 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奖章" -#: views/readers.py:446 -msgid "Sorry, the comment you are looking for has been deleted and is no longer accessible" +#: views/readers.py:441 +msgid "" +"Sorry, the comment you are looking for has been deleted and is no longer " +"accessible" msgstr "对不起,你找的这个评论已经被删除" -#: views/users.py:217 +#: views/users.py:225 #, fuzzy msgid "moderate user" msgstr "中等用户" -#: views/users.py:376 +#: views/users.py:380 msgid "user profile" msgstr "用户概览" -#: views/users.py:377 +#: views/users.py:381 msgid "user profile overview" msgstr "用户概览" -#: views/users.py:661 +#: views/users.py:685 msgid "recent user activity" msgstr "最近活动" -#: views/users.py:662 +#: views/users.py:686 msgid "profile - recent activity" msgstr "最近活动" -#: views/users.py:730 +#: views/users.py:773 msgid "profile - responses" msgstr "回应 - 用户资料" -#: views/users.py:795 +#: views/users.py:848 msgid "profile - votes" msgstr "用户资料 - 投票" -#: views/users.py:833 +#: views/users.py:883 msgid "user reputation in the community" msgstr "用户社区积分" -#: views/users.py:834 +#: views/users.py:884 msgid "profile - user reputation" msgstr "积分 - 用户资料" -#: views/users.py:862 +#: views/users.py:911 msgid "users favorite questions" msgstr "用户收藏的问题" -#: views/users.py:863 +#: views/users.py:912 msgid "profile - favorite questions" msgstr "收藏 - 用户资料" -#: views/users.py:883 views/users.py:887 +#: views/users.py:932 views/users.py:936 msgid "changes saved" msgstr "修改已保存" -#: views/users.py:893 +#: views/users.py:942 msgid "email updates canceled" msgstr "邮件更新取消" -#: views/users.py:905 +#: views/users.py:961 msgid "profile - email subscriptions" msgstr "邮件订阅" -#: views/writers.py:56 +#: views/writers.py:58 msgid "Sorry, anonymous users cannot upload files" msgstr "匿名用户不能上传文件" # todo take these out of settings -#: views/writers.py:65 +#: views/writers.py:68 #, python-format msgid "allowed file types are '%(file_types)s'" msgstr "只允许上传'%(file_types)s'类型的文件!" -#: views/writers.py:88 +#: views/writers.py:91 #, python-format msgid "maximum upload file size is %(file_size)sK" msgstr "只允许上传不超过%(file_size)sK大小的文件!" -#: views/writers.py:96 +#: views/writers.py:99 msgid "Error uploading file. Please contact the site administrator. Thank you." msgstr "在文件上传过程中产生了错误,请联系管理员,谢谢^_^" -#: views/writers.py:452 +#: views/writers.py:191 +#, fuzzy +msgid "Please log in to ask questions" +msgstr "发布你自己的问题" + +#: views/writers.py:492 +#, fuzzy +msgid "Please log in to answer questions" +msgstr "查看没有回答的问题" + +#: views/writers.py:598 #, python-format -msgid "Sorry, you appear to be logged out and cannot post comments. Please sign in." -msgstr "对不起,你已经退出,不恩那个在发表评论,请登录." +msgid "" +"Sorry, you appear to be logged out and cannot post comments. Please sign in." +msgstr "" +"对不起,你已经退出,不恩那个在发表评论,请登录." -#: views/writers.py:497 +#: views/writers.py:646 msgid "Sorry, anonymous users cannot edit comments" msgstr "匿名用户不能编辑评论" -#: views/writers.py:505 +#: views/writers.py:654 #, python-format -msgid "Sorry, you appear to be logged out and cannot delete comments. Please sign in." -msgstr "对不起,你已经退出,不恩那个在发表评论,请登录." +msgid "" +"Sorry, you appear to be logged out and cannot delete comments. Please sign in." +msgstr "" +"对不起,你已经退出,不恩那个在发表评论,请登录." -#: views/writers.py:526 +#: views/writers.py:675 msgid "sorry, we seem to have some technical difficulties" msgstr "对不起,好像有一些技术上的错误。" +# index.html +#~ msgid "community wiki" +#~ msgstr "社区Wiki" + +#~ msgid "Location" +#~ msgstr "城市" + +#~ msgid "command/" +#~ msgstr "命令/" + +#~ msgid "mark-tag/" +#~ msgstr "标记标签/" + +#~ msgid "interesting/" +#~ msgstr "感兴趣/" + +#~ msgid "ignored/" +#~ msgstr "忽略/" + +#~ msgid "unmark-tag/" +#~ msgstr "未标记标签/" + +#~ msgid "search/" +#~ msgstr "搜索/" + +# footer.html +#~ msgid "Askbot" +#~ msgstr "关于本站" + +#~ msgid "" +#~ "If you change this url from the default - then you will also probably " +#~ "want to adjust translation of the following string: " +#~ msgstr "如果你想改变默认url,你可能想挑战下面内容的翻译:" + +#~ msgid "" +#~ "Increment this number when you change image in skin media or stylesheet. " +#~ "This helps avoid showing your users outdated images from their browser " +#~ "cache." +#~ msgstr "" +#~ "当你选择时在主题或表格的数字会增长,这将帮助你避免在浏览器缓存过期的图片." + +#~ msgid "allow only selected tags" +#~ msgstr "只有已选标签" + +#~ msgid "First time here? Check out the FAQ!" +#~ msgstr "第一次来?查看FAQ!" + +#~ msgid "newquestion/" +#~ msgstr "提问/" + +#~ msgid "newanswer/" +#~ msgstr "回答/" + +# translation and user name validation are language-specific +#~ msgid "MyOpenid user name" +#~ msgstr "MyOpenid用户名" + +#~ msgid "Email verification subject line" +#~ msgstr "邮件确认" + +#~ msgid "Unknown error." +#~ msgstr "未知错误." + +#~ msgid "ReCAPTCHA is wrongly configured." +#~ msgstr "ReCAPTCHA配置错误." + +#~ msgid "Bad reCAPTCHA challenge parameter." +#~ msgstr "错误的ReCAPTCHA挑战参数" + +#~ msgid "The CAPTCHA solution was incorrect." +#~ msgstr "CAPTCHA不正确" + +#~ msgid "Bad reCAPTCHA verification parameters." +#~ msgstr "错误reCAPTCHA确认参数" + +#~ msgid "Provided reCAPTCHA API keys are not valid for this domain." +#~ msgstr "为这个域名提供的reCAPTCHA API keys都不正确" + +#~ msgid "ReCAPTCHA could not be reached." +#~ msgstr "不能到达ReCAPTCHA " + +#~ msgid "Invalid request" +#~ msgstr "不正确的请求" + +#~ msgid "Please visit askbot forum and see what's new! " +#~ msgstr "请访问askbot论坛查看更新" + +#~ msgid "disciplined" +#~ msgstr "规则" + +#~ msgid "Deleted own post with score of 3 or higher" +#~ msgstr "删除自己3分或以上的问题" + +#~ msgid "peer-pressure" +#~ msgstr "同等压力" + +#~ msgid "Deleted own post with score of -3 or lower" +#~ msgstr "删除自己-3分或更低的问题" + +#~ msgid "Nice answer" +#~ msgstr "好回答" + +#~ msgid "nice-answer" +#~ msgstr "好回答" + +#~ msgid "Answer voted up 10 times" +#~ msgstr "投票10次以上的回答" + +#~ msgid "nice-question" +#~ msgstr "好提问" + +#~ msgid "Question voted up 10 times" +#~ msgstr "投票10次以上的问题" + +#~ msgid "pundit" +#~ msgstr "学者" + +#~ msgid "popular-question" +#~ msgstr "受欢迎的问题" + +#~ msgid "Asked a question with 1,000 views" +#~ msgstr "1000次查看的问题" + +#~ msgid "Citizen patrol" +#~ msgstr "社区居民" + +#~ msgid "citizen-patrol" +#~ msgstr "社区居民" + +#~ msgid "cleanup" +#~ msgstr "清除" + +#~ msgid "critic" +#~ msgstr "评论家" + +#~ msgid "First down vote" +#~ msgstr "第一个反对票" + +#~ msgid "editor" +#~ msgstr "编辑" + +#~ msgid "organizer" +#~ msgstr "组织者" + +#~ msgid "scholar" +#~ msgstr "学者" + +#~ msgid "student" +#~ msgstr "学生" + +#~ msgid "supporter" +#~ msgstr "拥护者" + +#~ msgid "First up vote" +#~ msgstr "第一个赞成票" + +#~ msgid "teacher" +#~ msgstr "老师" + +#~ msgid "Answered first question with at least one up vote" +#~ msgstr "回答的至少有一个赞成票的问题" + +#~ msgid "autobiographer" +#~ msgstr "完善个人资料者" + +#~ msgid "self-learner" +#~ msgstr "自学者" + +#~ msgid "Answered your own question with at least 3 up votes" +#~ msgstr "回答的至少有三个赞成票的问题" + +#~ msgid "great-answer" +#~ msgstr "完美-答案" + +#~ msgid "Answer voted up 100 times" +#~ msgstr "赞成票达到100的答案" + +#~ msgid "great-question" +#~ msgstr "完美-问题" + +#~ msgid "Question voted up 100 times" +#~ msgstr "有100赞成票的问题" + +#~ msgid "stellar-question" +#~ msgstr "重要问题" + +#~ msgid "Question favorited by 100 users" +#~ msgstr "被100个用户收藏的问题" + +# close.html +#~ msgid "Famous question" +#~ msgstr "极好的问题" + +#~ msgid "famous-question" +#~ msgstr "极好的问题" + +#~ msgid "Asked a question with 10,000 views" +#~ msgstr "被点击10000此的问题" + +#~ msgid "Alpha" +#~ msgstr "Alpha" + +#~ msgid "alpha" +#~ msgstr "alpha" + +#~ msgid "Actively participated in the private alpha" +#~ msgstr "在alpha阶段积极贡献" + +#~ msgid "good-answer" +#~ msgstr "好回答" + +#~ msgid "Answer voted up 25 times" +#~ msgstr "有25次投票的回答" + +#~ msgid "good-question" +#~ msgstr "好问题" + +#~ msgid "Question voted up 25 times" +#~ msgstr "有25次投票的问题" + +#~ msgid "favorite-question" +#~ msgstr "收藏问题" + +#~ msgid "Question favorited by 25 users" +#~ msgstr "被25人收藏的问题" + +#~ msgid "Civic duty" +#~ msgstr "居民义务" + +#~ msgid "civic-duty" +#~ msgstr "居民义务" + +#~ msgid "Voted 300 times" +#~ msgstr "已投票300次" + +#~ msgid "Edited 100 entries" +#~ msgstr "编辑了100个问题" + +#~ msgid "Generalist" +#~ msgstr "通才" + +#~ msgid "generalist" +#~ msgstr "通才" + +#~ msgid "Active in many different tags" +#~ msgstr "激活许多不同的标签" + +#~ msgid "expert" +#~ msgstr "专家" + +#~ msgid "Yearling" +#~ msgstr "一年" + +#~ msgid "yearling" +#~ msgstr "一年" + +#~ msgid "Active member for a year" +#~ msgstr "一年中活跃用户" + +#~ msgid "notable-question" +#~ msgstr "关注的问题" + +#~ msgid "Asked a question with 2,500 views" +#~ msgstr "有2500次点击的问题" + +#~ msgid "enlightened" +#~ msgstr "文明的" + +#~ msgid "First answer was accepted with at least 10 up votes" +#~ msgstr "第一个被接受的有10个推荐票的答案" + +#~ msgid "Beta" +#~ msgstr "Beta" + +#~ msgid "beta" +#~ msgstr "Beta" + +#~ msgid "Actively participated in the private beta" +#~ msgstr "在beta时有贡献的" + +#~ msgid "guru" +#~ msgstr "专家" + +#~ msgid "Accepted answer and voted up 40 times" +#~ msgstr "投票超过40次的回答" + +#~ msgid "Answered a question more than 60 days later with at least 5 votes" +#~ msgstr "回答问题超过60天且至少有5个投票" + +#~ msgid "taxonomist" +#~ msgstr "分类学者" + +# todo - check if it's indeed plural +#~ msgid "Posted 10 comments" +#~ msgstr "已发布10条评论" + +# footer.html +#~ msgid "About" +#~ msgstr "关于本站" + +#~ msgid "%(type)s" +#~ msgstr "%(type)s" + +#~ msgid "how to validate email title" +#~ msgstr "如何验证邮件标题" + +#~ msgid "" +#~ "how to validate email info with %(send_email_key_url)s %(gravatar_faq_url)" +#~ "s" +#~ msgstr "如何使用%(send_email_key_url)s %(gravatar_faq_url)s验证邮件信息" + +#~ msgid "." +#~ msgstr "。" + +#~ msgid "Sender is" +#~ msgstr "发件人" + +#~ msgid "Message body:" +#~ msgstr "内容:" + +#~ msgid "sign out from askbot" +#~ msgstr "退出" + +#~ msgid "please help translate! see credits" +#~ msgstr "请帮忙翻译" + +#~ msgid "" +#~ "As a registered user you can login with your OpenID, log out of the site " +#~ "or permanently remove your account." +#~ msgstr "" +#~ "您是系统的注册用户,可以随时使用OpenID" +#~ "帐号登录系统或者注销登录。" + +#~ msgid "Logout now" +#~ msgstr "点击退出登录" + +#~ msgid "mark this question as favorite (click again to cancel)" +#~ msgstr "我要收藏这个问题(再次点击取消操作)" + +#~ msgid "" +#~ "remove favorite mark from this question (click again to restore mark)" +#~ msgstr "我要收藏这个问题(再次点击取消操作)" + +#~ msgid "Share this question on facebook" +#~ msgstr "分享提问到我的facebook" + +# this is how above two are supposed to be +#~ msgid "see questions tagged '%(tag_name)s'" +#~ msgstr "查看有关%(tag_name)s的问题" + +#~ msgid "" +#~ "\n" +#~ " %(q_num)s question\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " %(q_num)s questions\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "%(q_num)s个问题" + +#~ msgid "tagged" +#~ msgstr "已加标签" + +#~ msgid "remove '%(tag_name)s' from the list of interesting tags" +#~ msgstr "从感兴趣的标签列表中删除 '%(tag_name)s' 标签" + +#~ msgid "remove '%(tag_name)s' from the list of ignored tags" +#~ msgstr "从忽略标签列表中删除'%(tag_name)s'标签" + +#~ msgid "keep ignored questions hidden" +#~ msgstr "忽略问题保持隐藏" + +#~ msgid "" +#~ "All tags matching '%(stag)s'" +#~ msgstr "" +#~ "匹配 '%(stag)s的标签" + +#~ msgid "" +#~ "see other questions with %(view_user)s's contributions tagged '%(tag_name)" +#~ "s' " +#~ msgstr "查看有关%(view_user)s的%(tag_name)s标签的分享" + +#~ msgid "favorites" +#~ msgstr "收藏" + +#~ msgid "this questions was selected as favorite %(cnt)s time" +#~ msgid_plural "this questions was selected as favorite %(cnt)s times" +#~ msgstr[0] "这个问题被收藏%(cnt)s次" + +#~ msgid "thumb-up on" +#~ msgstr "叫好开" + +#~ msgid "thumb-up off" +#~ msgstr "叫好关" + +#~ msgid "Login name" +#~ msgstr "用户名" + +#~ msgid "home" +#~ msgstr "首页" + +#~ msgid "Please prove that you are a Human Being" +#~ msgstr "请证明你是人" + +#~ msgid "I am a Human Being" +#~ msgstr "我是人" + +#~ msgid "Please decide if you like this question or not by voting" +#~ msgstr "请通过投票决定你是否喜欢此问题" + +#~ msgid "" +#~ "\n" +#~ " vote\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " votes\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "投票" + +#~ msgid "this answer has been accepted to be correct" +#~ msgstr "答案已被接受为正确答案" + +#~ msgid "" +#~ "\n" +#~ " answer \n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " answers \n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "回答" + +#~ msgid "" +#~ "\n" +#~ " view\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " views\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "浏览" + +#~ msgid "" +#~ "\n" +#~ " vote\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " votes\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "投票" + +#~ msgid "" +#~ "\n" +#~ " answer \n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " answers \n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "回答" + +#~ msgid "" +#~ "\n" +#~ " view\n" +#~ " " +#~ msgid_plural "" +#~ "\n" +#~ " views\n" +#~ " " +#~ msgstr[0] "" +#~ "\n" +#~ "浏览" + +#~ msgid "views" +#~ msgstr "浏览" + +#~ msgid "Bad request" +#~ msgstr "错误请求" + #~ msgid "reputation points" #~ msgstr "积分" @@ -5330,13 +6813,11 @@ msgstr "对不起,好像有一些技术上的错误。" #~ msgid "Password changed." #~ msgstr "密码" -#~ msgid "Account deleted." -#~ msgstr "取消" - #~ msgid "Request for new password" #~ msgstr "重设密码" -#~ msgid "A new password and the activation link were sent to your email address." +#~ msgid "" +#~ "A new password and the activation link were sent to your email address." #~ msgstr "和您的邮件地址是绑定的" #~ msgid "Your question and all of it's answers have been deleted" @@ -5363,9 +6844,6 @@ msgstr "对不起,好像有一些技术上的错误。" #~ msgid "Change OpenID" #~ msgstr "更换OpenID地址" -#~ msgid "Delete account" -#~ msgstr "删除帐号" - #~ msgid "toggle preview" #~ msgstr "预览开关" @@ -5423,34 +6901,56 @@ msgstr "对不起,好像有一些技术上的错误。" #~ msgid "%(rev_count)s revision" #~ msgid_plural "%(rev_count)s revisions" #~ msgstr[0] "当前版本" -#~ msgstr[1] "当前版本" #~ msgid "general message about privacy" -#~ msgstr "CNProg承认用户隐私的重要性。本文件概述在您浏览CNProg过程中所接收和收集的个人信息的种类,以及CNProg所采取的保护信息的一些措施。CNProg希望这将有助于您在知情的情况下,就和我们 共享个人信息的问题作出决定。" +#~ msgstr "" +#~ "CNProg承认用户隐私的重要性。本文件概述在您浏览CNProg过程中所接收和收集的个" +#~ "人信息的种类,以及CNProg所采取的保护信息的一些措施。CNProg希望这将有助于您" +#~ "在知情的情况下,就和我们 共享个人信息的问题作出决定。" #~ msgid "what technical information is collected about visitors" -#~ msgstr "当您访问本网站或使用我们的某些在线服务时,服务器会自动记录信息,包括但不限于URL、IP地址、浏览器的类型、屏幕分辨率、系统类型和使用的语言以及访问日期和时间。我们的目的是为了向您>提供更好的用户服务,包括可能为您提供定制的在线服务。" +#~ msgstr "" +#~ "当您访问本网站或使用我们的某些在线服务时,服务器会自动记录信息,包括但不限" +#~ "于URL、IP地址、浏览器的类型、屏幕分辨率、系统类型和使用的语言以及访问日期" +#~ "和时间。我们的目的是为了向您>提供更好的用户服务,包括可能为您提供定制的在" +#~ "线服务。" #~ msgid "Personal Information" #~ msgstr "个人身份信息" #~ msgid "details on personal information policies" -#~ msgstr "在登录使用CNProg的提问和回答功能时,我们要求使用者提供用户名、密码、电子邮件等信息。CNProg收集这类关于个人身份的信息只是为了登录系统获得使用功能的目的。我们不会向任何其他社区用 户、个人或第三方透露您的密码或者电子邮件信息。用户可以选择性地填写用户资料、个人网站、年龄、城市等信息,我们收集这些内容为了使用户能够更容易和更满意地使用CNProg提供的网页和服务。" +#~ msgstr "" +#~ "在登录使用CNProg的提问和回答功能时,我们要求使用者提供用户名、密码、电子邮" +#~ "件等信息。CNProg收集这类关于个人身份的信息只是为了登录系统获得使用功能的目" +#~ "的。我们不会向任何其他社区用 户、个人或第三方透露您的密码或者电子邮件信" +#~ "息。用户可以选择性地填写用户资料、个人网站、年龄、城市等信息,我们收集这些" +#~ "内容为了使用户能够更容易和更满意地使用CNProg提供的网页和服务。" #~ msgid "Other Services" #~ msgstr "其他服务" #~ msgid "details on sharing data with third parties" -#~ msgstr "CNProg可能会收集和统计用户访问本站的概况数据。例如,CNProg可能会检测网站最流行的部分功能。CNProg可能会公开显示或者提供给第三方使用该数据。但是,CNProg不会公开您的身份信息。" +#~ msgstr "" +#~ "CNProg可能会收集和统计用户访问本站的概况数据。例如,CNProg可能会检测网站最" +#~ "流行的部分功能。CNProg可能会公开显示或者提供给第三方使用该数据。但是," +#~ "CNProg不会公开您的身份信息。" #~ msgid "cookie policy details" -#~ msgstr "访问CNProg时,我们会向您的计算机发送一个或多个专门用于识别您的浏览器的Cookie(包含一个字符串的小文件)。 使用 Cookie 的目的是通过储存用户偏好、跟踪用户倾向(例如搜索方法)来提高我们的服务质量。大多数浏览器的初始设置均为接受 Cookie,但也可以将其重置为拒绝所有 Cookie 或在收到 Cookie 时提示。不过,如果禁用 Cookie,某些功能和服务可能无法正常运行。" +#~ msgstr "" +#~ "访问CNProg时,我们会向您的计算机发送一个或多个专门用于识别您的浏览器的" +#~ "Cookie(包含一个字符串的小文件)。 使用 Cookie 的目的是通过储存用户偏好、" +#~ "跟踪用户倾向(例如搜索方法)来提高我们的服务质量。大多数浏览器的初始设置均" +#~ "为接受 Cookie,但也可以将其重置为拒绝所有 Cookie 或在收到 Cookie 时提示。" +#~ "不过,如果禁用 Cookie,某些功能和服务可能无法正常运行。" #~ msgid "Policy Changes" #~ msgstr "政策更改" #~ msgid "how privacy policies can be changed" -#~ msgstr "我们可能在事先通知或不通知的情况下随时更改此'隐私政策',我们建议用户时常查看CNProg隐私政策的改动,在任何改动生效后您的继续访问和使用本站,我们假设您已同意了CNProg以上的所有条款。" +#~ msgstr "" +#~ "我们可能在事先通知或不通知的情况下随时更改此'隐私政策',我们建议用户时常查" +#~ "看CNProg隐私政策的改动,在任何改动生效后您的继续访问和使用本站,我们假设您" +#~ "已同意了CNProg以上的所有条款。" #~ msgid "tags help us keep Questions organized" #~ msgstr "CNProg用标签来分类系统的信息" @@ -5464,53 +6964,25 @@ msgstr "对不起,好像有一些技术上的错误。" #~ msgid "Unanswered questions" #~ msgstr "没有回答的问题" -#~ msgid "All questions" -#~ msgstr "所有问题" - -#~ msgid "click to see the newest questions" -#~ msgstr "最新问题" - -#~ msgid "click to see the oldest questions" -#~ msgstr "最新问题" - -#~ msgid "click to see the most recently updated questions" -#~ msgstr "最近被更新的问题" - -#~ msgid "click to see the least recently updated questions" -#~ msgstr "最近被更新的问题" - -#~ msgid "click to see hottest questions" -#~ msgstr "被回复最多的问题" - #~ msgid "less answers" #~ msgstr "最先回答" #~ msgid "click to see coldest questions" #~ msgstr "最新问题" -#~ msgid "click to see most voted questions" -#~ msgstr "投票次数最多的问题" - #~ msgid "unpopular" #~ msgstr "受欢迎的标签" -#~ msgid "click to see least voted questions" -#~ msgstr "投票次数最多的问题" - #~ msgid "popular" #~ msgstr "受欢迎的标签" #~ msgid " %(q_num)s question found" #~ msgid_plural "%(q_num)s questions found" #~ msgstr[0] "个" -#~ msgstr[1] "个" #~ msgid "Open the previously closed question" #~ msgstr "你将打开这个已经被关闭的问题" -#~ msgid "The question was closed for the following reason " -#~ msgstr "问题曾以" - #~ msgid "reason - leave blank in english" #~ msgstr "的原因被" @@ -5577,12 +7049,11 @@ msgstr "对不起,好像有一些技术上的错误。" #~ msgid "one revision" #~ msgid_plural "%(rev_count)s revisions" #~ msgstr[0] "版本" -#~ msgstr[1] "版本" #~ msgid " One question found" #~ msgid_plural "%(q_num)s questions found" -#~ msgstr[0] "问题按提问时间显示排序。新加入的问题将显示在最前面。" -#~ msgstr[1] "问题按提问时间显示排序。新加入的问题将显示在最前面。" +#~ msgstr[0] "" +#~ "问题按提问时间显示排序。新加入的问题将显示在最前面。" #~ msgid "username too short" #~ msgstr "用户名太短,请使用三个或三个以上字符" @@ -5590,19 +7061,25 @@ msgstr "对不起,好像有一些技术上的错误。" #~ msgid "this name is already in use - please try anoter" #~ msgstr "该用户名已被注册,请换一个试试" -#~ msgid "This email is already registered in our database. Please choose another." +#~ msgid "" +#~ "This email is already registered in our database. Please " +#~ "choose another." #~ msgstr "该电子邮件已被注册,请选择另一个再试。" #~ msgid "site title" #~ msgstr "CNProg.com" #~ msgid "meta site content" -#~ msgstr "中国程序员的编程技术问答社区。我们做专业的、可协作编辑的技术问答社区。" +#~ msgstr "" +#~ "中国程序员的编程技术问答社区。我们做专业的、可协作编辑的技术问答社区。" -#~ msgid "please use space to separate tags (this enables autocomplete feature)" +#~ msgid "" +#~ "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 '.-_#'" +#~ msgid "" +#~ "please use following characters in tags: letters 'a-z', numbers, and " +#~ "characters '.-_#'" #~ msgstr "标签请使用英文字母,中文或者数字字符串(. - _ # 也可以)" #~ msgid "profile - user preferences" @@ -5623,10 +7100,18 @@ msgstr "对不起,好像有一些技术上的错误。" #~ msgid "Email: (won't be shown to anyone)" #~ 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 "" +#~ "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" +#~ msgid "" +#~ "silver badge descriptionObtaining silver badge requires significant " +#~ "patience. If you got one, you've very significantly contributed to this " +#~ "community" #~ msgstr "它是不同寻常的荣誉,只要你付出足够的努力就会得到。" #~ msgid "Connect with Twitter" @@ -5638,7 +7123,9 @@ msgstr "对不起,好像有一些技术上的错误。" #~ msgid "Send my Answers to Twitter" #~ msgstr "发布我的回答到我的Twitter" -#~ msgid "bronze badge descriptionIf you are active in this community, you will get this medal - still it is a special honor." +#~ msgid "" +#~ "bronze badge descriptionIf you are active in this community, you will get " +#~ "this medal - still it is a special honor." #~ msgstr "铜牌会在你活跃于社区时产生,它相对容易获得,但也是一种特殊的荣誉。" #~ msgid "About us" @@ -5680,9 +7167,6 @@ msgstr "对不起,好像有一些技术上的错误。" #~ msgid "Size per page:" #~ msgstr "每页显示" -#~ msgid "Login to answer" -#~ msgstr "登录并回答该问题" - #~ msgid "ago" #~ msgstr "前" @@ -5698,19 +7182,14 @@ msgstr "对不起,好像有一些技术上的错误。" #~ msgid "all tags - make this empty in english" #~ msgstr "的所有标签" -#~ msgid "most recently asked questions" -#~ msgstr "最新加入系统的问题" - #~ msgid "Have a total of" #~ msgstr "您正在浏览所有" #~ msgid "image associated with your email address" #~ msgstr "和您的邮件地址是绑定的" -#~ msgid "avatar" -#~ msgstr "修改头像" - -#~ msgid "the answer has been commented %(answered_question.comment_count)s times" +#~ msgid "" +#~ "the answer has been commented %(answered_question.comment_count)s times" #~ msgstr "该回答有%d条评论" #~ msgid "votes total" @@ -5722,26 +7201,30 @@ msgstr "对不起,好像有一些技术上的错误。" #~ msgid "New password again" #~ msgstr "发送新密码" -#~ msgid "Your OpenID is accepted. Please complete this to finish registration." +#~ msgid "" +#~ "Your OpenID is accepted. Please complete this to finish registration." #~ msgstr "您的OpenID帐号已经验证通过! 请完成最后一步 - 绑定OpenID到您的帐号。" -#~ msgid "New account" -#~ msgstr "新帐号" - #~ msgid "User name (will be shown to others, cannot be modified)" #~ msgstr "用户名(在社区显示友好名称,不可更改)" #~ msgid "Lost your password? No problem - here you can reset it." #~ msgstr "丢失了您的密码? 你可以在这里重设密码。" -#~ msgid "Please enter your username below and new password will be sent to your registered e-mail" +#~ msgid "" +#~ "Please enter your username below and new password will be sent to your " +#~ "registered e-mail" #~ msgstr "请输入用户名,新的密码会发送到你注册时候填写的电子邮件。" -#~ msgid "Note: your new password will be activated only after you click the activation link in the email message" +#~ msgid "" +#~ "Note: your new password will be activated only after you click the " +#~ "activation link in the email message" #~ msgstr "注意: 新的密码只有您在激活邮件中的链接后才会被激活。" #~ msgid "we support two login modes" -#~ msgstr "CNProg支持两种登录模式。您可以使用帐号、密码登录,或者使用OpenID登录。" +#~ msgstr "" +#~ "CNProg支持两种登录模式。您可以使用帐号、密码登录,或者使用OpenID登" +#~ "录。" #~ msgid "Login with your OpenID" #~ msgstr "使用OpenID登录" @@ -5755,7 +7238,9 @@ msgstr "对不起,好像有一些技术上的错误。" #~ msgid "Create new acccount" #~ msgstr "注册新帐号" -#~ msgid "We support two types of user registration: conventional username/password, and" +#~ msgid "" +#~ "We support two types of user registration: conventional username/" +#~ "password, and" #~ msgstr "我们支持两种注册方式,你可以使用常规的用户名、密码方式注册,或者" #~ msgid "the OpenID method" @@ -5774,13 +7259,19 @@ msgstr "对不起,好像有一些技术上的错误。" #~ msgstr "使用OpenID注册" #~ msgid "meta site keywords, comma separated" -#~ msgstr "技术问答社区,中国程序员,编程技术社区,程序员社区,程序员论坛,程序员wiki,程序员博客" +#~ msgstr "" +#~ "技术问答社区,中国程序员,编程技术社区,程序员社区,程序员论坛,程序员" +#~ "wiki,程序员博客" #~ msgid "what is this website" -#~ msgstr "CNProg是一个面向程序员的可协作编辑的开放源代码问答社区。" +#~ msgstr "" +#~ "CNProg是一个面向程序员的可协作编辑的开放源代码问" +#~ "答社区。" #~ msgid "what can one do on this website" -#~ msgstr "您可以在这里提问各类程序技术问题 - 问题不分语言和平台。 同时也希望您对力所能及的问题,给予您的宝贵答案。" +#~ msgstr "" +#~ "您可以在这里提问各类程序技术问题 - 问题不分语言和平台。 " +#~ "同时也希望您对力所能及的问题,给予您的宝贵答案。" #~ msgid "book technical Q&A" #~ msgstr "图书相关的技术答疑" @@ -5813,10 +7304,8 @@ msgstr "对不起,好像有一些技术上的错误。" #~ "\t\t\t" #~ msgstr[0] "" #~ "\n" -#~ "您正在浏览所有
        %(q_num)s
        个标记为%(tagname)s

        " -#~ msgstr[1] "" -#~ "\n" -#~ "您正在浏览所有
        %(q_num)s
        个标记为%(tagname)s

        " +#~ "您正在浏览所有
        %(q_num)s
        个标记为%(tagname)s

        " #~ msgid "" #~ "\n" @@ -5828,10 +7317,8 @@ msgstr "对不起,好像有一些技术上的错误。" #~ "\t\t\t" #~ msgstr[0] "" #~ "\n" -#~ "您正在浏览所有
        %(q_num)s
        个标题含有%(searchtitle)s

        " -#~ msgstr[1] "" -#~ "\n" -#~ "您正在浏览所有
        %(q_num)s
        个标题含有%(searchtitle)s

        " +#~ "您正在浏览所有
        %(q_num)s
        个标题含有" +#~ "%(searchtitle)s

        " #~ msgid "tagged with" #~ msgstr "标记为" @@ -5857,26 +7344,52 @@ msgstr "对不起,好像有一些技术上的错误。" #~ msgid "Most voted questions are shown first" #~ msgstr "投票最多的问题将显示在最前面。" -#~ msgid "Anyone can ask questions and give answers, points are not necessary for that." +#~ msgid "" +#~ "Anyone can ask questions and give answers, points are not necessary for " +#~ "that." #~ msgstr "对于正常使用社区进行提问、回答而言,积分不是必须的。" -#~ msgid "As we've said before, users help running this site. Point system helps select users who can administer this community." -#~ msgstr "我们一再声明,CNProg由你来运行和维护。如果你想帮助我们来运作CNProg,你需要一定的积分等级。" +#~ msgid "" +#~ "As we've said before, users help running this site. Point system helps " +#~ "select users who can administer this community." +#~ msgstr "" +#~ "我们一再声明,CNProg由你来运行和维护。如果你想帮助我们来运作CNProg,你需要" +#~ "一定的积分等级。" -#~ msgid "Reputation points roughly measure how community trusts you. These points are given to you directly by other members of the community." -#~ msgstr "积分是一种用来粗略衡量社区对你有多信任的数据。积分不是有谁来支付或直接给予你的,而是你通过获得其他用户的支持和信任“赚得”的。" +#~ msgid "" +#~ "Reputation points roughly measure how community trusts you. These points " +#~ "are given to you directly by other members of the community." +#~ msgstr "" +#~ "积分是一种用来粗略衡量社区对你有多信任的数据。积分不是有谁来支付或直接给予你的,而是你通过获得其他用户的支持和信" +#~ "任“赚得”的。" -#~ msgid "For example, if you ask an interesting question or give a helpful answer, your input will be upvoted and you will gain more trust in the community." -#~ msgstr "举例来说,如果你提了一个非常有帮助的问题或者做了很有用的回答,你将会被其他用户投赞成票。" +#~ msgid "" +#~ "For example, if you ask an interesting question or give a helpful answer, " +#~ "your input will be upvoted and you will gain more trust in the community." +#~ msgstr "" +#~ "举例来说,如果你提了一个非常有帮助的问题或者做了很有用的回答,你将会被其他" +#~ "用户投赞成票。" -#~ msgid "If on the other hand someone gives a misleading answer, the answer will be voted down and he/she loses some points." -#~ msgstr "相反,你提了不受欢迎的问题,或者误导用户的回答,你将可能被其他用户投反对票。每个赞成" +#~ msgid "" +#~ "If on the other hand someone gives a misleading answer, the answer will " +#~ "be voted down and he/she loses some points." +#~ msgstr "" +#~ "相反,你提了不受欢迎的问题,或者误导用户的回答,你将可能被其他用户投反对" +#~ "票。每个赞成" -#~ msgid "Each vote in favor will generate 10 points, each vote against will subtract 2 points." -#~ msgstr "票会帮你产生10个社区积分,每个反对票会相应扣除你2个积分。" +#~ msgid "" +#~ "Each vote in favor will generate 10 points, each vote " +#~ "against will subtract 2 points." +#~ msgstr "" +#~ "票会帮你产生10个社区积分,每个反对票会相应扣除你" +#~ "2个积分。" -#~ msgid "Through the votes of other people you can accumulate a maximum of 200 points." -#~ msgstr "每天通过别人投赞成票,你最多只能产生200个积分,这是上限。" +#~ msgid "" +#~ "Through the votes of other people you can accumulate a maximum of " +#~ "200 points." +#~ msgstr "" +#~ "每天通过别人投赞成票,你最多只能产生200个积分,这是上限。" #~ msgid "After accumulating certain number of points, you can do more:" #~ msgstr "当你累计到一定>积分,你可以在社区做更多的事情:" diff --git a/askbot/locale/zh_CN/LC_MESSAGES/djangojs.mo b/askbot/locale/zh_CN/LC_MESSAGES/djangojs.mo new file mode 100644 index 00000000..497e70f5 Binary files /dev/null and b/askbot/locale/zh_CN/LC_MESSAGES/djangojs.mo differ diff --git a/askbot/locale/zh_CN/LC_MESSAGES/djangojs.po b/askbot/locale/zh_CN/LC_MESSAGES/djangojs.po new file mode 100644 index 00000000..3448d342 --- /dev/null +++ b/askbot/locale/zh_CN/LC_MESSAGES/djangojs.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: 0.7\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-10-08 02:33-0500\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: skins/default/media/js/post.js:532 +msgid "Follow" +msgstr "" + +#: skins/default/media/js/post.js:541 skins/default/media/js/post.js.py:550 +#, perl-format +msgid "%s follower" +msgid_plural "%s followers" +msgstr[0] "" +msgstr[1] "" + +#: skins/default/media/js/post.js:546 +msgid "
        Following
        Unfollow
        " +msgstr "" + +#: skins/default/media/js/post.js:1613 +msgid "Please enter question title (>10 characters)" +msgstr "" + +#: skins/default/media/js/tag_selector.js:15 +msgid "Tag \"\" matches:" +msgstr "" + +#: skins/default/media/js/tag_selector.js:84 +#, perl-format +msgid "and %s more, not shown..." +msgstr "" + +#: skins/default/media/js/user.js:129 +msgid "Please signin to follow %(username)s" +msgstr "" + +#: skins/default/media/js/user.js:161 +#, perl-format +msgid "unfollow %s" +msgstr "" + +#: skins/default/media/js/user.js:164 +#, perl-format +msgid "following %s" +msgstr "" + +#: skins/default/media/js/user.js:170 +#, perl-format +msgid "follow %s" +msgstr "" -- cgit v1.2.3-1-g7c22