first commit

This commit is contained in:
root 2017-09-27 17:53:26 +02:00
commit a01e7fe597
139 changed files with 7890 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
*~
*.kate-swp
.*.swp
node_modules/**

6
.gitreview Normal file
View File

@ -0,0 +1,6 @@
[gerrit]
host=gerrit.wikimedia.org
port=29418
project=mediawiki/extensions/Comments
track=1
defaultrebase=0

1
.jshintignore Normal file
View File

@ -0,0 +1 @@
node_modules

23
.jshintrc Normal file
View File

@ -0,0 +1,23 @@
{
// Enforcing
"bitwise": true,
"eqeqeq": true,
"freeze": true,
"latedef": "nofunc",
"noarg": true,
"nonew": true,
"undef": true,
"unused": true,
"strict": false,
// Relaxing
"es5": false,
// Environment
"browser": true,
"jquery": true,
"globals": {
"mediaWiki": false
}
}

1
CODE_OF_CONDUCT.md Normal file
View File

@ -0,0 +1 @@
The development of this software is covered by a [Code of Conduct](https://www.mediawiki.org/wiki/Code_of_Conduct).

30
Gruntfile.js Normal file
View File

@ -0,0 +1,30 @@
/*jshint node:true */
module.exports = function ( grunt ) {
grunt.loadNpmTasks( 'grunt-contrib-jshint' );
grunt.loadNpmTasks( 'grunt-jsonlint' );
grunt.loadNpmTasks( 'grunt-banana-checker' );
grunt.initConfig( {
jshint: {
options: {
jshintrc: true
},
all: [
'**/*.js',
'!node_modules/**'
]
},
banana: {
all: 'i18n/'
},
jsonlint: {
all: [
'**/*.json',
'!node_modules/**'
]
}
} );
grunt.registerTask( 'test', [ 'jshint', 'jsonlint', 'banana' ] );
grunt.registerTask( 'default', 'test' );
};

0
README.md Normal file
View File

128
extension.json Normal file
View File

@ -0,0 +1,128 @@
{
"name": "Comments",
"version": "4.3.0 znilwiki",
"author": [
"David Pean",
"Misza",
"Jack Phoenix",
"Adam Carter/UltrasonicNXT",
"Bernhard Linz"
],
"license-name": "GPL-2.0+",
"url": "https://www.mediawiki.org/wiki/Extension:Comments",
"descriptionmsg": "comments-desc",
"type": "parserhook",
"GroupPermissions": {
"*": {
"comment": true
},
"commentadmin": {
"commentadmin": true
},
"autoconfirmed": {
"commentlinks": true
}
},
"AvailableRights": [
"comment",
"commentadmin",
"commentlinks"
],
"SpecialPages": {
"CommentIgnoreList": "CommentIgnoreList"
},
"LogTypes": [
"comments"
],
"FilterLogTypes": {
"comments": true
},
"LogActionsHandlers": {
"comments/add": "CommentsLogFormatter",
"comments/delete": "LogFormatter"
},
"APIModules": {
"commentblock": "CommentBlockAPI",
"commentdelete": "CommentDeleteAPI",
"commentlatestid": "CommentLatestIdAPI",
"commentlist": "CommentListAPI",
"commentsubmit": "CommentSubmitAPI",
"commentvote": "CommentVoteAPI"
},
"MessagesDirs": {
"Comments": [
"i18n"
]
},
"ExtensionMessagesFiles": {
"CommentsAliases": "includes/Comments.alias.php",
"CommentsMagic": "includes/Comments.i18n.magic.php",
"NumberOfCommentsMagic": "includes/Comments.i18n.magic.php"
},
"AutoloadClasses": {
"Comment": "includes/Comment.class.php",
"CommentsPage": "includes/CommentsPage.class.php",
"CommentsOfTheDay": "includes/CommentsOfTheDay.class.php",
"CommentFunctions": "/includes/CommentFunctions.class.php",
"CommentIgnoreList": "includes/specials/SpecialCommentIgnoreList.php",
"CommentsLogFormatter": "includes/CommentsLogFormatter.class.php",
"CommentsHooks": "includes/Comments.hooks.php",
"NumberOfComments": "includes/NumberOfComments.class.php",
"CommentBlockAPI": "includes/api/CommentBlock.api.php",
"CommentDeleteAPI": "includes/api/CommentDelete.api.php",
"CommentLatestIdAPI": "includes/api/CommentLatestID.api.php",
"CommentListAPI": "includes/api/CommentList.api.php",
"CommentSubmitAPI": "includes/api/CommentSubmit.api.php",
"CommentVoteAPI": "includes/api/CommentVote.api.php"
},
"ResourceModules": {
"ext.comments.css": {
"styles": "resources/css/Comments.css",
"position": "top"
},
"ext.comments.js": {
"scripts": "resources/js/Comment.js",
"dependencies": [ "mediawiki.api" ],
"messages": [
"comments-voted-label",
"comments-loading",
"comments-auto-refresher-pause",
"comments-auto-refresher-enable",
"comments-cancel-reply",
"comments-reply-to",
"comments-block-warning-anon",
"comments-block-warning-user",
"comments-delete-warning"
]
}
},
"ResourceFileModulePaths": {
"localBasePath": "",
"remoteExtPath": "Comments"
},
"Hooks": {
"ParserFirstCallInit": [
"CommentsHooks::onParserFirstCallInit",
"NumberOfComments::setupNumberOfCommentsPageParser",
"CommentsOfTheDay::registerTag"
],
"LoadExtensionSchemaUpdates": [
"CommentsHooks::onLoadExtensionSchemaUpdates"
],
"RenameUserSQL": [
"CommentsHooks::onRenameUserSQL"
],
"MagicWordwgVariableIDs": [
"NumberOfComments::registerNumberOfCommentsMagicWord"
],
"ParserGetVariableValueSwitch": [
"NumberOfComments::getNumberOfCommentsMagic"
]
},
"config": {
"CommentsDefaultAvatar": "http://www.shoutwiki.com/w/extensions/SocialProfile/avatars/default_ml.gif",
"CommentsSortDescending": false,
"CommentsInRecentChanges": false
},
"manifest_version": 1
}

1
gitinfo.json Normal file
View File

@ -0,0 +1 @@
{"headSHA1": "608f7af40f3af53b83966063496e34d32655e49b\n", "head": "608f7af40f3af53b83966063496e34d32655e49b\n", "remoteURL": "https://gerrit.wikimedia.org/r/mediawiki/extensions/Comments", "branch": "608f7af40f3af53b83966063496e34d32655e49b\n", "headCommitDate": "1501709440"}

15
i18n/af.json Normal file
View File

@ -0,0 +1,15 @@
{
"@metadata": {
"authors": [
"Naudefj"
]
},
"comments-comment": "Opmerking",
"comments-voted-label": "Gestem",
"comments-loading": "Laai...",
"comments-cancel-reply": "Kanselleer",
"comments-you": "U",
"comments-reply": "Antwoord",
"comments-ignore-cancel": "Kanselleer",
"comments-time-minutes": "{{PLURAL:$1|$1 minuut|$1 minute}}"
}

28
i18n/as.json Normal file
View File

@ -0,0 +1,28 @@
{
"@metadata": {
"authors": [
"Bishnu Saikia"
]
},
"comments-comment": "মন্তব্য",
"comments-voted-label": "ভোট দিয়া হ’ল",
"comments-loading": "ল'ড হৈ আছে…",
"comments-cancel-reply": "বাতিল কৰক",
"comments-show-comment-link": "মন্তব্য দেখুৱাওক",
"comments-you": "আপুনি",
"comments-reply": "উত্তৰ",
"comments-post": "মন্তব্য প্ৰেৰণ কৰক",
"comments-submit": "আপোনাৰ মন্তব্য যোগ দিয়ক",
"comments-score-text": "নম্বৰ",
"comments-permalink": "স্থায়ী সংযোগ",
"comments-delete-link": "মন্তব্য বিলোপ কৰক",
"comments-ignore-unblock": "প্ৰতিবন্ধক উঠাই লওক",
"comments-ignore-cancel": "বাতিল কৰক",
"log-name-comments": "মন্তব্য অভিলেখ",
"comments-time-ago": "$1 আগেয়ে",
"comments-time-days": "{{PLURAL:$1|$1 দিন|$1 দিন}}",
"comments-time-hours": "{{PLURAL:$1|$১ ঘন্টা|$১ ঘন্টা}}",
"comments-time-minutes": "{{PLURAL:$1|$১ মিনিট|$১ মিনিট}}",
"comments-time-seconds": "{{PLURAL:$1|$১ ছেকেণ্ড |$১ ছেকেণ্ড}}",
"right-comment": "মন্তব্য জমা দিয়ক"
}

26
i18n/ast.json Normal file
View File

@ -0,0 +1,26 @@
{
"@metadata": {
"authors": [
"Xuacu"
]
},
"comments-comment": "Comentariu",
"comments-desc": "Añade l'enganche del analizador <code>&lt;comments&gt;</code> que permite comentar nes páxines",
"comments-db-locked": "<h3>Amestar comentarios</h3>Nesti momentu la base de datos ta bloquiada por xeres rutinaries de caltenimientu, depués de les que volverá a la normalidá. Torna más sero.",
"comments-voted-label": "Votáu",
"comments-loading": "Cargando...",
"comments-auto-refresher-enable": "Activar actualización automática de comentarios",
"comments-auto-refresher-pause": "Posar l'actualizador automáticu de comentarios",
"comments-reply-to": "Responder a {{GENDER:$2|$1}}",
"comments-cancel-reply": "Encaboxar",
"comments-block-warning-anon": "¿Seguro que quies inorar permanentemente tolos comentarios d'esti usuariu anónimu (al traviés de la so dirección IP)?",
"comments-block-warning-user": "¿Seguro que quies inorar permanentemente tolos comentarios {{GENDER:$1|del usuariu|de la usuaria}} $1?",
"comments-delete-warning": "¿Seguro que quies desaniciar esti comentariu?",
"comments-sort-by-date": "Ordenar por fecha",
"comments-sort-by-score": "Ordenar por valoración",
"comments-show-comment-link": "Amosar comentariu",
"comments-manage-blocklist-link": "Alministrar llista de comentarios inoraos",
"comments-ignore-message": "Tas inorando al autor d'esti comentariu",
"comments-you": "Tu",
"comments-reply": "Responder"
}

8
i18n/atj.json Normal file
View File

@ -0,0 +1,8 @@
{
"@metadata": {
"authors": [
"Benoit Rochon"
]
},
"comments-anon-name": "Nama kiskeritakosiw ka ki masinahak"
}

11
i18n/azb.json Normal file
View File

@ -0,0 +1,11 @@
{
"@metadata": {
"authors": [
"පසිඳු කාවින්ද",
"Alp Er Tunqa"
]
},
"comments-cancel-reply": "وازگئچ",
"comments-score-text": "امتیاز",
"comments-ignore-cancel": "وازگئچ"
}

30
i18n/ba.json Normal file
View File

@ -0,0 +1,30 @@
{
"@metadata": {
"authors": [
"Ләйсән",
"Айбикә"
]
},
"comments-comment": "Аңлатма",
"comments-voted-label": "Тауыш бирҙе",
"comments-loading": "Тейәү",
"comments-reply-to": "{{GENDER:$2|ҡатнашыусыға}} $1 яуап бирергә",
"comments-cancel-reply": "Кире алырға",
"comments-block-warning-anon": "Был аноним ҡатнашыусының (IP-адресы аша килгән) комментарийҙарына әһәмиәт бирмәҫкә теләүегеҙҙе раҫлайһығыҙмы?",
"comments-block-warning-user": "$1 ҡатнашыусының комментарийҙарына әһәмиәт бирмәҫкә теләүегеҙҙе раҫлайһығыҙмы?",
"comments-delete-warning": "Был комментарийҙы ысынлап та юйырға теләйһегеҙме?",
"comments-sort-by-date": "Датаһы буйынса тәртипкә килтереү",
"comments-sort-by-score": "Балл һандары буйынса тәртипкә килтереү",
"comments-show-comment-link": "Аңлатманы күрһәтергә",
"comments-you": "Һеҙ",
"comments-reply": "Яуап бирергә",
"comments-not-allowed": "Һеҙ комментарийҙар ҡалдыра алмайһығыҙ",
"comments-post": "Һеҙҙең комментарий",
"comments-submit": "Комментарий өҫтәргә",
"comments-score-text": "Баһа",
"comments-permalink": "Даими һылтанма",
"comments-delete-link": "Комментарийҙы юйырға",
"comments-anon-name": "Аноним ҡатнашыусы",
"comments-links-are-forbidden": "Комментарийҙарҙа эске һылтанмалар күрһәтеү тыйыла!",
"comments-is-spam": "Комментарий тексы спам итеп ҡабул ителде."
}

58
i18n/bcl.json Normal file
View File

@ -0,0 +1,58 @@
{
"@metadata": {
"authors": [
"Geopoet"
]
},
"comments-comment": "Komento",
"comments-desc": "Minadugang <code>&lt;comments&gt;</code> pangawil na parabangay na minatugot sa pagkomento nin mga pahina",
"comments-db-locked": "<h3>Pagdudugang nin mga komento</h3>An datos-sarayan sa ngunyan nakakandado para sa minsanang pagpapakarhay kan datos-sarayan, pagkatapos kaini ibabalik sa normal. Tabi man pakirikisa giraray aro-atyan!",
"comments-voted-label": "Nagboto na",
"comments-loading": "Ikinakarga...",
"comments-auto-refresher-enable": "Paganahon an awtomatikong pagpanumpayan nin komento",
"comments-auto-refresher-pause": "Iuntok nguna an awtomatikong pagpanumpayan nin komento",
"comments-reply-to": "Magsimbag sa",
"comments-cancel-reply": "Kanselaron",
"comments-block-warning-anon": "Segurado ka daw na muya mo na permanenteng pabayaan an gabos na mga komento na gikan sa dae pa nabibistong paragamit na ini (sa paagi kan saiyang estada nin IP)?",
"comments-block-warning-user": "Segurado ka daw na muya mo na permanenteng pabayaan an gabos na mga komento na gikan sa dae pa nabibistong paragamit na si $1?",
"comments-delete-warning": "Segurado ka daw na muya mong puraon ining komento?",
"comments-sort-by-date": "Salansanon sa paagi nin petsa",
"comments-sort-by-score": "Salansanon sa paagi nin iskor",
"comments-show-comment-link": "Ipahiling an komento",
"comments-manage-blocklist-link": "Manihooon an pinabayaang listahan",
"comments-ignore-message": "Saimong pinapabayaan an kagsurat kaining komento",
"comments-you": "Ika",
"comments-reply": "Kasimbagan",
"comments-login-required": "Ika dapat nakalaog na tanganing makadugang nin mga komento",
"comments-not-allowed": "Ika dae tinutugutan na magpaskil nin mga komento.",
"comments-post": "Ipaskil an komento",
"comments-submit": "Idugang an saimong komento",
"comments-score-text": "Iskor",
"comments-permalink": "Permanente-na-sugpon",
"comments-delete-link": "Puraon an komento",
"comments-anon-name": "Dai midbid na paragamit",
"comments-anon-message": "{{SITENAME}} maogmang minatugot <b>sa gabos na mga komento</b>. Kun ika habo na dae midbid, <a href=\"$1\">magparehistro</a> o baya <a href=\"$2\">maglaog</a>. Ini tabi libre.",
"comments-ignore-item": "<a href=\"$1\">$2</a> kan $3 <a href=\"$4\">(dae kubkubon)</a>",
"comments-ignore-no-users": "Mayo nin mga paragamit na sa ngunyan pinagkubkob.",
"comments-ignore-remove-message": "Segurado ka na muya mo na dae na pagkubkubon an mga komento kan paragamit na si <b>$1</b>?",
"comments-ignore-unblock": "Dae pagkubkubon",
"comments-ignore-cancel": "Kanselaron",
"comments-ignore-title": "Listahan kan pinabayaang komento",
"commentignorelist": "Listahan kan pinabayaang komento",
"comments-no-comments-of-day": "Mayo nin mga komento kan aldaw.",
"log-name-comments": "Talaan nin mga komento",
"log-description-comments": "Ini sarong talaan nin mga komento.",
"logentry-comments-add": "$1 nagpaskil nin sarong baguhong komento kan $3",
"logentry-comments-delete": "$1 pinagpura an komento na #$4 kan $3",
"comments-time-ago": "$1 nakaagi",
"comments-time-days": "{{PLURAL:$1|sarong aldaw|$1 na mga aldaw}}",
"comments-time-hours": "{{PLURAL:$1|sarong oras|$1 na mga oras}}",
"comments-time-minutes": "{{PLURAL:$1|sarong minuto|$1 minutos}}",
"comments-time-seconds": "{{PLURAL:$1|sarong segundo|$1 segundos}}",
"log-show-hide-comments": "$1 talaan nin komento",
"group-commentadmin": "Mga administrador nin komento",
"group-commentadmin-member": "{{GENDER:$1|administrador in komento}}",
"grouppage-commentadmin": "{{ns:project}}:Mga administrador in Komento",
"right-comment": "Isumite an mga komento",
"right-commentadmin": "Administraron an mga pinagsumiteng mga komento nin paragamit"
}

58
i18n/be-tarask.json Normal file
View File

@ -0,0 +1,58 @@
{
"@metadata": {
"authors": [
"Wizardist",
"Red Winged Duck",
"Renessaince"
]
},
"comments-comment": "Камэнтары",
"comments-desc": "Дадае ў парсэр падтрымку <code>&lt;comments&gt;</code> для падтрымкі камэнтараў на старонках",
"comments-db-locked": "<h3>Уключэньне камэнтаваньня</h3>База зьвестак у гэты момант заблякаваная для апрацоўкі, пасьля якой усё будзе вернута як было. Калі ласка, завітайце пазьней!",
"comments-voted-label": "Прагаласавалі",
"comments-loading": "Загрузка...",
"comments-auto-refresher-enable": "Уключыць аўтаабнаўленьне камэнтараў",
"comments-auto-refresher-pause": "Прыпыніць аўтаабнаўленьне камэнтараў",
"comments-reply-to": "Адказаць {{GENDER:$2|удзельніку|удзельніцы}} $1",
"comments-cancel-reply": "Скасаваць",
"comments-block-warning-anon": "Ці вы ўпэўненыя, што жадаеце ігнараваць усе камэнтары ад гэтага ананіма (паводле IP-адрасу)?",
"comments-block-warning-user": "Ці вы ўпэўненыя, што жадаеце ігнараваць усе камэнтары ад удзельніка $1?",
"comments-delete-warning": "Вы ўпэўненыя, што жадаеце выдаліць гэты камэнтар?",
"comments-sort-by-date": "Сартаваць паводле даты",
"comments-sort-by-score": "Сартаваць паводле адзнакі",
"comments-show-comment-link": "Паказаць камэнтар",
"comments-manage-blocklist-link": "Кіраваньне сьпісам ігнараваньня",
"comments-ignore-message": "Вы ігнаруеце аўтара гэтага камэнтара",
"comments-you": "Вы",
"comments-reply": "Адказаць",
"comments-login-required": "Вы мусіце ўвайсьці, каб дасылаць камэнтары",
"comments-not-allowed": "Вам не дазволена дасылаць камэнтары.",
"comments-post": "Даслаць камэнтар",
"comments-submit": "Падзяліцеся камэнтарам",
"comments-score-text": "Адзнака",
"comments-permalink": "Сталая спасылка",
"comments-delete-link": "Выдаліць камэнтар",
"comments-anon-name": "Ананімны ўдзельнік",
"comments-anon-message": "{{SITENAME}} вітае <b>ўсіх камэнтатараў</b>. Калі вы не жадаеце хаваць сваю асобу, <a href=\"$1\">зарэгіструйцеся</a> ці <a href=\"$2\">ўвайдзіце</a>. Гэта бясплатна.",
"comments-ignore-item": "<a href=\"$1\">$2</a>, $3 <a href=\"$4\">(разблякаваць)</a>",
"comments-ignore-no-users": "Цяпер ніводны ўдзельнік не заблякаваны.",
"comments-ignore-remove-message": "Вы ўпэўненыя, што жадаеце зноў бачыць камэнтары <b>$1</b>?",
"comments-ignore-unblock": "Разблякаваць",
"comments-ignore-cancel": "Скасаваць",
"comments-ignore-title": "Сьпіс ігнараваных камэнтатараў",
"commentignorelist": "Сьпіс ігнараваных камэнтатараў",
"comments-no-comments-of-day": "Сёньня лепшых камэнтараў дня няма.",
"log-name-comments": "Журнал камэнтараў",
"log-description-comments": "Гэта журнал камэнтараў.",
"comments-time-ago": "$1 таму",
"comments-time-days": "$1 {{PLURAL:$1|дзень|дні|дзён}}",
"comments-time-hours": "$1 {{PLURAL:$1|гадзіну|гадзіны|гадзінаў}}",
"comments-time-minutes": "$1 {{PLURAL:$1|хвіліну|хвіліны|хвілінаў}}",
"comments-time-seconds": "$1 {{PLURAL:$1|сэкунду|сэкунды|сэкундаў}}",
"log-show-hide-comments": "$1 журнал камэнтараў",
"group-commentadmin": "Адміністратары камэнтараў",
"group-commentadmin-member": "{{GENDER:$1|адміністратар камэнтараў|адміністратарка камэнтараў}}",
"grouppage-commentadmin": "{{ns:project}}:Адміністратары камэнтараў",
"right-comment": "дасылаць камэнтары",
"right-commentadmin": "адміністраваць дасланыя камэнтары"
}

15
i18n/bg.json Normal file
View File

@ -0,0 +1,15 @@
{
"@metadata": {
"authors": [
"පසිඳු කාවින්ද",
"DCLXVI"
]
},
"comments-comment": "Коментар",
"comments-loading": "Зареждане...",
"comments-cancel-reply": "Отказване",
"comments-you": "Вие",
"comments-reply": "Отговор",
"comments-score-text": "Точки",
"comments-ignore-cancel": "Отказване"
}

19
i18n/bn.json Normal file
View File

@ -0,0 +1,19 @@
{
"@metadata": {
"authors": [
"Bellayet",
"Aftab1995",
"Aftabuzzaman"
]
},
"comments-comment": "মন্তব্য",
"comments-loading": "লোডিং...",
"comments-reply-to": "প্রাপক {{GENDER:$2|$1}}",
"comments-cancel-reply": "বাতিল",
"comments-show-comment-link": "মন্তব্য দেখাও",
"comments-you": "আপনি",
"comments-reply": "উত্তর",
"comments-score-text": "স্কোর",
"comments-ignore-cancel": "বাতিল",
"comments-time-ago": "$1 আগে"
}

52
i18n/br.json Normal file
View File

@ -0,0 +1,52 @@
{
"@metadata": {
"authors": [
"Fohanno",
"Fulup",
"Y-M D"
]
},
"comments-comment": "Evezhiadenn",
"comments-voted-label": "Votet",
"comments-loading": "O kargañ...",
"comments-reply-to": "Respont da {{GENDER:$2|$1}}",
"comments-cancel-reply": "Nullañ",
"comments-delete-warning": "Ha sur oc'h hoc'h e fell deoc'h dilemel an evezhiadenn-mañ ?",
"comments-sort-by-date": "Urzhiañ dre zeiziad",
"comments-sort-by-score": "Renkañ dre skor",
"comments-show-comment-link": "diskouez an evezhiadenn",
"comments-manage-blocklist-link": "Merañ ar roll dianavezout",
"comments-you": "C'hwi",
"comments-reply": "Respont",
"comments-login-required": "Ret eo deoc'h bezañ kevreet evit ouzhpennañ evezhiadennoù",
"comments-not-allowed": "N'oc'h ket aotreet da embann evezhiadennoù.",
"comments-post": "Lakaat un evezhiadenn",
"comments-submit": "Ouzhpennañ hoc'h evezhiadenn",
"comments-score-text": "Poentoù",
"comments-permalink": "Peurliamm",
"comments-delete-link": "Diverkañ an evezhiadenn",
"comments-anon-name": "Implijer dizanv",
"comments-links-are-forbidden": "Difennet eo lakaat liammoù diavaez en evezhiadennoù !",
"comments-ignore-item": "<a href=\"$1\">$2</a> war $3 <a href=\"$4\">(distankañ)</a>",
"comments-ignore-no-users": "N'eus implijer stanket ebet evit bremañ.",
"comments-ignore-remove-message": "Ha sur oc'h e fell deoc'h distankañ evezhiadennoù an implijer <b>$1</b> ?",
"comments-ignore-unblock": "Distankañ",
"comments-ignore-cancel": "Nullañ",
"log-name-comments": "Marilh an evezhiadennoù",
"log-description-comments": "Hemañ zo ur marilh evezhiadennoù.",
"logentry-comments-add": "$1 en deus embannet un evezhiadenn nevez war $3",
"logentry-comments-delete": "$1 en deus dilamet an evezhiadenn $4 war $3",
"comments-time-ago": "$1 zo",
"comments-time-months": "{{PLURAL:$1|ur miz|$1 miz}}",
"comments-time-days": "{{PLURAL:$1|un deiz|$1 deiz}}",
"comments-time-hours": "{{PLURAL:$1|un eur|$1 eur}}",
"comments-time-minutes": "{{PLURAL:$1|ur vunutenn|$1 munut}}",
"comments-time-seconds": "{{PLURAL:$1|un eiladenn|$1 eiladenn}}",
"log-show-hide-comments": "Marilh evezhiadennoù $1",
"group-commentadmin": "Merourien an evezhiadennoù",
"group-commentadmin-member": "{{GENDER:$1|merour|merourez}} an evezhiadennoù",
"grouppage-commentadmin": "{{ns:project}}:Merourien an evezhiadennoù",
"right-comment": "Kas an evezhiadennoù",
"right-commentadmin": "Merañ an evezhiadennoù kaset gant an implijerien",
"right-commentlinks": "Implijout liammoù diavaez en evezhiadennoù"
}

8
i18n/bs.json Normal file
View File

@ -0,0 +1,8 @@
{
"@metadata": {
"authors": [
"CERminator"
]
},
"comments-delete-warning": "Da li ste sigurni da želite obrisati ovaj komentar?"
}

47
i18n/ca.json Normal file
View File

@ -0,0 +1,47 @@
{
"@metadata": {
"authors": [
"Arnaugir",
"Pitort",
"Fitoschido",
"Ssola"
]
},
"comments-comment": "Comentari",
"comments-voted-label": "Votat",
"comments-loading": "Carregant...",
"comments-reply-to": "Respon a",
"comments-cancel-reply": "Cancel·la",
"comments-delete-warning": "Segur que voleu suprimir aquest comentari?",
"comments-sort-by-date": "Ordena per data",
"comments-sort-by-score": "Ordena per puntuació",
"comments-show-comment-link": "Mostra el comentari",
"comments-manage-blocklist-link": "Gestiona la llista d'ignorats",
"comments-ignore-message": "Estàs ignorant l'autor d'aquest comentari",
"comments-you": "Vostè",
"comments-reply": "Resposta",
"comments-login-required": "Has d'estar identificat per afegir comentaris",
"comments-not-allowed": "No teniu permís per enviar comentaris.",
"comments-post": "Publica un comentari",
"comments-submit": "Afegeix el teu comentari",
"comments-score-text": "Puntuació",
"comments-permalink": "enllaç permanent",
"comments-delete-link": "Suprimeix el comentari",
"comments-anon-name": "Usuari anònim",
"comments-ignore-no-users": "No hi ha cap usuari blocat.",
"comments-ignore-unblock": "Desbloca",
"comments-ignore-cancel": "Cancel·la",
"comments-ignore-title": "Llista d'ignorats dels comentaris",
"commentignorelist": "Llista d'ignorats dels comentaris",
"comments-no-comments-of-day": "No hi ha cap comentari del dia.",
"log-name-comments": "Registre de comentaris",
"log-description-comments": "Això és un registre de comentaris.",
"comments-time-ago": "fa $1",
"comments-time-days": "{{PLURAL:$1|un dia|$1 dies}}",
"comments-time-hours": "{{PLURAL:$1|una hora|$1 hores}}",
"comments-time-minutes": "{{PLURAL:$1|un minut|$1 minuts}}",
"comments-time-seconds": "{{PLURAL:$1|un segon|$1 segons}}",
"log-show-hide-comments": "Registre de comentaris de $1",
"group-commentadmin": "Administradors de comentaris",
"group-commentadmin-member": "{{GENDER:$1|adminsitrador|administradora}} de comentaris"
}

27
i18n/ce.json Normal file
View File

@ -0,0 +1,27 @@
{
"@metadata": {
"authors": [
"Умар"
]
},
"comments-comment": "Къамел",
"comments-voted-label": "Кхаж тесна",
"comments-loading": "Чуйолуш…",
"comments-auto-refresher-enable": "Латаде комментареш автоматически карладахар",
"comments-auto-refresher-pause": "Сацаде комментареш автоматически карладахар",
"comments-reply-to": "Жоп дала {{GENDER:$2|$1}}",
"comments-cancel-reply": "Цаоьшу",
"comments-sort-by-date": "Терхаца нисъе",
"comments-you": "Хьо",
"comments-reply": "Жоп далар",
"comments-post": "Дита къамел",
"comments-submit": "ТӀетоха хьай къамел",
"comments-score-text": "Мах хадор",
"comments-ignore-cancel": "Цаоьшу",
"comments-time-ago": "$1 юха",
"comments-time-months": "{{PLURAL:$1|цхьа бутт|$1 беттанаш}}",
"comments-time-days": "{{PLURAL:$1|де}}",
"comments-time-hours": "{{PLURAL:$1|сахьат}}",
"comments-time-minutes": "{{PLURAL:$1|$1 минот}}",
"comments-time-seconds": "{{PLURAL:$1|$1 секунд}}"
}

12
i18n/cs.json Normal file
View File

@ -0,0 +1,12 @@
{
"@metadata": {
"authors": [
"Vks"
]
},
"comments-cancel-reply": "Zrušit",
"comments-ignore-unblock": "Odblokovat",
"log-name-comments": "Protokol o komentářích",
"comments-time-ago": "před $1",
"right-comment": "Odeslat komentář"
}

8
i18n/cv.json Normal file
View File

@ -0,0 +1,8 @@
{
"@metadata": {
"authors": [
"Chuvash2014"
]
},
"comments-you": "Эсир"
}

16
i18n/cy.json Normal file
View File

@ -0,0 +1,16 @@
{
"@metadata": {
"authors": [
"Lloffiwr",
"Robin Owain"
]
},
"comments-comment": "Sylw",
"comments-voted-label": "Wedi pleidleisio",
"comments-loading": "Wrthi'n llwytho...",
"comments-reply-to": "Ateb {{GENDER:$2|$1}}",
"comments-cancel-reply": "Diddymu",
"comments-delete-warning": "Ydych chi'n siwr eich bod am ddileu'r sylw hwn?",
"comments-sort-by-date": "Trefnu yn ôl dyddiad",
"comments-reply": "Ateb"
}

21
i18n/da.json Normal file
View File

@ -0,0 +1,21 @@
{
"@metadata": {
"authors": [
"Tjernobyl",
"Sarrus"
]
},
"comments-comment": "Kommentar",
"comments-loading": "Indlæser...",
"comments-cancel-reply": "Annuller",
"comments-sort-by-date": "Sorter efter dato",
"comments-show-comment-link": "Vis kommentar",
"comments-you": "Dig",
"comments-reply": "Svar",
"comments-submit": "Tilføj din kommentar",
"comments-score-text": "Point",
"comments-permalink": "Permanent henvisning",
"comments-delete-link": "Slet kommentar",
"comments-anon-name": "Anonym bruger",
"comments-ignore-cancel": "Annuller"
}

17
i18n/de-formal.json Normal file
View File

@ -0,0 +1,17 @@
{
"@metadata": {
"authors": [
"Kghbln"
]
},
"comments-db-locked": "<h3>Hinzufügen von Kommentaren</h3>Die Datenbank ist momentan aufgrund routinemäßiger Wartungsarbeiten für den Schreibzugriff gesperrt. Bitte probieren Sie es später noch einmal.",
"comments-block-warning-anon": "Sind Sie sicher, dass Sie alle Kommentare dieses anonymen Benutzers (über seine IP-Adresse) dauerhaft ignorieren möchten?",
"comments-block-warning-user": "Sind Sie sicher, dass Sie alle Kommentare des Benutzers $1 dauerhaft ignorieren möchten?",
"comments-delete-warning": "Sind Sie sicher, dass Sie diesen Kommentar löschen möchten?",
"comments-ignore-message": "Sie ignorieren den Verfasser dieses Kommentars",
"comments-you": " Sie",
"comments-login-required": "Sie müssen angemeldet sein, um Kommentare hinzufügen zu können.",
"comments-not-allowed": "Sie sind nicht berechtigt Kommentare hinzuzufügen.",
"comments-anon-message": "{{SITENAME}} freut sich über <b>alle Kommentare</b>. Sofern Sie nicht anonym bleiben möchten, <a href=\"$1\">registrieren Sie sich bitte</a> oder <a href=\"$2\">melden Sie sich an</a>.",
"comments-ignore-remove-message": "Sind Sie sicher, dass Sie die Kommentare von Benutzer <b>$1</b> wieder freigeben möchten?"
}

69
i18n/de.json Normal file
View File

@ -0,0 +1,69 @@
{
"@metadata": {
"authors": [
"Gerry",
"Kghbln",
"Metalhead64",
"Geitost"
]
},
"apihelp-commentlist-param-pagerPage": "Kommentarseitenzahl",
"apihelp-commentlist-param-showForm": "Zeigt das Kommentarformular",
"apihelp-commentsubmit-param-parentID": "Kommentarkennung des übergeordneten Kommentars",
"apihelp-commentsubmit-param-commentText": "Kommentartext",
"comments-comment": "Kommentar",
"comments-desc": "Ergänzt die Parsererweiterung <code>&lt;comments&gt;</code> zum Kommentieren von Seiten",
"comments-db-locked": "<h3>Hinzufügen von Kommentaren</h3>Die Datenbank ist momentan aufgrund routinemäßiger Wartungsarbeiten für den Schreibzugriff gesperrt. Bitte probiere es später noch einmal.",
"comments-voted-label": "Abgestimmt",
"comments-loading": "Lade …",
"comments-auto-refresher-enable": "Die automatische Aktualisierung der Kommentare aktivieren.",
"comments-auto-refresher-pause": "Die automatische Aktualisierung der Kommentare pausieren.",
"comments-reply-to": "Antworten auf {{GENDER:$2|$1}}",
"comments-cancel-reply": "Abbrechen",
"comments-block-warning-anon": "Bist du sicher, dass du alle Kommentare dieses anonymen Benutzers (über seine IP-Adresse) dauerhaft ignorieren möchtest?",
"comments-block-warning-user": "Bist du sicher, dass du alle Kommentare des Benutzers $1 dauerhaft ignorieren möchtest?",
"comments-delete-warning": "Bist du sicher, dass du diesen Kommentar löschen möchtest?",
"comments-sort-by-date": "Nach Datum sortieren",
"comments-sort-by-score": "Nach Punktzahl sortieren",
"comments-show-comment-link": "Kommentar anzeigen",
"comments-manage-blocklist-link": "Ignorierliste zu Kommentaren verwalten",
"comments-ignore-message": "Du ignorierst den Verfasser dieses Kommentars",
"comments-you": " Du",
"comments-reply": "Anworten",
"comments-login-required": "Du musst angemeldet sein, um Kommentare hinzufügen zu können.",
"comments-not-allowed": "Du bist nicht berechtigt Kommentare hinzuzufügen.",
"comments-post": "Kommentar speichern",
"comments-submit": "Kommentar hinzufügen",
"comments-score-text": "Punktzahl",
"comments-permalink": "Permanentlink",
"comments-delete-link": "Kommentar löschen",
"comments-anon-name": "Anonymer Benutzer",
"comments-anon-message": "{{SITENAME}} freut sich über <b>alle Kommentare</b>. Sofern du nicht anonym bleiben möchtest, <a href=\"$1\">registriere dich bitte</a> oder <a href=\"$2\">melde dich an</a>.",
"comments-links-are-forbidden": "Weblinks sind in Kommentaren verboten!",
"comments-is-spam": "Der eingegebene Kommentartext wurde als Spam interpretiert.",
"comments-ignore-item": "<a href=\"$1\">$2</a> am $3 <a href=\"$4\">(freigeben)</a>",
"comments-ignore-no-users": "Momentan gibt es keine gesperrten Benutzer.",
"comments-ignore-remove-message": "Bist du sicher, dass du die Kommentare von Benutzer <b>$1</b> wieder freigeben möchtest?",
"comments-ignore-unblock": "Freigeben",
"comments-ignore-cancel": "Abbrechen",
"comments-ignore-title": "Ignorierliste zu Kommentaren",
"commentignorelist": "Ignorierliste zu Kommentaren",
"comments-no-comments-of-day": "Es gibt keinen Kommentar des Tages.",
"log-name-comments": "Kommentar-Logbuch",
"log-description-comments": "Dies ist ein Logbuch von Kommentaren.",
"logentry-comments-add": "$1 hinterließ einen neuen Kommentar auf $3",
"logentry-comments-delete": "$1 löschte den Kommentar #$4 auf $3",
"comments-time-ago": "vor $1",
"comments-time-months": "{{PLURAL:$1|einem Monat|$1 Monaten}}",
"comments-time-days": "{{PLURAL:$1|einem Tag|$1 Tagen}}",
"comments-time-hours": "{{PLURAL:$1|einer Stunde|$1 Stunden}}",
"comments-time-minutes": "{{PLURAL:$1|einer Minute|$1 Minuten}}",
"comments-time-seconds": "{{PLURAL:$1|einer Sekunde|$1 Sekunden}}",
"log-show-hide-comments": "Kommentar-Logbuch $1",
"group-commentadmin": "Kommentaradministratoren",
"group-commentadmin-member": "{{GENDER:$1|Kommentaradministrator|Kommentaradministratorin}}",
"grouppage-commentadmin": "{{ns:project}}:Kommentaradministratoren",
"right-comment": "Kommentar abgeben",
"right-commentadmin": "Benutzerkommentare verwalten",
"right-commentlinks": "Weblinks in Kommentaren verwenden"
}

30
i18n/diq.json Normal file
View File

@ -0,0 +1,30 @@
{
"@metadata": {
"authors": [
"Erdemaslancan",
"Gorizon",
"Mirzali",
"Marmase",
"Kumkumuk"
]
},
"comments-comment": "Mışewre",
"comments-voted-label": "Rey Bıdê",
"comments-loading": "Bar beno...",
"comments-reply-to": "Cewabê",
"comments-cancel-reply": "Bıtexelne",
"comments-show-comment-link": "Vatışi bıvin",
"comments-you": "Tı",
"comments-reply": "Cewab",
"comments-login-required": "Qandé vatış dayışi ronıştış icab keno",
"comments-post": "Mışewre bırışe",
"comments-submit": "Vatışa xo dekere de",
"comments-score-text": "Skor",
"comments-permalink": "Greyo Daimi",
"comments-delete-link": "Vatışi bestere",
"comments-anon-name": "Karbero bêname",
"comments-ignore-unblock": "bloqi hewad",
"comments-ignore-cancel": "Bıtexelne",
"log-name-comments": "Qeyda vatışan",
"comments-time-ago": "Verdê $1"
}

61
i18n/dsb.json Normal file
View File

@ -0,0 +1,61 @@
{
"@metadata": {
"authors": [
"Michawiki"
]
},
"comments-comment": "Komentar",
"comments-desc": "Pśidawa parserowu kokulku <code>&lt;comments&gt;</code>, kótaraž zmóžnja komentěrowanje bokow.",
"comments-db-locked": "<h3>Pśidawanje komentarow</h3>Datowa banka jo tuchylu rutinowego wotwardowanja datoweje banki dla zastajone, pó kótaremž buźo zasej wšykno normalne. Pšosym wopytaj pózdźej hyšći raz!",
"comments-voted-label": "Wótgłosowany",
"comments-loading": "Zacytujo se...",
"comments-auto-refresher-enable": "Awtomatiske aktualizěrowanje komentarow zmóžniś",
"comments-auto-refresher-pause": "Awtomatiske aktualizěrowanje komentarow zastajiś",
"comments-reply-to": "Wótegroniś",
"comments-cancel-reply": "Pśetergnuś",
"comments-block-warning-anon": "Coš napšawdu wšykne komentary toś togo anonymnego wužywarja na pśecej ignorěrowaś (pśez jogo IP-adresu)?",
"comments-block-warning-user": "Coš napšawdu wšykne komentary wužywarja $1 na pśecej ignorěrowaś?",
"comments-delete-warning": "Coš toś ten komentar napšawdu lašowaś?",
"comments-sort-by-date": "Pó datumje sortěrowaś",
"comments-sort-by-score": "Pó licbje dypkow sortěrowaś",
"comments-show-comment-link": "Komentar pokazaś",
"comments-manage-blocklist-link": "Ignorěrowańsku lisćinu zastojaś",
"comments-ignore-message": "Ignorěrujoš awtora toś togo komentara",
"comments-you": "Ty",
"comments-reply": "Wótegroniś",
"comments-login-required": "Musyš se pśizjawiś, aby komentary pśidał",
"comments-not-allowed": "Njesmějoš žedne komentary pśidaś.",
"comments-post": "Komentar pósłaś",
"comments-submit": "Twój komentar pśidaś",
"comments-score-text": "Pógódnośenje",
"comments-permalink": "Trajny wótkaz",
"comments-delete-link": "Komentar lašowaś",
"comments-anon-name": "Anonymny wužywaŕ",
"comments-anon-message": "{{SITENAME}} wjaseli se wó <b>wšych komentarach</b>. Jolic njocoš anonymny byś, <a href=\"$1\">zregistrěruj se</a> abo <a href=\"$2\">pśizjaw se</a>. To jo dermo.",
"comments-links-are-forbidden": "Eksterne wótkaze su w komentarach zakazane!",
"comments-is-spam": "Wótpósłany komentarowy tekst jo se ako spam interpretěrował.",
"comments-ignore-item": "<a href=\"$1\">$2</a> $3 <a href=\"$4\">(wótblokěrowaś)</a>",
"comments-ignore-no-users": "Tuchylu njejsu žedne wužywarje zablokowane.",
"comments-ignore-remove-message": "Coš napšawdu komentary wužywarja <b>$1</b> wótblokěrowaś?",
"comments-ignore-unblock": "Wótblokěrowaś",
"comments-ignore-cancel": "Pśetergnuś",
"comments-ignore-title": "Ignorěrowańska lisćina komentarow",
"commentignorelist": "Ignorěrowańska lisćina komentarow",
"comments-no-comments-of-day": "Njedaju komentary dnja.",
"log-name-comments": "Komentarowy protokol",
"log-description-comments": "To jo komentarowy protokol.",
"logentry-comments-add": "$1 jo nowy komentar na $3 zawóstajił",
"logentry-comments-delete": "$1 jo komentar #$4 na $3 wulašował",
"comments-time-ago": "pśed $1",
"comments-time-days": "{{PLURAL:$1|jadnym dnjom|$1 dnjoma|$1 dnjami|}}",
"comments-time-hours": "{{PLURAL:$1|jadneju góźinu|$1 góźinoma|$1 góźinami}}",
"comments-time-minutes": "{{PLURAL:$1|jadneju minutu|$1 minutoma|$1 minutami}}",
"comments-time-seconds": "{{PLURAL:$1|jadneju sekundu|$1 sekundoma|$1 sekundami}}",
"log-show-hide-comments": "komentarowy protokol $1",
"group-commentadmin": "Komentarowe administratory",
"group-commentadmin-member": "{{GENDER:$1|komentarowy administrator|komentarowa administratorka}}",
"grouppage-commentadmin": "{{ns:project}}:Komentarowe administratory",
"right-comment": "Komentary wótpósłaś",
"right-commentadmin": "Wužywarske komentary zastojaś",
"right-commentlinks": "Eksterne wótkaze w komentarach wužywaś"
}

43
i18n/el.json Normal file
View File

@ -0,0 +1,43 @@
{
"@metadata": {
"authors": [
"Glavkos",
"ZaDiak",
"Protnet"
]
},
"comments-comment": "Σχόλιο",
"comments-voted-label": "Έχετε ψηφίσει",
"comments-loading": "Φόρτωση...",
"comments-auto-refresher-enable": "Ενεργοποίηση αυτόματης ανανέωσης σχολίων",
"comments-auto-refresher-pause": "Διακοπή αυτόματης ανανέωσης σχολίων",
"comments-reply-to": "Απάντηση σε {{GENDER:$2|$1}}",
"comments-cancel-reply": "Ακύρωση",
"comments-sort-by-date": "Ταξινόμηση κατά ημερομηνία",
"comments-sort-by-score": "Ταξινόμηση κατά βαθμολογία",
"comments-show-comment-link": "Προβολή σχολίου",
"comments-you": "Εσείς",
"comments-reply": "Απάντηση",
"comments-post": "Δημοσίευση σχολίου",
"comments-submit": "Προσθήκη του σχολίου σας",
"comments-score-text": "Βαθμολογία",
"comments-permalink": "Μόνιμος σύνδεσμος",
"comments-delete-link": "Διαγραφή σχολίου",
"comments-anon-name": "Ανώνυμος χρήστης",
"comments-ignore-unblock": "Άρση φραγής",
"comments-ignore-cancel": "Ακύρωση",
"comments-ignore-title": "Λίστα αγνόησης σχολίων",
"commentignorelist": "Λίστα αγνόησης σχολίων",
"log-name-comments": "Αρχείο καταγραφής σχολίων",
"log-description-comments": "Αυτό είναι ένα αρχείο καταγραφής σχολίων.",
"comments-time-ago": "πριν $1",
"comments-time-days": "{{PLURAL:$1|μια μέρα|$1 μέρες}}",
"comments-time-hours": "{{PLURAL:$1|μια ώρα|$1 ώρες}}",
"comments-time-minutes": "{{PLURAL:$1|ένα λεπτό|$1 λεπτά}}",
"comments-time-seconds": "{{PLURAL:$1|ένα δευτερόλεπτο|$1 δευτερόλεπτα}}",
"log-show-hide-comments": "$1 αρχείο καταγραφής σχολίων",
"group-commentadmin": "Διαχειριστές σχολίων",
"group-commentadmin-member": "{{GENDER:$1|διαχειριστής σχολίων|διαχειρίστρια σχολίων}}",
"grouppage-commentadmin": "{{ns:project}}:Διαχειριστές σχολίων",
"right-comment": "Καταχώρηση σχολίων"
}

87
i18n/en.json Normal file
View File

@ -0,0 +1,87 @@
{
"@metadata": {
"authors": [
"David Pean <david.pean@gmail.com>",
"Mihir Thakkar <mihir9293@gmail.com>"
]
},
"apihelp-commentblock-description": "The commentblock API allows blocking a user from the comment it originated from after filling out the following parameters: CommentID.",
"apihelp-commentblock-summary": "The commentblock API allows blocking a user from the comment it originated from after filling out the following parameters: CommentID.",
"apihelp-commentdelete-description": "The commentdelete API allows deleting a comment after filling out the following parameters: CommentID.",
"apihelp-commentdelete-summary": "The commentdelete API allows deleting a comment after filling out the following parameters: CommentID.",
"apihelp-commentlatestid-description": "The commentlatestID API allows to retrieve latest comment ID after filling out the following parameters: pageID",
"apihelp-commentlatestid-summary": "The commentlatestID API allows to retrieve latest comment ID after filling out the following parameters: pageID",
"apihelp-commentlist-description": "The commentlist API retrieves multiple comments and outputs them as a list after filling out the following parameters: pageID, order, pagerPage, and showForm.",
"apihelp-commentlist-summary": "The commentlist API retrieves multiple comments and outputs them as a list after filling out the following parameters: pageID, order, pagerPage, and showForm.",
"apihelp-commentsubmit-description": "The commentsubmit API allows to submit/post a comment after filling out the following parameters: pageID, parentID, commentText.",
"apihelp-commentsubmit-summary": "The commentsubmit API allows to submit/post a comment after filling out the following parameters: pageID, parentID, commentText.",
"apihelp-commentvote-description": "The commentvote API allows to vote on a comment after filling out the following parameters: commentID, voteValue.",
"apihelp-commentvote-summary": "The commentvote API allows to vote on a comment after filling out the following parameters: commentID, voteValue.",
"apihelp-commentblock-param-commentID": "Comment ID of the comment by user which is to be blocked",
"apihelp-commentdelete-param-commentID": "Comment ID of the comment to be deleted",
"apihelp-commentlatestid-param-pageID": "Page ID of the page on which latest comment is there",
"apihelp-commentlist-param-pageID": "Page ID of the page from which comment list is retrieved",
"apihelp-commentlist-param-order": "Defined whether comment list in ascending or descending order",
"apihelp-commentlist-param-pagerPage": "Comments page number",
"apihelp-commentlist-param-showForm": "Show comments form",
"apihelp-commentsubmit-param-pageID": "Page ID of the page on which comment is to be submitted",
"apihelp-commentsubmit-param-parentID": "Comment ID of the parent comment",
"apihelp-commentsubmit-param-commentText": "Comment Text",
"apihelp-commentvote-param-commentID": "Comment ID of the comment that is voted for",
"apihelp-commentvote-param-voteValue": "Vote value for the comment",
"comments-comment": "Comment",
"comments-desc": "Adds <code>&lt;comments&gt;</code> parser hook that allows commenting on pages",
"comments-db-locked": "<h3>Adding comments</h3>The database is currently locked for routine database maintenance, after which it will be back to normal. Please check back later!",
"comments-voted-label": "Voted",
"comments-loading": "Loading...",
"comments-auto-refresher-enable": "Enable comment auto-refresher",
"comments-auto-refresher-pause": "Pause comment auto-refresher",
"comments-reply-to": "Reply to {{GENDER:$2|$1}}",
"comments-cancel-reply": "Cancel",
"comments-block-warning-anon": "Are you sure you want to permanently ignore all comments from this anonymous user (via their IP address)?",
"comments-block-warning-user": "Are you sure you want to permanently ignore all comments from user $1?",
"comments-delete-warning": "Are you sure you want to delete this comment?",
"comments-sort-by-date": "Sort by date",
"comments-sort-by-score": "Sort by score",
"comments-show-comment-link": "Show comment",
"comments-manage-blocklist-link": "Manage ignore list",
"comments-ignore-message": "You are ignoring the author of this comment",
"comments-you": "You",
"comments-reply": "Reply",
"comments-login-required": "You must be logged in to add comments",
"comments-not-allowed": "You are not allowed to post comments.",
"comments-post": "Post comment",
"comments-submit": "Add your comment",
"comments-score-text": "Score",
"comments-permalink": "Permalink",
"comments-delete-link": "Delete comment",
"comments-anon-name": "Anonymous user",
"comments-anon-message": "{{SITENAME}} welcomes <b>all comments</b>. If you do not want to be anonymous, <a href=\"$1\">register</a> or <a href=\"$2\">log in</a>. It is free.",
"comments-links-are-forbidden": "External links in comments are forbidden!",
"comments-is-spam": "Submitted text of the comment was interpreted as spam.",
"comments-ignore-item": "<a href=\"$1\">$2</a> on $3 <a href=\"$4\">(unblock)</a>",
"comments-ignore-no-users": "There are no users currently blocked.",
"comments-ignore-remove-message": "Are you sure you want to unblock user <b>$1</b>'s comments?",
"comments-ignore-unblock": "Unblock",
"comments-ignore-cancel": "Cancel",
"comments-ignore-title": "Comment ignore list",
"commentignorelist": "Comment ignore list",
"comments-no-comments-of-day": "There are no comments of the day.",
"log-name-comments": "Comments log",
"log-description-comments": "This is a log of comments.",
"logentry-comments-add": "$1 posted a new comment on $3",
"logentry-comments-delete": "$1 deleted comment #$4 on $3",
"comments-time-ago": "$1 ago",
"comments-time-months": "{{PLURAL:$1|one month|$1 months}}",
"comments-time-days": "{{PLURAL:$1|one day|$1 days}}",
"comments-time-hours": "{{PLURAL:$1|one hour|$1 hours}}",
"comments-time-minutes": "{{PLURAL:$1|one minute|$1 minutes}}",
"comments-time-seconds": "{{PLURAL:$1|one second|$1 seconds}}",
"log-show-hide-comments": "$1 comment log",
"group-commentadmin": "Comment administrators",
"group-commentadmin-member": "{{GENDER:$1|comment administrator}}",
"grouppage-commentadmin": "{{ns:project}}:Comment administrators",
"right-comment": "Submit comments",
"right-commentadmin": "Administrate user-submitted comments",
"right-commentlinks": "Use external links in comments"
}

47
i18n/eo.json Normal file
View File

@ -0,0 +1,47 @@
{
"@metadata": {
"authors": [
"Yekrats",
"Robin van der Vliet"
]
},
"comments-comment": "Komento",
"comments-voted-label": "Voĉdonita",
"comments-loading": "Ŝargante...",
"comments-reply-to": "Respondo al",
"comments-cancel-reply": "Nuligi",
"comments-sort-by-date": "Ordigi laŭ datoj",
"comments-sort-by-score": "Ordigi laŭ poentaro",
"comments-show-comment-link": "Montri komenton",
"comments-you": "Vi",
"comments-reply": "Respondi",
"comments-login-required": "Vi devas ensaluti por aldoni komentojn",
"comments-not-allowed": "Vi ne estas permesata por afiŝi komentojn.",
"comments-post": "Afiŝi komenton",
"comments-submit": "Aldoni vian komenton",
"comments-score-text": "Poentaro",
"comments-permalink": "Konstanta ligilo",
"comments-delete-link": "Forigi komenton",
"comments-anon-name": "Anonimulo",
"comments-anon-message": "{{SITENAME}} bonvenas <b>ĉiujn komentojn</b>. Se vi ne volas esti anonima, <a href=\"$1\">registri</a> aŭ <a href=\"$2\">ensaluti</a>. Estas senpage.",
"comments-ignore-no-users": "Estas neniuj uzantoj nune forbaritaj.",
"comments-ignore-remove-message": "Ĉu vi certas ke vi volas malforbari komentojn de uzanto <b>$1</b>?",
"comments-ignore-unblock": "Malforbari",
"comments-ignore-cancel": "Nuligi",
"comments-ignore-title": "Ignor-listo de komentoj",
"commentignorelist": "Ignor-listo de komentoj",
"comments-no-comments-of-day": "Estas neniuj komentoj de la tago.",
"log-name-comments": "Protokolo pri komentoj",
"log-description-comments": "Jen protokolo de komentoj.",
"comments-time-ago": "antaŭ $1",
"comments-time-days": "{{PLURAL:$1|$1 tago|$1 tagoj}}",
"comments-time-hours": "{{PLURAL:$1|$1 horo|$1 horoj}}",
"comments-time-minutes": "{{PLURAL:$1|$1 minuto|$1 minutoj}}",
"comments-time-seconds": "{{PLURAL:$1|$1 sekundo|$1 sekundoj}}",
"log-show-hide-comments": "protokolo de komentoj $1",
"group-commentadmin": "Administrantoj de komentoj",
"group-commentadmin-member": "{{GENDER:$1|administranto de komentoj}}",
"grouppage-commentadmin": "{{ns:project}}:Administrantoj de komentoj",
"right-comment": "Publikigi komentojn",
"right-commentadmin": "Administri komentaron senditan de komentoj"
}

76
i18n/es.json Normal file
View File

@ -0,0 +1,76 @@
{
"@metadata": {
"authors": [
"AndreyWiki",
"Armando-Martin",
"Bernardom",
"Ciencia Al Poder",
"Fitoschido",
"Ihojose",
"Sporeunai",
"Frammm",
"Carlos Cristia",
"Macofe",
"Dgstranz"
]
},
"apihelp-commentvote-description": "La API commentvote permite votar un comentario tras proporcionar los parámetros siguientes: commentID, voteValue.",
"apihelp-commentblock-param-commentID": "Identificador del comentario del usuario que se bloqueará",
"apihelp-commentlist-param-pagerPage": "Número de la página de comentarios",
"apihelp-commentlist-param-showForm": "Mostrar el formulario de comentarios",
"comments-comment": "Comentario",
"comments-desc": "Añade el asociador analítico <code>&lt;comments&gt;</code> que permite hacer comentarios en las páginas",
"comments-db-locked": "<h3>Agregar comentarios</h3>En este momento la base de datos está bloqueada por tareas rutinarias de mantenimiento, luego de los cuales volverá a la normalidad. Regresa más tarde.",
"comments-voted-label": "Valorado",
"comments-loading": "Cargando...",
"comments-auto-refresher-enable": "Habilitar actualización automática de comentarios",
"comments-auto-refresher-pause": "Pausar actualización automática de comentarios",
"comments-reply-to": "Responder a {{GENDER:$2|$1}}",
"comments-cancel-reply": "Cancelar",
"comments-block-warning-anon": "¿Estás seguro que deseas ignorar permanentemente todos los comentarios de este usuario anónimo (a través de su dirección IP)?",
"comments-block-warning-user": "¿Estás seguro de que deseas ignorar permanentemente todos los comentarios {{GENDER:$1|del usuario|de la usuaria}} $1?",
"comments-delete-warning": "¿Estás seguro de que quieres eliminar este comentario?",
"comments-sort-by-date": "Ordenar por fecha",
"comments-sort-by-score": "Ordenar por valoración",
"comments-show-comment-link": "Mostrar comentario",
"comments-manage-blocklist-link": "Administrar lista de comentarios ignorados",
"comments-ignore-message": "Estás ignorando al autor de este comentario",
"comments-you": "Tú",
"comments-reply": "Responder",
"comments-login-required": "Debes iniciar sesión para agregar comentarios",
"comments-not-allowed": "No puedes publicar comentarios.",
"comments-post": "Publicar comentario",
"comments-submit": "Agrega tu comentario",
"comments-score-text": "Valoración",
"comments-permalink": "Enlace permanente",
"comments-delete-link": "Borrar comentario",
"comments-anon-name": "Usuario anónimo",
"comments-anon-message": "{{SITENAME}} valora <b>todos los comentarios</b>. Si no quieres ser un usuario anónimo, <a href=\"$1\">regístrate</a> o <a href=\"$2\">inicia sesión</a>. Es gratis.",
"comments-links-are-forbidden": "¡No está permitido poner enlaces externos en los comentarios!",
"comments-is-spam": "El texto enviado en el comentario ha sido interpretado como spam.",
"comments-ignore-item": "<a href=\"$1\">$2</a> el $3 <a href=\"$4\">(desbloquear)</a>",
"comments-ignore-no-users": "No hay ningún usuario bloqueado.",
"comments-ignore-remove-message": "¿Estás seguro de que deseas desbloquear los comentarios de <b>$1</b>?",
"comments-ignore-unblock": "Desbloquear",
"comments-ignore-cancel": "Cancelar",
"comments-ignore-title": "Lista de comentarios ignorados",
"commentignorelist": "Lista de comentarios ignorados",
"comments-no-comments-of-day": "No hay ningún comentario del día.",
"log-name-comments": "Registro de comentarios",
"log-description-comments": "Este es un registro de los comentarios.",
"logentry-comments-add": "$1 publicó un comentario nuevo en $3",
"logentry-comments-delete": "$1 eliminó el comentario n.º $4 en $3",
"comments-time-ago": "hace $1",
"comments-time-months": "{{PLURAL:$1|un mes|$1 meses}}",
"comments-time-days": "{{PLURAL:$1|un día|$1 días}}",
"comments-time-hours": "{{PLURAL:$1|una hora|$1 horas}}",
"comments-time-minutes": "{{PLURAL:$1|un minuto|$1 minutos}}",
"comments-time-seconds": "{{PLURAL:$1|un segundo|$1 segundos}}",
"log-show-hide-comments": "$1 registro de comentarios",
"group-commentadmin": "Administradores de comentarios",
"group-commentadmin-member": "{{GENDER:$1|administrador de comentarios|administradora de comentarios|administrador de comentarios}}",
"grouppage-commentadmin": "{{ns:project}}:Administradores de comentarios",
"right-comment": "Enviar comentarios",
"right-commentadmin": "Administrar los comentarios enviados por los usuarios",
"right-commentlinks": "Usar enlaces externos en comentarios"
}

48
i18n/et.json Normal file
View File

@ -0,0 +1,48 @@
{
"@metadata": {
"authors": [
"Avjoska",
"Pikne"
]
},
"comments-comment": "Kommenteeri",
"comments-loading": "Laadimine...",
"comments-reply-to": "Vasta kasutajale {{GENDER:$2|$1}}",
"comments-cancel-reply": "Loobu",
"comments-block-warning-anon": "Kas oled kindel, et soovid kõiki selle anonüümse kasutaja kommentaare jäädavalt eirata (IP-aadressi põhjal)?",
"comments-block-warning-user": "Kas oled kindel, et soovid kõiki kasutaja $1 kommentaare jäädavalt eirata?",
"comments-delete-warning": "Kas oled kindel, et tahad selle kommentaari kustutada?",
"comments-sort-by-date": "Järjesta kuupäeva järgi",
"comments-show-comment-link": "Näita kommentaari",
"comments-manage-blocklist-link": "Halda eiramisloendit",
"comments-ignore-message": "Sa eirad selle kommentaari autorit",
"comments-you": "Sina",
"comments-reply": "Vasta",
"comments-login-required": "Sa pead olema sisselogitud, et lisada kommentaare",
"comments-not-allowed": "Sul pole lubatud kommentaare postitada.",
"comments-post": "Saada kommentaar",
"comments-submit": "Lisa oma kommentaar",
"comments-permalink": "Püsilink",
"comments-delete-link": "Kustuta kommentaar",
"comments-anon-name": "Anonüümne kasutaja",
"comments-ignore-no-users": "Blokeeritud kasutajaid pole praegu.",
"comments-ignore-remove-message": "Kas oled kindel, et soovid kasutaja <b>$1</b> kommentaaride blokeerimise tühistada?",
"comments-ignore-unblock": "Lõpeta blokeerimine",
"comments-ignore-cancel": "Loobu",
"comments-ignore-title": "Kommentaaride eiramisloend",
"commentignorelist": "Kommentaaride eiramisloend",
"comments-no-comments-of-day": "Päevakommentaarid puuduvad.",
"log-name-comments": "Kommentaarilogi",
"log-description-comments": "See on kommentaaride logi.",
"comments-time-ago": "$1 tagasi",
"comments-time-days": "{{PLURAL:$1|üks päev|$1 päeva}}",
"comments-time-hours": "{{PLURAL:$1|üks tund|$1 tundi}}",
"comments-time-minutes": "{{PLURAL:$1|üks minut|$1 minutit}}",
"comments-time-seconds": "{{PLURAL:$1|üks sekund|$1 sekundit}}",
"log-show-hide-comments": "$1 kommentaarilogi",
"group-commentadmin": "Kommentaariadministraatorid",
"group-commentadmin-member": "{{GENDER:$1|kommentaariadministraator}}",
"grouppage-commentadmin": "{{ns:project}}:Kommentaariadministraatorid",
"right-comment": "Saata kommentaare",
"right-commentadmin": "Hallata kasutajate saadetud kommentaare"
}

22
i18n/eu.json Normal file
View File

@ -0,0 +1,22 @@
{
"@metadata": {
"authors": [
"Subi"
]
},
"comments-loading": "Kargatzen...",
"comments-cancel-reply": "Utzi",
"comments-delete-warning": "Ziur zaude iruzkin hau ezabatu nahi duzula?",
"comments-reply": "Erantzun",
"comments-submit": "Gehitu zure iruzkina",
"comments-delete-link": "Ezabatu iruzkina",
"comments-anon-name": "Erabiltzaile anonimoa",
"comments-ignore-cancel": "Utzi",
"comments-time-ago": "Duela $1",
"comments-time-months": "{{PLURAL:$1|hilabete bat|$1 hilabete}}",
"comments-time-days": "{{PLURAL:$1|egun bat|$1 egun}}",
"comments-time-hours": "{{PLURAL:$1|ordu bat|$1 ordu}}",
"comments-time-minutes": "{{PLURAL:$1|minutu bat|$1 minutu}}",
"comments-time-seconds": "{{PLURAL:$1|segundo bat|$1 segundo}}",
"right-comment": "Bidali iruzkinak"
}

71
i18n/fa.json Normal file
View File

@ -0,0 +1,71 @@
{
"@metadata": {
"authors": [
"Alireza",
"Armin1392",
"Ebraminio",
"Mahdiz",
"Omidh",
"Reza1615",
"Taha",
"پاناروما",
"Rtemis",
"Alirezaaa"
]
},
"comments-comment": "نظر",
"comments-desc": "اضافه کردن <code>&lt;comments&gt;</code> قلاب تجزیه کننده که به نظر‌گذاری در صفحات اجازه می‌دهد",
"comments-db-locked": "<h3> اضافه کردن نظرات </h3> در حال حاضر پایگاه اطلاعاتی برای حفاظت پایگاه اطلاعاتی جاری فقل است، که پی از این به حالت عادی برخواهد گشت.لطفاً بعداً بررسي كنيد!",
"comments-voted-label": "رای",
"comments-loading": "در حال بارگذاری...",
"comments-auto-refresher-enable": "فعال کردن تازه‌کنندهٔ خودکار نظر",
"comments-auto-refresher-pause": "متوقف‌کردن تازه‌کنندهٔ خودکار نظر",
"comments-reply-to": "پاسخ به {{GENDER:$2|$1}}",
"comments-cancel-reply": "لغو",
"comments-block-warning-anon": "آیا مطمئن هستید که می‌خواهید همهٔ نظرات را از این کاربر ناشناش برای همیشه (از طریق آدرس آی‌پی شان) نادیده بگیرید؟",
"comments-block-warning-user": "آیا مطمئنید می‌خواهید همهٔ نظرات از کاربر $1 را برای همیشه نادیده بگیرید؟",
"comments-delete-warning": "آیا مطمئن هستید که می‌خواهید این نظر را حذف کنید؟",
"comments-sort-by-date": "مرتب سازی بر اساس تاریخ",
"comments-sort-by-score": "مرتب کردن بر اساس امتیاز",
"comments-show-comment-link": "نمایش نظرها",
"comments-manage-blocklist-link": "مدیریت فهرست چشم‌پوشی",
"comments-ignore-message": "شما از نویسندهٔ این نظر چشم‌پوشی می‌کنید",
"comments-you": "شما",
"comments-reply": "پاسخ دادن",
"comments-login-required": "برای نظردهی لازم است ابتدا وارد سامانه شوید",
"comments-not-allowed": "شما مجاز به ارسال نظر نیستید.",
"comments-post": "ارسال نظر",
"comments-submit": "اضافه کردن نظر شما",
"comments-score-text": "امتیاز",
"comments-permalink": "پیوند پایدار",
"comments-delete-link": "حذف نظر",
"comments-anon-name": "کاربر ناشناس",
"comments-anon-message": "{{SITENAME}} <b>از همه نظرات</b> استقبال می‌کند. اگر شما نمی‌خواهید به صورت ناشناس باشید، $1 ثبت نام کنید</a> یا $2 وارد سامانه شوید.</a>. این عمل رایگان است.",
"comments-links-are-forbidden": "اتصالات خارجی در نظرات ممنوع است!",
"comments-is-spam": " متن ارائه شدهٔ نظرات به عنوان اسپم ترجمه شده",
"comments-ignore-item": "<a href=\"$1\">$2</a> on $3 <a href=\"$4\">(unblock)</a>",
"comments-ignore-no-users": "هیچ کاربری در حال حاضر بسته نشده است.",
"comments-ignore-remove-message": "آیا مطمئن هستید که می‌خواهید نظرات <b>$1</b> کاربر را باز کنید؟",
"comments-ignore-unblock": "باز شود",
"comments-ignore-cancel": "لغو",
"comments-ignore-title": "فهرست نظرات نادیده گرفته شده",
"commentignorelist": "فهرست نظرات نادیده گرفته شده",
"comments-no-comments-of-day": "هیچ نظری از روز وجود ندارد.",
"log-name-comments": "سیاههٔ نظرات",
"log-description-comments": "این یک سیاههٔ نظرات است.",
"logentry-comments-add": "$1 نظری تازه در صفحهٔ $3 ارسال کرد",
"logentry-comments-delete": "$1 نظر #$4 را از صفحهٔ $3 حذف کرد",
"comments-time-ago": "$1 پیش",
"comments-time-months": "{{PLURAL:$1|۱ ماه|$1 ماه‌}}",
"comments-time-days": "{{PLURAL:$1|یک روز|$1 روز}}",
"comments-time-hours": "{{PLURAL:$1|یک ساعت|$1 ساعت}}",
"comments-time-minutes": "{{PLURAL:$1|یک دقیقه|$1 دقیقه}}",
"comments-time-seconds": "{{PLURAL:$1|یک ثانیه|$1 ثانیه}}",
"log-show-hide-comments": "سیاههٔ نظرات $1",
"group-commentadmin": "مدیران نظرات",
"group-commentadmin-member": "{{GENDER:$1|سرپرست نظرات}}",
"grouppage-commentadmin": "{{ns:project}}: سرپرستان نظرات",
"right-comment": "ارسال نظرات",
"right-commentadmin": "سرپرستی نظرات ارائه شدهٔ کاربران",
"right-commentlinks": "از اتصالات خارجی در نظرات استفاده کنید"
}

59
i18n/fi.json Normal file
View File

@ -0,0 +1,59 @@
{
"@metadata": {
"authors": [
"Crt",
"Jack Phoenix <jack@countervandalism.net>",
"Nedergard",
"Nike",
"Pxos"
]
},
"comments-comment": "Kommentoi",
"comments-db-locked": "<h3>Kommenttien lisääminen</h3>Tietokanta on tällä hetkellä lukittu rutiinihuoltoa varten, jonka jälkeen se palautuu takaisin normaaliksi. Tule myöhemmin uudestaan!",
"comments-voted-label": "Äänestetty",
"comments-loading": "Ladataan...",
"comments-auto-refresher-enable": "Ota käyttöön kommenttien automaattinen päivitys",
"comments-auto-refresher-pause": "Pysäytä kommenttien automaattinen päivitys",
"comments-reply-to": "Vastaa käyttäjälle {{GENDER:$2|$1}}",
"comments-cancel-reply": "Peru",
"comments-block-warning-anon": "Oletko varma, että haluat lopullisesti jättää kaikki kommentit huomiotta tältä anonyymiltä käyttäjältä (IP-osoitteensa perusteella)?",
"comments-block-warning-user": "Oletko varma, että haluat lopullisesti jättää kaikki kommentit huomiotta käyttäjältä $1?",
"comments-delete-warning": "Oletko varma, että haluat poistaa tämän kommentin?",
"comments-sort-by-date": "Järjestä päivämäärän mukaan",
"comments-sort-by-score": "Järjestä pisteiden mukaan",
"comments-show-comment-link": "Näytä kommentti",
"comments-manage-blocklist-link": "Hallinnoi huomioimattomuuslistaa",
"comments-ignore-message": "Et huomioi tämän kommentin kirjoittajaa",
"comments-you": "Sinä",
"comments-reply": "Vastaa",
"comments-login-required": "Sinun tulee olla kirjautunut sisään voidaksesi lisätä kommentteja",
"comments-not-allowed": "Et voi lisätä kommentteja.",
"comments-post": "Lähetä kommentti",
"comments-submit": "Kommenttisi",
"comments-score-text": "Pistemäärä",
"comments-permalink": "Ikilinkki",
"comments-delete-link": "Poista kommentti",
"comments-anon-name": "Anonyymi käyttäjä",
"comments-anon-message": "{{SITENAME}} toivottaa tervetulleeksi <b>kaikki kommentit</b>. Jos et halua olla anonyymi, <a href=\"$1\">rekisteröidy</a> tai <a href=\"$2\">kirjaudu sisään</a>. Se on ilmaista.",
"comments-ignore-item": "<a href=\"$1\">$2</a>; $3 <a href=\"$4\">(poista huomioimattomuuslistalta)</a>",
"comments-ignore-no-users": "Sinulla ei ole yhtään käyttäjää huomioimattomuuslistallasi.",
"comments-ignore-remove-message": "Oletko varma, että haluat huomioida kommentit käyttäjältä <b>$1</b>?",
"comments-ignore-unblock": "Poista esto",
"comments-ignore-cancel": "Peruuta",
"comments-ignore-title": "Kommenttien huomioimattomuuslista",
"commentignorelist": "Kommenttien huomioimattomuuslista",
"comments-no-comments-of-day": "Ei päivän kommentteja.",
"log-name-comments": "Kommenttiloki",
"log-description-comments": "Tämä on loki kommenteista.",
"comments-time-ago": "$1 sitten",
"comments-time-days": "{{PLURAL:$1|yksi päivä|$1 päivää}}",
"comments-time-hours": "{{PLURAL:$1|tunti|$1 tuntia}}",
"comments-time-minutes": "{{PLURAL:$1|minuutti|$1 minuuttia}}",
"comments-time-seconds": "{{PLURAL:$1|sekunti|$1 sekuntia}}",
"log-show-hide-comments": "$1 kommenttiloki",
"group-commentadmin": "kommenttien ylläpitäjät",
"group-commentadmin-member": "{{GENDER:$1|kommenttien ylläpitäjä}}",
"grouppage-commentadmin": "{{ns:project}}:kommenttien ylläpitäjät",
"right-comment": "Lähettää kommentteja",
"right-commentadmin": "Hallinnoida käyttäjien lähettämiä kommentteja"
}

23
i18n/fo.json Normal file
View File

@ -0,0 +1,23 @@
{
"@metadata": {
"authors": [
"EileenSanda"
]
},
"comments-comment": "Viðmerk",
"comments-desc": "Leggur afturat <code>&lt;comments&gt;</code> parser-húk ið loyvir viðmerkingum á síðum",
"comments-voted-label": "Atkvøtt",
"comments-loading": "Innlesur...",
"comments-reply-to": "Svara",
"comments-cancel-reply": "Angra",
"comments-show-comment-link": "Vís viðmerking",
"comments-you": "Tú",
"comments-reply": "Svara",
"comments-anon-name": "Dulnevndur brúkari",
"comments-anon-message": "{{SITENAME}} vil gjarna hava <b>viðmerkingar</b>. Um tú ikki vilt vera dulnevnd/ur, so kanst tú <a href=\"$1\">skráseta teg</a> ella <a href=\"$2\">rita inn</a>. Tað er ókeypis.",
"comments-ignore-item": "<a href=\"$1\">$2</a> hin $3 <a href=\"$4\">(tak sperring burtur)</a>",
"comments-time-ago": "$1 síðan",
"comments-time-days": "{{PLURAL:$1|ein dagur|$1 dagar}}",
"comments-time-hours": "{{PLURAL:$1|ein tími|$1 tímar}}",
"comments-time-minutes": "{{PLURAL:$1|ein minuttur|$1 minuttir}}"
}

93
i18n/fr.json Normal file
View File

@ -0,0 +1,93 @@
{
"@metadata": {
"authors": [
"Crochet.david",
"Gomoko",
"Linedwell",
"0x010C",
"Tuxxic",
"Mattho69",
"Wladek92",