summaryrefslogtreecommitdiff
path: root/extensions/WikiEditor
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2013-01-18 16:46:04 +0100
committerPierre Schmitz <pierre@archlinux.de>2013-01-18 16:46:04 +0100
commit63601400e476c6cf43d985f3e7b9864681695ed4 (patch)
treef7846203a952e38aaf66989d0a4702779f549962 /extensions/WikiEditor
parent8ff01378c9e0207f9169b81966a51def645b6a51 (diff)
Update to MediaWiki 1.20.2
this update includes: * adjusted Arch Linux skin * updated FluxBBAuthPlugin * patch for https://bugzilla.wikimedia.org/show_bug.cgi?id=44024
Diffstat (limited to 'extensions/WikiEditor')
-rw-r--r--extensions/WikiEditor/.gitreview6
-rw-r--r--extensions/WikiEditor/README1
-rw-r--r--extensions/WikiEditor/WikiEditor.hooks.php25
-rw-r--r--extensions/WikiEditor/WikiEditor.i18n.php2608
-rw-r--r--extensions/WikiEditor/WikiEditor.php13
-rw-r--r--extensions/WikiEditor/modules/ext.wikiEditor.css8
-rw-r--r--extensions/WikiEditor/modules/ext.wikiEditor.dialogs.js2
-rw-r--r--extensions/WikiEditor/modules/ext.wikiEditor.templateEditor.js4
-rw-r--r--extensions/WikiEditor/modules/ext.wikiEditor.templates.js6
-rw-r--r--extensions/WikiEditor/modules/ext.wikiEditor.tests.toolbar.js219
-rw-r--r--extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.config.css9
-rw-r--r--extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.config.js2351
-rw-r--r--extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.css14
-rw-r--r--extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.js409
-rw-r--r--extensions/WikiEditor/modules/jquery.wikiEditor.highlight.js638
-rw-r--r--extensions/WikiEditor/modules/jquery.wikiEditor.js177
-rw-r--r--extensions/WikiEditor/modules/jquery.wikiEditor.preview.css9
-rw-r--r--extensions/WikiEditor/modules/jquery.wikiEditor.preview.js103
-rw-r--r--extensions/WikiEditor/modules/jquery.wikiEditor.previewDialog.css8
-rw-r--r--extensions/WikiEditor/modules/jquery.wikiEditor.publish.js68
-rw-r--r--extensions/WikiEditor/modules/jquery.wikiEditor.templateEditor.js4
-rw-r--r--extensions/WikiEditor/modules/jquery.wikiEditor.toc.css35
-rw-r--r--extensions/WikiEditor/modules/jquery.wikiEditor.toc.js57
-rw-r--r--extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.config.js6
-rw-r--r--extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.css10
-rw-r--r--extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.js2
-rw-r--r--extensions/WikiEditor/tests/selenium/WikiDialogs_Links.php68
-rw-r--r--extensions/WikiEditor/tests/selenium/WikiDialogs_Links_Setup.php296
-rw-r--r--extensions/WikiEditor/tests/selenium/WikiEditorConstants.php84
-rw-r--r--extensions/WikiEditor/tests/selenium/WikiEditorSeleniumConfig.php27
-rw-r--r--extensions/WikiEditor/tests/selenium/WikiEditorTestSuite.php35
31 files changed, 4476 insertions, 2826 deletions
diff --git a/extensions/WikiEditor/.gitreview b/extensions/WikiEditor/.gitreview
deleted file mode 100644
index 622413f0..00000000
--- a/extensions/WikiEditor/.gitreview
+++ /dev/null
@@ -1,6 +0,0 @@
-[gerrit]
-host=gerrit.wikimedia.org
-port=29418
-project=mediawiki/extensions/WikiEditor.git
-defaultbranch=master
-defaultrebase=0
diff --git a/extensions/WikiEditor/README b/extensions/WikiEditor/README
index bf166042..2851211d 100644
--- a/extensions/WikiEditor/README
+++ b/extensions/WikiEditor/README
@@ -15,4 +15,3 @@ require_once( "$IP/extensions/WikiEditor/WikiEditor.php" );
$wgDefaultUserOptions['usebetatoolbar'] = 1;
$wgDefaultUserOptions['usebetatoolbar-cgd'] = 1;
-$wgDefaultUserOptions['wikieditor-preview'] = 1;
diff --git a/extensions/WikiEditor/WikiEditor.hooks.php b/extensions/WikiEditor/WikiEditor.hooks.php
index a840dc4b..682f7aa2 100644
--- a/extensions/WikiEditor/WikiEditor.hooks.php
+++ b/extensions/WikiEditor/WikiEditor.hooks.php
@@ -287,6 +287,8 @@ class WikiEditorHooks {
if ( count( $configurations ) ) {
$vars = array_merge( $vars, $configurations );
}
+ //expose magic words for use by the wikieditor toolbar
+ WikiEditorHooks::getMagicWords( $vars );
return true;
}
@@ -304,4 +306,27 @@ class WikiEditorHooks {
$vars['wgWikiEditorEnabledModules'] = $enabledModules;
return true;
}
+
+ /**
+ * Expose useful magic words which are used by the wikieditor toolbar
+ * @param $vars array
+ * @return bool
+ */
+ private static function getMagicWords( &$vars ){
+ $requiredMagicWords = array(
+ 'redirect',
+ 'img_right',
+ 'img_left',
+ 'img_none',
+ 'img_center',
+ 'img_thumbnail',
+ 'img_framed',
+ 'img_frameless',
+ );
+ foreach ( $requiredMagicWords as $name ) {
+ $magicWords[$name] = MagicWord::get( $name )->getSynonym( 0 );
+ }
+ $vars['wgWikiEditorMagicWords'] = $magicWords;
+ }
+
}
diff --git a/extensions/WikiEditor/WikiEditor.i18n.php b/extensions/WikiEditor/WikiEditor.i18n.php
index f4663efc..7c4a71b7 100644
--- a/extensions/WikiEditor/WikiEditor.i18n.php
+++ b/extensions/WikiEditor/WikiEditor.i18n.php
@@ -88,6 +88,16 @@ Do you want to make it an internal link?',
'wikieditor-toolbar-tool-link-empty' => "You did not enter anything to link to.",
'wikieditor-toolbar-tool-file' => 'Embedded file',
'wikieditor-toolbar-tool-file-example' => 'Example.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Insert file',
+ 'wikieditor-toolbar-file-target' => 'Filename:',
+ 'wikieditor-toolbar-file-caption' => 'Caption:',
+ 'wikieditor-toolbar-file-size' => 'Size:',
+ 'wikieditor-toolbar-file-float' => 'Align:',
+ 'wikieditor-toolbar-file-default' => '(default)',
+ 'wikieditor-toolbar-file-format' => 'Format:',
+ 'wikieditor-toolbar-file-format-none' => 'none',
+ 'wikieditor-toolbar-tool-file-insert' => 'Insert',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Cancel',
'wikieditor-toolbar-tool-reference' => 'Reference',
'wikieditor-toolbar-tool-reference-example' => 'Insert footnote text here',
'wikieditor-toolbar-tool-reference-cancel' => 'Cancel',
@@ -239,7 +249,7 @@ $1:Example.jpg|Caption2",
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>List item</li><li>List item</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Embedded file',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Caption text]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Caption text</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Caption text</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Reference',
'wikieditor-toolbar-help-content-reference-syntax' => 'Page text.&lt;ref name="test"&gt;[http://www.example.org Link text], additional text.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Page text.<sup><a href='#'>[1]</a></sup>",
@@ -265,6 +275,7 @@ $1:Example.jpg|Caption2",
* @author EugeneZelenko
* @author Hamilton Abreu
* @author Harald Khan
+ * @author Kghbln
* @author Liangent
* @author Lloffiwr
* @author Mormegil
@@ -349,6 +360,18 @@ For more information, see http://www.mediawiki.org/wiki/Extension:WikiEditor/Too
'wikieditor-toolbar-tool-link-lookslikeinternal-int' => '{{Identical|Internal link}}',
'wikieditor-toolbar-tool-link-lookslikeinternal-ext' => '{{Identical|External link}}',
'wikieditor-toolbar-tool-file' => '{{Identical|Embedded file}}',
+ 'wikieditor-toolbar-tool-file-title' => 'Title for insert file dialog',
+ 'wikieditor-toolbar-file-target' => 'Label for the input of filename on insert file dialog',
+ 'wikieditor-toolbar-file-caption' => 'Label for input of caption on insert file dialog
+
+{{Identical|Caption}}',
+ 'wikieditor-toolbar-file-size' => 'Label for input of size on insert file dialog',
+ 'wikieditor-toolbar-file-float' => 'Label for image align selector on insert file dialog',
+ 'wikieditor-toolbar-file-default' => 'Label for default option in insert file dialog selectors',
+ 'wikieditor-toolbar-file-format' => 'Label for image format selector on insert file dialog',
+ 'wikieditor-toolbar-file-format-none' => 'Option in file dialog for no format for the added image',
+ 'wikieditor-toolbar-tool-file-insert' => '{{Identical|Insert}}',
+ 'wikieditor-toolbar-tool-file-cancel' => '{{Identical|Cancel}}',
'wikieditor-toolbar-tool-reference' => '{{Identical|Reference}}',
'wikieditor-toolbar-tool-reference-cancel' => '{{Identical|Cancel}}',
'wikieditor-toolbar-tool-reference-title' => 'Title of insert reference dialog. This text is on the very top bar of the dialog.',
@@ -360,7 +383,7 @@ For more information, see http://www.mediawiki.org/wiki/Extension:WikiEditor/Too
'wikieditor-toolbar-group-format' => '{{Identical|Format}}',
'wikieditor-toolbar-tool-ulist' => '{{Identical|Bulleted list}}',
'wikieditor-toolbar-tool-olist' => '{{Identical|Numbered list}}',
- 'wikieditor-toolbar-tool-nowiki' => '工具栏注释',
+ 'wikieditor-toolbar-tool-nowiki' => 'This is the text that appears when you hover the mouse over the third button from the right on the edit toolbar.',
'wikieditor-toolbar-tool-redirect' => "Tooltip for icon to place wiki text for a redirect in the edit box. The label before these icons says 'Insert'. 'Redirect' is a noun here.
{{Identical|Redirect}}",
'wikieditor-toolbar-tool-redirect-example' => "Target is an adjective describing the page name. You could use 'destination' instead of 'target'. 'Target page name' is the destination of the redirect and appears when the wikitext for a redirect is inserted in the text box thus
@@ -562,6 +585,12 @@ Wil u dit na 'n interne skakel verander?",
'wikieditor-toolbar-tool-link-empty' => 'U het niks ingesleutel om na te skakel nie.',
'wikieditor-toolbar-tool-file' => 'Ingebedde lêer',
'wikieditor-toolbar-tool-file-example' => 'Voorbeeld.jpg',
+ 'wikieditor-toolbar-file-target' => 'Lêernaam:',
+ 'wikieditor-toolbar-file-caption' => 'Byskrif:',
+ 'wikieditor-toolbar-file-size' => 'Grootte:',
+ 'wikieditor-toolbar-file-format' => 'Formaat:',
+ 'wikieditor-toolbar-tool-file-insert' => 'Invoeg',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Kanselleer',
'wikieditor-toolbar-tool-reference' => 'Verwysing',
'wikieditor-toolbar-tool-reference-example' => 'Voeg teks vir voetnota hier in',
'wikieditor-toolbar-tool-reference-cancel' => 'Kanselleer',
@@ -655,9 +684,11 @@ $1:Voorbeeld2|Byskrif2',
'wikieditor-toolbar-characters-page-persian' => 'Persiese',
'wikieditor-toolbar-characters-page-hebrew' => 'Hebreeus',
'wikieditor-toolbar-characters-page-bangla' => 'Bengaals',
+ 'wikieditor-toolbar-characters-page-tamil' => 'Tamil',
'wikieditor-toolbar-characters-page-telugu' => 'Telugu',
'wikieditor-toolbar-characters-page-sinhala' => 'Sinhala',
'wikieditor-toolbar-characters-page-gujarati' => 'Gujarati',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'Devanagari',
'wikieditor-toolbar-characters-page-thai' => 'Thai',
'wikieditor-toolbar-characters-page-lao' => 'Lao',
'wikieditor-toolbar-characters-page-khmer' => 'Khmer',
@@ -707,7 +738,7 @@ $1:Voorbeeld2|Byskrif2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Lyn in genommerde lys</li><li>Lyn in genommerde lys</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Ingebedde lêer',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Voorbeeld.png|thumb|Byskrif]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Byskrif' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Vergroot' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Byskrif</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Byskrif' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Vergroot' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Byskrif</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Verwysing',
'wikieditor-toolbar-help-content-reference-syntax' => 'Bladsyteks.&lt;ref name="test"&gt;[http://www.voorbeeld.org Skakel se teks], addisionele teks.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Bladsyteks <sup><a href='#'>[1]</a></sup>",
@@ -932,7 +963,7 @@ $1: Example.jpg|Caption2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li> pika Lista </li><li> pika Lista </li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Embedded file',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Caption teksti]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'> <a title=\"tekstit Legjenda\" class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a> <div class='thumbcaption'><div class='magnify'> <a title=\"Zmadho\" class='internal' href='#'><img height='11' width='15' alt='' src='\$1/common/images/magnify-clip.png'/></a> </div> tekstit Legjenda </div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'> <a title=\"tekstit Legjenda\" class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='\$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a> <div class='thumbcaption'><div class='magnify'> <a title=\"Zmadho\" class='internal' href='#'><img height='11' width='15' alt='' src='\$1/common/images/magnify-clip.png'/></a> </div> tekstit Legjenda </div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Referim',
'wikieditor-toolbar-help-content-reference-syntax' => 'Tekst faqesh. name="test"> <ref [http://www.example.org] teksti Link, teksti shtesë. </> ref',
'wikieditor-toolbar-help-content-reference-result' => "Tekst faqesh. <a href='#'><sup>[1]</sup></a>",
@@ -949,7 +980,7 @@ $1: Example.jpg|Caption2',
'wikieditor-toolbar-help-content-indent-result' => 'tekstit Normale <dl><dd> Teksti i prerë <dl><dd> Teksti i prerë </dd></dl></dd></dl>',
);
-/** Aragonese (Aragonés)
+/** Aragonese (aragonés)
* @author Juanpabl
*/
$messages['an'] = array(
@@ -1164,7 +1195,7 @@ $1:Eixemplo.jpg|Piet_de_foto_2',
'wikieditor-toolbar-help-content-olist-result' => "<ol><li>Elemento d'a lista</li><li>Elemento d'a lista</li></ol>",
'wikieditor-toolbar-help-content-file-description' => 'Fichero incorporato',
'wikieditor-toolbar-help-content-file-syntax' => "[[$1:Eixemplo.png|thumb|Texto descriptivo d'a imachen]]",
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Texto de piet de foto' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Fer más gran' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Texto de piet de foto</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Texto de piet de foto' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Fer más gran' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Texto de piet de foto</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Referencia',
'wikieditor-toolbar-help-content-reference-syntax' => 'Texto d\'a pachina.&lt;ref name="test"&gt;[http://www.example.org Texto d\'o vinclo], texto adicional.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Texto d'a pachina.<sup><a href='#'>[1]</a></sup>",
@@ -1249,17 +1280,17 @@ $messages['ar'] = array(
'wikieditor' => 'الواجهة المتقدمة لتعديل نص ويكي',
'wikieditor-desc' => 'يوفر واجهة تعديل نص ويكي قابلة للتمديد والعديد من الوحدات التي توفر المزايا',
'wikieditor-wikitext-tab' => 'نص الويكي',
- 'wikieditor-loading' => 'يُحمّل',
+ 'wikieditor-loading' => 'جاري التحميل...',
'wikieditor-preview-preference' => 'مكّن المعاينة جنبًا لجنب',
- 'wikieditor-preview-tab' => 'عاين',
- 'wikieditor-preview-changes-tab' => 'التغييرات',
- 'wikieditor-preview-loading' => 'يُحمّل...',
+ 'wikieditor-preview-tab' => 'عرض مسبق',
+ 'wikieditor-preview-changes-tab' => 'تغييرات',
+ 'wikieditor-preview-loading' => 'جاري التحميل...',
'wikieditor-previewDialog-preference' => 'مكّن حوار المعاينة',
- 'wikieditor-previewDialog-tab' => 'عاين',
- 'wikieditor-previewDialog-loading' => 'يُحمّل...',
+ 'wikieditor-previewDialog-tab' => 'عرض مسبق',
+ 'wikieditor-previewDialog-loading' => 'جاري التحميل...',
'wikieditor-publish-preference' => 'فعّل النشر خطوة بخطوة',
'wikieditor-publish-button-publish' => 'انشر',
- 'wikieditor-publish-button-cancel' => 'ألغِ',
+ 'wikieditor-publish-button-cancel' => 'إلغاء',
'wikieditor-publish-dialog-title' => 'انشر في {{SITENAME}}',
'wikieditor-publish-dialog-summary' => 'ملخص التعديل (اشرح باختصار التغييرات التي قمت بها):',
'wikieditor-publish-dialog-minor' => 'تعديل طفيف',
@@ -1269,7 +1300,7 @@ $messages['ar'] = array(
'wikieditor-template-editor-preference' => 'فعل تعديل قوالب الويكي المعتمد على النماذج',
'wikieditor-template-editor-dialog-title' => 'عدّل القالب',
'wikieditor-template-editor-dialog-submit' => 'حدّث',
- 'wikieditor-template-editor-dialog-cancel' => 'ألغِ',
+ 'wikieditor-template-editor-dialog-cancel' => 'إلغاء',
'wikieditor-templates-preference' => 'مكّن طي القوالب',
'wikieditor-toc-preference' => 'مكّن جدول المحتويات القابل للتصفح',
'wikieditor-toc-show' => 'أظهر المحتويات',
@@ -1278,8 +1309,8 @@ $messages['ar'] = array(
'wikieditor-toolbar-desc' => 'شريط تحرير الصفحات مع تحسين الاستخدامية',
'wikieditor-toolbar-preference' => 'مكن شريط أدوات التحرير المحسن',
'wikieditor-toolbar-dialogs-preference' => 'مكن حوارات إدراج الوصلات والجداول وغيرها',
- 'wikieditor-toolbar-hidesig' => 'إخفاء زر التوقيع من الصفحات الموجودة في مساحة الاسم الرئيسي',
- 'wikieditor-toolbar-loading' => 'يُحمّل...',
+ 'wikieditor-toolbar-hidesig' => 'أخف زر التوقيع في صفحات النطاق الرئيسي',
+ 'wikieditor-toolbar-loading' => 'جاري التحميل...',
'wikieditor-toolbar-tool-bold' => 'غليظ',
'wikieditor-toolbar-tool-bold-example' => 'نص غليظ',
'wikieditor-toolbar-tool-italic' => 'مائل',
@@ -1299,7 +1330,7 @@ $messages['ar'] = array(
'wikieditor-toolbar-tool-link-ext-target' => 'مسار الوصلة:',
'wikieditor-toolbar-tool-link-ext-text' => 'نص الوصلة:',
'wikieditor-toolbar-tool-link-insert' => 'أدرج الوصلة',
- 'wikieditor-toolbar-tool-link-cancel' => 'ألغِ',
+ 'wikieditor-toolbar-tool-link-cancel' => 'إلغاء',
'wikieditor-toolbar-tool-link-int-target-status-exists' => 'الصفحة موجودة',
'wikieditor-toolbar-tool-link-int-target-status-notexists' => 'الصفحة غير موجودة',
'wikieditor-toolbar-tool-link-int-target-status-invalid' => 'عنوان غير صحيح',
@@ -1312,9 +1343,18 @@ $messages['ar'] = array(
'wikieditor-toolbar-tool-link-empty' => 'لم تدخل شيئا لتصل به.',
'wikieditor-toolbar-tool-file' => 'ملف مضمّن',
'wikieditor-toolbar-tool-file-example' => 'Example.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'أدرج الملف',
+ 'wikieditor-toolbar-file-target' => 'اسم الملف:',
+ 'wikieditor-toolbar-file-caption' => 'التعليق:',
+ 'wikieditor-toolbar-file-size' => 'الحجم:',
+ 'wikieditor-toolbar-file-float' => 'ناحية:',
+ 'wikieditor-toolbar-file-default' => '(افتراضي)',
+ 'wikieditor-toolbar-file-format' => 'الصيغة:',
+ 'wikieditor-toolbar-tool-file-insert' => 'إدراج',
+ 'wikieditor-toolbar-tool-file-cancel' => 'إلغاء',
'wikieditor-toolbar-tool-reference' => 'مرجع',
'wikieditor-toolbar-tool-reference-example' => 'أدرج نص الحاشية هنا',
- 'wikieditor-toolbar-tool-reference-cancel' => 'ألغِ',
+ 'wikieditor-toolbar-tool-reference-cancel' => 'إلغاء',
'wikieditor-toolbar-tool-reference-title' => 'إدراج مرجع',
'wikieditor-toolbar-tool-reference-insert' => 'أدرج',
'wikieditor-toolbar-tool-reference-text' => 'نص المرجع',
@@ -1373,9 +1413,9 @@ $1:Example.jpg|تعليق2',
'wikieditor-toolbar-tool-table-wikitable' => 'سمة ذات حدود',
'wikieditor-toolbar-tool-table-sortable' => 'اجعل الجدول قابلا للترتيب',
'wikieditor-toolbar-tool-table-example' => 'مثال',
- 'wikieditor-toolbar-tool-table-preview' => 'عاين',
+ 'wikieditor-toolbar-tool-table-preview' => 'عرض مسبق',
'wikieditor-toolbar-tool-table-insert' => 'أدرج',
- 'wikieditor-toolbar-tool-table-cancel' => 'ألغِ',
+ 'wikieditor-toolbar-tool-table-cancel' => 'إلغاء',
'wikieditor-toolbar-tool-table-toomany' => 'إدراج جدول بأكثر من $1 خلية غير ممكن عبر هذا الحوار.',
'wikieditor-toolbar-tool-table-invalidnumber' => 'لم تدخل رقما صحيحا للصفوف أو الأعمدة.',
'wikieditor-toolbar-tool-table-zero' => 'لا يمكن أن تدرج جدولا بلا صفوف أو أعمدة.',
@@ -1405,11 +1445,11 @@ $1:Example.jpg|تعليق2',
'wikieditor-toolbar-characters-page-persian' => 'الفارسية',
'wikieditor-toolbar-characters-page-hebrew' => 'عبرية',
'wikieditor-toolbar-characters-page-bangla' => 'بنغالية',
- 'wikieditor-toolbar-characters-page-tamil' => 'التاميل',
+ 'wikieditor-toolbar-characters-page-tamil' => 'تاميلية',
'wikieditor-toolbar-characters-page-telugu' => 'تيلوجية',
'wikieditor-toolbar-characters-page-sinhala' => 'سنهالية',
'wikieditor-toolbar-characters-page-gujarati' => 'غجراتية',
- 'wikieditor-toolbar-characters-page-devanagari' => 'Devanagari',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'ديوناكرية',
'wikieditor-toolbar-characters-page-thai' => 'تايلندية',
'wikieditor-toolbar-characters-page-lao' => 'لاوية',
'wikieditor-toolbar-characters-page-khmer' => 'خميرية',
@@ -1459,7 +1499,7 @@ $1:Example.jpg|تعليق2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>عنصر قائمة</li><li>عنصر قائمة</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'ملف مضمّن',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|نص التعليق]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='نص التعليق' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='تكبير' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>نص التعليق</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='نص التعليق' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='تكبير' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>نص التعليق</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'مرجع',
'wikieditor-toolbar-help-content-reference-syntax' => 'نص الصفحة.&lt;ref name="test"&gt;[http://www.example.org نص الوصلة]، نص إضافي.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "نص الصفحة.<sup><a href='#'>[1]</a></sup>",
@@ -1531,7 +1571,7 @@ $messages['arc'] = array(
'wikieditor-toolbar-tool-heading-example' => 'ܟܬܒܬܐ ܕܪܘܫܢܐ',
'wikieditor-toolbar-group-format' => 'ܣܕܝܪܘܬܐ',
'wikieditor-toolbar-tool-redirect' => 'ܨܘܝܒܐ',
- 'wikieditor-toolbar-tool-redirect-example' => 'ܫܡܐ ܕܕܦܐ ܕܢܘܦܐ',
+ 'wikieditor-toolbar-tool-redirect-example' => 'ܫܡܐ ܕܦܐܬܐ ܕܢܘܦܐ',
'wikieditor-toolbar-tool-big' => 'ܪܒܐ',
'wikieditor-toolbar-tool-big-example' => 'ܟܬܒܬܐ ܪܒܬܐ',
'wikieditor-toolbar-tool-small' => 'ܙܥܘܪܐ',
@@ -1551,6 +1591,7 @@ $messages['arc'] = array(
'wikieditor-toolbar-tool-table-preview' => 'ܚܝܪܐ ܩܕܡܝܐ',
'wikieditor-toolbar-tool-table-insert' => 'ܣܢܘܦ',
'wikieditor-toolbar-tool-table-cancel' => 'ܒܛܘܠ',
+ 'wikieditor-toolbar-tool-replace-button-findnext' => 'ܐܫܟܚ ܕܒܬܪ',
'wikieditor-toolbar-section-characters' => 'ܐܬܘܬ̈ܐ ܕܝܠܢܝܬ̈ܐ',
'wikieditor-toolbar-characters-page-latin' => 'ܠܐܛܝܢܐܝܬ',
'wikieditor-toolbar-characters-page-latinextended' => 'ܠܐܛܝܢܐܝܬ ܡܬܝܚܐ',
@@ -1792,7 +1833,7 @@ $1:Example.jpg|Caption2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>List item</li><li>List item</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Embedded file',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Caption text]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Caption text</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Caption text</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'مرجع',
'wikieditor-toolbar-help-content-reference-syntax' => 'Page text.&lt;ref name="test"&gt;[http://www.example.org Link text], additional text.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Page text.<sup><a href='#'>[1]</a></sup>",
@@ -1813,10 +1854,14 @@ $1:Example.jpg|Caption2',
* @author Bishnu Saikia
* @author Chaipau
* @author Gitartha.bordoloi
+ * @author Nilamdyuti
*/
$messages['as'] = array(
+ 'wikieditor' => "উচ্চতৰ ৱিকিপাঠ্য সম্পাদনা ইণ্টাৰফে'চ",
+ 'wikieditor-desc' => "এখন বহলাব পৰা ৱিকিপাঠ্য সম্পাদনা ইণ্টাৰফে'চ আৰু বহু বৈশিষ্টসম্পন্ন মডিউল প্ৰদান কৰে",
'wikieditor-wikitext-tab' => 'ৱিকিপাঠ্য',
'wikieditor-loading' => "ল'ড হৈ আছে…",
+ 'wikieditor-preview-preference' => 'ওচৰা-ওচৰি প্ৰাক্‌দৰ্শন সক্ৰিয় কৰক',
'wikieditor-preview-tab' => 'প্রাকদর্শন',
'wikieditor-preview-changes-tab' => 'পৰিবৰ্তনসমূহ',
'wikieditor-preview-loading' => "ল'ড হৈ আছে…",
@@ -1832,13 +1877,19 @@ $messages['as'] = array(
'wikieditor-publish-dialog-watch' => 'এই পৃষ্ঠাটো লক্ষ্য কৰক',
'wikieditor-publish-dialog-publish' => 'প্ৰকাশ কৰক',
'wikieditor-publish-dialog-goback' => 'পাছলৈ যাওক',
+ 'wikieditor-template-editor-preference' => 'ৱিকি সাঁচৰ ফৰ্ম-ভিত্তিক সম্পাদনা সক্ৰিয় কৰক',
'wikieditor-template-editor-dialog-title' => 'সাঁচ সম্পাদনা',
'wikieditor-template-editor-dialog-submit' => 'আপডেট',
'wikieditor-template-editor-dialog-cancel' => 'বাতিল',
+ 'wikieditor-templates-preference' => 'সাঁচৰ ভাঁজ সক্ৰিয় কৰক',
+ 'wikieditor-toc-preference' => 'দিক্‌দৰ্শন সূচী সক্ৰিয় কৰক',
'wikieditor-toc-show' => 'বিষয়বস্তু দেখাওক',
'wikieditor-toc-hide' => 'সূচীসমূহ লুকুৱাওক',
'wikieditor-toolbar' => 'সম্পাদনা টুলবাৰ',
+ 'wikieditor-toolbar-desc' => 'অধিক ব্যৱহাৰযোগ্য সম্পাদনা পৃষ্ঠাৰ টুলবাৰ',
'wikieditor-toolbar-preference' => 'শক্তিশালী সম্পাদনা টুলবাৰ সক্ৰিয় কৰক',
+ 'wikieditor-toolbar-dialogs-preference' => 'লিংক, টেবল আৰু অধিক বস্তু সংযোজনৰ বাবে ডায়লগ সক্ৰিয় কৰক',
+ 'wikieditor-toolbar-hidesig' => 'মুখ্য নামস্থানৰ পৃষ্ঠাবোৰত স্বাক্ষৰ বুটাম লুকুৱাওক',
'wikieditor-toolbar-loading' => "ল'ড হৈ আছে…",
'wikieditor-toolbar-tool-bold' => 'গাঢ়',
'wikieditor-toolbar-tool-bold-example' => 'গাঢ় পাঠ্য',
@@ -1846,7 +1897,7 @@ $messages['as'] = array(
'wikieditor-toolbar-tool-italic-example' => 'হেলনীয়া পাঠ্য',
'wikieditor-toolbar-tool-ilink' => 'ভিতৰুৱা সংযোগ',
'wikieditor-toolbar-tool-ilink-example' => 'শিৰোনামা সংযোগ',
- 'wikieditor-toolbar-tool-xlink' => 'বহিঃসংযোগ (http:// উপসৰ্গ মনত ৰাখিব)',
+ 'wikieditor-toolbar-tool-xlink' => 'বহ্যিক সংযোগ (http:// উপসৰ্গ মনত ৰাখিব)',
'wikieditor-toolbar-tool-xlink-example' => 'http://www.example.com শীৰ্ষক সংযোগ',
'wikieditor-toolbar-tool-link' => 'সংযোগ',
'wikieditor-toolbar-tool-link-title' => 'লিংক যোগ কৰক',
@@ -1873,6 +1924,15 @@ $messages['as'] = array(
'wikieditor-toolbar-tool-link-empty' => 'লিংক কৰিবলৈ আপুনি একো টাইপ কৰা নাই।',
'wikieditor-toolbar-tool-file' => 'এম্বেডেড ফাইল',
'wikieditor-toolbar-tool-file-example' => 'Example.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'ফাইল সুমুৱাওক',
+ 'wikieditor-toolbar-file-target' => 'ফাইলৰ নাম:',
+ 'wikieditor-toolbar-file-caption' => 'পাতনি:',
+ 'wikieditor-toolbar-file-size' => 'আকাৰ:',
+ 'wikieditor-toolbar-file-float' => 'সংৰেখিত কৰক',
+ 'wikieditor-toolbar-file-default' => '(default)',
+ 'wikieditor-toolbar-file-format' => 'বিন্যাস:',
+ 'wikieditor-toolbar-tool-file-insert' => 'সুমুৱাওক',
+ 'wikieditor-toolbar-tool-file-cancel' => 'বাতিল কৰক',
'wikieditor-toolbar-tool-reference' => 'তথ্যসংগ্ৰহ',
'wikieditor-toolbar-tool-reference-example' => 'পাদটীকাৰ লিখনি ইয়াত যোগ দিয়ক',
'wikieditor-toolbar-tool-reference-cancel' => 'বাতিল',
@@ -1932,15 +1992,20 @@ $1:Example.jpg|শিৰোনাম ২',
'wikieditor-toolbar-tool-table-dimensions-columns' => 'ঠিয় শাৰী:',
'wikieditor-toolbar-tool-table-dimensions-header' => 'শিৰোনাম শাৰী অন্তৰ্ভুক্ত কৰক',
'wikieditor-toolbar-tool-table-wikitable' => 'সীমান্ত শৈলী',
+ 'wikieditor-toolbar-tool-table-sortable' => 'সম্প্ৰসাৰণ্যোগ্য টেবুল সৃষ্টি কৰক',
'wikieditor-toolbar-tool-table-example' => 'উদাহৰণ',
'wikieditor-toolbar-tool-table-preview' => 'প্ৰাকদৰ্শন',
'wikieditor-toolbar-tool-table-insert' => 'যোগ কৰক',
'wikieditor-toolbar-tool-table-cancel' => 'বাতিল',
+ 'wikieditor-toolbar-tool-table-toomany' => 'এই ডায়লগৰ দ্বাৰা $1 ঘৰতকৈ বেছি থকা টেবুল যোগ কৰা সম্ভৱ নহয়।',
+ 'wikieditor-toolbar-tool-table-invalidnumber' => 'আপুনি উলম্ব আৰু পথালী শাৰীৰ বৈধ সংখ্যা লিখাত ভুল কৰিছে।',
+ 'wikieditor-toolbar-tool-table-zero' => 'আপুনি শূন্য উলম্ব বা পথালী শাৰী থকা টেবুল যোগ কৰিব নোৱাৰে।',
'wikieditor-toolbar-tool-replace' => 'অনুসন্ধান আৰু প্ৰতিস্থাপন',
'wikieditor-toolbar-tool-replace-title' => 'অনুসন্ধান আৰু প্ৰতিস্থাপন',
'wikieditor-toolbar-tool-replace-search' => 'ৰ কাৰণে সন্ধান কৰক',
'wikieditor-toolbar-tool-replace-replace' => 'ইয়াৰ লগত প্ৰতিস্থাপন কৰক:',
'wikieditor-toolbar-tool-replace-case' => 'আখৰৰ ফলা মিলাওক',
+ 'wikieditor-toolbar-tool-replace-regex' => 'অনুসন্ধান বাক্যক নিয়মিত এক্সপ্ৰেছন হিচাপে গণ্য কৰক',
'wikieditor-toolbar-tool-replace-button-findnext' => 'পৰৱৰ্তী অনুসন্ধান',
'wikieditor-toolbar-tool-replace-button-replace' => 'প্ৰতিস্থাপন',
'wikieditor-toolbar-tool-replace-button-replaceall' => 'সকলো প্ৰতিস্থাপন',
@@ -2015,6 +2080,7 @@ $1:Example.jpg|শিৰোনাম ২',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>তালিকা আইটেম</li><li>তালিকা আইটেম</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'এম্বেডেড ফাইল',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|শিৰোনাম পাঠ্য]]',
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title=''শীৰ্ষ পাঠ্য'' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='ডাঙৰকৈ চাওক' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>শীৰ্ষ পাঠ্য'</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'তথ্যসংগ্ৰহ',
'wikieditor-toolbar-help-content-reference-syntax' => 'Page text.&lt;ref name="test"&gt;[http://www.example.org Link text], additional text.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "পৃষ্ঠাৰ পাঠ্য।<sup><a href='#'>[1]</a></sup>",
@@ -2026,9 +2092,12 @@ $1:Example.jpg|শিৰোনাম ২',
'wikieditor-toolbar-help-content-signaturetimestamp-result' => "<a href='#' title='{{#special:mypage}}'>ব্যৱহাৰকাৰী</a> (<a href='#' title='{{#special:mytalk}}'>আলোচনা</a>) ১৫:৫৪, ১০ জুন ২০০৯ (UTC)",
'wikieditor-toolbar-help-content-signature-description' => 'স্বাক্ষৰ',
'wikieditor-toolbar-help-content-signature-result' => "<a href='#' title='{{#special:mypage}}'>ব্যৱহাৰকাৰী</a> (<a href='#' title='{{#special:mytalk}}'>আলোচনা</a>)",
+ 'wikieditor-toolbar-help-content-indent-description' => 'ইণ্ডেণ্ট',
+ 'wikieditor-toolbar-help-content-indent-syntax' => 'সাধাৰন আখৰ<br />:ইন্টেন্ডেণ্ট আখৰ<br />::ইন্টেন্ডেণ্ট আখৰ',
+ 'wikieditor-toolbar-help-content-indent-result' => 'সাধাৰণ পাঠ্য<dl><dd>ইণ্ডেণ্ট কৰা পাঠ্য<dl><dd>ইণ্ডেণ্ট কৰা পাঠ্য</dd></dl></dd></dl>',
);
-/** Asturian (Asturianu)
+/** Asturian (asturianu)
* @author Xuacu
*/
$messages['ast'] = array(
@@ -2099,6 +2168,15 @@ $messages['ast'] = array(
'wikieditor-toolbar-tool-link-empty' => 'Nun escribisti nada pa enllazar.',
'wikieditor-toolbar-tool-file' => 'Ficheru incrustáu',
'wikieditor-toolbar-tool-file-example' => 'Exemplu.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Inxertar un ficheru',
+ 'wikieditor-toolbar-file-target' => 'Nome del ficheru:',
+ 'wikieditor-toolbar-file-caption' => 'Lleenda:',
+ 'wikieditor-toolbar-file-size' => 'Tamañu:',
+ 'wikieditor-toolbar-file-float' => 'Alliniamientu:',
+ 'wikieditor-toolbar-file-default' => '(predetermináu)',
+ 'wikieditor-toolbar-file-format' => 'Formatu:',
+ 'wikieditor-toolbar-tool-file-insert' => 'Inxertar',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Encaboxar',
'wikieditor-toolbar-tool-reference' => 'Referencia',
'wikieditor-toolbar-tool-reference-example' => 'Escribir equí el testu de la nota al pie',
'wikieditor-toolbar-tool-reference-cancel' => 'Encaboxar',
@@ -2246,7 +2324,7 @@ $1:Exemplu.jpg|Pie2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Elementu de la llista</li><li>Elementu de la llista</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Ficheru incrustáu',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Exemplu.png|thumb|Testu del pie]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Testu del pie' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Ampliar' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Testu del pie</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Testu del pie' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Ampliar' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Testu del pie</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Referencia',
'wikieditor-toolbar-help-content-reference-syntax' => 'Testu de la páxina&lt;ref name="test"&gt;[http://www.example.org Testu del enllaz], otru testu.&lt;/ref&gt;.',
'wikieditor-toolbar-help-content-reference-result' => "Testu de la páxina.<sup><a href='#'>[1]</a></sup>",
@@ -2263,7 +2341,7 @@ $1:Exemplu.jpg|Pie2',
'wikieditor-toolbar-help-content-indent-result' => 'Testu normal<dl><dd>Testu con sangría<dl><dd>Testu con sangría</dd></dl></dd></dl>',
);
-/** Azerbaijani (Azərbaycanca)
+/** Azerbaijani (azərbaycanca)
* @author Cekli829
* @author Koc61
* @author PPerviz
@@ -2423,7 +2501,7 @@ $messages['az'] = array(
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Siyahı bəndi</li><li>Siyahı bəndi</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Şəkil əlavə etmə',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Mövzu mətni]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Mövzu mətni' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Böyüt' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Mövzu mətni</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Mövzu mətni' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Böyüt' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Mövzu mətni</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'İstinad',
'wikieditor-toolbar-help-content-reference-syntax' => 'Səhifənin mətni.&lt;ref name="test"&gt;[http://www.example.org Keçidin mətni], əlavə mətnt.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Səhifənin mətni.<sup><a href='#'>[1]</a></sup>",
@@ -2440,7 +2518,7 @@ $messages['az'] = array(
'wikieditor-toolbar-help-content-indent-result' => 'Normal mətn<dl><dd>Abzasla mətn<dl><dd>Abzasla mətn</dd></dl></dd></dl>',
);
-/** Bashkir (Башҡортса)
+/** Bashkir (башҡортса)
* @author Assele
* @author Haqmar
*/
@@ -2511,6 +2589,14 @@ $messages['ba'] = array(
'wikieditor-toolbar-tool-link-empty' => 'Һеҙ нимәгә һылтанма яһағанығыҙҙы күрһәтмәгәнһегеҙ.',
'wikieditor-toolbar-tool-file' => 'Индерелгән файл',
'wikieditor-toolbar-tool-file-example' => 'Миҫал.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Файл өҫтәү',
+ 'wikieditor-toolbar-file-target' => 'Файл исеме:',
+ 'wikieditor-toolbar-file-size' => 'Күләме:',
+ 'wikieditor-toolbar-file-float' => 'Тигеҙләү:',
+ 'wikieditor-toolbar-file-default' => '(ғәҙәттәге)',
+ 'wikieditor-toolbar-file-format' => 'Формат:',
+ 'wikieditor-toolbar-tool-file-insert' => 'Өҫтәү',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Кире алырға',
'wikieditor-toolbar-tool-reference' => 'Төшөрмә',
'wikieditor-toolbar-tool-reference-example' => 'Төшөрмәнең текстын бында керетегеҙ',
'wikieditor-toolbar-tool-reference-cancel' => 'Кире алырға',
@@ -2602,9 +2688,11 @@ $1:Миҫал.jpg|Тасуирлама2',
'wikieditor-toolbar-characters-page-persian' => 'Фарсы',
'wikieditor-toolbar-characters-page-hebrew' => 'Йәһүд',
'wikieditor-toolbar-characters-page-bangla' => 'Бенгал',
+ 'wikieditor-toolbar-characters-page-tamil' => 'Тамиль',
'wikieditor-toolbar-characters-page-telugu' => 'Телугу',
'wikieditor-toolbar-characters-page-sinhala' => 'Сингал',
'wikieditor-toolbar-characters-page-gujarati' => 'Гуджарати',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'Деванагари',
'wikieditor-toolbar-characters-page-thai' => 'Тай',
'wikieditor-toolbar-characters-page-lao' => 'Лао',
'wikieditor-toolbar-characters-page-khmer' => 'Кһмер',
@@ -2654,7 +2742,7 @@ $1:Миҫал.jpg|Тасуирлама2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Исемлектең бер юлы</li><li>Исемлектең бер юлы</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Индерелгән файл',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Миҫал.png|thumb|Аңлатма]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Аңлатма' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Ҙурайтырға' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Аңлатма</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Аңлатма' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Ҙурайтырға' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Аңлатма</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Төшөрмә',
'wikieditor-toolbar-help-content-reference-syntax' => 'Биттәге текст.&lt;ref name="test"&gt;[http://www.example.org Һылтанма тексты], өҫтәмә текст.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Биттәге текст.<sup><a href='#'>[1]</a></sup>",
@@ -2682,7 +2770,7 @@ $messages['bar'] = array(
'wikieditor-templates-preference' => 'Aktiviarung vom Eih- und Ausblenden voh Vurlong',
);
-/** Belarusian (Беларуская)
+/** Belarusian (беларуская)
* @author Maksim L.
* @author Yury Tarasievich
*/
@@ -2893,7 +2981,7 @@ $1:Example.jpg|Апісанне2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Элемент пераліка</li><li>Элемент пераліка</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Файл у тэксце',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Апісанне файла]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Апісанне файла' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Апісанне файла</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Апісанне файла' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Апісанне файла</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Зноска',
'wikieditor-toolbar-help-content-reference-syntax' => 'Тэкст на старонцы.&lt;ref name="test"&gt;[http://www.example.org Тэкст спасылкі], астатні тэкст зноскі.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Тэкст на старонцы.<sup><a href='#'>[1]</a></sup>",
@@ -2910,7 +2998,7 @@ $1:Example.jpg|Апісанне2',
'wikieditor-toolbar-help-content-indent-result' => 'Просты тэкст<dl><dd>Тэкст з водступам<dl><dd>Тэкст з водступам</dd></dl></dd></dl>',
);
-/** Belarusian (Taraškievica orthography) (‪Беларуская (тарашкевіца)‬)
+/** Belarusian (Taraškievica orthography) (беларуская (тарашкевіца)‎)
* @author EugeneZelenko
* @author Jim-by
* @author Renessaince
@@ -2985,6 +3073,16 @@ $messages['be-tarask'] = array(
'wikieditor-toolbar-tool-link-empty' => 'Вы не ўвялі адрас спасылкі.',
'wikieditor-toolbar-tool-file' => 'Укладзены файл',
'wikieditor-toolbar-tool-file-example' => 'Прыклад.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Уставіць файл',
+ 'wikieditor-toolbar-file-target' => 'Назва файла:',
+ 'wikieditor-toolbar-file-caption' => 'Подпіс:',
+ 'wikieditor-toolbar-file-size' => 'Памер:',
+ 'wikieditor-toolbar-file-float' => 'Раўнаваньне:',
+ 'wikieditor-toolbar-file-default' => '(стандартнае)',
+ 'wikieditor-toolbar-file-format' => 'Фармат:',
+ 'wikieditor-toolbar-file-format-none' => 'няма',
+ 'wikieditor-toolbar-tool-file-insert' => 'Уставіць',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Скасаваць',
'wikieditor-toolbar-tool-reference' => 'Зноска',
'wikieditor-toolbar-tool-reference-example' => 'Устаўце сюды тэкст зноскі',
'wikieditor-toolbar-tool-reference-cancel' => 'Закрыць',
@@ -3132,7 +3230,7 @@ $1:Прыклад.jpg|Подпіс2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Элемэнт сьпісу</li><li>Элемэнт сьпісу</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Укладзены файл',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Прыклад.png|thumb|Тэкст подпісу]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Тэкст подпісу' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Тэкст подпісу</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Тэкст подпісу' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Тэкст подпісу</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Зноска',
'wikieditor-toolbar-help-content-reference-syntax' => 'Тэкст старонкі.&lt;ref name="test"&gt;[http://www.example.org Тэкст спасылкі], дадатковы тэкст.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Тэкст старонкі.<sup><a href='#'>[1]</a></sup>",
@@ -3149,7 +3247,7 @@ $1:Прыклад.jpg|Подпіс2',
'wikieditor-toolbar-help-content-indent-result' => 'Звычайны тэкст<dl><dd>Тэкст з водступам<dl><dd>Тэкст з водступам</dd></dl></dd></dl>',
);
-/** Bulgarian (Български)
+/** Bulgarian (български)
* @author DCLXVI
* @author McDutchie
* @author Spiritia
@@ -3363,7 +3461,7 @@ $1:Example.jpg|Описание2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Елемент от списъка</li><li>Елемент от списъка</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Вграден файл',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Текст под картинката]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Текст под картинката' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Уголемяване' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Текст под картинката</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Текст под картинката' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Уголемяване' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Текст под картинката</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Източник',
'wikieditor-toolbar-help-content-reference-syntax' => 'Текст на страницата.&lt;ref name="test"&gt;[http://www.example.org Текст на външната препратка], допълнителен текст.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Текст на страницата.<sup><a href='#'>[1]</a></sup>",
@@ -3586,6 +3684,7 @@ $1:Cuntuh.jpg|Judul2',
/** Bengali (বাংলা)
* @author Bellayet
+ * @author Nasir8891
* @author Wikitanvir
*/
$messages['bn'] = array(
@@ -3596,6 +3695,7 @@ $messages['bn'] = array(
'wikieditor-preview-tab' => 'প্রাকদর্শন',
'wikieditor-preview-changes-tab' => 'পরিবর্তনসমূহ',
'wikieditor-preview-loading' => 'লোডিং...',
+ 'wikieditor-previewDialog-preference' => 'প্রিভিউ ডায়লগ সক্রিয়',
'wikieditor-previewDialog-tab' => 'প্রাকদর্শন',
'wikieditor-previewDialog-loading' => 'লোডিং...',
'wikieditor-publish-preference' => 'ধাপে ধাপে প্রকাশ করা সক্রিয় করো',
@@ -3652,6 +3752,14 @@ $messages['bn'] = array(
'wikieditor-toolbar-tool-link-empty' => 'লিঙ্ক করা জন্য আপনি কোনো কিছু টাইপ করেননি।',
'wikieditor-toolbar-tool-file' => 'এম্বেডেড ফাইল',
'wikieditor-toolbar-tool-file-example' => 'Example.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'ফাইল সংযোজন',
+ 'wikieditor-toolbar-file-target' => 'ফাইলের নাম:',
+ 'wikieditor-toolbar-file-caption' => 'ক্যাপশন:',
+ 'wikieditor-toolbar-file-size' => 'আকার:',
+ 'wikieditor-toolbar-file-default' => '(ডিফল্ট)',
+ 'wikieditor-toolbar-file-format' => 'ফরম্যাট:',
+ 'wikieditor-toolbar-tool-file-insert' => 'যোগ করো',
+ 'wikieditor-toolbar-tool-file-cancel' => 'বাতিল',
'wikieditor-toolbar-tool-reference' => 'তথ্যসূত্র',
'wikieditor-toolbar-tool-reference-example' => 'পাদটীকার লেখা এখানে যোগ করো',
'wikieditor-toolbar-tool-reference-cancel' => 'বাতিল',
@@ -3744,6 +3852,7 @@ $1:Example.jpg|ক্যাপশন২',
'wikieditor-toolbar-characters-page-persian' => 'ফারসি',
'wikieditor-toolbar-characters-page-hebrew' => 'হিব্রু',
'wikieditor-toolbar-characters-page-bangla' => 'বাংলা',
+ 'wikieditor-toolbar-characters-page-tamil' => 'তামিল',
'wikieditor-toolbar-characters-page-telugu' => 'তেলেগু',
'wikieditor-toolbar-characters-page-sinhala' => 'শিংহলী',
'wikieditor-toolbar-characters-page-gujarati' => 'গুজরাতি',
@@ -3822,7 +3931,7 @@ $messages['bo'] = array(
'wikieditor-toolbar-help-page-list' => 'རེའུ་མིག',
);
-/** Bishnupria Manipuri (ইমার ঠার/বিষ্ণুপ্রিয়া মণিপুরী)
+/** Bishnupria Manipuri (বিষ্ণুপ্রিয়া মণিপুরী)
* @author Usingha
*/
$messages['bpy'] = array(
@@ -4031,7 +4140,7 @@ $1:Example.jpg|ক্যাপশন২',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>পারেঙর মেথেল</li><li>পারেঙর মেথেল</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'এম্বেডেড ফাইলগ',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|ক্যাপশনর মেয়ক]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='ক্যাপশর মেয়েক' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='ডাঙরকর' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>ক্যাপশর মেয়েক</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='ক্যাপশর মেয়েক' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='ডাঙরকর' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>ক্যাপশর মেয়েক</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'রেফারেন্সহানি',
'wikieditor-toolbar-help-content-reference-syntax' => 'পাতার ইকাহানি।&lt;ref name="test"&gt;[http://www.example.org মিলাপর মেয়েকগি], আরতাউ মেয়েক।&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "পাতার ইকা।<sup><a href='#'>[1]</a></sup>",
@@ -4058,7 +4167,7 @@ $messages['br'] = array(
'wikieditor' => 'Etrefas kemmañ wikitestenn klokaet',
'wikieditor-desc' => "Poruchas a ra un etrefas kemmañ wikitestenn astennidik ha meur a arc'hwel all.",
'wikieditor-wikitext-tab' => 'Wikitestenn',
- 'wikieditor-loading' => 'O kargañ',
+ 'wikieditor-loading' => 'O kargañ...',
'wikieditor-preview-preference' => 'Gweredekaat ar rakweled skoaz-ouzh-skoaz',
'wikieditor-preview-tab' => 'Rakwelet',
'wikieditor-preview-changes-tab' => 'Kemmoù',
@@ -4075,7 +4184,7 @@ $messages['br'] = array(
'wikieditor-publish-dialog-watch' => 'Evezhiañ ar bajenn-mañ',
'wikieditor-publish-dialog-publish' => 'Embann',
'wikieditor-publish-dialog-goback' => 'Distreiñ',
- 'wikieditor-template-editor-preference' => "Gweredekaat ar c'hemmañ partromoù wiki diwar furmskridoù",
+ 'wikieditor-template-editor-preference' => "Gweredekaat ar c'hemmañ patromoù wiki diwar furmskridoù",
'wikieditor-template-editor-dialog-title' => 'Kemmañ ar patrom',
'wikieditor-template-editor-dialog-submit' => 'Hizivaat',
'wikieditor-template-editor-dialog-cancel' => 'Nullañ',
@@ -4122,6 +4231,15 @@ Hag ul liamm diabarzh eo a fell deoc'h lakaat?",
'wikieditor-toolbar-tool-link-empty' => "N'hoc'h eus merket netra a c'haller sevel liammoù outañ.",
'wikieditor-toolbar-tool-file' => 'Restr enframmet',
'wikieditor-toolbar-tool-file-example' => 'Skouer.jpg',
+ 'wikieditor-toolbar-tool-file-title' => "Ensoc'hañ ur restr",
+ 'wikieditor-toolbar-file-target' => 'Anv ar restr :',
+ 'wikieditor-toolbar-file-caption' => "Alc'hwez :",
+ 'wikieditor-toolbar-file-size' => 'Ment :',
+ 'wikieditor-toolbar-file-default' => '(dre ziouer)',
+ 'wikieditor-toolbar-file-format' => 'Furmad :',
+ 'wikieditor-toolbar-file-format-none' => 'hini ebet',
+ 'wikieditor-toolbar-tool-file-insert' => "Ensoc'hañ",
+ 'wikieditor-toolbar-tool-file-cancel' => 'Nullañ',
'wikieditor-toolbar-tool-reference' => 'Daveenn',
'wikieditor-toolbar-tool-reference-example' => "Ensoc'hañ amañ testenn notenn traoñ pajenn",
'wikieditor-toolbar-tool-reference-cancel' => 'Nullañ',
@@ -4269,7 +4387,7 @@ $1:Skouer.jpg|Deskrivadur2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Elfenn eus ar roll</li><li>Elfenn eus ar roll</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Restr enframmet',
'wikieditor-toolbar-help-content-file-syntax' => "[[$1:Example.png|thumb|Alc'hwez ar skeudenn]]",
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Testenn an alc'hwez' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Brasaat' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Testenn an alc'hwez</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Testenn an alc'hwez' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Brasaat' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Testenn an alc'hwez</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Daveenn',
'wikieditor-toolbar-help-content-reference-syntax' => 'Testenn ar bajenn.&lt;ref name="test"&gt;[http://www.example.org testenn al liamm], testenn ouzhpenn.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Testenn ar bajenn.<sup><a href='#'>[1]</a></sup>",
@@ -4286,7 +4404,7 @@ $1:Skouer.jpg|Deskrivadur2',
'wikieditor-toolbar-help-content-indent-result' => 'Testenn normal<dl><dd>Testenn endantet<dl><dd>Testenn endantet</dd></dl></dd></dl>',
);
-/** Bosnian (Bosanski)
+/** Bosnian (bosanski)
* @author CERminator
* @author Palapa
*/
@@ -4501,7 +4619,7 @@ $1:Example.jpg|Opis2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Stavka spiska</li><li>Stavka spiska</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Uklopljena datoteka',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Opis slike]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Opis slike' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Uvećajte' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Opis slike</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Opis slike' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Uvećajte' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Opis slike</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Reference',
'wikieditor-toolbar-help-content-reference-syntax' => 'Tekst stranice.&lt;ref name="test"&gt;[http://www.example.org Tekst linka], dodatni tekst.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Tekst stranice.<sup><a href='#'>[1]</a></sup>",
@@ -4518,7 +4636,8 @@ $1:Example.jpg|Opis2',
'wikieditor-toolbar-help-content-indent-result' => 'Obični tekst<dl><dd>Uvučeni tekst<dl><dd>Uvučeni tekst</dd></dl></dd></dl>',
);
-/** Catalan (Català)
+/** Catalan (català)
+ * @author Arnaugir
* @author BroOk
* @author Martorell
* @author Paucabot
@@ -4595,6 +4714,15 @@ Voleu convertir-lo en un enllaç intern?",
'wikieditor-toolbar-tool-link-empty' => 'No heu entrat res per enllaçar.',
'wikieditor-toolbar-tool-file' => 'Fitxer incrustat',
'wikieditor-toolbar-tool-file-example' => 'Exemple.png',
+ 'wikieditor-toolbar-tool-file-title' => 'Insereix arxiu',
+ 'wikieditor-toolbar-file-target' => 'Nom del fitxer:',
+ 'wikieditor-toolbar-file-caption' => 'Títol:',
+ 'wikieditor-toolbar-file-size' => 'Mida:',
+ 'wikieditor-toolbar-file-float' => 'Alineació:',
+ 'wikieditor-toolbar-file-default' => '(per defecte)',
+ 'wikieditor-toolbar-file-format' => 'Format:',
+ 'wikieditor-toolbar-tool-file-insert' => 'Inserta',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Cancel·la',
'wikieditor-toolbar-tool-reference' => 'Referència',
'wikieditor-toolbar-tool-reference-example' => 'Inseriu la nota al peu aquí',
'wikieditor-toolbar-tool-reference-cancel' => 'Cancel·la',
@@ -4688,9 +4816,11 @@ $1:Example.jpg|Peu2',
'wikieditor-toolbar-characters-page-persian' => 'Persa',
'wikieditor-toolbar-characters-page-hebrew' => 'Hebreu',
'wikieditor-toolbar-characters-page-bangla' => 'Bengalí',
+ 'wikieditor-toolbar-characters-page-tamil' => 'Tamil',
'wikieditor-toolbar-characters-page-telugu' => 'Telugu',
'wikieditor-toolbar-characters-page-sinhala' => 'Sinhala',
'wikieditor-toolbar-characters-page-gujarati' => 'Gujarati',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'Devanagari',
'wikieditor-toolbar-characters-page-thai' => 'Tailandès',
'wikieditor-toolbar-characters-page-lao' => 'Laosià',
'wikieditor-toolbar-characters-page-khmer' => 'Khmer',
@@ -4740,7 +4870,7 @@ $1:Example.jpg|Peu2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Element de la llista</li><li>Element de la llista</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Fitxer incrustat',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Text descriptiu de la imatge]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Llegenda</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Llegenda</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Referències',
'wikieditor-toolbar-help-content-reference-syntax' => 'Text de la pàgina.&lt;ref name="test"&gt;[http://www.exemple.cat Nom de l\'enllaç], text addicional.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Text de la pàgina.<sup><a href='#'>[1]</a></sup>",
@@ -4757,7 +4887,7 @@ $1:Example.jpg|Peu2',
'wikieditor-toolbar-help-content-indent-result' => 'Text normal<dl><dd>Text sagnat<dl><dd>Text sagnat</dd></dl></dd></dl>',
);
-/** Chechen (Нохчийн)
+/** Chechen (нохчийн)
* @author Sasan700
*/
$messages['ce'] = array(
@@ -4970,7 +5100,7 @@ $1:Example.jpg|Цуьнах лаце2',
'wikieditor-toolbar-help-content-file-description' => 'Чохь йолу хlум',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Оцуьнах лаьцна йоза]]',
'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='
-Оцуьнах лаьцна йоза' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Доккха дан' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>
+Оцуьнах лаьцна йоза' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Доккха дан' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>
Оцуьнах лаьцна йоза</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Билгалдаккхар',
'wikieditor-toolbar-help-content-reference-syntax' => 'Агlонан йоза.&lt;ref name="test"&gt;[http://www.example.org Хьажориган йоза], кхин тlе дузуш йоза.&lt;/ref&gt;',
@@ -4988,10 +5118,12 @@ $1:Example.jpg|Цуьнах лаце2',
'wikieditor-toolbar-help-content-indent-result' => 'Гуттарлера йоза<dl><dd>Дlахилийна йоза<dl><dd>Дlахилийна йоза</dd></dl></dd></dl>',
);
-/** Sorani (کوردی)
+/** Sorani Kurdish (کوردی)
* @author Asoxor
+ * @author Calak
* @author Marmzok
* @author McDutchie
+ * @author Muhammed taha
*/
$messages['ckb'] = array(
'wikieditor' => 'ڕووکاری پێشکەوتووی دەستکاریکردنی ویکیدەق',
@@ -5010,7 +5142,7 @@ $messages['ckb'] = array(
'wikieditor-publish-dialog-title' => 'لە {{SITENAME}} بڵاوی بکەوە',
'wikieditor-publish-dialog-summary' => 'پوختەی دەستکاری (بە کورتی ئەی گۆڕانکارییانەی کردووتە ئاشکرا دەکاتەوە):',
'wikieditor-publish-dialog-minor' => 'دەستکاریی بچووک',
- 'wikieditor-publish-dialog-watch' => 'چاودێڕیی ئەم پەڕە بکە',
+ 'wikieditor-publish-dialog-watch' => 'ئەم پەڕەیە بخە ژێر چاودێری',
'wikieditor-publish-dialog-publish' => 'بڵاوی بکەوە',
'wikieditor-publish-dialog-goback' => 'بگەڕێوە',
'wikieditor-template-editor-preference' => 'ڕێگە بدە بە دەستکاریکردنی وەک فۆرم بۆ داڕێژەکانی ویکی',
@@ -5058,6 +5190,10 @@ $messages['ckb'] = array(
'wikieditor-toolbar-tool-link-empty' => 'ھیچێک بۆ بەستەر بۆ کردن نەخستە ناوی',
'wikieditor-toolbar-tool-file' => 'پەڕگەی نێودەق',
'wikieditor-toolbar-tool-file-example' => 'نموونە.jpg',
+ 'wikieditor-toolbar-file-target' => 'ناوی پەرگە:',
+ 'wikieditor-toolbar-file-format' => 'داڕشتن:',
+ 'wikieditor-toolbar-tool-file-insert' => 'تێخستن',
+ 'wikieditor-toolbar-tool-file-cancel' => 'ھەڵوەشاندنەوە',
'wikieditor-toolbar-tool-reference' => 'سەرچاوە',
'wikieditor-toolbar-tool-reference-example' => 'دەقی پانووس بخەرە ئێرە',
'wikieditor-toolbar-tool-reference-cancel' => 'ھەڵوەشاندنەوە',
@@ -5086,8 +5222,8 @@ $messages['ckb'] = array(
'wikieditor-toolbar-tool-redirect-example' => 'ناوی پەڕەی مەبەست',
'wikieditor-toolbar-tool-big' => 'گەورە',
'wikieditor-toolbar-tool-big-example' => 'دەقی گەورە',
- 'wikieditor-toolbar-tool-small' => 'بچوک',
- 'wikieditor-toolbar-tool-small-example' => 'دەقی بچکوک',
+ 'wikieditor-toolbar-tool-small' => 'بچووک',
+ 'wikieditor-toolbar-tool-small-example' => 'دەقی بچووک',
'wikieditor-toolbar-tool-superscript' => 'سەرنووس',
'wikieditor-toolbar-tool-superscript-example' => 'دەقی سەرنووس',
'wikieditor-toolbar-tool-subscript' => 'ژێرنووس',
@@ -5144,7 +5280,7 @@ $1:نموونە.jpg|شرۆڤەی ٢',
'wikieditor-toolbar-characters-page-ipa' => 'ئای پی ئەی',
'wikieditor-toolbar-characters-page-symbols' => 'ھێماکان',
'wikieditor-toolbar-characters-page-greek' => 'یۆنانی',
- 'wikieditor-toolbar-characters-page-cyrillic' => 'سیریلیک',
+ 'wikieditor-toolbar-characters-page-cyrillic' => 'کیریلی',
'wikieditor-toolbar-characters-page-arabic' => 'عەرەبی',
'wikieditor-toolbar-characters-page-arabicextended' => 'عەرەبیی پەرەپێدراو',
'wikieditor-toolbar-characters-page-persian' => 'فارسی',
@@ -5201,7 +5337,7 @@ $1:نموونە.jpg|شرۆڤەی ٢',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>ئەندامی لیست</li><li>ئەندامی لیست</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'پەڕگەی نێودەق',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|دەقی شرۆڤە]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='دەقی شرۆڤە' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='گەورەکردنەوە' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>دەقی شرۆڤە</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='دەقی شرۆڤە' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='گەورەکردنەوە' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>دەقی شرۆڤە</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'سەرچاوە',
'wikieditor-toolbar-help-content-reference-syntax' => 'دەقی پەڕە.&lt;ref name="test"&gt;[http://www.example.org دەقی بەستەر], دەقی زیادی.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "دەقی پەڕە.<sup><a href='#'>[1]</a></sup>",
@@ -5218,7 +5354,7 @@ $1:نموونە.jpg|شرۆڤەی ٢',
'wikieditor-toolbar-help-content-indent-result' => 'دەقی ئاسایی<dl><dd>دەقی پێشچوو<dl><dd>دەقی پێشچوو</dd></dl></dd></dl>',
);
-/** Corsican (Corsu) */
+/** Corsican (corsu) */
$messages['co'] = array(
'wikieditor-toolbar-tool-heading-1' => 'Livellu 1',
'wikieditor-toolbar-tool-heading-2' => 'Livellu 2',
@@ -5227,7 +5363,8 @@ $messages['co'] = array(
'wikieditor-toolbar-tool-heading-5' => 'Livellu 5',
);
-/** Czech (Česky)
+/** Czech (česky)
+ * @author Jkjk
* @author Kuvaly
* @author Mormegil
*/
@@ -5299,6 +5436,16 @@ Chcete z něj tedy udělat vnitřní odkaz?',
'wikieditor-toolbar-tool-link-empty' => 'Musíte uvést cíl odkazu.',
'wikieditor-toolbar-tool-file' => 'Vložený soubor',
'wikieditor-toolbar-tool-file-example' => 'Příklad.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Vložit soubor',
+ 'wikieditor-toolbar-file-target' => 'Název souboru:',
+ 'wikieditor-toolbar-file-caption' => 'Popisek:',
+ 'wikieditor-toolbar-file-size' => 'Velikost:',
+ 'wikieditor-toolbar-file-float' => 'Zarovnání:',
+ 'wikieditor-toolbar-file-default' => '(výchozí)',
+ 'wikieditor-toolbar-file-format' => 'Formát:',
+ 'wikieditor-toolbar-file-format-none' => 'žádný',
+ 'wikieditor-toolbar-tool-file-insert' => 'Vložit',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Storno',
'wikieditor-toolbar-tool-reference' => 'Poznámky',
'wikieditor-toolbar-tool-reference-example' => 'Sem uveďte text poznámky',
'wikieditor-toolbar-tool-reference-cancel' => 'Storno',
@@ -5446,7 +5593,7 @@ $1:Příklad.jpg|Titulek 2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Položka seznamu</li><li>Položka seznamu</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Vložení souboru',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Příklad.png|thumb|Text titulku]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Text titulku' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Zvětšit' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Text titulku</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Text titulku' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Zvětšit' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Text titulku</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Poznámka',
'wikieditor-toolbar-help-content-reference-syntax' => 'Text stránky.&lt;ref name="test"&gt;[http://www.example.org Text odkazu], další text.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Text stránky.<sup><a href='#'>[1]</a></sup>",
@@ -5463,7 +5610,7 @@ $1:Příklad.jpg|Titulek 2',
'wikieditor-toolbar-help-content-indent-result' => 'Základní text<dl><dd>Odsazený text<dl><dd>Odsazený text</dd></dl></dd></dl>',
);
-/** Kashubian (Kaszëbsczi)
+/** Kashubian (kaszëbsczi)
* @author Kuvaly
*/
$messages['csb'] = array(
@@ -5520,7 +5667,7 @@ $messages['csb'] = array(
'wikieditor-toolbar-help-content-xlink-description' => 'Bùtnowé lënczi',
);
-/** Church Slavic (Словѣ́ньскъ / ⰔⰎⰑⰂⰡⰐⰠⰔⰍⰟ)
+/** Church Slavic (словѣ́ньскъ / ⰔⰎⰑⰂⰡⰐⰠⰔⰍⰟ)
* @author ОйЛ
*/
$messages['cu'] = array(
@@ -5731,9 +5878,11 @@ $1:Enghraifft.jpg|Disgrifiad2',
'wikieditor-toolbar-characters-page-persian' => 'Perseg',
'wikieditor-toolbar-characters-page-hebrew' => 'Hebraeg',
'wikieditor-toolbar-characters-page-bangla' => 'Bangla',
+ 'wikieditor-toolbar-characters-page-tamil' => 'Tamileg',
'wikieditor-toolbar-characters-page-telugu' => 'Telugu',
'wikieditor-toolbar-characters-page-sinhala' => 'Sinhala',
'wikieditor-toolbar-characters-page-gujarati' => 'Gwjarati',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'Defanagari',
'wikieditor-toolbar-characters-page-thai' => 'Thai',
'wikieditor-toolbar-characters-page-lao' => 'Laoseg',
'wikieditor-toolbar-characters-page-khmer' => 'Chmereg',
@@ -5783,7 +5932,7 @@ $1:Enghraifft.jpg|Disgrifiad2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Eitem ar y rhestr</li><li>Eitem ar y rhestr</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Ffeil mewnosodol',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Disgrifiad]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Egluryn' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Chwyddo' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Egluryn</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Egluryn' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Chwyddo' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Egluryn</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Troednodyn',
'wikieditor-toolbar-help-content-reference-syntax' => 'Testun y dudalen.&lt;ref name="test"&gt;[http://www.enghraifft.org ysgrifen y cyswllt], ysgrifen ychwanegol.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => 'Testun y dudalen.',
@@ -5800,10 +5949,11 @@ $1:Enghraifft.jpg|Disgrifiad2',
'wikieditor-toolbar-help-content-indent-result' => "Ysgrifen rheolaidd<dl><dd>Ysgrifen wedi'i mewnoli<dl><dd>Ysgrifen wedi'i mewnoli</dd></dl></dd></dl>",
);
-/** Danish (Dansk)
+/** Danish (dansk)
* @author Christian List
* @author F. Cosoleto
* @author Froztbyte
+ * @author Hylle
* @author Peter Alberti
* @author Sarrus
* @author Sir48
@@ -5876,6 +6026,15 @@ $messages['da'] = array(
'wikieditor-toolbar-tool-link-empty' => 'Du har ikke angivet noget at linke til.',
'wikieditor-toolbar-tool-file' => 'Indlejret fil',
'wikieditor-toolbar-tool-file-example' => 'Eksempel.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Indsæt fil',
+ 'wikieditor-toolbar-file-target' => 'Filnavn:',
+ 'wikieditor-toolbar-file-caption' => 'Billedtekst:',
+ 'wikieditor-toolbar-file-size' => 'Størrelse:',
+ 'wikieditor-toolbar-file-float' => 'Justering:',
+ 'wikieditor-toolbar-file-default' => '(standard)',
+ 'wikieditor-toolbar-file-format' => 'Format:',
+ 'wikieditor-toolbar-tool-file-insert' => 'Indsæt',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Annuller',
'wikieditor-toolbar-tool-reference' => 'Fodnote',
'wikieditor-toolbar-tool-reference-example' => 'Indsæt fodnotetekst her',
'wikieditor-toolbar-tool-reference-cancel' => 'Annullér',
@@ -5973,6 +6132,7 @@ $1:Eksempel.jpg|Billedtekst2',
'wikieditor-toolbar-characters-page-telugu' => 'Telugu',
'wikieditor-toolbar-characters-page-sinhala' => 'Singalesisk',
'wikieditor-toolbar-characters-page-gujarati' => 'Gujarati',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'Devanagari',
'wikieditor-toolbar-characters-page-thai' => 'Thai',
'wikieditor-toolbar-characters-page-lao' => 'Laotisk',
'wikieditor-toolbar-characters-page-khmer' => 'Khmer',
@@ -6022,7 +6182,7 @@ $1:Eksempel.jpg|Billedtekst2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Listeelement</li><li>Listeelement</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Indlejret fil',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Billedtekst]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Billedtekst' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Forstør' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Billedtekst</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Billedtekst' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Forstør' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Billedtekst</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Fodnote',
'wikieditor-toolbar-help-content-reference-syntax' => 'Sidetekst.&lt;ref name="test"&gt;[http://www.example.org Henvisningstekst], yderligere tekst.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Sidetekst.<sup><a href='#'>[1]</a></sup>",
@@ -6069,11 +6229,11 @@ $messages['de'] = array(
'wikieditor-publish-button-cancel' => 'Abbrechen',
'wikieditor-publish-dialog-title' => 'Auf {{SITENAME}} veröffentlichen',
'wikieditor-publish-dialog-summary' => 'Zusammenfassung (kurze Beschreibung der von dir vorgenommenen Änderungen):',
- 'wikieditor-publish-dialog-minor' => 'Nur Kleinigkeiten wurden verändert',
+ 'wikieditor-publish-dialog-minor' => 'Kleine Änderung',
'wikieditor-publish-dialog-watch' => 'Diese Seite beobachten',
'wikieditor-publish-dialog-publish' => 'Veröffentlichen',
'wikieditor-publish-dialog-goback' => 'Zurück',
- 'wikieditor-template-editor-preference' => 'Formularbasiertes Bearbeiten von Wiki-Vorlagen aktivieren',
+ 'wikieditor-template-editor-preference' => 'Formulargestütztes Bearbeiten von Wikivorlagen aktivieren',
'wikieditor-template-editor-dialog-title' => 'Vorlage bearbeiten',
'wikieditor-template-editor-dialog-submit' => 'Aktualisieren',
'wikieditor-template-editor-dialog-cancel' => 'Abbrechen',
@@ -6085,7 +6245,7 @@ $messages['de'] = array(
'wikieditor-toolbar-desc' => 'Bearbeiten-Werkzeugleiste mit erweiterter Benutzerfreundlichkeit',
'wikieditor-toolbar-preference' => 'Erweiterte Bearbeiten-Werkzeugleiste aktivieren',
'wikieditor-toolbar-dialogs-preference' => 'Dialoge für das Einfügen von Links, Tabellen usw. aktivieren',
- 'wikieditor-toolbar-hidesig' => 'Den Unterschriftsbutton bei Seiten im Artikelnamensraum ausblenden',
+ 'wikieditor-toolbar-hidesig' => 'Die Schaltfläche für die Signatur bei Seiten im Artikelnamensraum ausblenden',
'wikieditor-toolbar-loading' => 'Lade …',
'wikieditor-toolbar-tool-bold' => 'Fett',
'wikieditor-toolbar-tool-bold-example' => 'Fetter Text',
@@ -6094,14 +6254,14 @@ $messages['de'] = array(
'wikieditor-toolbar-tool-ilink' => 'Interner Link',
'wikieditor-toolbar-tool-ilink-example' => 'Linktitel',
'wikieditor-toolbar-tool-xlink' => 'Externer Link (http:// beachten)',
- 'wikieditor-toolbar-tool-xlink-example' => 'http://www.example.com Link-Text',
+ 'wikieditor-toolbar-tool-xlink-example' => 'http://www.example.org Text für den Link',
'wikieditor-toolbar-tool-link' => 'Link',
'wikieditor-toolbar-tool-link-title' => 'Link einfügen',
- 'wikieditor-toolbar-tool-link-int' => 'Zu einer Wiki-Seite',
+ 'wikieditor-toolbar-tool-link-int' => 'Zu einer Wikiseite',
'wikieditor-toolbar-tool-link-int-target' => 'Zielseite oder URL:',
- 'wikieditor-toolbar-tool-link-int-target-tooltip' => 'Titel der Seite oder URL',
- 'wikieditor-toolbar-tool-link-int-text' => 'angezeigter Text/Linktext:',
- 'wikieditor-toolbar-tool-link-int-text-tooltip' => 'Text eingeben, der angezeigt werden soll',
+ 'wikieditor-toolbar-tool-link-int-target-tooltip' => 'Der Titel oder die URL der Seite',
+ 'wikieditor-toolbar-tool-link-int-text' => 'Anzuzeigender Text / Text für den Link:',
+ 'wikieditor-toolbar-tool-link-int-text-tooltip' => 'Der Text, der angezeigt werden soll',
'wikieditor-toolbar-tool-link-ext' => 'Zu einer externen Internetseite',
'wikieditor-toolbar-tool-link-ext-target' => 'URL des Links:',
'wikieditor-toolbar-tool-link-ext-text' => 'Linkbezeichnung:',
@@ -6111,17 +6271,27 @@ $messages['de'] = array(
'wikieditor-toolbar-tool-link-int-target-status-notexists' => 'Seite existiert nicht',
'wikieditor-toolbar-tool-link-int-target-status-invalid' => 'Ungültiger Titel',
'wikieditor-toolbar-tool-link-int-target-status-external' => 'Externer Link',
- 'wikieditor-toolbar-tool-link-int-target-status-loading' => 'Prüfe, ob Seite existiert …',
+ 'wikieditor-toolbar-tool-link-int-target-status-loading' => 'Prüfe, ob Seite vorhanden ist …',
'wikieditor-toolbar-tool-link-int-invalid' => 'Der angegebene Seitenname ist ungültig.',
- 'wikieditor-toolbar-tool-link-lookslikeinternal' => 'Die angegebene URL sieht so aus, als ob sie auf eine andere Wikiseite verlinken würde.
+ 'wikieditor-toolbar-tool-link-lookslikeinternal' => 'Die von dir angegebene URL wirkt wie eine, die auf eine andere Wikiseite verlinken würde.
Möchtest du daraus einen internen Link machen?',
'wikieditor-toolbar-tool-link-lookslikeinternal-int' => 'Interner Link',
'wikieditor-toolbar-tool-link-lookslikeinternal-ext' => 'Externer Link',
'wikieditor-toolbar-tool-link-empty' => 'Du hast nichts zum Verlinken angegeben.',
'wikieditor-toolbar-tool-file' => 'Eingebettete Datei',
'wikieditor-toolbar-tool-file-example' => 'Beispiel.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Datei einfügen',
+ 'wikieditor-toolbar-file-target' => 'Dateiname:',
+ 'wikieditor-toolbar-file-caption' => 'Legende:',
+ 'wikieditor-toolbar-file-size' => 'Größe:',
+ 'wikieditor-toolbar-file-float' => 'Ausrichtung:',
+ 'wikieditor-toolbar-file-default' => '(Standard)',
+ 'wikieditor-toolbar-file-format' => 'Format:',
+ 'wikieditor-toolbar-file-format-none' => 'keine',
+ 'wikieditor-toolbar-tool-file-insert' => 'Einfügen',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Abbrechen',
'wikieditor-toolbar-tool-reference' => 'Quellenangabe',
- 'wikieditor-toolbar-tool-reference-example' => 'Fußnotentext hier einfügen',
+ 'wikieditor-toolbar-tool-reference-example' => 'Hier den Fußnotentext eingeben',
'wikieditor-toolbar-tool-reference-cancel' => 'Abbrechen',
'wikieditor-toolbar-tool-reference-title' => 'Einzelnachweis einfügen',
'wikieditor-toolbar-tool-reference-insert' => 'Einfügen',
@@ -6142,10 +6312,10 @@ Möchtest du daraus einen internen Link machen?',
'wikieditor-toolbar-tool-olist-example' => 'Nummerierter Listeneintrag',
'wikieditor-toolbar-tool-indent' => 'Einrückung',
'wikieditor-toolbar-tool-indent-example' => 'Eingerückte Zeile',
- 'wikieditor-toolbar-tool-nowiki' => 'Keine Wiki-Formatierung',
- 'wikieditor-toolbar-tool-nowiki-example' => 'Hier unformatierten Text eingeben',
+ 'wikieditor-toolbar-tool-nowiki' => 'Keine Wikiformatierung',
+ 'wikieditor-toolbar-tool-nowiki-example' => 'Hier den unformatierten Text eingeben',
'wikieditor-toolbar-tool-redirect' => 'Weiterleitung',
- 'wikieditor-toolbar-tool-redirect-example' => 'Zielseitenname',
+ 'wikieditor-toolbar-tool-redirect-example' => 'Name der Zielseite',
'wikieditor-toolbar-tool-big' => 'Groß',
'wikieditor-toolbar-tool-big-example' => 'Großer Text',
'wikieditor-toolbar-tool-small' => 'Klein',
@@ -6186,13 +6356,13 @@ $1:Beispiel.jpg|Beschreibung2',
'wikieditor-toolbar-tool-table-cancel' => 'Abbrechen',
'wikieditor-toolbar-tool-table-toomany' => 'Das Einfügen einer Tabelle mit mehr als $1 Zellen ist mit diesem Dialog nicht möglich.',
'wikieditor-toolbar-tool-table-invalidnumber' => 'Du hast keine gültige Anzahl von Zeilen oder Spalten angegeben.',
- 'wikieditor-toolbar-tool-table-zero' => 'Du kannst keine Tabelle mit null Zeilen oder Spalten einfügen.',
+ 'wikieditor-toolbar-tool-table-zero' => 'Du kannst keine Tabelle einfügen, die weder Zeilen noch Spalten hat.',
'wikieditor-toolbar-tool-replace' => 'Suchen und Ersetzen',
'wikieditor-toolbar-tool-replace-title' => 'Suchen und Ersetzen',
'wikieditor-toolbar-tool-replace-search' => 'Suche nach:',
'wikieditor-toolbar-tool-replace-replace' => 'Ersetze durch:',
'wikieditor-toolbar-tool-replace-case' => 'Groß- und Kleinschreibung beachten',
- 'wikieditor-toolbar-tool-replace-regex' => 'Suchzeichenkette als regulären Ausdruck behandeln',
+ 'wikieditor-toolbar-tool-replace-regex' => 'Die Zeichenkette der Suche als regulären Ausdruck behandeln',
'wikieditor-toolbar-tool-replace-button-findnext' => 'Nächste finden',
'wikieditor-toolbar-tool-replace-button-replace' => 'Ersetzen',
'wikieditor-toolbar-tool-replace-button-replaceall' => 'Alle ersetzen',
@@ -6209,7 +6379,7 @@ $1:Beispiel.jpg|Beschreibung2',
'wikieditor-toolbar-characters-page-greek' => 'Griechisch',
'wikieditor-toolbar-characters-page-cyrillic' => 'Kyrillisch',
'wikieditor-toolbar-characters-page-arabic' => 'Arabisch',
- 'wikieditor-toolbar-characters-page-arabicextended' => 'Erweitertes Arabisch',
+ 'wikieditor-toolbar-characters-page-arabicextended' => 'Arabisch, erweitert',
'wikieditor-toolbar-characters-page-persian' => 'Persisch',
'wikieditor-toolbar-characters-page-hebrew' => 'Hebräisch',
'wikieditor-toolbar-characters-page-bangla' => 'Bengalisch',
@@ -6218,7 +6388,7 @@ $1:Beispiel.jpg|Beschreibung2',
'wikieditor-toolbar-characters-page-sinhala' => 'Singhalesisch',
'wikieditor-toolbar-characters-page-gujarati' => 'Gujarati',
'wikieditor-toolbar-characters-page-devanagari' => 'Devanagari',
- 'wikieditor-toolbar-characters-page-thai' => 'Thai',
+ 'wikieditor-toolbar-characters-page-thai' => 'Thailändisch',
'wikieditor-toolbar-characters-page-lao' => 'Laotisch',
'wikieditor-toolbar-characters-page-khmer' => 'Khmer',
'wikieditor-toolbar-section-help' => 'Hilfe',
@@ -6238,15 +6408,15 @@ $1:Beispiel.jpg|Beschreibung2',
'wikieditor-toolbar-help-content-bold-description' => 'Fett',
'wikieditor-toolbar-help-content-bold-syntax' => "'''Fetter Text'''",
'wikieditor-toolbar-help-content-bold-result' => '<strong>Fetter Text</strong>',
- 'wikieditor-toolbar-help-content-bolditalic-description' => 'Fett &amp; kursiv',
- 'wikieditor-toolbar-help-content-bolditalic-syntax' => "'''''Fetter &amp; kursiver Text'''''",
- 'wikieditor-toolbar-help-content-bolditalic-result' => '<strong><em>Fetter &amp; kursiver Text</em></strong>',
+ 'wikieditor-toolbar-help-content-bolditalic-description' => 'Fett und kursiv',
+ 'wikieditor-toolbar-help-content-bolditalic-syntax' => "'''''Fetter und kursiver Text'''''",
+ 'wikieditor-toolbar-help-content-bolditalic-result' => '<strong><em>Fetter und kursiver Text</em></strong>',
'wikieditor-toolbar-help-content-ilink-description' => 'Interner Link',
'wikieditor-toolbar-help-content-ilink-syntax' => '[[Seitentitel|Linktext]]<br />[[Seitentitel]]',
'wikieditor-toolbar-help-content-ilink-result' => "<a href='#'>Linktext</a><br /><a href='#'>Seitentitel</a>",
'wikieditor-toolbar-help-content-xlink-description' => 'Externer Link',
- 'wikieditor-toolbar-help-content-xlink-syntax' => '[http://www.beispiel.org Linktext]<br />[http://www.beispiel.org]<br />http://www.beispiel.org',
- 'wikieditor-toolbar-help-content-xlink-result' => "<a href='#' class='external'>Linktext</a><br /><a href='#' class='external autonumber'>[1]</a><br /><a href='#' class='external'>http://www.beispiel.org</a>",
+ 'wikieditor-toolbar-help-content-xlink-syntax' => '[http://www.example.org Linktext]<br />[http://www.example.org]<br />http://www.example.org',
+ 'wikieditor-toolbar-help-content-xlink-result' => "<a href='#' class='external'>Linktext</a><br /><a href='#' class='external autonumber'>[1]</a><br /><a href='#' class='external'>http://www.example.org</a>",
'wikieditor-toolbar-help-content-heading2-description' => 'Kopfzeile Ebene 2',
'wikieditor-toolbar-help-content-heading2-syntax' => '== Überschrift ==',
'wikieditor-toolbar-help-content-heading2-result' => '<h2>Überschrift</h2>',
@@ -6266,15 +6436,15 @@ $1:Beispiel.jpg|Beschreibung2',
'wikieditor-toolbar-help-content-olist-syntax' => '# Listeneintrag<br /># Listeneintrag',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Listeneintrag</li><li>Listeneintrag</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Eingebettete Datei',
- 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Beispiel.png|thumb|Beschreibung]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Beschreibung' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Vergrößern' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Beschreibung</div></div>",
- 'wikieditor-toolbar-help-content-reference-description' => 'Quellenangabe',
- 'wikieditor-toolbar-help-content-reference-syntax' => 'Seitentext.&lt;ref name="test"&gt;[http://www.beispiel.org Linktext], zusätzlicher Text.&lt;/ref&gt;',
+ 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Beispiel.png|miniatur|Beschreibung]]',
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Beschreibung' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Vergrößern' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Beschreibung</div></div>",
+ 'wikieditor-toolbar-help-content-reference-description' => 'Einzelnachweis',
+ 'wikieditor-toolbar-help-content-reference-syntax' => 'Seitentext.&lt;ref name="test"&gt;[http://www.example.org Linktext], zusätzlicher Text.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Seitentext.<sup><a href='#'>[1]</a></sup>",
- 'wikieditor-toolbar-help-content-rereference-description' => 'Den gleichen Beleg erneut verwenden',
+ 'wikieditor-toolbar-help-content-rereference-description' => 'Den gleichen Einzelnachweis erneut verwenden',
'wikieditor-toolbar-help-content-rereference-result' => "Seitentext.<sup><a href='#'>[1]</a></sup>",
- 'wikieditor-toolbar-help-content-showreferences-description' => 'Belege anzeigen',
- 'wikieditor-toolbar-help-content-showreferences-result' => "<ol class='references'><li id='cite_note-test-0'><b><a title='' href='#'>^</a></b> <a rel='nofollow' title='http://www.beispiel.org' class='external text' href='#'>Linktext</a>, zusätzlicher Text.</li></ol>",
+ 'wikieditor-toolbar-help-content-showreferences-description' => 'Einzelnachweise anzeigen',
+ 'wikieditor-toolbar-help-content-showreferences-result' => "<ol class='references'><li id='cite_note-test-0'><b><a title='' href='#'>^</a></b> <a rel='nofollow' title='http://www.example.org' class='external text' href='#'>Linktext</a>, zusätzlicher Text.</li></ol>",
'wikieditor-toolbar-help-content-signaturetimestamp-description' => 'Signatur mit Zeitstempel',
'wikieditor-toolbar-help-content-signaturetimestamp-result' => "<a href='#' title='{{#special:mypage}}'>Benutzername</a> (<a href='#' title='{{#special:mytalk}}'>Diskussion</a>) 15:54, 10. Jun. 2009 (UTC)",
'wikieditor-toolbar-help-content-signature-description' => 'Signatur',
@@ -6284,16 +6454,30 @@ $1:Beispiel.jpg|Beschreibung2',
'wikieditor-toolbar-help-content-indent-result' => 'Normaler Text<dl><dd>Eingerückter Text<dl><dd>Eingerückter Text</dd></dl></dd></dl>',
);
-/** German (formal address) (‪Deutsch (Sie-Form)‬)
+/** Swiss High German (Schweizer Hochdeutsch)
+ * @author Geitost
+ */
+$messages['de-ch'] = array(
+ 'wikieditor-toolbar-tool-reference-example' => 'Fussnotentext hier einfügen',
+ 'wikieditor-toolbar-tool-big' => 'Gross',
+ 'wikieditor-toolbar-tool-big-example' => 'Grosser Text',
+ 'wikieditor-toolbar-tool-newline' => 'Zeilenumbruch erzwingen (nicht im Fliesstext verwenden)',
+ 'wikieditor-toolbar-tool-replace-case' => 'Gross- und Kleinschreibung beachten',
+ 'wikieditor-toolbar-tool-replace-close' => 'Schliessen',
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Beschreibung' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Vergrössern' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Beschreibung</div></div>",
+);
+
+/** German (formal address) (Deutsch (Sie-Form)‎)
* @author Imre
+ * @author Kghbln
*/
$messages['de-formal'] = array(
'wikieditor-publish-dialog-summary' => 'Zusammenfassung (kurze Beschreibung der von Ihnen vorgenommenen Änderungen):',
- 'wikieditor-toolbar-tool-link-lookslikeinternal' => 'Die angegebene URL sieht so aus, als ob sie auf eine andere Wikiseite verlinken würde.
+ 'wikieditor-toolbar-tool-link-lookslikeinternal' => 'Die von Ihnen angegebene URL wirkt wie eine, die auf eine andere Wikiseite verlinken würde.
Möchten Sie daraus einen internen Link machen?',
'wikieditor-toolbar-tool-link-empty' => 'Sie haben nichts zum Verlinken angegeben.',
'wikieditor-toolbar-tool-table-invalidnumber' => 'Sie haben keine gültige Anzahl von Zeilen oder Spalten angegeben.',
- 'wikieditor-toolbar-tool-table-zero' => 'Sie können keine Tabelle mit null Zeilen oder Spalten einfügen.',
+ 'wikieditor-toolbar-tool-table-zero' => 'Sie können keine Tabelle einfügen, die weder Zeilen noch Spalten hat.',
'wikieditor-toolbar-tool-replace-nomatch' => 'Ihre Suche hat keine Ergebnisse erzielt.',
'wikieditor-toolbar-tool-replace-emptysearch' => 'Sie haben nichts zum Suchen eingegeben.',
'wikieditor-toolbar-help-heading-syntax' => 'Was Sie eingeben',
@@ -6307,7 +6491,7 @@ Möchten Sie daraus einen internen Link machen?',
$messages['diq'] = array(
'wikieditor' => 'Interfaceye wikitext ke raver siyayo',
'wikieditor-desc' => 'Yew pedê nuştişiyê girdi u moduleyanê binan dano',
- 'wikieditor-wikitext-tab' => 'Wikimeqale',
+ 'wikieditor-wikitext-tab' => 'Wikimetin',
'wikieditor-loading' => 'Bar keno',
'wikieditor-preview-preference' => 'verqeyde miqeyese a bike',
'wikieditor-preview-tab' => 'Verqayt',
@@ -6322,12 +6506,12 @@ $messages['diq'] = array(
'wikieditor-publish-dialog-title' => '{{SITENAME}} rê çap ke',
'wikieditor-publish-dialog-summary' => 'Xulasayê vurnayişi (ser vurnayişê xo xulasa binuse):',
'wikieditor-publish-dialog-minor' => 'Vurnayişo qickek',
- 'wikieditor-publish-dialog-watch' => 'Ena pele seyr bike',
+ 'wikieditor-publish-dialog-watch' => 'Ena pele seyr ke',
'wikieditor-publish-dialog-publish' => 'Vıla ke',
'wikieditor-publish-dialog-goback' => 'Reyna şi',
'wikieditor-template-editor-preference' => 'Vurnayışê form-bıngeyınê şablonanê wikiy feal ke',
'wikieditor-template-editor-dialog-title' => 'Sabloni bivurnê',
- 'wikieditor-template-editor-dialog-submit' => 'Anewen ke',
+ 'wikieditor-template-editor-dialog-submit' => 'Noroc resn',
'wikieditor-template-editor-dialog-cancel' => 'Bıterkne',
'wikieditor-templates-preference' => 'Qic kerdisê sabloni a bike',
'wikieditor-toc-preference' => 'Tabloyo tedeesteyi ke navigasyon keno ay a bike',
@@ -6337,40 +6521,51 @@ $messages['diq'] = array(
'wikieditor-toolbar-desc' => 'Xacetê çuveyî pê enhanced usability bivurne',
'wikieditor-toolbar-preference' => 'çuyaya haceti yo dewlemendbiyayeyi aktif ker',
'wikieditor-toolbar-dialogs-preference' => "qey têare kerdışê gıre, tablo usb'ani mesajan aktif bıker",
+ 'wikieditor-toolbar-hidesig' => 'Vanganê naman de serênan pela dı maka imzer bınımnê',
'wikieditor-toolbar-loading' => 'bar beno...',
'wikieditor-toolbar-tool-bold' => 'qalın',
- 'wikieditor-toolbar-tool-bold-example' => 'metno qalın',
+ 'wikieditor-toolbar-tool-bold-example' => 'Metno qalın',
'wikieditor-toolbar-tool-italic' => 'İtalik',
- 'wikieditor-toolbar-tool-italic-example' => 'metno italik',
- 'wikieditor-toolbar-tool-ilink' => 'sernameyê zerreyi',
+ 'wikieditor-toolbar-tool-italic-example' => 'Metno vırandere',
+ 'wikieditor-toolbar-tool-ilink' => 'Gıreyê miyani',
'wikieditor-toolbar-tool-ilink-example' => 'sernameyê gıreyi',
'wikieditor-toolbar-tool-xlink' => 'gıreyê teberi (http:// prefixi xo vir ra mekerê)',
'wikieditor-toolbar-tool-xlink-example' => 'http://www.misal.com sernameyê gıreyi',
'wikieditor-toolbar-tool-link' => 'Link',
- 'wikieditor-toolbar-tool-link-title' => 'gıre bıerz',
+ 'wikieditor-toolbar-tool-link-title' => 'Gıre bıerz',
'wikieditor-toolbar-tool-link-int' => 'yew pelê wiki re',
'wikieditor-toolbar-tool-link-int-target' => 'sernameyê peli',
'wikieditor-toolbar-tool-link-int-target-tooltip' => 'Sernamey ya zi URL',
'wikieditor-toolbar-tool-link-int-text' => 'metnê gıreyi',
'wikieditor-toolbar-tool-link-int-text-tooltip' => 'Nuştewo ke gani bımocniyo ey bınuse',
'wikieditor-toolbar-tool-link-ext' => 'yew keyepelê teberi re',
- 'wikieditor-toolbar-tool-link-ext-target' => 'URLyê gıreyi',
- 'wikieditor-toolbar-tool-link-ext-text' => 'metnê gıreyi',
- 'wikieditor-toolbar-tool-link-insert' => 'gıre bıerz',
+ 'wikieditor-toolbar-tool-link-ext-target' => "Greyê URL'i:",
+ 'wikieditor-toolbar-tool-link-ext-text' => 'Metnê gri:',
+ 'wikieditor-toolbar-tool-link-insert' => 'Gıre bıerz',
'wikieditor-toolbar-tool-link-cancel' => 'ibtal',
'wikieditor-toolbar-tool-link-int-target-status-exists' => 'pel esto',
'wikieditor-toolbar-tool-link-int-target-status-notexists' => 'pel çino',
- 'wikieditor-toolbar-tool-link-int-target-status-invalid' => 'sername meqbul niyo',
+ 'wikieditor-toolbar-tool-link-int-target-status-invalid' => 'Sernameyo xırab.',
'wikieditor-toolbar-tool-link-int-target-status-external' => 'Gırêy teberi',
'wikieditor-toolbar-tool-link-int-target-status-loading' => 'mewcudiyetê peli konrol beno',
'wikieditor-toolbar-tool-link-int-invalid' => 'Sernameyo ke şımayê vanê ravêrde niyo.',
'wikieditor-toolbar-tool-link-lookslikeinternal' => 'URLyo ke şıma nişan kerdo, pelê yewna wikiyi re gıre biyo aseno.
şıma wazeni no gıre yew gıreyo daxili bıbo?',
- 'wikieditor-toolbar-tool-link-lookslikeinternal-int' => 'gıreyo zerreyi',
- 'wikieditor-toolbar-tool-link-lookslikeinternal-ext' => 'gıreyo teberi',
+ 'wikieditor-toolbar-tool-link-lookslikeinternal-int' => 'Gıreyê miyani',
+ 'wikieditor-toolbar-tool-link-lookslikeinternal-ext' => 'Gırêy teberi',
'wikieditor-toolbar-tool-link-empty' => 'Gırey to be thebay çıniyo.',
'wikieditor-toolbar-tool-file' => 'dosyaya wedarteyi/weradaye',
'wikieditor-toolbar-tool-file-example' => 'misal.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Dosya bıerz',
+ 'wikieditor-toolbar-file-target' => 'Nameyê dosya:',
+ 'wikieditor-toolbar-file-caption' => 'Bınnuşte',
+ 'wikieditor-toolbar-file-size' => 'Gırdiye',
+ 'wikieditor-toolbar-file-float' => 'Ratnayış:',
+ 'wikieditor-toolbar-file-default' => '(hesıbyaye)',
+ 'wikieditor-toolbar-file-format' => 'Format:',
+ 'wikieditor-toolbar-file-format-none' => 'çıniyo',
+ 'wikieditor-toolbar-tool-file-insert' => 'Têare ker',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Bıterkne',
'wikieditor-toolbar-tool-reference' => 'çıme',
'wikieditor-toolbar-tool-reference-example' => 'metnê notê bınini tiya kerê',
'wikieditor-toolbar-tool-reference-cancel' => 'Bıterkne',
@@ -6393,9 +6588,9 @@ $messages['diq'] = array(
'wikieditor-toolbar-tool-olist-example' => 'unsuro listeya numreyıni',
'wikieditor-toolbar-tool-indent' => 'Paragraf',
'wikieditor-toolbar-tool-indent-example' => 'Rêza paragrafi',
- 'wikieditor-toolbar-tool-nowiki' => 'Formetê wikiyi cini yo',
+ 'wikieditor-toolbar-tool-nowiki' => 'Formetê wiki çıniyo',
'wikieditor-toolbar-tool-nowiki-example' => 'Ne-format nuşte itiya ra bıerz',
- 'wikieditor-toolbar-tool-redirect' => 'Reyna ber',
+ 'wikieditor-toolbar-tool-redirect' => 'Hetenayış',
'wikieditor-toolbar-tool-redirect-example' => 'Nameyê pele ke hedef biyo',
'wikieditor-toolbar-tool-big' => 'gırd',
'wikieditor-toolbar-tool-big-example' => 'metno gırd',
@@ -6425,14 +6620,14 @@ $1:misal.jpg|nuşteyê resmi2',
| satır 2, hucre 3',
'wikieditor-toolbar-tool-table-example-cell-text' => 'Metnê hucra',
'wikieditor-toolbar-tool-table-example-header' => 'metnê sernameyi',
- 'wikieditor-toolbar-tool-table-title' => 'tablo bıerz',
+ 'wikieditor-toolbar-tool-table-title' => 'Tablo bıerz',
'wikieditor-toolbar-tool-table-dimensions-rows' => 'satıri/rêzi',
'wikieditor-toolbar-tool-table-dimensions-columns' => 'estuni',
'wikieditor-toolbar-tool-table-dimensions-header' => 'satırê sername zi bıger',
'wikieditor-toolbar-tool-table-wikitable' => 'sinorê stili',
'wikieditor-toolbar-tool-table-sortable' => 'make table rêz bena',
'wikieditor-toolbar-tool-table-example' => 'metnê hucreyi',
- 'wikieditor-toolbar-tool-table-preview' => 'seyrkerdışo ewwil',
+ 'wikieditor-toolbar-tool-table-preview' => 'Verqayt',
'wikieditor-toolbar-tool-table-insert' => 'têare ker',
'wikieditor-toolbar-tool-table-cancel' => 'ibtal',
'wikieditor-toolbar-tool-table-toomany' => '$1 hucreyın ra ziyed tablo eştış pê no mesaj mumkin niyo',
@@ -6472,8 +6667,8 @@ $1:misal.jpg|nuşteyê resmi2',
'wikieditor-toolbar-characters-page-thai' => 'Thai',
'wikieditor-toolbar-characters-page-lao' => 'Lao',
'wikieditor-toolbar-characters-page-khmer' => 'Khmer',
- 'wikieditor-toolbar-section-help' => 'yardim',
- 'wikieditor-toolbar-help-heading-description' => 'Beyan kerdış',
+ 'wikieditor-toolbar-section-help' => 'Peşti',
+ 'wikieditor-toolbar-help-heading-description' => 'Şınasnayış',
'wikieditor-toolbar-help-heading-syntax' => 'o yo ke şıma nuşt',
'wikieditor-toolbar-help-heading-result' => 'o yo ke şıma gırewt',
'wikieditor-toolbar-help-page-format' => 'fesal dayiş/format',
@@ -6481,7 +6676,7 @@ $1:misal.jpg|nuşteyê resmi2',
'wikieditor-toolbar-help-page-heading' => 'sernameyi',
'wikieditor-toolbar-help-page-list' => 'listeyi',
'wikieditor-toolbar-help-page-file' => 'dosyayi',
- 'wikieditor-toolbar-help-page-reference' => 'çımeyi/referansi',
+ 'wikieditor-toolbar-help-page-reference' => 'Çımey',
'wikieditor-toolbar-help-page-discussion' => 'werê-ameyiş/munaqeşa',
'wikieditor-toolbar-help-content-italic-description' => 'italik',
'wikieditor-toolbar-help-content-italic-syntax' => "''metno italik''",
@@ -6492,10 +6687,10 @@ $1:misal.jpg|nuşteyê resmi2',
'wikieditor-toolbar-help-content-bolditalic-description' => 'qalın &amp; italik',
'wikieditor-toolbar-help-content-bolditalic-syntax' => "'''''qalın &amp; metno italik'''''",
'wikieditor-toolbar-help-content-bolditalic-result' => '<strong><em>qalın &amp; metno italik</em></strong>',
- 'wikieditor-toolbar-help-content-ilink-description' => 'gıreyê zerreyi',
+ 'wikieditor-toolbar-help-content-ilink-description' => 'Gıreyê miyani',
'wikieditor-toolbar-help-content-ilink-syntax' => '[[sernameyê peli|sernameyê gıreyi]]<br />[[sernameyê peli]]',
'wikieditor-toolbar-help-content-ilink-result' => "<a href='#'>sernameyê gıreyi</a><br /><a href='#'>sernameyê peli</a>",
- 'wikieditor-toolbar-help-content-xlink-description' => 'gıreyê teberi',
+ 'wikieditor-toolbar-help-content-xlink-description' => 'Gırêy teberi',
'wikieditor-toolbar-help-content-xlink-syntax' => '[http://www.misal.org sernamyê gıreyi]<br />[http://www.misal.org]<br />http://www.misal.org',
'wikieditor-toolbar-help-content-xlink-result' => "<a href='#' class='external'>sernameyê gıreyi</a><br /><a href='#' class='external autonumber'>[1]</a><br /><a href='#' class='external'>http://www.misal.org</a>",
'wikieditor-toolbar-help-content-heading2-description' => 'sernameyê seviyeya 2.',
@@ -6518,7 +6713,7 @@ $1:misal.jpg|nuşteyê resmi2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>unsurê listeyi</li><li>unsurê listeyi</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'dosyaya weradaye/nımıte',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Nuşteyê resîmî]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>metnê resmi</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>metnê resmi</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'çıme/referans',
'wikieditor-toolbar-help-content-reference-syntax' => 'metnê peli.&lt;ref name="tesel kerdış/cerebnayiş"&gt;[http://www.misal.org metnê gıreyi], zeylê metni.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "metnê peli.<sup><a href='#'>[1]</a></sup>",
@@ -6529,13 +6724,13 @@ $1:misal.jpg|nuşteyê resmi2',
'wikieditor-toolbar-help-content-signaturetimestamp-description' => 'pê tamğayê zemani imza eştış',
'wikieditor-toolbar-help-content-signaturetimestamp-result' => "<a href='#' title='{{#special:mypage}}'>nameyê karberi</a> (<a href='#' title='{{#special:mytalk}}'>mesaj</a>) 15:54, 10 Heziran 2009 (UTC)",
'wikieditor-toolbar-help-content-signature-description' => 'imza',
- 'wikieditor-toolbar-help-content-signature-result' => "<a href='#' title='{{#special:mypage}}'>nameyê karberi</a> (<a href='#' title='{{#special:mytalk}}'>mesaj</a>)",
+ 'wikieditor-toolbar-help-content-signature-result' => "<a href='#' title='{{#special:mypage}}'>Namey karberi</a> (<a href='#' title='{{#special:mytalk}}'>mesac</a>)",
'wikieditor-toolbar-help-content-indent-description' => 'Indent',
'wikieditor-toolbar-help-content-indent-syntax' => 'metno normal<br />:metno indent<br />::metno indent',
'wikieditor-toolbar-help-content-indent-result' => 'metno normal<dl><dd>metno indent<dl><dd>metno indent</dd></dl></dd></dl>',
);
-/** Lower Sorbian (Dolnoserbski)
+/** Lower Sorbian (dolnoserbski)
* @author Michawiki
*/
$messages['dsb'] = array(
@@ -6606,6 +6801,15 @@ Coš jen do internego wótkaza psétwóriś?',
'wikieditor-toolbar-tool-link-empty' => 'Njejsy nic za wótkazowanje pódał.',
'wikieditor-toolbar-tool-file' => 'Zasajźona dataja',
'wikieditor-toolbar-tool-file-example' => 'Psikład.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Dataju zasunuś',
+ 'wikieditor-toolbar-file-target' => 'Datajowe mě:',
+ 'wikieditor-toolbar-file-caption' => 'Pópisanje:',
+ 'wikieditor-toolbar-file-size' => 'Wjelikosć:',
+ 'wikieditor-toolbar-file-float' => 'Wusměrjenje:',
+ 'wikieditor-toolbar-file-default' => '(standard)',
+ 'wikieditor-toolbar-file-format' => 'Format:',
+ 'wikieditor-toolbar-tool-file-insert' => 'Zasunuś',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Pśetergnuś',
'wikieditor-toolbar-tool-reference' => 'Referenca',
'wikieditor-toolbar-tool-reference-example' => 'Nožku how zasajźiś',
'wikieditor-toolbar-tool-reference-cancel' => 'Pśetergnuś',
@@ -6753,7 +6957,7 @@ $1:Pśikład.jpg|Pópisanje2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Lisćinowy zapisk</li><li>Lisćinowy zapisk</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Zasajźona dataja',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Wobrazowe pópisanje]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Wobrazowe pópisanje' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Powětšyś' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Wobrazowe pópisanje</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Wobrazowe pópisanje' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Powětšyś' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Wobrazowe pópisanje</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Referenca',
'wikieditor-toolbar-help-content-reference-syntax' => 'Tekst boka.&lt;ref name="test"&gt;[http://www.example.org Tekst wótkaza], pśidatny tekst.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Tekst boka.<sup><a href='#'>[1]</a></sup>",
@@ -6775,6 +6979,7 @@ $1:Pśikład.jpg|Pópisanje2',
* @author Dead3y3
* @author Flyax
* @author Geraki
+ * @author Glavkos
* @author Lou
* @author ZaDiak
* @author Απεργός
@@ -6847,6 +7052,13 @@ $messages['el'] = array(
'wikieditor-toolbar-tool-link-empty' => 'Δεν εισάγατε τίποτα για σύνδεση σε αυτό.',
'wikieditor-toolbar-tool-file' => 'Ενσωματωμένο αρχείο',
'wikieditor-toolbar-tool-file-example' => 'Paradeigma.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Εισαγωγή αρχείου',
+ 'wikieditor-toolbar-file-target' => 'Όνομα αρχείου:',
+ 'wikieditor-toolbar-file-caption' => 'Λεζάντα',
+ 'wikieditor-toolbar-file-size' => 'Μέγεθος:',
+ 'wikieditor-toolbar-file-float' => 'Ευθυγράμμιση:',
+ 'wikieditor-toolbar-tool-file-insert' => 'Εισαγωγή',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Άκυρο',
'wikieditor-toolbar-tool-reference' => 'Παραπομπή',
'wikieditor-toolbar-tool-reference-example' => 'Εισάγετε εδώ το κείμενο της παραπομπής.',
'wikieditor-toolbar-tool-reference-cancel' => 'Ακύρωση',
@@ -6939,9 +7151,11 @@ $1:Example.jpg|Λεζάντα2',
'wikieditor-toolbar-characters-page-persian' => 'Περσικό',
'wikieditor-toolbar-characters-page-hebrew' => 'Εβραϊκό',
'wikieditor-toolbar-characters-page-bangla' => 'Μπενγκάλι',
+ 'wikieditor-toolbar-characters-page-tamil' => 'Ταμίλ',
'wikieditor-toolbar-characters-page-telugu' => 'Τελούγκου',
'wikieditor-toolbar-characters-page-sinhala' => 'Σινχάλα',
'wikieditor-toolbar-characters-page-gujarati' => 'Γκουχαράτι',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'Ντεβαναγκάρι',
'wikieditor-toolbar-characters-page-thai' => 'ταϊλανδικά',
'wikieditor-toolbar-characters-page-lao' => 'λαοτινά',
'wikieditor-toolbar-characters-page-khmer' => 'καμποτζιανά',
@@ -6991,7 +7205,7 @@ $1:Example.jpg|Λεζάντα2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Στοιχείο λίστας</li><li>Στοιχείο λίστας</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Ενσωματωμένο αρχείο',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Κείμενο περιγραφής]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Κείμενο τίτλων' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Κείμενο τίτλων</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Κείμενο τίτλων' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Κείμενο τίτλων</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Παραπομπή',
'wikieditor-toolbar-help-content-reference-syntax' => 'Κείμενο σελίδας.&lt;ref name="test"&gt;[http://www.example.org Κείμενο συνδέσμου], επιπλέον κείμενο.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Κείμενο σελίδας.<sup><a href='#'>[1]</a></sup>",
@@ -7084,6 +7298,15 @@ $messages['eo'] = array(
'wikieditor-toolbar-tool-link-empty' => 'Vi ne enigis ion ajn por alligi',
'wikieditor-toolbar-tool-file' => 'Enmetita dosiero',
'wikieditor-toolbar-tool-file-example' => 'Ekzemplo.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Enmeti dosieron',
+ 'wikieditor-toolbar-file-target' => 'Dosiernomo:',
+ 'wikieditor-toolbar-file-caption' => 'Subteksto:',
+ 'wikieditor-toolbar-file-size' => 'Grandeco:',
+ 'wikieditor-toolbar-file-float' => 'Ĝisrandigo:',
+ 'wikieditor-toolbar-file-default' => '(defaŭlto)',
+ 'wikieditor-toolbar-file-format' => 'Formato:',
+ 'wikieditor-toolbar-tool-file-insert' => 'Enmeti',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Nuligi',
'wikieditor-toolbar-tool-reference' => 'Piednoto',
'wikieditor-toolbar-tool-reference-example' => 'Enmetu tekston de piednoto ĉi tien',
'wikieditor-toolbar-tool-reference-cancel' => 'Nuligi',
@@ -7177,9 +7400,11 @@ $1:Ekzemplo.jpg|Teksto2 pri dosiero',
'wikieditor-toolbar-characters-page-persian' => 'persa',
'wikieditor-toolbar-characters-page-hebrew' => 'Hebrea',
'wikieditor-toolbar-characters-page-bangla' => 'Bengala',
+ 'wikieditor-toolbar-characters-page-tamil' => 'Tamila',
'wikieditor-toolbar-characters-page-telugu' => 'Telegua',
'wikieditor-toolbar-characters-page-sinhala' => 'Sinhala',
'wikieditor-toolbar-characters-page-gujarati' => 'Guĝarata',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'Nagario',
'wikieditor-toolbar-characters-page-thai' => 'Taja',
'wikieditor-toolbar-characters-page-lao' => 'laŭa',
'wikieditor-toolbar-characters-page-khmer' => 'kmera',
@@ -7229,7 +7454,7 @@ $1:Ekzemplo.jpg|Teksto2 pri dosiero',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Listero</li><li>Listero</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Enmetita dosiero',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Teksto pri dosiero]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Pligrandigi' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Teksto pri dosiero</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Pligrandigi' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Teksto pri dosiero</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Piednoto',
'wikieditor-toolbar-help-content-reference-syntax' => 'Paĝa teksto.&lt;ref name="test"&gt;[http://www.ekzemplo.org Ligila teksto], aldona teksto.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Paĝa teksto.<sup><a href='#'>[1]</a></sup>",
@@ -7253,6 +7478,7 @@ $1:Ekzemplo.jpg|Teksto2 pri dosiero',
* @author Crazymadlover
* @author Fitoschido
* @author Imre
+ * @author Invadinado
* @author Locos epraix
* @author McDutchie
* @author PerroVerd
@@ -7330,6 +7556,16 @@ $messages['es'] = array(
'wikieditor-toolbar-tool-link-empty' => 'No has escrito nada a qué vincular.',
'wikieditor-toolbar-tool-file' => 'Archivo empotrado',
'wikieditor-toolbar-tool-file-example' => 'Ejemplo.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Insertar archivo',
+ 'wikieditor-toolbar-file-target' => 'Nombre de archivo:',
+ 'wikieditor-toolbar-file-caption' => 'Leyenda:',
+ 'wikieditor-toolbar-file-size' => 'Tamaño:',
+ 'wikieditor-toolbar-file-float' => 'Alinear:',
+ 'wikieditor-toolbar-file-default' => '(por defecto)',
+ 'wikieditor-toolbar-file-format' => 'Formato:',
+ 'wikieditor-toolbar-file-format-none' => 'ninguno',
+ 'wikieditor-toolbar-tool-file-insert' => 'Insertar',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Cancelar',
'wikieditor-toolbar-tool-reference' => 'Referencia',
'wikieditor-toolbar-tool-reference-example' => 'Insertar nota a pie de página aquí',
'wikieditor-toolbar-tool-reference-cancel' => 'Cancelar',
@@ -7347,9 +7583,9 @@ $messages['es'] = array(
'wikieditor-toolbar-tool-heading-example' => 'Texto de encabezado',
'wikieditor-toolbar-group-format' => 'Formato',
'wikieditor-toolbar-tool-ulist' => 'Lista viñeteada',
- 'wikieditor-toolbar-tool-ulist-example' => 'Ítem de lista viñeteada',
+ 'wikieditor-toolbar-tool-ulist-example' => 'Ítem de lista de viñetas',
'wikieditor-toolbar-tool-olist' => 'Lista numerada',
- 'wikieditor-toolbar-tool-olist-example' => 'Item de lista numerada',
+ 'wikieditor-toolbar-tool-olist-example' => 'Ítem de lista numerada',
'wikieditor-toolbar-tool-indent' => 'Indentación',
'wikieditor-toolbar-tool-indent-example' => 'Línea indentada',
'wikieditor-toolbar-tool-nowiki' => 'Sin formato wiki',
@@ -7477,7 +7713,7 @@ $1:Ejemplo.jpg|Descripción2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Listar item</li><li>Listar item</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Archivo empotrado',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Ejemplo.png|thumb|Texto de la leyenda]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Texto leyenda</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Texto leyenda</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Referencia',
'wikieditor-toolbar-help-content-reference-syntax' => 'Texto de página.&lt;ref name="test"&gt;[http://www.example.org Texto de vínculo], texto adicional.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Texto de página.<sup><a href='#'>[1]</a></sup>",
@@ -7504,7 +7740,7 @@ $messages['et'] = array(
'wikieditor' => 'Vikiteksti laiendatud redigeerimisliides',
'wikieditor-desc' => 'Sisaldab vikiteksti laiendatud redigeerimisliidest ja palju redigeerimisfunktsioone.',
'wikieditor-wikitext-tab' => 'Vikitekst',
- 'wikieditor-loading' => 'Laadimine',
+ 'wikieditor-loading' => 'Laadimine...',
'wikieditor-preview-preference' => 'Kuva eelvaade külgmisel sakil',
'wikieditor-preview-tab' => 'Eelvaade',
'wikieditor-preview-changes-tab' => 'Muudatused',
@@ -7567,6 +7803,15 @@ Kas soovid sellest siselingi teha?',
'wikieditor-toolbar-tool-link-empty' => 'Sa ei sisestanud midagi, millele linkida.',
'wikieditor-toolbar-tool-file' => 'Manusfail',
'wikieditor-toolbar-tool-file-example' => 'Näide.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Faili lisamine',
+ 'wikieditor-toolbar-file-target' => 'Failinimi:',
+ 'wikieditor-toolbar-file-caption' => 'Allkiri:',
+ 'wikieditor-toolbar-file-size' => 'Suurus:',
+ 'wikieditor-toolbar-file-float' => 'Joondus:',
+ 'wikieditor-toolbar-file-default' => '(vaikeväärtus)',
+ 'wikieditor-toolbar-file-format' => 'Vormistus:',
+ 'wikieditor-toolbar-tool-file-insert' => 'Lisa',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Loobu',
'wikieditor-toolbar-tool-reference' => 'Viide',
'wikieditor-toolbar-tool-reference-example' => 'Lisa siia allmärkuse tekst',
'wikieditor-toolbar-tool-reference-cancel' => 'Loobu',
@@ -7714,7 +7959,7 @@ $1:Näide.jpg|Pildiallkiri2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Loendi liige</li><li>Loendi liige</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Manusfail',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Näide.png|thumb|Pildiallkiri]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Pildiallkiri' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Suurenda' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Pildiallkiri</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Pildiallkiri' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Suurenda' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Pildiallkiri</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Viide',
'wikieditor-toolbar-help-content-reference-syntax' => 'Lehekülje tekst.&lt;ref name="test"&gt;[http://www.näide.ee Lingi tekst], täiendav tekst.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Lehekülje tekst.<sup><a href='#'>[1]</a></sup>",
@@ -7732,11 +7977,12 @@ $1:Näide.jpg|Pildiallkiri2',
'wikieditor-toolbar-help-content-indent-result' => 'Harilik tekst<dl><dd>Taandega tekst<dl><dd>Taandega tekst</dd></dl></dd></dl>',
);
-/** Basque (Euskara)
+/** Basque (euskara)
* @author An13sa
* @author Inorbez
* @author Joxemai
* @author Xabier Armendaritz
+ * @author පසිඳු කාවින්ද
*/
$messages['eu'] = array(
'wikieditor' => 'Wikitestu edizio-interfaze aurreratua',
@@ -7805,6 +8051,10 @@ Barne lotura bezala sortu nahi duzu?',
'wikieditor-toolbar-tool-link-empty' => 'Ez duzu bilatu beharreko ezer adierazi.',
'wikieditor-toolbar-tool-file' => 'Fitxategia txertatu',
'wikieditor-toolbar-tool-file-example' => 'Adibidea.jpg',
+ 'wikieditor-toolbar-file-size' => 'Tamaina:',
+ 'wikieditor-toolbar-file-format' => 'Formatua:',
+ 'wikieditor-toolbar-tool-file-insert' => 'Txertatu',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Utzi',
'wikieditor-toolbar-tool-reference' => 'Erreferentzia',
'wikieditor-toolbar-tool-reference-example' => 'Txertatu testu oina hemen',
'wikieditor-toolbar-tool-reference-cancel' => 'Utzi',
@@ -7949,7 +8199,7 @@ $1:Adibidea.jpg|Oina2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Zerrendako elementua</li><li>Zerrendako elementua</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Fitxategia txertatu',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Adibidea.png|thumb|Irudi oina]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Irudiaren testua' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Handitu' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Irudi oina</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Irudiaren testua' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Handitu' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Irudi oina</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Erreferentzia',
'wikieditor-toolbar-help-content-reference-syntax' => 'Orrialdearen testua.&lt;ref name="proba"&gt;[http://www.adibidea.org Loturaren testua], testu gehigarria.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Orrialdearen testua.<sup><a href='#'>[1]</a></sup>",
@@ -7971,6 +8221,7 @@ $1:Adibidea.jpg|Oina2',
* @author Huji
* @author Ladsgroup
* @author Mjbmr
+ * @author Reza1615
* @author Wayiran
* @author ZxxZxxZ
*/
@@ -7982,10 +8233,10 @@ $messages['fa'] = array(
'wikieditor-preview-preference' => 'فعال‌سازی پیش‌نمایش کنار یک دیگر',
'wikieditor-preview-tab' => 'پیش‌نمایش',
'wikieditor-preview-changes-tab' => 'تغییرها',
- 'wikieditor-preview-loading' => 'در حال بارگذاری...',
+ 'wikieditor-preview-loading' => 'در حال بارگیری...',
'wikieditor-previewDialog-preference' => 'فعال کردن پنجره‌های تعاملی پیش‌نمایش',
'wikieditor-previewDialog-tab' => 'پیش‌نمایش',
- 'wikieditor-previewDialog-loading' => 'در حال بارگذاری...',
+ 'wikieditor-previewDialog-loading' => 'در حال بارگیری...',
'wikieditor-publish-preference' => 'فعال‌سازی انتشار گام‌به‌گام',
'wikieditor-publish-button-publish' => 'انتشار',
'wikieditor-publish-button-cancel' => 'لغو',
@@ -8008,7 +8259,7 @@ $messages['fa'] = array(
'wikieditor-toolbar-preference' => 'فعال‌کردن نوارابزار ویرایش پیشرفته',
'wikieditor-toolbar-dialogs-preference' => 'فعال‌سازی پنجره‌های تعاملی برای وارد کردن پیوندها، جدول‌ها و غیره',
'wikieditor-toolbar-hidesig' => 'نهفتن دکمهٔ امضا از صفحه‌های فضای نام اصلی',
- 'wikieditor-toolbar-loading' => 'در حال بارگذاری...',
+ 'wikieditor-toolbar-loading' => 'در حال بارگیری...',
'wikieditor-toolbar-tool-bold' => 'پررنگ',
'wikieditor-toolbar-tool-bold-example' => 'متن پررنگ',
'wikieditor-toolbar-tool-italic' => 'مورب',
@@ -8041,6 +8292,15 @@ $messages['fa'] = array(
'wikieditor-toolbar-tool-link-empty' => 'شما چیزی برای پیونددادن وارد نکردید.',
'wikieditor-toolbar-tool-file' => 'پروندهٔ جاسازی‌شده',
'wikieditor-toolbar-tool-file-example' => 'مثال.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'درج پرونده',
+ 'wikieditor-toolbar-file-target' => 'نام پرونده:',
+ 'wikieditor-toolbar-file-caption' => 'عنوان:',
+ 'wikieditor-toolbar-file-size' => 'اندازه:',
+ 'wikieditor-toolbar-file-float' => 'تراز:',
+ 'wikieditor-toolbar-file-default' => '(پیش‌فرض)',
+ 'wikieditor-toolbar-file-format' => 'قالب:',
+ 'wikieditor-toolbar-tool-file-insert' => 'درج',
+ 'wikieditor-toolbar-tool-file-cancel' => 'لغو',
'wikieditor-toolbar-tool-reference' => 'منبع',
'wikieditor-toolbar-tool-reference-example' => 'متن زیرنویس را اینجا اضافه کنید',
'wikieditor-toolbar-tool-reference-cancel' => 'لغو',
@@ -8138,6 +8398,7 @@ $1:مثال.jpg|عنوان ۲',
'wikieditor-toolbar-characters-page-telugu' => 'تالوگو',
'wikieditor-toolbar-characters-page-sinhala' => 'سینهالی',
'wikieditor-toolbar-characters-page-gujarati' => 'گجراتی',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'دیواناگرى',
'wikieditor-toolbar-characters-page-thai' => 'تایلندی',
'wikieditor-toolbar-characters-page-lao' => 'لائو',
'wikieditor-toolbar-characters-page-khmer' => 'خمر',
@@ -8187,7 +8448,7 @@ $1:مثال.jpg|عنوان ۲',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>مورد فهرست</li><li>مورد فهرست</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'پرونده جاسازی‌شده',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:مثال.png|بندانگشتی|متن عنوان]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='متن عنوان' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='بزرگ‌نمایی' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>متن عنوان</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='متن عنوان' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='بزرگ‌نمایی' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>متن عنوان</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'منبع',
'wikieditor-toolbar-help-content-reference-syntax' => 'متن صفحه.&lt;ref name="test"&gt;[http://www.example.org متن پیوند]، متن اضافی.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "متن صفحه.<sup><a href='#'>[1]</a></sup>",
@@ -8204,8 +8465,10 @@ $1:مثال.jpg|عنوان ۲',
'wikieditor-toolbar-help-content-indent-result' => 'متن عادی<dl><dd>متن تورفته<dl><dd>متن تورفته</dd></dl></dd></dl>',
);
-/** Finnish (Suomi)
+/** Finnish (suomi)
+ * @author Beluga
* @author Crt
+ * @author Linnea
* @author Nedergard
* @author Nike
* @author Olli
@@ -8281,6 +8544,15 @@ Haluatko tehdä siitä sisäisen linkin?',
'wikieditor-toolbar-tool-link-empty' => 'Et antanut mitään linkitettävää.',
'wikieditor-toolbar-tool-file' => 'Tallennettu tiedosto',
'wikieditor-toolbar-tool-file-example' => 'Esimerkki.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Lisää tiedosto',
+ 'wikieditor-toolbar-file-target' => 'Tiedostonimi:',
+ 'wikieditor-toolbar-file-caption' => 'Kuvaus:',
+ 'wikieditor-toolbar-file-size' => 'Koko:',
+ 'wikieditor-toolbar-file-float' => 'Tasaus:',
+ 'wikieditor-toolbar-file-default' => '(oletus)',
+ 'wikieditor-toolbar-file-format' => 'Tiedostomuoto:',
+ 'wikieditor-toolbar-tool-file-insert' => 'Lisää',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Peruuta',
'wikieditor-toolbar-tool-reference' => 'Viite',
'wikieditor-toolbar-tool-reference-example' => 'Lisää alahuomautusteksti tähän',
'wikieditor-toolbar-tool-reference-cancel' => 'Peruuta',
@@ -8374,9 +8646,11 @@ $1:Esimerkki.jpg|Kuvateksti2',
'wikieditor-toolbar-characters-page-persian' => 'Persia',
'wikieditor-toolbar-characters-page-hebrew' => 'Heprea',
'wikieditor-toolbar-characters-page-bangla' => 'Bengali',
+ 'wikieditor-toolbar-characters-page-tamil' => 'Tamili',
'wikieditor-toolbar-characters-page-telugu' => 'Telugu',
'wikieditor-toolbar-characters-page-sinhala' => 'Sinhali',
'wikieditor-toolbar-characters-page-gujarati' => 'Gudžarati',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'Devanāgarī',
'wikieditor-toolbar-characters-page-thai' => 'Thai',
'wikieditor-toolbar-characters-page-lao' => 'Lao',
'wikieditor-toolbar-characters-page-khmer' => 'Khmer',
@@ -8426,7 +8700,7 @@ $1:Esimerkki.jpg|Kuvateksti2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Luettelon kohta</li><li>Luettelon kohta</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Tallennettu tiedosto',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Kuvateksti]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Kuvateksti' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Suurenna' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Kuvateksti</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Kuvateksti' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Suurenna' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Kuvateksti</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Viite',
'wikieditor-toolbar-help-content-reference-syntax' => 'Sivun teksti.&lt;ref name="testi"&gt;[http://www.example.org Linkin teksti], lisäteksti.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Sivun teksti.<sup><a href='#'>[1]</a></sup>",
@@ -8443,10 +8717,11 @@ $1:Esimerkki.jpg|Kuvateksti2',
'wikieditor-toolbar-help-content-indent-result' => 'Normaali teksti<dl><dd>Sisennetty teksti<dl><dd>Sisennetty teksti</dd></dl></dd></dl>',
);
-/** French (Français)
+/** French (français)
* @author Cquoi
* @author Crochet.david
* @author DavidL
+ * @author Erkethan
* @author Gomoko
* @author IAlex
* @author Jean-Frédéric
@@ -8525,6 +8800,16 @@ Voulez-vous utiliser un lien interne à la place ?',
'wikieditor-toolbar-tool-link-empty' => 'Vous n’avez rien entré qui puisse être lié.',
'wikieditor-toolbar-tool-file' => 'Fichier inséré',
'wikieditor-toolbar-tool-file-example' => 'Exemple.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Importer un fichier',
+ 'wikieditor-toolbar-file-target' => 'Nom de fichier :',
+ 'wikieditor-toolbar-file-caption' => 'Légende :',
+ 'wikieditor-toolbar-file-size' => 'Taille :',
+ 'wikieditor-toolbar-file-float' => 'Alignement :',
+ 'wikieditor-toolbar-file-default' => '(par défaut)',
+ 'wikieditor-toolbar-file-format' => 'Format :',
+ 'wikieditor-toolbar-file-format-none' => 'aucun',
+ 'wikieditor-toolbar-tool-file-insert' => 'Insérer',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Annuler',
'wikieditor-toolbar-tool-reference' => 'Référence',
'wikieditor-toolbar-tool-reference-example' => 'Insérer le texte de la note de bas de page ici',
'wikieditor-toolbar-tool-reference-cancel' => 'Annuler',
@@ -8672,7 +8957,7 @@ $1:Exemple.jpg|Description 2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Élément de la liste</li><li>Élément de la liste</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Fichier inséré',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Exemple.png|thumb|Texte affiché]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Texte affiché' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Texte affiché</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Texte affiché' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Texte affiché</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Référence',
'wikieditor-toolbar-help-content-reference-syntax' => 'Texte de la page&lt;ref name="test"&gt;[http://www.example.org texte du lien], texte additionnel.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Texte de la page <sup><a href='#'>[1]</a></sup>",
@@ -8689,7 +8974,7 @@ $1:Exemple.jpg|Description 2',
'wikieditor-toolbar-help-content-indent-result' => 'Texte normal<dl><dd>Texte en retrait<dl><dd>Texte en retrait</dd></dl></dd></dl>',
);
-/** Franco-Provençal (Arpetan)
+/** Franco-Provençal (arpetan)
* @author ChrisPtDe
*/
$messages['frp'] = array(
@@ -8760,6 +9045,15 @@ Voléd-vos utilisar un lim de dedens a la place ?',
'wikieditor-toolbar-tool-link-empty' => 'Vos éd ren buchiê que pouesse étre liyê.',
'wikieditor-toolbar-tool-file' => 'Fichiér entrebetâ',
'wikieditor-toolbar-tool-file-example' => 'Ègzemplo.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Entrebetar un fichiér',
+ 'wikieditor-toolbar-file-target' => 'Nom du fichiér :',
+ 'wikieditor-toolbar-file-caption' => 'Lègenda :',
+ 'wikieditor-toolbar-file-size' => 'Talye :',
+ 'wikieditor-toolbar-file-float' => 'Alegnement :',
+ 'wikieditor-toolbar-file-default' => '(per dèfôt)',
+ 'wikieditor-toolbar-file-format' => 'Format :',
+ 'wikieditor-toolbar-tool-file-insert' => 'Entrebetar',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Anular',
'wikieditor-toolbar-tool-reference' => 'Refèrence',
'wikieditor-toolbar-tool-reference-example' => 'Buchiéd lo tèxto de la nota d’avâl la pâge ique',
'wikieditor-toolbar-tool-reference-cancel' => 'Anular',
@@ -8853,9 +9147,11 @@ $1:Ègzemplo.jpg|Dèscripcion 2',
'wikieditor-toolbar-characters-page-persian' => 'Pèrsan',
'wikieditor-toolbar-characters-page-hebrew' => 'Hèbrèo',
'wikieditor-toolbar-characters-page-bangla' => 'Bengali',
+ 'wikieditor-toolbar-characters-page-tamil' => 'Tamoul',
'wikieditor-toolbar-characters-page-telugu' => 'Tèlougou',
'wikieditor-toolbar-characters-page-sinhala' => 'Cingalês',
'wikieditor-toolbar-characters-page-gujarati' => 'Goudjarati',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'Devanagari',
'wikieditor-toolbar-characters-page-thai' => 'Tayi',
'wikieditor-toolbar-characters-page-lao' => 'Lao',
'wikieditor-toolbar-characters-page-khmer' => 'C’mère',
@@ -8905,7 +9201,7 @@ $1:Ègzemplo.jpg|Dèscripcion 2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Èlèment de la lista</li><li>Èlèment de la lista</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Fichiér entrebetâ',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Ègzemplo.png|thumb|Tèxto montrâ]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Tèxto montrâ' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Agrantir' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Tèxto montrâ</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Tèxto montrâ' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Agrantir' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Tèxto montrâ</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Refèrence',
'wikieditor-toolbar-help-content-reference-syntax' => 'Tèxto de la pâge.&lt;ref name="test"&gt;[http://www.example.org tèxto du lim], tèxto de ples.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Tèxto de la pâge.<sup><a href='#'>[1]</a></sup>",
@@ -8922,7 +9218,7 @@ $1:Ègzemplo.jpg|Dèscripcion 2',
'wikieditor-toolbar-help-content-indent-result' => 'Tèxto normal<dl><dd>Tèxto endentâ<dl><dd>Tèxto endentâ</dd></dl></dd></dl>',
);
-/** Friulian (Furlan)
+/** Friulian (furlan)
* @author Klenje
*/
$messages['fur'] = array(
@@ -8949,6 +9245,32 @@ $messages['fy'] = array(
'wikieditor-toolbar-tool-link-cancel' => 'Ofbrekke',
);
+/** Irish (Gaeilge)
+ * @author පසිඳු කාවින්ද
+ */
+$messages['ga'] = array(
+ 'wikieditor-loading' => 'Ag Lódáil....',
+ 'wikieditor-preview-tab' => 'Réamhamharc',
+ 'wikieditor-preview-loading' => 'Ag Lódáil....',
+ 'wikieditor-previewDialog-tab' => 'Réamhamharc',
+ 'wikieditor-previewDialog-loading' => 'Ag Lódáil....',
+ 'wikieditor-publish-button-cancel' => 'Cealaigh',
+ 'wikieditor-template-editor-dialog-cancel' => 'Cealaigh',
+ 'wikieditor-toolbar-loading' => 'Ag Lódáil....',
+ 'wikieditor-toolbar-tool-link-cancel' => 'Cealaigh',
+ 'wikieditor-toolbar-file-format' => 'Formáid:',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Cealaigh',
+ 'wikieditor-toolbar-tool-reference-cancel' => 'Cealaigh',
+ 'wikieditor-toolbar-group-format' => 'Formáid',
+ 'wikieditor-toolbar-tool-table-preview' => 'Réamhamharc',
+ 'wikieditor-toolbar-tool-table-cancel' => 'Cealaigh',
+ 'wikieditor-toolbar-tool-replace-close' => 'Dún',
+ 'wikieditor-toolbar-section-help' => 'Cuidiú',
+ 'wikieditor-toolbar-help-page-file' => 'Comhaid',
+ 'wikieditor-toolbar-help-page-discussion' => 'Plé',
+ 'wikieditor-toolbar-help-content-signature-description' => 'Síniú',
+);
+
/** Scottish Gaelic (Gàidhlig)
* @author Akerbeltz
*/
@@ -9159,7 +9481,7 @@ $1:Ballsampaill.jpg|Mìneachadh an deilbh2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Ball na liosta</li><li>Ball na liosta</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Embedded file',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Ballsampaill.png|thumb|Mìneachadh an deilbh]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Mìneachadh an deilbht' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Meudaich' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Mìneachadh an deilbh</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Mìneachadh an deilbht' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Meudaich' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Mìneachadh an deilbh</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Iomradh',
'wikieditor-toolbar-help-content-reference-syntax' => 'Teacsa na duilleige.&lt;ref name="test"&gt;[http://www.ballsampaill.org Teacsa a\' cheangail], teacsa eile.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Teacsa na duilleige.<sup><a href='#'>[1]</a></sup>",
@@ -9176,7 +9498,7 @@ $1:Ballsampaill.jpg|Mìneachadh an deilbh2',
'wikieditor-toolbar-help-content-indent-result' => 'Teacsa àbhaisteach<dl><dd>Teacsa air eagachadh a-steach<dl><dd>Teacsa air eagachadh a-steach</dd></dl></dd></dl>',
);
-/** Galician (Galego)
+/** Galician (galego)
* @author Toliño
*/
$messages['gl'] = array(
@@ -9247,6 +9569,16 @@ Quere converter ese enderezo nunha ligazón interna?',
'wikieditor-toolbar-tool-link-empty' => 'Non inseriu nada co que ligar.',
'wikieditor-toolbar-tool-file' => 'Ficheiro embelecido',
'wikieditor-toolbar-tool-file-example' => 'Exemplo.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Inserir un ficheiro',
+ 'wikieditor-toolbar-file-target' => 'Nome do ficheiro:',
+ 'wikieditor-toolbar-file-caption' => 'Pé de foto:',
+ 'wikieditor-toolbar-file-size' => 'Tamaño:',
+ 'wikieditor-toolbar-file-float' => 'Aliñamento:',
+ 'wikieditor-toolbar-file-default' => '(predeterminado)',
+ 'wikieditor-toolbar-file-format' => 'Formato:',
+ 'wikieditor-toolbar-file-format-none' => 'ningún',
+ 'wikieditor-toolbar-tool-file-insert' => 'Inserir',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Cancelar',
'wikieditor-toolbar-tool-reference' => 'Referencia',
'wikieditor-toolbar-tool-reference-example' => 'Insira unha nota aquí',
'wikieditor-toolbar-tool-reference-cancel' => 'Cancelar',
@@ -9386,7 +9718,7 @@ $1:Example.jpg|Pé_de_foto_2',
'wikieditor-toolbar-help-content-heading5-description' => 'Cabeceira de 5º nivel',
'wikieditor-toolbar-help-content-heading5-syntax' => '===== Texto de cabeceira =====',
'wikieditor-toolbar-help-content-heading5-result' => '<h5>Texto de cabeceira</h5>',
- 'wikieditor-toolbar-help-content-ulist-description' => 'Lista de asteriscos',
+ 'wikieditor-toolbar-help-content-ulist-description' => 'Lista con asteriscos',
'wikieditor-toolbar-help-content-ulist-syntax' => '* Elemento da lista<br />* Elemento da lista',
'wikieditor-toolbar-help-content-ulist-result' => '<ul><li>Elemento da lista</li><li>Elemento da lista</li></ul>',
'wikieditor-toolbar-help-content-olist-description' => 'Lista numerada',
@@ -9394,7 +9726,7 @@ $1:Example.jpg|Pé_de_foto_2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Elemento da lista</li><li>Elemento da lista</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Ficheiro embelecido',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Pé de foto.]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Pé de foto' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Ampliar' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Pé de foto.</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Pé de foto' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Ampliar' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Pé de foto.</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Referencia',
'wikieditor-toolbar-help-content-reference-syntax' => 'Texto da páxina&lt;ref name="test"&gt;[http://www.example.org Texto da ligazón], texto adicional.&lt;/ref&gt;.',
'wikieditor-toolbar-help-content-reference-result' => "Texto da páxina<sup><a href='#'>[1]</a></sup>.",
@@ -9403,7 +9735,7 @@ $1:Example.jpg|Pé_de_foto_2',
'wikieditor-toolbar-help-content-showreferences-description' => 'Mostrar as referencias',
'wikieditor-toolbar-help-content-showreferences-result' => "<ol class='references'><li id='cite_note-test-0'><b><a title='' href='#'>^</a></b> <a rel='nofollow' title='http://www.example.org' class='external text' href='#'>Texto da ligazón</a>, texto adicional.</li></ol>",
'wikieditor-toolbar-help-content-signaturetimestamp-description' => 'Sinatura con data e hora',
- 'wikieditor-toolbar-help-content-signaturetimestamp-result' => "<a href='#' title='{{#special:mypage}}'>Nome de usuario</a> (<a href='#' title='{{#special:mytalk}}'>conversa</a>) 15:54, 10 xuño 2009 (UTC)",
+ 'wikieditor-toolbar-help-content-signaturetimestamp-result' => "<a href='#' title='{{#special:mypage}}'>Nome de usuario</a> (<a href='#' title='{{#special:mytalk}}'>conversa</a>) 10 de xuño de 2009 ás 15:54 (UTC)",
'wikieditor-toolbar-help-content-signature-description' => 'Sinatura',
'wikieditor-toolbar-help-content-signature-result' => "<a href='#' title='{{#special:mypage}}'>Nome de usuario</a> (<a href='#' title='{{#special:mytalk}}'>conversa</a>)",
'wikieditor-toolbar-help-content-indent-description' => 'Sangría',
@@ -9578,6 +9910,16 @@ Wettsch e intärne Link setze?',
'wikieditor-toolbar-tool-link-empty' => 'Du hesch nyt yygee, wu druf cha verwise wäre.',
'wikieditor-toolbar-tool-file' => 'Yygfiegti Datei',
'wikieditor-toolbar-tool-file-example' => 'Byschpil.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Datei yyfiege',
+ 'wikieditor-toolbar-file-target' => 'Dateiname:',
+ 'wikieditor-toolbar-file-caption' => 'Bschrybig:',
+ 'wikieditor-toolbar-file-size' => 'Greßi:',
+ 'wikieditor-toolbar-file-float' => 'Uusrichtig:',
+ 'wikieditor-toolbar-file-default' => '(Standard)',
+ 'wikieditor-toolbar-file-format' => 'Format:',
+ 'wikieditor-toolbar-file-format-none' => 'keini',
+ 'wikieditor-toolbar-tool-file-insert' => 'Yyfiege',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Abbräche',
'wikieditor-toolbar-tool-reference' => 'Quälle',
'wikieditor-toolbar-tool-reference-example' => 'Do Fuessnotetekscht yyfiege',
'wikieditor-toolbar-tool-reference-cancel' => 'Abbräche',
@@ -9725,7 +10067,7 @@ $1:Byschpil.jpg|Bschriftig2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Lischtepunkt</li><li>Lischtepunkt</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Yygfiegti Datei',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Bildbschriftig]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Bildbschriftig' class='image' href='/wiki/Datei:Wiki.png'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='Bschriftig'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Bildbschriftig</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Bildbschriftig' class='image' href='/wiki/Datei:Wiki.png'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='Bschriftig'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Bildbschriftig</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Quälle',
'wikieditor-toolbar-help-content-reference-syntax' => 'Sytetekscht.&lt;ref name="test"&gt;[http://www.byschpil.org Gleichtekscht], zuesätzlige Tekscht.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Sytetekscht.<sup><a href='#'>[1]</a></sup>",
@@ -9743,6 +10085,7 @@ $1:Byschpil.jpg|Bschriftig2',
);
/** Gujarati (ગુજરાતી)
+ * @author Ashok modhvadia
* @author KartikMistry
* @author Sushant savla
*/
@@ -9814,6 +10157,13 @@ $messages['gu'] = array(
'wikieditor-toolbar-tool-link-empty' => 'તમે શોધવા માટે કંઈ દાખલ કર્યું નથી.',
'wikieditor-toolbar-tool-file' => 'અંદર વણાયેલી (Embedded) ફાઇલ',
'wikieditor-toolbar-tool-file-example' => 'Example.jpg (ઉદાહરણ)',
+ 'wikieditor-toolbar-tool-file-title' => 'ફાઇલ ઉમેરો',
+ 'wikieditor-toolbar-file-target' => 'ફાઇલનામ:',
+ 'wikieditor-toolbar-file-size' => 'માપ:',
+ 'wikieditor-toolbar-file-default' => '(મૂળભૂત)',
+ 'wikieditor-toolbar-file-format' => 'શૈલી:',
+ 'wikieditor-toolbar-tool-file-insert' => 'ઉમેરો',
+ 'wikieditor-toolbar-tool-file-cancel' => 'રદ કરો',
'wikieditor-toolbar-tool-reference' => 'સંદર્ભ',
'wikieditor-toolbar-tool-reference-example' => 'પૃષ્ઠની નીચેના પાયામાં લખવાનું લેખન અહીં લખો',
'wikieditor-toolbar-tool-reference-cancel' => 'રદ કરો',
@@ -9907,9 +10257,11 @@ $1:Example.jpg|Caption2',
'wikieditor-toolbar-characters-page-persian' => 'પર્સિયન',
'wikieditor-toolbar-characters-page-hebrew' => 'હિબ્રૂ',
'wikieditor-toolbar-characters-page-bangla' => 'બાંગ્લા',
+ 'wikieditor-toolbar-characters-page-tamil' => 'તામિલ',
'wikieditor-toolbar-characters-page-telugu' => 'તેલુગુ',
'wikieditor-toolbar-characters-page-sinhala' => 'સિંહાલા',
'wikieditor-toolbar-characters-page-gujarati' => 'ગુજરાતી',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'દેવનાગરી',
'wikieditor-toolbar-characters-page-thai' => 'થાઈ',
'wikieditor-toolbar-characters-page-lao' => 'લાઓ',
'wikieditor-toolbar-characters-page-khmer' => 'ખ્મેર',
@@ -9959,7 +10311,7 @@ $1:Example.jpg|Caption2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>વસ્તુ યાદી</li><li>વસ્તુ યાદી</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'અંદર વણાયેલી (Embedded) ફાઇલ',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|કેપ્શન લખાણ]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Caption text</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Caption text</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'સંદર્ભ',
'wikieditor-toolbar-help-content-reference-syntax' => 'પાનાં લખાણ.&lt;ref name="test"&gt;[http://www.example.org કડી લખાણ], વધારાનું લખાણ.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "પૃષ્ઠ લેખન.<sup><a href='#'>[1]</a></sup>",
@@ -10185,7 +10537,7 @@ $1:Example.jpg|Fo-heidyl2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Meer rolley</li><li>Meer rolley</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Coadan jingit',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Teks fo-heidyl]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Teks fo-heidyl' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Mooadaghey' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Teks fo-heidyl</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Teks fo-heidyl' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Mooadaghey' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Teks fo-heidyl</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Imraa',
'wikieditor-toolbar-help-content-reference-syntax' => 'Teks duillag.&lt;ref name="test"&gt;[http://www.example.org Teks kiangley], tooilley teks.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Teks duillag.<sup><a href='#'>[1]</a></sup>",
@@ -10202,7 +10554,7 @@ $1:Example.jpg|Fo-heidyl2',
'wikieditor-toolbar-help-content-indent-result' => 'Teks cadjin<dl><dd>Teks jingit<dl><dd>Teks jingit</dd></dl></dd></dl>',
);
-/** Hausa (هَوُسَ) */
+/** Hausa (Hausa) */
$messages['ha'] = array(
'wikieditor-template-editor-dialog-cancel' => 'Soke',
'wikieditor-toolbar-tool-bold-example' => 'Rubutu mai gwaɓi',
@@ -10221,6 +10573,7 @@ $messages['ha'] = array(
* @author Rotemliss
* @author YaronSh
* @author Yonidebest
+ * @author חיים
*/
$messages['he'] = array(
'wikieditor' => 'ממשק מתקדם לעריכת טקסט ויקי',
@@ -10289,6 +10642,16 @@ $messages['he'] = array(
'wikieditor-toolbar-tool-link-empty' => 'לא הזנתם שום דבר לקשר אליו.',
'wikieditor-toolbar-tool-file' => 'קובץ המוצג בדף',
'wikieditor-toolbar-tool-file-example' => 'דוגמה.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'הוספת קובץ',
+ 'wikieditor-toolbar-file-target' => 'שם הקובץ:',
+ 'wikieditor-toolbar-file-caption' => 'תיאור:',
+ 'wikieditor-toolbar-file-size' => 'גודל:',
+ 'wikieditor-toolbar-file-float' => 'יישור:',
+ 'wikieditor-toolbar-file-default' => '(ברירת מחדל)',
+ 'wikieditor-toolbar-file-format' => 'עיצוב:',
+ 'wikieditor-toolbar-file-format-none' => 'אין',
+ 'wikieditor-toolbar-tool-file-insert' => 'הוספה',
+ 'wikieditor-toolbar-tool-file-cancel' => 'ביטול',
'wikieditor-toolbar-tool-reference' => 'הערת שוליים',
'wikieditor-toolbar-tool-reference-example' => 'כתבו את טקסט הערת השוליים כאן',
'wikieditor-toolbar-tool-reference-cancel' => 'ביטול',
@@ -10353,6 +10716,7 @@ $1:דוגמה.jpg|כותרת 2',
'wikieditor-toolbar-tool-table-preview' => 'תצוגה מקדימה',
'wikieditor-toolbar-tool-table-insert' => 'הוספה',
'wikieditor-toolbar-tool-table-cancel' => 'ביטול',
+ 'wikieditor-toolbar-tool-table-example-text' => 'מַה־נָּעִים הָעֶרֶב לִלְבַב כָּל־גֶּבֶר, אִם מַר־נֶפֶשׁ הוּא, אִם גֶּבֶר צוֹלֵחַ; לָזֶה עִם הָעֶרֶב יָבֹא קֵץ שֶׁבֶר וָזֶה בָּעֶרֶב פִּי שֶׁבַע שָׂמֵחַ. כִּי רַעַשׁ הַיּוֹם, אוֹר שֶׁמֶשׁ זוֹרֵחַ, יַלְאוּ הַנֶּפֶשׁ וִיקַצְּצוּ הָאֵבֶר, וּבְדִמְמַת עֶרֶב אֶל נֹגַהּ יָרֵחַ תִּנָּפַשׁ אַף תַּחֲלִיף עָצְמָה וָשֵׁבֶר.',
'wikieditor-toolbar-tool-table-toomany' => 'הוספת טבלה בת יותר מ־$1 תאים אינה אפשרית בתיבת הדו־שיח הזו.',
'wikieditor-toolbar-tool-table-invalidnumber' => 'מספר השורות או העמודות שהוזן אינו תקין.',
'wikieditor-toolbar-tool-table-zero' => 'לא ניתן להוסיף טבלה בעלת אפס שורות או עמודות.',
@@ -10436,7 +10800,7 @@ $1:דוגמה.jpg|כותרת 2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>פריט רשימה</li><li>פריט רשימה</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'קובץ המוצג בדף',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|טקסט הכותרת]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='טקסט הכותרת' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>טקסט הכותרת</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='טקסט הכותרת' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>טקסט הכותרת</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'הערת שוליים',
'wikieditor-toolbar-help-content-reference-syntax' => 'טקסט הדף.&lt;ref name="test"&gt;[http://www.example.org טקסט הקישור], טקסט נוסף.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "טקסט הדף.<sup><a href='#'>[1]</a></sup>",
@@ -10455,6 +10819,7 @@ $1:דוגמה.jpg|כותרת 2',
/** Hindi (हिन्दी)
* @author Ansumang
+ * @author Karthi.dr
* @author Pooja.srivastava
* @author Siddhartha Ghai
*/
@@ -10516,6 +10881,7 @@ $messages['hi'] = array(
'wikieditor-toolbar-tool-link-empty' => 'आप लिंक करने के लिए कुछ दर्ज़ नहीं किए थे ।',
'wikieditor-toolbar-tool-file' => 'संलग्न फ़ाइल',
'wikieditor-toolbar-tool-file-example' => 'उदाहरण.jpg',
+ 'wikieditor-toolbar-tool-file-cancel' => 'रद्द करें',
'wikieditor-toolbar-tool-reference' => 'संदर्भ',
'wikieditor-toolbar-tool-reference-example' => 'आधार पाठ यहाँ सम्मिलित करें',
'wikieditor-toolbar-tool-reference-cancel' => 'रद्द करें',
@@ -10603,9 +10969,11 @@ $1:उदाहरण.jpg|चित्रशीर्षक२',
'wikieditor-toolbar-characters-page-persian' => 'फार्सी',
'wikieditor-toolbar-characters-page-hebrew' => 'हिब्रू',
'wikieditor-toolbar-characters-page-bangla' => 'बांग्ला',
+ 'wikieditor-toolbar-characters-page-tamil' => 'तमिल',
'wikieditor-toolbar-characters-page-telugu' => 'तेलूगू',
'wikieditor-toolbar-characters-page-sinhala' => 'सिंहल',
'wikieditor-toolbar-characters-page-gujarati' => 'गुजराती',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'देवनागरी',
'wikieditor-toolbar-characters-page-thai' => 'थाई',
'wikieditor-toolbar-characters-page-lao' => 'लाओ',
'wikieditor-toolbar-characters-page-khmer' => 'खमेर',
@@ -10655,7 +11023,7 @@ $1:उदाहरण.jpg|चित्रशीर्षक२',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>सूची आइटम</li><li>सूची आइटम</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'संलग्न फ़ाइल',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:उदाहरण.png|thumb|शीर्षक नाम]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='चौड़ाई:104px;' class='thumbinner'><a title='शीर्षक नाम' class='इमेज' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='बढ़ाना' class='आंतरिक' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>शीर्षक नाम</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='चौड़ाई:104px;' class='thumbinner'><a title='शीर्षक नाम' class='इमेज' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='बढ़ाना' class='आंतरिक' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>शीर्षक नाम</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'संदर्भ',
'wikieditor-toolbar-help-content-reference-syntax' => 'पृष्ठ लेख ।&lt;ref name="test"&gt;[http://www.example.org लिंक लेख], अतिरिक्त लेख.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "पृष्ठ लेख ।<sup><a href='#'>[1]</a></sup>",
@@ -10679,7 +11047,7 @@ $messages['hif-latn'] = array(
'wikieditor-toolbar-tool-italic' => 'Tirchha',
);
-/** Croatian (Hrvatski)
+/** Croatian (hrvatski)
* @author Bugoslav
* @author Ex13
* @author Excaliboor
@@ -10897,7 +11265,7 @@ $1:Primjer.jpg|Opis2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>stavka popisa</li><li>stavka popisa</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Uložena datoteka',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Tekst opisa]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Tekst opisa' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Povećaj' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Tekst opisa'</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Tekst opisa' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Povećaj' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Tekst opisa'</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Bilješke',
'wikieditor-toolbar-help-content-reference-syntax' => 'Tekst stranice.&lt;ref name="test"&gt;[http://www.primjer.org Tekst poveznice], dodatni tekst.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Tekst stranice.<sup><a href='#'>[1]</a></sup>",
@@ -10914,7 +11282,7 @@ $1:Primjer.jpg|Opis2',
'wikieditor-toolbar-help-content-indent-result' => 'Normalni tekst<dl><dd>Uvučeni tekst<dl><dd>Uvučeni tekst</dd></dl></dd></dl>',
);
-/** Upper Sorbian (Hornjoserbsce)
+/** Upper Sorbian (hornjoserbsce)
* @author Michawiki
*/
$messages['hsb'] = array(
@@ -10985,6 +11353,16 @@ Chceš jón do interneho wotkaza přetworić?',
'wikieditor-toolbar-tool-link-empty' => 'Njejsy ničo zapodał, na kotrež ma so wotkazować.',
'wikieditor-toolbar-tool-file' => 'Zasadźena dataja',
'wikieditor-toolbar-tool-file-example' => 'Přikład.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Dataju zasunyć',
+ 'wikieditor-toolbar-file-target' => 'Datajowe mjeno:',
+ 'wikieditor-toolbar-file-caption' => 'Popis:',
+ 'wikieditor-toolbar-file-size' => 'Wulkosć:',
+ 'wikieditor-toolbar-file-float' => 'Wusměrjenje:',
+ 'wikieditor-toolbar-file-default' => '(standard)',
+ 'wikieditor-toolbar-file-format' => 'Format:',
+ 'wikieditor-toolbar-file-format-none' => 'žadyn',
+ 'wikieditor-toolbar-tool-file-insert' => 'Zasunyć',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Přetorhnyć',
'wikieditor-toolbar-tool-reference' => 'Referenca',
'wikieditor-toolbar-tool-reference-example' => 'Tekst nóžki tu zasunyć',
'wikieditor-toolbar-tool-reference-cancel' => 'Přetorhnyć',
@@ -11132,7 +11510,7 @@ $1:Example.jpg|Popis2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Lisćinowy zapisk</li><li>Lisćinowy zapisk</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Zasadźena dataja',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Tekst wobrazoweho popisa]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Tekst wobrazeho popisa' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Powjetšić' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Tekst wobrazoweho popisa</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Tekst wobrazeho popisa' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Powjetšić' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Tekst wobrazoweho popisa</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Referenca',
'wikieditor-toolbar-help-content-reference-syntax' => 'Tekst strony.&lt;ref name="test"&gt;[http://www.example.org tekst wotkaza], přidatny tekst.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Tekst strony.<sup><a href='#'>[1]</a></sup>",
@@ -11149,7 +11527,7 @@ $1:Example.jpg|Popis2',
'wikieditor-toolbar-help-content-indent-result' => 'Normalny tekst<dl><dd>Zasunjeny tekst<dl><dd>Zasunjeny tekst</dd></dl></dd></dl>',
);
-/** Hungarian (Magyar)
+/** Hungarian (magyar)
* @author Bdamokos
* @author Dani
* @author Dj
@@ -11226,6 +11604,15 @@ Szeretnéd belső hivatkozássá alakítani?',
'wikieditor-toolbar-tool-link-empty' => 'Nem adtad meg, hogy hová szeretnél hivatkozást készíteni.',
'wikieditor-toolbar-tool-file' => 'Fájl beszúrása',
'wikieditor-toolbar-tool-file-example' => 'Egyszerikép.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Fájl beillesztése',
+ 'wikieditor-toolbar-file-target' => 'Fájlnév:',
+ 'wikieditor-toolbar-file-caption' => 'Felirat:',
+ 'wikieditor-toolbar-file-size' => 'Méret:',
+ 'wikieditor-toolbar-file-float' => 'Illesztés:',
+ 'wikieditor-toolbar-file-default' => '(alapértelmezett)',
+ 'wikieditor-toolbar-file-format' => 'Formátum:',
+ 'wikieditor-toolbar-tool-file-insert' => 'Beszúrás',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Mégse',
'wikieditor-toolbar-tool-reference' => 'Forráshivatkozás',
'wikieditor-toolbar-tool-reference-example' => 'Ide írd a lábjegyzet szövegét',
'wikieditor-toolbar-tool-reference-cancel' => 'Mégse',
@@ -11373,7 +11760,7 @@ $1:Példa.jpg|képaláírás2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Listaelem</li><li>Listaelem</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Beszúrt fájl',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Képaláírás]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='A kép nagyítása' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Képaláírás</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='A kép nagyítása' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Képaláírás</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Forráshivatkozás',
'wikieditor-toolbar-help-content-reference-syntax' => 'Lap szövege.&lt;ref name="test"&gt;[http://www.példaoldal.hu Hivatkozás szövege], további szöveg.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Lap szövege.<sup><a href='#'>[1]</a></sup>",
@@ -11589,7 +11976,7 @@ $1:Example.jpg|Նկարագրություն2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Ցանկի տարր</li><li>Ցանկի տարր</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Ներկառուցված նիշք',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Նկարագրություն]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Նկարագրություն' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Ընդարձակել' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Նկարագրություն</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Նկարագրություն' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Ընդարձակել' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Նկարագրություն</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Ծանոթագրություն',
'wikieditor-toolbar-help-content-reference-syntax' => 'Տեքստ էջում&lt;ref name="test"&gt;[http://www.example.org Հղման տեքստ], հավելյալ տեքստ։&lt;/ref&gt;։',
'wikieditor-toolbar-help-content-reference-result' => "Տեքստ էջում<sup><a href='#'>[1]</a></sup>։",
@@ -11606,7 +11993,7 @@ $1:Example.jpg|Նկարագրություն2',
'wikieditor-toolbar-help-content-indent-result' => 'Սովորական տեքստ<dl><dd>Խորքից գրված տեքստ<dl><dd>Խորքից գրված տեքստ</dd></dl></dd></dl>',
);
-/** Interlingua (Interlingua)
+/** Interlingua (interlingua)
* @author McDutchie
*/
$messages['ia'] = array(
@@ -11677,6 +12064,15 @@ Vole tu facer lo un ligamine interne?',
'wikieditor-toolbar-tool-link-empty' => 'Tu ha entrate nihil a que ligar.',
'wikieditor-toolbar-tool-file' => 'File incastrate',
'wikieditor-toolbar-tool-file-example' => 'Exemplo.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Inserer file',
+ 'wikieditor-toolbar-file-target' => 'Nomine del file:',
+ 'wikieditor-toolbar-file-caption' => 'Legenda:',
+ 'wikieditor-toolbar-file-size' => 'Dimension:',
+ 'wikieditor-toolbar-file-float' => 'Alineamento:',
+ 'wikieditor-toolbar-file-default' => '(predefinition)',
+ 'wikieditor-toolbar-file-format' => 'Formato:',
+ 'wikieditor-toolbar-tool-file-insert' => 'Inserer',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Cancellar',
'wikieditor-toolbar-tool-reference' => 'Referentia',
'wikieditor-toolbar-tool-reference-example' => 'Inserer hic le texto del nota',
'wikieditor-toolbar-tool-reference-cancel' => 'Cancellar',
@@ -11824,7 +12220,7 @@ $1:Exemplo.jpg|Legenda2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Elemento del lista</li><li>Elemento del lista</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'File incastrate',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Exemplo.png|thumb|Texto del legenda]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Texto del legenda' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Texto del legenda</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Texto del legenda' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Texto del legenda</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Referentia',
'wikieditor-toolbar-help-content-reference-syntax' => 'Texto del pagina.&lt;ref name="test"&gt;[http://www.example.org Texto del ligamine], texto additional.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Texto del pagina.<sup><a href='#'>[1]</a></sup>",
@@ -11916,6 +12312,15 @@ Apakah Anda ingin membuatnya menjadi pranala internal?',
'wikieditor-toolbar-tool-link-empty' => 'Anda tidak memasukkan apa pun untuk ditautkan.',
'wikieditor-toolbar-tool-file' => 'Sisipkan berkas',
'wikieditor-toolbar-tool-file-example' => 'Contoh.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Sisipkan berkas',
+ 'wikieditor-toolbar-file-target' => 'Nama berkas:',
+ 'wikieditor-toolbar-file-caption' => 'Keterangan',
+ 'wikieditor-toolbar-file-size' => 'Ukuran:',
+ 'wikieditor-toolbar-file-float' => 'Rata:',
+ 'wikieditor-toolbar-file-default' => '(baku)',
+ 'wikieditor-toolbar-file-format' => 'Format:',
+ 'wikieditor-toolbar-tool-file-insert' => 'Sisipkan',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Batal',
'wikieditor-toolbar-tool-reference' => 'Referensi',
'wikieditor-toolbar-tool-reference-example' => 'Sisipkan teks catatan kaki di sini',
'wikieditor-toolbar-tool-reference-cancel' => 'Batalkan',
@@ -11990,6 +12395,7 @@ $1:Contoh.jpg|Judul2',
'wikieditor-toolbar-tool-replace-case' => 'Cocokkan huruf besar/kecil',
'wikieditor-toolbar-tool-replace-regex' => "Perlakukan string pencarian sebagai ''regular expression (regex)''",
'wikieditor-toolbar-tool-replace-button-findnext' => 'Cari berikutnya',
+ 'wikieditor-toolbar-tool-replace-button-replace' => 'Ganti',
'wikieditor-toolbar-tool-replace-button-replaceall' => 'Ganti semua',
'wikieditor-toolbar-tool-replace-close' => 'Tutup',
'wikieditor-toolbar-tool-replace-nomatch' => 'Pencarian Anda tidak membuahkan hasil.',
@@ -12004,12 +12410,15 @@ $1:Contoh.jpg|Judul2',
'wikieditor-toolbar-characters-page-greek' => 'Yunani',
'wikieditor-toolbar-characters-page-cyrillic' => 'Sirilik',
'wikieditor-toolbar-characters-page-arabic' => 'Arab',
+ 'wikieditor-toolbar-characters-page-arabicextended' => 'Arab tambahan',
'wikieditor-toolbar-characters-page-persian' => 'Persia',
'wikieditor-toolbar-characters-page-hebrew' => 'Ibrani',
'wikieditor-toolbar-characters-page-bangla' => 'Bangla',
+ 'wikieditor-toolbar-characters-page-tamil' => 'Tamil',
'wikieditor-toolbar-characters-page-telugu' => 'Telugu',
'wikieditor-toolbar-characters-page-sinhala' => 'Sinhala',
'wikieditor-toolbar-characters-page-gujarati' => 'Gujarati',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'Dewanagari',
'wikieditor-toolbar-characters-page-thai' => 'Thai',
'wikieditor-toolbar-characters-page-lao' => 'Lao',
'wikieditor-toolbar-characters-page-khmer' => 'Khmer',
@@ -12059,7 +12468,7 @@ $1:Contoh.jpg|Judul2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Isi daftar</li><li>Isi daftar</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Menyisipkan berkas',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Contoh.png|thumb|Teks judul gambar]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Teks judul gambar' class='image' href='/wiki/Berkas:Wiki.png'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Perbesar' class='internal' href='/wiki/Berkas:Wiki.png'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Teks judul gambar</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Teks judul gambar' class='image' href='/wiki/Berkas:Wiki.png'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Perbesar' class='internal' href='/wiki/Berkas:Wiki.png'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Teks judul gambar</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Referensi',
'wikieditor-toolbar-help-content-reference-syntax' => 'Teks halaman.&lt;ref name="test"&gt;[http://www.contoh.org Teks pranala], teks tambahan.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Teks halaman.<sup><a href='#'>[1]</a></sup>",
@@ -12171,47 +12580,47 @@ $messages['ig'] = array(
* @author Lam-ang
*/
$messages['ilo'] = array(
- 'wikieditor' => 'Napasayaat a wikitext a panagurnos ti interface',
- 'wikieditor-desc' => 'Agisagana ti maipadakkel a wikitext a panagurnos nga interface ken adu pay kadagiti agisagana ti langa a module',
+ 'wikieditor' => 'Napasayaat a wikitext nga interface ti panagurnos',
+ 'wikieditor-desc' => 'Mangited ti maipadakkel a wikitext nga interface ti panagurnos ken adu pay a langa a maited dagiti modulo',
'wikieditor-wikitext-tab' => 'Wikitext',
'wikieditor-loading' => 'Agkarkarga...',
- 'wikieditor-preview-preference' => 'Pakabaelan na ti agsumbangir a panagpadas',
+ 'wikieditor-preview-preference' => 'Pakabaelanna ti agsumbangir a panagipadas',
'wikieditor-preview-tab' => 'Ipadas',
'wikieditor-preview-changes-tab' => 'Dagiti sinukatan',
'wikieditor-preview-loading' => 'Agkarkarga...',
- 'wikieditor-previewDialog-preference' => 'Pakabaelan ti panagsarsarita ti panagpadas',
+ 'wikieditor-previewDialog-preference' => 'Pakabaelan ti panakisinnarita a panagipadas',
'wikieditor-previewDialog-tab' => 'Ipadas',
'wikieditor-previewDialog-loading' => 'Agkarkarga...',
'wikieditor-publish-preference' => 'Pakabaelan ti naiyaddang a panagipablaak',
'wikieditor-publish-button-publish' => 'Ipablaak',
'wikieditor-publish-button-cancel' => 'Ukasen',
'wikieditor-publish-dialog-title' => 'Ipabablaak idiay {{SITENAME}}',
- 'wikieditor-publish-dialog-summary' => 'Pakapukpukan ti pinagurnos (ipalawag bassit dagiti sinukatam) :',
- 'wikieditor-publish-dialog-minor' => 'Bassit a pinag-urnos',
+ 'wikieditor-publish-dialog-summary' => 'Pakapukpukan ti panagurnos (ipalawag bassit dagiti sinukatam) :',
+ 'wikieditor-publish-dialog-minor' => 'Bassit a panag-urnos',
'wikieditor-publish-dialog-watch' => 'Bantayan daytoy a panid',
'wikieditor-publish-dialog-publish' => 'Ipablaak',
'wikieditor-publish-dialog-goback' => 'Agsubli',
- 'wikieditor-template-editor-preference' => 'Pakabaelan ti naibatay ti nakabuklan a pinag-urnos kadagiti plantilia ti wiki',
+ 'wikieditor-template-editor-preference' => 'Pakabaelanna ti naibatay ti porma a panag-urnos kadagiti plantilia ti wiki',
'wikieditor-template-editor-dialog-title' => 'Urnosen ti plantilia',
- 'wikieditor-template-editor-dialog-submit' => 'Pabaro',
+ 'wikieditor-template-editor-dialog-submit' => 'Pabaruen',
'wikieditor-template-editor-dialog-cancel' => 'Ukasen',
- 'wikieditor-templates-preference' => 'Pakabaelan ti panagrebba ti plantilia',
- 'wikieditor-toc-preference' => 'Pakabaelan ti pagdaliasat kadagiti linaon ti tabla',
+ 'wikieditor-templates-preference' => 'Pakabaelanna ti panagrebba ti plantilia',
+ 'wikieditor-toc-preference' => 'Pakabaelanna ti madaliasat a tabla dagiti linaon',
'wikieditor-toc-show' => 'Ipakita dagiti linaon',
'wikieditor-toc-hide' => 'Ilemmeng dagiti linaon',
- 'wikieditor-toolbar' => 'Ramit a baras ti pinag-urnos',
- 'wikieditor-toolbar-desc' => 'Ramit ti baras ti pinag-urnos nga addan ti napasayaat a pinag-usar',
- 'wikieditor-toolbar-preference' => 'Pakabaelan ti napasayaat a ramit ti baras a pinag-urnos',
- 'wikieditor-toolbar-dialogs-preference' => 'Pakabaekan dagiti panagsarsarita para iti panagsengngat kadagiti panilpo, tab-tabla ken adu pay',
- 'wikieditor-toolbar-hidesig' => 'Ilemmeng ti pirma a buton manipud kadagidiay panid iti umuna a nagan ti lugar',
+ 'wikieditor-toolbar' => 'Ramit a baras ti panag-urnos',
+ 'wikieditor-toolbar-desc' => 'Ramit ti baras ti panag-urnos nga addan ti napasayaat a panag-usar',
+ 'wikieditor-toolbar-preference' => 'Pakabaelanna ti napasayaat a ramit ti baras a panag-urnos',
+ 'wikieditor-toolbar-dialogs-preference' => 'Pakabaekanna dagiti panakisinnarita para iti panagisengngat kadagiti panilpo, tab-tabla ken adu pay',
+ 'wikieditor-toolbar-hidesig' => 'Ilemmeng ti pirma a buton manipud kadagiti panid iti umuna a nagan ti lugar',
'wikieditor-toolbar-loading' => 'Agkarkarga...',
'wikieditor-toolbar-tool-bold' => 'Napuskol',
'wikieditor-toolbar-tool-bold-example' => 'Napuskol a testo',
'wikieditor-toolbar-tool-italic' => 'Agir-irig',
'wikieditor-toolbar-tool-italic-example' => 'Nakairig a testo',
- 'wikieditor-toolbar-tool-ilink' => 'Akin-uneg a panilpo',
+ 'wikieditor-toolbar-tool-ilink' => 'Akinuneg a panilpo',
'wikieditor-toolbar-tool-ilink-example' => 'Titulo ti panilpo',
- 'wikieditor-toolbar-tool-xlink' => 'Akinruar a panilpo (laglagipen ti http:// a prefix)',
+ 'wikieditor-toolbar-tool-xlink' => 'Akinruar a panilpo (laglagipen ti http:// a pasaruno)',
'wikieditor-toolbar-tool-xlink-example' => 'http://www.example.com titulo ti panilpo',
'wikieditor-toolbar-tool-link' => 'Panilpo',
'wikieditor-toolbar-tool-link-title' => 'Isengngat ti panilpo',
@@ -12220,7 +12629,7 @@ $messages['ilo'] = array(
'wikieditor-toolbar-tool-link-int-target-tooltip' => 'Titulo ti panid wenno URL',
'wikieditor-toolbar-tool-link-int-text' => 'Testo nga iparang:',
'wikieditor-toolbar-tool-link-int-text-tooltip' => 'Testo nga iparang',
- 'wikieditor-toolbar-tool-link-ext' => 'Idiay akin-uneg a panid ti sapot',
+ 'wikieditor-toolbar-tool-link-ext' => 'Idiay akinuneg a panid ti sapot',
'wikieditor-toolbar-tool-link-ext-target' => 'Isilpo ti URL:',
'wikieditor-toolbar-tool-link-ext-text' => 'Isilpo ti testo:',
'wikieditor-toolbar-tool-link-insert' => 'Isengngat ti panilpo',
@@ -12229,15 +12638,25 @@ $messages['ilo'] = array(
'wikieditor-toolbar-tool-link-int-target-status-notexists' => 'Awan ti panid',
'wikieditor-toolbar-tool-link-int-target-status-invalid' => 'Imbalido a titulo',
'wikieditor-toolbar-tool-link-int-target-status-external' => 'Kasilpo iti ruar',
- 'wikieditor-toolbar-tool-link-int-target-status-loading' => 'Kitkitaen no addaan ti panid...',
+ 'wikieditor-toolbar-tool-link-int-target-status-loading' => 'Kitkitaen no adda ti panid...',
'wikieditor-toolbar-tool-link-int-invalid' => 'Ti titulo a nainaganam ket imbalido.',
'wikieditor-toolbar-tool-link-lookslikeinternal' => 'Ti URL a nainaganam ket kasla naaramid a panilpo iti sabali a panid ti wiki.
-Kayatmo mga aramiden nga akin-uneg a panilpo?',
- 'wikieditor-toolbar-tool-link-lookslikeinternal-int' => 'Akin-uneg a panilpo',
+Kayatmo nga aramiden daytoy nga akinuneg a panilpo?',
+ 'wikieditor-toolbar-tool-link-lookslikeinternal-int' => 'Akinuneg a panilpo',
'wikieditor-toolbar-tool-link-lookslikeinternal-ext' => 'Kasilpo iti ruar',
- 'wikieditor-toolbar-tool-link-empty' => 'Awan ti inkabil mo a pakaisilpuan.',
+ 'wikieditor-toolbar-tool-link-empty' => 'Awan ti inkabilmo a pakaisilpuan.',
'wikieditor-toolbar-tool-file' => 'Naisengngat a papeles',
'wikieditor-toolbar-tool-file-example' => 'Kas pagarigan.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Isengngat ti papeles',
+ 'wikieditor-toolbar-file-target' => 'Nagan ti papeles:',
+ 'wikieditor-toolbar-file-caption' => 'Maisurat:',
+ 'wikieditor-toolbar-file-size' => 'Kadakkel:',
+ 'wikieditor-toolbar-file-float' => 'Ilinia:',
+ 'wikieditor-toolbar-file-default' => '(kasisigud)',
+ 'wikieditor-toolbar-file-format' => 'Pormat:',
+ 'wikieditor-toolbar-file-format-none' => 'awan',
+ 'wikieditor-toolbar-tool-file-insert' => 'Isengngat',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Ukasen',
'wikieditor-toolbar-tool-reference' => 'Pinagibasaran',
'wikieditor-toolbar-tool-reference-example' => 'Isengngat ti paammo ti baba a testo ditoy',
'wikieditor-toolbar-tool-reference-cancel' => 'Ukasen',
@@ -12245,7 +12664,7 @@ Kayatmo mga aramiden nga akin-uneg a panilpo?',
'wikieditor-toolbar-tool-reference-insert' => 'Isengngat',
'wikieditor-toolbar-tool-reference-text' => 'Testo ti pinagibasaran',
'wikieditor-toolbar-tool-signature' => 'Pirma, petsa ken oras',
- 'wikieditor-toolbar-section-advanced' => 'Antenamo',
+ 'wikieditor-toolbar-section-advanced' => 'Napasayaat',
'wikieditor-toolbar-tool-heading' => 'Paulo',
'wikieditor-toolbar-tool-heading-1' => 'Agpang 1',
'wikieditor-toolbar-tool-heading-2' => 'Agpang 2',
@@ -12261,7 +12680,7 @@ Kayatmo mga aramiden nga akin-uneg a panilpo?',
'wikieditor-toolbar-tool-indent' => 'Lennekan',
'wikieditor-toolbar-tool-indent-example' => 'Nalennekan a linia',
'wikieditor-toolbar-tool-nowiki' => 'Saan a pormaen a kas wiki',
- 'wikieditor-toolbar-tool-nowiki-example' => 'Mangisuldong iti saan a nabuklan a testo ditoy',
+ 'wikieditor-toolbar-tool-nowiki-example' => 'Mangisuldong ti saan a nabuklan a testo ditoy',
'wikieditor-toolbar-tool-redirect' => 'Baw-ing',
'wikieditor-toolbar-tool-redirect-example' => 'Nagan ti puntaan a panid',
'wikieditor-toolbar-tool-big' => 'Dakkel',
@@ -12283,64 +12702,66 @@ $1:Example.jpg|Naisurat2',
! paulo 2
! paulo 3
|-
-| aray 1, cell 1
-| aray 1, cell 2
-| aray 1, cell 3
+| aray 1, selula 1
+| aray 1, selula 2
+| aray 1, selula 3
|-
-| aray 2, cell 1
-| aray 2, cell 2
-| aray 2, cell 3',
- 'wikieditor-toolbar-tool-table-example-cell-text' => 'Testo ti cell',
+| aray 2, selula 1
+| aray 2, selula 2
+| aray 2, selula 3',
+ 'wikieditor-toolbar-tool-table-example-cell-text' => 'Testo ti selula',
'wikieditor-toolbar-tool-table-example-header' => 'Testo ti paulo',
'wikieditor-toolbar-tool-table-title' => 'Isengngat ti tabla',
- 'wikieditor-toolbar-tool-table-dimensions-rows' => 'Ar-aray:',
- 'wikieditor-toolbar-tool-table-dimensions-columns' => 'Tuk-tukol:',
+ 'wikieditor-toolbar-tool-table-dimensions-rows' => 'Ar-aray',
+ 'wikieditor-toolbar-tool-table-dimensions-columns' => 'Binnatong',
'wikieditor-toolbar-tool-table-dimensions-header' => 'Agnayon to paulo nga aray',
- 'wikieditor-toolbar-tool-table-wikitable' => 'Estilo nga addaan kadagiti pagbeddengan',
+ 'wikieditor-toolbar-tool-table-wikitable' => 'Estilo nga adda kadagiti pagbeddengan',
'wikieditor-toolbar-tool-table-sortable' => 'Aramiden ti tabla tapno mabalin a mailasin',
'wikieditor-toolbar-tool-table-example' => 'Kas pagarigan',
'wikieditor-toolbar-tool-table-preview' => 'Ipadas',
'wikieditor-toolbar-tool-table-insert' => 'Isengngat',
'wikieditor-toolbar-tool-table-cancel' => 'Ukasen',
- 'wikieditor-toolbar-tool-table-toomany' => 'Ti agisengngat ti tabla nga addan ti adadu pay ngem $1 a dagiti sell ket saan a mabalin iti daytoy a pagsarsarita',
- 'wikieditor-toolbar-tool-table-invalidnumber' => 'Saan ka pay a nakaikabil ti umisu a numero iti ar-aray wenno tuk-tukol.',
- 'wikieditor-toolbar-tool-table-zero' => 'Saan mo a mabalin ti agisengngat ti tabla nga addan ti sero nga ar-aray wenno tuk-tukol.',
+ 'wikieditor-toolbar-tool-table-toomany' => 'Ti panagisengngat ti tabla nga adda ti adadu ngem $1 a selula ket saan a mabalin iti daytoy a pagsaritaan.',
+ 'wikieditor-toolbar-tool-table-invalidnumber' => 'Saan ka pay a nakaikabil ti umisu a numero iti ar-aray wenno binnatong.',
+ 'wikieditor-toolbar-tool-table-zero' => 'Saan mo a mabalin ti agisengngat ti tabla nga adda ti sero nga ar-aray wenno binnatong.',
'wikieditor-toolbar-tool-replace' => 'Agbiruk ken sukatan',
'wikieditor-toolbar-tool-replace-title' => 'Agbiruk ken sukatan',
'wikieditor-toolbar-tool-replace-search' => 'Biruken iti:',
'wikieditor-toolbar-tool-replace-replace' => 'Sukatan iti:',
'wikieditor-toolbar-tool-replace-case' => 'Agpada a kaso',
- 'wikieditor-toolbar-tool-replace-regex' => 'Kasuen ti biruken a kuerdas a kasla kadawyan a panangisao',
+ 'wikieditor-toolbar-tool-replace-regex' => 'Tratuen ti biruken a kuerdas a kasla kadawyan a panangisao',
'wikieditor-toolbar-tool-replace-button-findnext' => 'Sapulen ti sumaruno',
'wikieditor-toolbar-tool-replace-button-replace' => 'Sukatan',
'wikieditor-toolbar-tool-replace-button-replaceall' => 'Sukatan amin',
'wikieditor-toolbar-tool-replace-close' => 'Irikep',
- 'wikieditor-toolbar-tool-replace-nomatch' => 'Ti panagbiruk mo ket awan napada na.',
+ 'wikieditor-toolbar-tool-replace-nomatch' => 'Ti panagbirukmo ket awan ti napadana.',
'wikieditor-toolbar-tool-replace-success' => '$1 ti naaramid a nasukatan.',
- 'wikieditor-toolbar-tool-replace-emptysearch' => 'Awan ti ikabil mo a biruken.',
- 'wikieditor-toolbar-tool-replace-invalidregex' => 'Ti kadawyan a panangisao nga inkabil mo ket imbalido: $1',
+ 'wikieditor-toolbar-tool-replace-emptysearch' => 'Awan ti inkabilmo a biruken.',
+ 'wikieditor-toolbar-tool-replace-invalidregex' => 'Ti kadawyan a panangisao nga inkabilmo ket imbalido: $1',
'wikieditor-toolbar-section-characters' => 'Dagiti naipangpangruna a karakter',
- 'wikieditor-toolbar-characters-page-latin' => 'Latino',
- 'wikieditor-toolbar-characters-page-latinextended' => 'Latino napaatiddog',
+ 'wikieditor-toolbar-characters-page-latin' => 'Latin',
+ 'wikieditor-toolbar-characters-page-latinextended' => 'Latin napaatiddog',
'wikieditor-toolbar-characters-page-ipa' => 'IPA',
'wikieditor-toolbar-characters-page-symbols' => 'Dagiti simbolo',
'wikieditor-toolbar-characters-page-greek' => 'Griego',
- 'wikieditor-toolbar-characters-page-cyrillic' => 'Kiriliko',
+ 'wikieditor-toolbar-characters-page-cyrillic' => 'Siriliko',
'wikieditor-toolbar-characters-page-arabic' => 'Arabiko',
'wikieditor-toolbar-characters-page-arabicextended' => 'Arabiko a napaatiddog',
'wikieditor-toolbar-characters-page-persian' => 'Persiano',
'wikieditor-toolbar-characters-page-hebrew' => 'Hebreo',
'wikieditor-toolbar-characters-page-bangla' => 'Bangla',
+ 'wikieditor-toolbar-characters-page-tamil' => 'Tamil',
'wikieditor-toolbar-characters-page-telugu' => 'Telugu',
'wikieditor-toolbar-characters-page-sinhala' => 'Sinhala',
'wikieditor-toolbar-characters-page-gujarati' => 'Gujarati',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'Devanagari',
'wikieditor-toolbar-characters-page-thai' => 'Thai',
'wikieditor-toolbar-characters-page-lao' => 'Lao',
'wikieditor-toolbar-characters-page-khmer' => 'Khmer',
'wikieditor-toolbar-section-help' => 'Tulong',
- 'wikieditor-toolbar-help-heading-description' => 'Deskripsion',
- 'wikieditor-toolbar-help-heading-syntax' => 'Ania a kita',
- 'wikieditor-toolbar-help-heading-result' => 'Ania ti maalam',
+ 'wikieditor-toolbar-help-heading-description' => 'Panagipalpalawag',
+ 'wikieditor-toolbar-help-heading-syntax' => 'Ti imakiniliam',
+ 'wikieditor-toolbar-help-heading-result' => 'Ti maalam',
'wikieditor-toolbar-help-page-format' => 'Panagporma',
'wikieditor-toolbar-help-page-link' => 'Dagiti panilpo',
'wikieditor-toolbar-help-page-heading' => 'Dagiti paulo',
@@ -12352,12 +12773,12 @@ $1:Example.jpg|Naisurat2',
'wikieditor-toolbar-help-content-italic-syntax' => "''Naka-irig a testo''",
'wikieditor-toolbar-help-content-italic-result' => '<em>Naka-irig a testo</em>',
'wikieditor-toolbar-help-content-bold-description' => 'Napuskol',
- 'wikieditor-toolbar-help-content-bold-syntax' => "'''Napuskol a teksto'''",
+ 'wikieditor-toolbar-help-content-bold-syntax' => "'''Napuskol a testo'''",
'wikieditor-toolbar-help-content-bold-result' => '<strong>Napuskol a testo</strong>',
'wikieditor-toolbar-help-content-bolditalic-description' => 'Napuskol &amp; nakairig',
'wikieditor-toolbar-help-content-bolditalic-syntax' => "'''''Napuskol &amp; nakairig a testo'''''",
'wikieditor-toolbar-help-content-bolditalic-result' => '<strong><em>Napuskol &amp; nakairig a testo</em></strong>',
- 'wikieditor-toolbar-help-content-ilink-description' => 'Akin-uneg a panilpo',
+ 'wikieditor-toolbar-help-content-ilink-description' => 'Akinuneg a panilpo',
'wikieditor-toolbar-help-content-ilink-syntax' => '[[Titulo ti panid|Etiketa ti panilpo]]<br />[[Titulo ti panid]]',
'wikieditor-toolbar-help-content-ilink-result' => "<a href='#'>Etiketa ti panilpo</a><br /><a href='#'>Titulo ti panid</a>",
'wikieditor-toolbar-help-content-xlink-description' => 'Kasilpo iti ruar',
@@ -12383,18 +12804,18 @@ $1:Example.jpg|Naisurat2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Ilista ti banag</li><li>Ilista ti banag</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Naisengngat a papeles',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Naisurat a testo]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Naisurat a testo' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Padakkelen' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Naisurat a testo</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Naisurat a testo' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Padakkelen' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Naisurat a testo</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Pinagibasaran',
'wikieditor-toolbar-help-content-reference-syntax' => 'Testo ti panid.&lt;ref name="test"&gt;[http://www.example.org Testo ti panilpo], nainayon a testo.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Testo ti panid.<sup><a href='#'>[1]</a></sup>",
- 'wikieditor-toolbar-help-content-rereference-description' => 'Nainayon a panagusar ti agpada pinagibasaran',
+ 'wikieditor-toolbar-help-content-rereference-description' => 'Nainayon a panagusar ti kapada a pinagibasaran',
'wikieditor-toolbar-help-content-rereference-result' => "Testo ti panid.<sup><a href='#'>[1]</a></sup>",
'wikieditor-toolbar-help-content-showreferences-description' => 'Iparang dagiti pinagibasaran',
'wikieditor-toolbar-help-content-showreferences-result' => "<ol class='references'><li id='cite_note-test-0'><b><a title='' href='#'>^</a></b> <a rel='nofollow' title='http://www.example.org' class='external text' href='#'>Testo ti panilpo</a>, nainayon a testo.</li></ol>",
- 'wikieditor-toolbar-help-content-signaturetimestamp-description' => 'Ti pirmam nga addaan ti oras ken petsa',
- 'wikieditor-toolbar-help-content-signaturetimestamp-result' => "<a href='#' title='{{#special:mypage}}'>Nagan ti agar-aramat</a> (<a href='#' title='{{#special:mytalk}}'>talk</a>) 15:54, 10 Hunio 2009 (UTC)",
+ 'wikieditor-toolbar-help-content-signaturetimestamp-description' => 'Ti pirmam nga addan ti oras ken petsa',
+ 'wikieditor-toolbar-help-content-signaturetimestamp-result' => "<a href='#' title='{{#special:mypage}}'>Nagan ti agar-aramat</a> (<a href='#' title='{{#special:mytalk}}'>tungtungan</a>) 15:54, 10 Hunio 2009 (UTC)",
'wikieditor-toolbar-help-content-signature-description' => 'Pirma',
- 'wikieditor-toolbar-help-content-signature-result' => "<a href='#' title='{{#special:mypage}}'>Nagan ti agar-aramat</a> (<a href='#' title='{{#special:mytalk}}'>patang</a>)",
+ 'wikieditor-toolbar-help-content-signature-result' => "<a href='#' title='{{#special:mypage}}'>Nagan ti agar-aramat</a> (<a href='#' title='{{#special:mytalk}}'>tungtungan</a>)",
'wikieditor-toolbar-help-content-indent-description' => 'Lennekan',
'wikieditor-toolbar-help-content-indent-syntax' => 'Kadawyan a testo<br />:Nalennekan a testo<br />::Nalennekan a testo',
'wikieditor-toolbar-help-content-indent-result' => 'Kadawyan a testo<dl><dd>Nalennekan a testo<dl><dd>Nalennekan a testo</dd></dl></dd></dl>',
@@ -12480,7 +12901,7 @@ $messages['io'] = array(
'wikieditor-toolbar-help-content-signature-description' => 'Signaturo',
);
-/** Icelandic (Íslenska)
+/** Icelandic (íslenska)
* @author Krun
* @author Maxí
* @author Snævar
@@ -12488,11 +12909,14 @@ $messages['io'] = array(
$messages['is'] = array(
'wikieditor-wikitext-tab' => 'Wiki-texti',
'wikieditor-loading' => 'Hleður...',
+ 'wikieditor-preview-preference' => 'Virkja forskoðun á samanburði síðna',
'wikieditor-preview-tab' => 'Forskoða',
'wikieditor-preview-changes-tab' => 'Breytingar',
'wikieditor-preview-loading' => 'Hleð...',
+ 'wikieditor-previewDialog-preference' => 'Virkja forskoðunar valmynd',
'wikieditor-previewDialog-tab' => 'Forskoða',
'wikieditor-previewDialog-loading' => 'Hleð...',
+ 'wikieditor-publish-preference' => 'Virkja skref-eftir-skref útgáfu',
'wikieditor-publish-button-publish' => 'Útgefa',
'wikieditor-publish-button-cancel' => 'Hætta við',
'wikieditor-publish-dialog-title' => 'Útgefa á {{SITENAME}}',
@@ -12501,10 +12925,17 @@ $messages['is'] = array(
'wikieditor-publish-dialog-watch' => 'Vakta þessa síðu',
'wikieditor-publish-dialog-publish' => 'Útgefa',
'wikieditor-publish-dialog-goback' => 'Fara til baka',
+ 'wikieditor-template-editor-preference' => 'Virkja eyðublaðs-stíl við breytingar á wiki sniðum',
+ 'wikieditor-template-editor-dialog-title' => 'Breyta sniði',
'wikieditor-template-editor-dialog-submit' => 'Uppfæra',
'wikieditor-template-editor-dialog-cancel' => 'Hætta við',
+ 'wikieditor-templates-preference' => 'Virkja fellilista í sniðum',
+ 'wikieditor-toc-preference' => 'Virkja valmynd fyrir efniskrá',
'wikieditor-toc-show' => 'Sýna efnisyfirlit',
'wikieditor-toc-hide' => 'Fela efnisyfirlit',
+ 'wikieditor-toolbar' => 'Breytingarstika',
+ 'wikieditor-toolbar-desc' => 'Breytingarstika með auknu notagildi',
+ 'wikieditor-toolbar-dialogs-preference' => 'Virkja valmynd fyrir innsetningu tengla, taflna og fleira',
'wikieditor-toolbar-hidesig' => 'Fela undirskriftar hnappinn á síðum í aðalnafnrými',
'wikieditor-toolbar-loading' => 'Hleð...',
'wikieditor-toolbar-tool-bold' => 'Feitletrað',
@@ -12527,7 +12958,7 @@ $messages['is'] = array(
'wikieditor-toolbar-tool-link-ext-text' => 'Texti tengils:',
'wikieditor-toolbar-tool-link-insert' => 'Settu inn tengil',
'wikieditor-toolbar-tool-link-cancel' => 'Hætta við',
- 'wikieditor-toolbar-tool-link-int-target-status-exists' => 'Síða er til',
+ 'wikieditor-toolbar-tool-link-int-target-status-exists' => 'Síðan er til',
'wikieditor-toolbar-tool-link-int-target-status-notexists' => 'Síðan er ekki til',
'wikieditor-toolbar-tool-link-int-target-status-invalid' => 'Ógildur titill',
'wikieditor-toolbar-tool-link-int-target-status-external' => 'Ytri tengill',
@@ -12540,6 +12971,15 @@ Viltu gera hana að innri tengli?',
'wikieditor-toolbar-tool-link-empty' => 'Þú slóst ekki inn neitt til að tengja í.',
'wikieditor-toolbar-tool-file' => 'Bæta við mynd',
'wikieditor-toolbar-tool-file-example' => 'Sýnishorn.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Setja inn skrá',
+ 'wikieditor-toolbar-file-target' => 'Skráarnafn:',
+ 'wikieditor-toolbar-file-caption' => 'Myndlýsing:',
+ 'wikieditor-toolbar-file-size' => 'Stærð:',
+ 'wikieditor-toolbar-file-float' => 'Jöfnun:',
+ 'wikieditor-toolbar-file-default' => '(sjálfgefið)',
+ 'wikieditor-toolbar-file-format' => 'Snið:',
+ 'wikieditor-toolbar-tool-file-insert' => 'Setja inn',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Hætta við',
'wikieditor-toolbar-tool-reference' => 'Tilvísanir',
'wikieditor-toolbar-tool-reference-example' => 'Settu tilvísunina hér',
'wikieditor-toolbar-tool-reference-cancel' => 'Hætta við',
@@ -12598,8 +13038,9 @@ $1:Example.jpg|Myndlýsing2',
'wikieditor-toolbar-tool-table-dimensions-rows' => 'Raðir',
'wikieditor-toolbar-tool-table-dimensions-columns' => 'Dálkar',
'wikieditor-toolbar-tool-table-dimensions-header' => 'Bæta titilröð við',
+ 'wikieditor-toolbar-tool-table-wikitable' => 'Móta með jöðrum',
'wikieditor-toolbar-tool-table-sortable' => 'Gera töfluna raðanlega',
- 'wikieditor-toolbar-tool-table-example' => 'Dæmi',
+ 'wikieditor-toolbar-tool-table-example' => 'Útlit',
'wikieditor-toolbar-tool-table-preview' => 'Forskoðun',
'wikieditor-toolbar-tool-table-insert' => 'Setja inn',
'wikieditor-toolbar-tool-table-cancel' => 'Hætta við',
@@ -12632,8 +13073,10 @@ $1:Example.jpg|Myndlýsing2',
'wikieditor-toolbar-characters-page-persian' => 'Persneskt',
'wikieditor-toolbar-characters-page-hebrew' => 'Hebreskt',
'wikieditor-toolbar-characters-page-bangla' => 'Bengalskt',
+ 'wikieditor-toolbar-characters-page-tamil' => 'Tamílska',
'wikieditor-toolbar-characters-page-telugu' => 'Telúgú',
'wikieditor-toolbar-characters-page-sinhala' => 'Sinhalskt',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'Devanagari',
'wikieditor-toolbar-characters-page-thai' => 'Taílenskt',
'wikieditor-toolbar-characters-page-lao' => 'Laoskt',
'wikieditor-toolbar-section-help' => 'Hjálp',
@@ -12682,7 +13125,7 @@ $1:Example.jpg|Myndlýsing2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Lista atriði</li><li>Lista atriði</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Bæta við mynd',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Myndlýsing]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Myndlýsing' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Stækka' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Myndlýsing</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Myndlýsing' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Stækka' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Myndlýsing</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Tilvísun',
'wikieditor-toolbar-help-content-reference-syntax' => 'Texti síðu.&lt;ref name="test"&gt;[http://www.example.org Titill síðu], Skoðað 1. janúar 2010.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Texti síðu.<sup><a href='#'>[1]</a></sup>",
@@ -12699,9 +13142,10 @@ $1:Example.jpg|Myndlýsing2',
'wikieditor-toolbar-help-content-indent-result' => 'Venjulegur texti<dl><dd>Inndreginn texti<dl><dd>Inndreginn texti</dd></dl></dd></dl>',
);
-/** Italian (Italiano)
+/** Italian (italiano)
* @author Aushulz
* @author Beta16
+ * @author Darth Kule
* @author F. Cosoleto
* @author Gianfranco
* @author Gliu
@@ -12719,10 +13163,10 @@ $messages['it'] = array(
'wikieditor-preview-preference' => 'Abilita anteprima laterale',
'wikieditor-preview-tab' => 'Anteprima',
'wikieditor-preview-changes-tab' => 'Modifiche',
- 'wikieditor-preview-loading' => 'Caricamento...',
+ 'wikieditor-preview-loading' => 'Caricamento in corso...',
'wikieditor-previewDialog-preference' => 'Abilita la finestra di dialogo di anteprima',
'wikieditor-previewDialog-tab' => 'Anteprima',
- 'wikieditor-previewDialog-loading' => 'Caricamento...',
+ 'wikieditor-previewDialog-loading' => 'Caricamento in corso...',
'wikieditor-publish-preference' => 'Abilita pubblicazione passo dopo passo',
'wikieditor-publish-button-publish' => 'Pubblica',
'wikieditor-publish-button-cancel' => 'Annulla',
@@ -12779,6 +13223,16 @@ Vuoi che sia un link interno?",
'wikieditor-toolbar-tool-link-empty' => 'Non hai indicato la destinazione del collegamento.',
'wikieditor-toolbar-tool-file' => 'File incorporato',
'wikieditor-toolbar-tool-file-example' => 'Esempio.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Inserisci file',
+ 'wikieditor-toolbar-file-target' => 'Nome file:',
+ 'wikieditor-toolbar-file-caption' => 'Didascalia:',
+ 'wikieditor-toolbar-file-size' => 'Dimensione:',
+ 'wikieditor-toolbar-file-float' => 'Allineamento:',
+ 'wikieditor-toolbar-file-default' => '(predefinito)',
+ 'wikieditor-toolbar-file-format' => 'Formato:',
+ 'wikieditor-toolbar-file-format-none' => 'nessuno',
+ 'wikieditor-toolbar-tool-file-insert' => 'Inserisci',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Annulla',
'wikieditor-toolbar-tool-reference' => 'Nota',
'wikieditor-toolbar-tool-reference-example' => 'Inserire qui il testo della nota',
'wikieditor-toolbar-tool-reference-cancel' => 'Annulla',
@@ -12926,7 +13380,7 @@ $1:Esempio.jpg|Didascalia2',
'wikieditor-toolbar-help-content-olist-result' => "<ol><li>Elemento dell'elenco</li><li>Elemento dell'elenco</li></ol>",
'wikieditor-toolbar-help-content-file-description' => 'File incorporato',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Esempio.png|thumb|Testo della didascalia]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Testo della didascalia</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Testo della didascalia</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Nota',
'wikieditor-toolbar-help-content-reference-syntax' => 'Testo della pagina.&lt;ref name="test"&gt;[http://www.example.org Testo del collegamento], testo aggiuntivo.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Testo della pagina.<sup><a href='#'>[1]</a></sup>",
@@ -12944,6 +13398,7 @@ $1:Esempio.jpg|Didascalia2',
);
/** Japanese (日本語)
+ * @author 2nd-player
* @author Aotake
* @author Fryed-peach
* @author Hosiryuhosi
@@ -12979,7 +13434,7 @@ $messages['ja'] = array(
'wikieditor-template-editor-dialog-submit' => '更新',
'wikieditor-template-editor-dialog-cancel' => '中止',
'wikieditor-templates-preference' => 'テンプレート折り畳みを有効にする',
- 'wikieditor-toc-preference' => '編集用目次を有効にする',
+ 'wikieditor-toc-preference' => '編集画面の目次を有効にする',
'wikieditor-toc-show' => '目次を表示',
'wikieditor-toc-hide' => '目次を非表示',
'wikieditor-toolbar' => '編集ツールバー',
@@ -13005,7 +13460,7 @@ $messages['ja'] = array(
'wikieditor-toolbar-tool-link-int-text-tooltip' => '表示する文字列を入力してください',
'wikieditor-toolbar-tool-link-ext' => '外部のウェブページへ',
'wikieditor-toolbar-tool-link-ext-target' => 'リンクURL:',
- 'wikieditor-toolbar-tool-link-ext-text' => 'リンク文:',
+ 'wikieditor-toolbar-tool-link-ext-text' => 'リンク テキスト:',
'wikieditor-toolbar-tool-link-insert' => 'リンク挿入',
'wikieditor-toolbar-tool-link-cancel' => '中止',
'wikieditor-toolbar-tool-link-int-target-status-exists' => 'ページは存在します',
@@ -13021,6 +13476,16 @@ $messages['ja'] = array(
'wikieditor-toolbar-tool-link-empty' => 'リンクすべき入力が与えられていません。',
'wikieditor-toolbar-tool-file' => '埋め込みファイル',
'wikieditor-toolbar-tool-file-example' => '例.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'ファイルの挿入',
+ 'wikieditor-toolbar-file-target' => 'ファイル名:',
+ 'wikieditor-toolbar-file-caption' => 'キャプション:',
+ 'wikieditor-toolbar-file-size' => 'サイズ:',
+ 'wikieditor-toolbar-file-float' => '配置:',
+ 'wikieditor-toolbar-file-default' => '(既定)',
+ 'wikieditor-toolbar-file-format' => '形式:',
+ 'wikieditor-toolbar-file-format-none' => 'なし',
+ 'wikieditor-toolbar-tool-file-insert' => 'ファイル挿入',
+ 'wikieditor-toolbar-tool-file-cancel' => '中止',
'wikieditor-toolbar-tool-reference' => '注釈',
'wikieditor-toolbar-tool-reference-example' => '注釈文をここに入力してください',
'wikieditor-toolbar-tool-reference-cancel' => '中止',
@@ -13045,7 +13510,7 @@ $messages['ja'] = array(
'wikieditor-toolbar-tool-indent-example' => '字下げされた行',
'wikieditor-toolbar-tool-nowiki' => 'ウィキ書式なし',
'wikieditor-toolbar-tool-nowiki-example' => 'ここにマークアップを無効にするテキストを入力します',
- 'wikieditor-toolbar-tool-redirect' => 'リダイレクト',
+ 'wikieditor-toolbar-tool-redirect' => '転送',
'wikieditor-toolbar-tool-redirect-example' => '転送先のページ名',
'wikieditor-toolbar-tool-big' => '大',
'wikieditor-toolbar-tool-big-example' => '大きなテキスト',
@@ -13118,6 +13583,7 @@ $1:Example.jpg|キャプション2',
'wikieditor-toolbar-characters-page-telugu' => 'テルグ文字',
'wikieditor-toolbar-characters-page-sinhala' => 'シンハラ文字',
'wikieditor-toolbar-characters-page-gujarati' => 'グジャラート文字',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'デーヴァナーガリー文字',
'wikieditor-toolbar-characters-page-thai' => 'タイ文字',
'wikieditor-toolbar-characters-page-lao' => 'ラオス文字',
'wikieditor-toolbar-characters-page-khmer' => 'クメール文字',
@@ -13167,7 +13633,7 @@ $1:Example.jpg|キャプション2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>箇条書き項目</li><li>箇条書き項目</li></ol>',
'wikieditor-toolbar-help-content-file-description' => '埋め込みファイル',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|キャプション]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='キャプション' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>キャプション</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='キャプション' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='拡大' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>キャプション</div></div>",
'wikieditor-toolbar-help-content-reference-description' => '注釈',
'wikieditor-toolbar-help-content-reference-syntax' => 'ページ本文&lt;ref name="test"&gt;[http://www.example.org リンクタイトル]、追加テキスト&lt;/ref&gt;。',
'wikieditor-toolbar-help-content-reference-result' => "ページ本文<sup><a href='#'>[1]</a></sup>。",
@@ -13196,9 +13662,243 @@ $messages['jbo'] = array(
/** Javanese (Basa Jawa)
* @author Meursault2004
+ * @author NoiX180
*/
$messages['jv'] = array(
+ 'wikieditor' => 'Antarmuka panyuntingan tèks wiki canggih',
+ 'wikieditor-desc' => 'Nyadhiyakaké antarmuka tèks wiki sing bisa didhawakaké lan modul-modul sing nyadhiyakaké akèh piranti',
+ 'wikieditor-wikitext-tab' => 'TèksWiki',
+ 'wikieditor-loading' => 'Ngemot...',
+ 'wikieditor-preview-preference' => 'Urubaké pratayang sisi mbaka sisi',
+ 'wikieditor-preview-tab' => 'Pratayang',
+ 'wikieditor-preview-changes-tab' => 'Owah-owahan',
+ 'wikieditor-preview-loading' => 'Ngemot...',
+ 'wikieditor-previewDialog-preference' => 'Urubaké dialog pratayang',
+ 'wikieditor-previewDialog-tab' => 'Pratayang',
+ 'wikieditor-previewDialog-loading' => 'Ngemot...',
+ 'wikieditor-publish-preference' => 'Urubaké panerbitan tahap mbaka tahap',
+ 'wikieditor-publish-button-publish' => 'Terbitaké',
'wikieditor-publish-button-cancel' => 'Batalna',
+ 'wikieditor-publish-dialog-title' => 'Terbitaké nèng {{SITENAME}}',
+ 'wikieditor-publish-dialog-summary' => 'Sunting ringkesan (ringkes njelasaké owahané Sampéyan):',
+ 'wikieditor-publish-dialog-minor' => 'Suntingan cilik',
+ 'wikieditor-publish-dialog-watch' => 'Awasi kaca iki',
+ 'wikieditor-publish-dialog-publish' => 'Terbitaké',
+ 'wikieditor-publish-dialog-goback' => 'Mbalik',
+ 'wikieditor-template-editor-preference' => 'Urubaké panyuntingan adhasar pormulir kanggo témplat wiki',
+ 'wikieditor-template-editor-dialog-title' => 'Sunting tèmplat',
+ 'wikieditor-template-editor-dialog-submit' => 'Anyari',
+ 'wikieditor-template-editor-dialog-cancel' => 'Batal',
+ 'wikieditor-templates-preference' => 'Urubaké piranti nutup témplat',
+ 'wikieditor-toc-preference' => 'Urubaké daptar isi sing mayar diarahaké',
+ 'wikieditor-toc-show' => 'Tuduhaké isi',
+ 'wikieditor-toc-hide' => 'Dhelikaké isi',
+ 'wikieditor-toolbar' => 'Bilah prangkat panyuntingan',
+ 'wikieditor-toolbar-desc' => 'Sunting bilah prangkat kaca mawa kagunan canggih',
+ 'wikieditor-toolbar-preference' => 'Urubaké bilah prangkat panyuntingan canggih',
+ 'wikieditor-toolbar-dialogs-preference' => 'Urubaké dialog kanggo nglebokaké pranala, tabèl lan liyané',
+ 'wikieditor-toolbar-hidesig' => 'Dhelikaké pencetan tapak asta saka kaca-kaca nèng bilik jeneng utama',
+ 'wikieditor-toolbar-loading' => 'Ngemot...',
+ 'wikieditor-toolbar-tool-bold' => 'Kandel',
+ 'wikieditor-toolbar-tool-bold-example' => 'Tèks kandel',
+ 'wikieditor-toolbar-tool-italic' => 'Miring',
+ 'wikieditor-toolbar-tool-italic-example' => 'Tèks miring',
+ 'wikieditor-toolbar-tool-ilink' => 'Pranala njero',
+ 'wikieditor-toolbar-tool-ilink-example' => 'Judhul pranala',
+ 'wikieditor-toolbar-tool-xlink' => 'Pranala njaba (èling ater-ater http://)',
+ 'wikieditor-toolbar-tool-xlink-example' => 'http://www.conto.com judhul pranala',
+ 'wikieditor-toolbar-tool-link' => 'Pranala',
+ 'wikieditor-toolbar-tool-link-title' => 'Lebokaké pranala',
+ 'wikieditor-toolbar-tool-link-int' => 'Nuju kaca wiki',
+ 'wikieditor-toolbar-tool-link-int-target' => 'Kaca utawa URL patujon:',
+ 'wikieditor-toolbar-tool-link-int-target-tooltip' => 'Judhul utawa URL kaca',
+ 'wikieditor-toolbar-tool-link-int-text' => 'Tèks sing tampil:',
+ 'wikieditor-toolbar-tool-link-int-text-tooltip' => 'Tèks sing ditampilaké',
+ 'wikieditor-toolbar-tool-link-ext' => 'Nuju kaca wèb njaba',
+ 'wikieditor-toolbar-tool-link-ext-target' => 'URL pranala:',
+ 'wikieditor-toolbar-tool-link-ext-text' => 'Tèks pranala:',
+ 'wikieditor-toolbar-tool-link-insert' => 'Lebokaké pranala',
+ 'wikieditor-toolbar-tool-link-cancel' => 'Batal',
+ 'wikieditor-toolbar-tool-link-int-target-status-exists' => 'Kacané ana',
+ 'wikieditor-toolbar-tool-link-int-target-status-notexists' => 'Kaca ora ana',
+ 'wikieditor-toolbar-tool-link-int-target-status-invalid' => 'Judhul ora sah',
+ 'wikieditor-toolbar-tool-link-int-target-status-external' => 'Pranala njaba',
+ 'wikieditor-toolbar-tool-link-int-target-status-loading' => 'Mriksa anané kaca...',
+ 'wikieditor-toolbar-tool-link-int-invalid' => 'Judhul sing Sampéyan awèhaké ora sah.',
+ 'wikieditor-toolbar-tool-link-lookslikeinternal' => 'URL sing Sampéyan awèhaké kayané pranala nuju kaca wiki liya.
+Apa Sampéyan arep ndadékaé kuwi pranala njero?',
+ 'wikieditor-toolbar-tool-link-lookslikeinternal-int' => 'Pranala njero',
+ 'wikieditor-toolbar-tool-link-lookslikeinternal-ext' => 'Pranala njaba',
+ 'wikieditor-toolbar-tool-link-empty' => 'Sampéyan ora nglebokaké apa-apa kanggo ngubungaké.',
+ 'wikieditor-toolbar-tool-file' => 'Berkas kasisip',
+ 'wikieditor-toolbar-tool-file-example' => 'Conto.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Lebokaké berkas',
+ 'wikieditor-toolbar-file-target' => 'Jeneng berkas:',
+ 'wikieditor-toolbar-file-caption' => 'Katrangan:',
+ 'wikieditor-toolbar-file-size' => 'Gedhéné:',
+ 'wikieditor-toolbar-file-float' => 'Rata:',
+ 'wikieditor-toolbar-file-default' => '(gawan)',
+ 'wikieditor-toolbar-file-format' => 'Pormat:',
+ 'wikieditor-toolbar-tool-file-insert' => 'Lebokaké',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Batal',
+ 'wikieditor-toolbar-tool-reference' => 'Reperènsi',
+ 'wikieditor-toolbar-tool-reference-example' => 'Lebokaké tèks cathetan sikil kéné',
+ 'wikieditor-toolbar-tool-reference-cancel' => 'Batal',
+ 'wikieditor-toolbar-tool-reference-title' => 'Lebokaké reperènsi',
+ 'wikieditor-toolbar-tool-reference-insert' => 'Lebokaké',
+ 'wikieditor-toolbar-tool-reference-text' => 'Tèks reperènsi',
+ 'wikieditor-toolbar-tool-signature' => 'Tapak asta lan cap wektu',
+ 'wikieditor-toolbar-section-advanced' => 'Canggih',
+ 'wikieditor-toolbar-tool-heading' => 'Sirah',
+ 'wikieditor-toolbar-tool-heading-1' => 'Undhakan 1',
+ 'wikieditor-toolbar-tool-heading-2' => 'Undhakan 2',
+ 'wikieditor-toolbar-tool-heading-3' => 'Undhakan 3',
+ 'wikieditor-toolbar-tool-heading-4' => 'Undhakan 4',
+ 'wikieditor-toolbar-tool-heading-5' => 'Undhakan 5',
+ 'wikieditor-toolbar-tool-heading-example' => 'Tèks sirah',
+ 'wikieditor-toolbar-group-format' => 'Pormat',
+ 'wikieditor-toolbar-tool-ulist' => 'Daptar coblos',
+ 'wikieditor-toolbar-tool-ulist-example' => 'Barang daptar coblos',
+ 'wikieditor-toolbar-tool-olist' => 'Daptar angka',
+ 'wikieditor-toolbar-tool-olist-example' => 'Barang daptar angka',
+ 'wikieditor-toolbar-tool-indent' => 'Legokan',
+ 'wikieditor-toolbar-tool-indent-example' => 'Garis legok',
+ 'wikieditor-toolbar-tool-nowiki' => 'Ora ana pamormatan wiki',
+ 'wikieditor-toolbar-tool-nowiki-example' => 'Lebokaké tèks non-pormat kéné',
+ 'wikieditor-toolbar-tool-redirect' => 'Alihaké',
+ 'wikieditor-toolbar-tool-redirect-example' => 'Jeneng kaca patujon',
+ 'wikieditor-toolbar-tool-big' => 'Gedhé',
+ 'wikieditor-toolbar-tool-big-example' => 'Tèks gedhé',
+ 'wikieditor-toolbar-tool-small' => 'Cilik',
+ 'wikieditor-toolbar-tool-small-example' => 'Tèks cilik',
+ 'wikieditor-toolbar-tool-superscript' => 'Pangkat',
+ 'wikieditor-toolbar-tool-superscript-example' => 'Tèks pangkat',
+ 'wikieditor-toolbar-tool-subscript' => 'Subskrip',
+ 'wikieditor-toolbar-tool-subscript-example' => 'Tèks subskrip',
+ 'wikieditor-toolbar-group-insert' => 'Lebokaké',
+ 'wikieditor-toolbar-tool-gallery' => 'Galèri gambar',
+ 'wikieditor-toolbar-tool-gallery-example' => '$1:Conto.jpg|Katrangan1
+$1:Conto.jpg|Katrangan2',
+ 'wikieditor-toolbar-tool-newline' => 'Larik anyar',
+ 'wikieditor-toolbar-tool-table' => 'Tabèl',
+ 'wikieditor-toolbar-tool-table-example-old' => '-
+! Irah-irahan 1
+! Irah-irahan 2
+! Irah-irahan 3
+|-
+| larik 1, sèl 1
+| larik 1, sèl 2
+| larik 1, sèl 3
+|-
+| larik 2, sèl 1
+| larik 2, sèl 2
+| larik 2, sèl 3',
+ 'wikieditor-toolbar-tool-table-example-cell-text' => 'Tèks sèl',
+ 'wikieditor-toolbar-tool-table-example-header' => 'Tèks sirah',
+ 'wikieditor-toolbar-tool-table-title' => 'Lebokaké tabèl',
+ 'wikieditor-toolbar-tool-table-dimensions-rows' => 'Larik',
+ 'wikieditor-toolbar-tool-table-dimensions-columns' => 'Kolom',
+ 'wikieditor-toolbar-tool-table-dimensions-header' => 'Tambah larik sirah',
+ 'wikieditor-toolbar-tool-table-wikitable' => 'Gaya mawa watesan',
+ 'wikieditor-toolbar-tool-table-sortable' => 'Gawé tabèlé bisa diurutaké',
+ 'wikieditor-toolbar-tool-table-example' => 'Conto',
+ 'wikieditor-toolbar-tool-table-preview' => 'Pratayang',
+ 'wikieditor-toolbar-tool-table-insert' => 'Lebokaké',
+ 'wikieditor-toolbar-tool-table-cancel' => 'Batal',
+ 'wikieditor-toolbar-tool-table-toomany' => 'Nglebokaké tabèl mawa luwih saka $1 sèl ora dimungkinaké nganggo dialog iki.',
+ 'wikieditor-toolbar-tool-table-invalidnumber' => 'Sampéyan durung nglebokaké angka larik utawa kolom sing sah.',
+ 'wikieditor-toolbar-tool-table-zero' => 'Sampéyan ora bisa nglebokaké tabèl kanthi larik utawa kolom kosong.',
+ 'wikieditor-toolbar-tool-replace' => 'Golèk lan ganti',
+ 'wikieditor-toolbar-tool-replace-title' => 'Golèk lan ganti',
+ 'wikieditor-toolbar-tool-replace-search' => 'Golèki:',
+ 'wikieditor-toolbar-tool-replace-replace' => 'Ganti mawa:',
+ 'wikieditor-toolbar-tool-replace-case' => 'Cocokaké aksara',
+ 'wikieditor-toolbar-tool-replace-button-findnext' => 'Temokaké sabanjuré',
+ 'wikieditor-toolbar-tool-replace-button-replace' => 'Ganti',
+ 'wikieditor-toolbar-tool-replace-button-replaceall' => 'Ganti kabèh',
+ 'wikieditor-toolbar-tool-replace-close' => 'Tutup',
+ 'wikieditor-toolbar-tool-replace-nomatch' => 'Panggolèkan Sampéyan ora cocok karo apa waé.',
+ 'wikieditor-toolbar-tool-replace-success' => 'Nggawé $1 gantèn.',
+ 'wikieditor-toolbar-tool-replace-emptysearch' => 'Sampéyan ora nglebokaké apa-apa kanggo digolèki.',
+ 'wikieditor-toolbar-tool-replace-invalidregex' => 'Èkspresi biasa sing Sampéyan lebokaké ora sah: $1',
+ 'wikieditor-toolbar-section-characters' => 'Karakter kusus',
+ 'wikieditor-toolbar-characters-page-latin' => 'Latin',
+ 'wikieditor-toolbar-characters-page-latinextended' => 'Latin pepak',
+ 'wikieditor-toolbar-characters-page-ipa' => 'IPA',
+ 'wikieditor-toolbar-characters-page-symbols' => 'Simbol',
+ 'wikieditor-toolbar-characters-page-greek' => 'Yunani',
+ 'wikieditor-toolbar-characters-page-cyrillic' => 'Srilik',
+ 'wikieditor-toolbar-characters-page-arabic' => 'Arab',
+ 'wikieditor-toolbar-characters-page-arabicextended' => 'Arab pepak',
+ 'wikieditor-toolbar-characters-page-persian' => 'Persia',
+ 'wikieditor-toolbar-characters-page-hebrew' => 'Ibrani',
+ 'wikieditor-toolbar-characters-page-bangla' => 'Bengali',
+ 'wikieditor-toolbar-characters-page-tamil' => 'Tamil',
+ 'wikieditor-toolbar-characters-page-telugu' => 'Telugu',
+ 'wikieditor-toolbar-characters-page-sinhala' => 'Sinhala',
+ 'wikieditor-toolbar-characters-page-gujarati' => 'Gujarat',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'Dewanagari',
+ 'wikieditor-toolbar-characters-page-thai' => 'Thailand',
+ 'wikieditor-toolbar-characters-page-lao' => 'Lao',
+ 'wikieditor-toolbar-characters-page-khmer' => 'Khmer',
+ 'wikieditor-toolbar-section-help' => 'Pitulung',
+ 'wikieditor-toolbar-help-heading-description' => 'Wedharan',
+ 'wikieditor-toolbar-help-heading-syntax' => 'Sing Sampéyan tulis',
+ 'wikieditor-toolbar-help-heading-result' => 'Sing Sampéyan éntukaké',
+ 'wikieditor-toolbar-help-page-format' => 'Pormat',
+ 'wikieditor-toolbar-help-page-link' => 'Pranala',
+ 'wikieditor-toolbar-help-page-heading' => 'Irah-irahan',
+ 'wikieditor-toolbar-help-page-list' => 'Daptar',
+ 'wikieditor-toolbar-help-page-file' => 'Berkas',
+ 'wikieditor-toolbar-help-page-reference' => 'Reperènsi',
+ 'wikieditor-toolbar-help-page-discussion' => 'Guneman',
+ 'wikieditor-toolbar-help-content-italic-description' => 'Miring',
+ 'wikieditor-toolbar-help-content-italic-syntax' => "'''Tèks miring'''",
+ 'wikieditor-toolbar-help-content-italic-result' => '<em>Tèks miring</em>',
+ 'wikieditor-toolbar-help-content-bold-description' => 'Kandel',
+ 'wikieditor-toolbar-help-content-bold-syntax' => "'''Tèks kandel'''",
+ 'wikieditor-toolbar-help-content-bold-result' => '<strong>Tèks kandel</strong>',
+ 'wikieditor-toolbar-help-content-bolditalic-description' => 'Kandel &amp; miring',
+ 'wikieditor-toolbar-help-content-bolditalic-syntax' => "'''''Tèks kandel &amp; miring'''''",
+ 'wikieditor-toolbar-help-content-bolditalic-result' => '<strong><em>Tèks kandel &amp; miring</em></strong>',
+ 'wikieditor-toolbar-help-content-ilink-description' => 'Pranala njero',
+ 'wikieditor-toolbar-help-content-ilink-syntax' => '[[Judhul kaca|Labèl pranala]]<br />[[Judhul kaca]]',
+ 'wikieditor-toolbar-help-content-ilink-result' => "<a href='#'>Labèl pranala</a><br /><a href='#'>Judhul kaca</a>",
+ 'wikieditor-toolbar-help-content-xlink-description' => 'Pranala njaba',
+ 'wikieditor-toolbar-help-content-xlink-syntax' => '[http://www.conto.org Labèl pranala]<br />[http://www.conto.org]<br />http://www.conto.org',
+ 'wikieditor-toolbar-help-content-xlink-result' => "<a href='#' class='external'>Labèl pranala</a><br /><a href='#' class='external autonumber'>[1]</a><br /><a href='#' class='external'>http://www.conto.org</a>",
+ 'wikieditor-toolbar-help-content-heading2-description' => 'Irah-irahan undhak ka-2',
+ 'wikieditor-toolbar-help-content-heading2-syntax' => '== Tulisan irah-irahan ==',
+ 'wikieditor-toolbar-help-content-heading2-result' => '<h2>Tulisan irah-irahan</h2>',
+ 'wikieditor-toolbar-help-content-heading3-description' => 'Irah-irahan undhak ka-3',
+ 'wikieditor-toolbar-help-content-heading3-syntax' => '=== Tulisan irah-irahan ===',
+ 'wikieditor-toolbar-help-content-heading3-result' => '<h3>Tulisan irah-irahan</h3>',
+ 'wikieditor-toolbar-help-content-heading4-description' => 'Irah-irahan undhak ka-4',
+ 'wikieditor-toolbar-help-content-heading4-syntax' => '==== Tulisan irah-irahan ====',
+ 'wikieditor-toolbar-help-content-heading4-result' => '<h4>Tulisan irah-irahan</h4>',
+ 'wikieditor-toolbar-help-content-heading5-description' => 'Irah-irahan undhak ka-5',
+ 'wikieditor-toolbar-help-content-heading5-syntax' => '===== Tulisan irah-irahan =====',
+ 'wikieditor-toolbar-help-content-heading5-result' => '<h5>Tulisan irah-irahan</h5>',
+ 'wikieditor-toolbar-help-content-ulist-description' => 'Daptar poin',
+ 'wikieditor-toolbar-help-content-ulist-syntax' => '* Baranging daptar<br />* Baranging daptar',
+ 'wikieditor-toolbar-help-content-ulist-result' => '<ul><li>Baranging daptar</li><li>Baranging daptar</li></ul>',
+ 'wikieditor-toolbar-help-content-olist-description' => 'Daptar angka',
+ 'wikieditor-toolbar-help-content-olist-syntax' => '# Baranging daptar<br /># Baranging daptar',
+ 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Baranging daptar</li><li>Baranging daptar</li></ol>',
+ 'wikieditor-toolbar-help-content-file-description' => 'Berkas kasisipaké',
+ 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Conto.png|gambar|Tulisan katrangan]]',
+ 'wikieditor-toolbar-help-content-reference-description' => 'Rujukan',
+ 'wikieditor-toolbar-help-content-reference-syntax' => 'Tèks kaca.&lt;ref name="test"&gt;[http://www.conto.org Tèks pranala], tèks tambahan.&lt;/ref&gt;',
+ 'wikieditor-toolbar-help-content-reference-result' => "Tèks kaca.<sup><a href='#'>[1]</a></sup>",
+ 'wikieditor-toolbar-help-content-rereference-description' => 'Panganggoan tambahan saka rujukan sing padha',
+ 'wikieditor-toolbar-help-content-rereference-result' => "Tèks kaca.<sup><a href='#'>[1]</a></sup>",
+ 'wikieditor-toolbar-help-content-showreferences-description' => 'Tampilaké réferensi',
+ 'wikieditor-toolbar-help-content-showreferences-result' => "<ol class='references'><li id='cite_note-test-0'><b><a title='' href='#'>^</a></b> <a rel='nofollow' title='http://www.conto.org' class='external text' href='#'>Tèks pranala</a>, tèks tambahan.</li></ol>",
+ 'wikieditor-toolbar-help-content-signaturetimestamp-description' => 'Tapak asta lan cap wektu',
+ 'wikieditor-toolbar-help-content-signaturetimestamp-result' => "<a href='#' title='{{#special:mypage}}'>Panganggo</a> (<a href='#' title='{{#special:mytalk}}'>wicara</a>) 15:54, 10 Juni 2009 (UTC)",
+ 'wikieditor-toolbar-help-content-signature-description' => 'Tapak asta',
+ 'wikieditor-toolbar-help-content-signature-result' => "<a href='#' title='{{#special:mypage}}'>Panganggo</a> (<a href='#' title='{{#special:mytalk}}'>wicara</a>)",
+ 'wikieditor-toolbar-help-content-indent-description' => 'Indèn',
);
/** Georgian (ქართული)
@@ -13256,7 +13956,7 @@ $messages['ka'] = array(
'wikieditor-toolbar-tool-link-int' => 'ვიკი გვერდზე',
'wikieditor-toolbar-tool-link-int-target' => 'გვერდის სათაური:',
'wikieditor-toolbar-tool-link-int-target-tooltip' => 'გვერდის სახელი ან URL',
- 'wikieditor-toolbar-tool-link-int-text' => 'ჩვენებული ტექსტი:',
+ 'wikieditor-toolbar-tool-link-int-text' => 'ნაჩვენები ტექსტი:',
'wikieditor-toolbar-tool-link-int-text-tooltip' => 'საჩვენებელი ტექსტი',
'wikieditor-toolbar-tool-link-ext' => 'გარე ვებ-გვერდზე',
'wikieditor-toolbar-tool-link-ext-target' => 'URL ბმული:',
@@ -13275,6 +13975,15 @@ $messages['ka'] = array(
'wikieditor-toolbar-tool-link-empty' => 'თქვენ არ მიუთითეთ ბმული.',
'wikieditor-toolbar-tool-file' => 'ჩასმული ფაილი',
'wikieditor-toolbar-tool-file-example' => 'მაგალითი.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'ფაილის ჩასმა',
+ 'wikieditor-toolbar-file-target' => 'ფაილის სახელი:',
+ 'wikieditor-toolbar-file-caption' => 'წარწერა:',
+ 'wikieditor-toolbar-file-size' => 'ზომა:',
+ 'wikieditor-toolbar-file-default' => '(სტანდარტული)',
+ 'wikieditor-toolbar-file-format' => 'ფორმატი:',
+ 'wikieditor-toolbar-file-format-none' => 'არა',
+ 'wikieditor-toolbar-tool-file-insert' => 'ჩასმა',
+ 'wikieditor-toolbar-tool-file-cancel' => 'გაუქმება',
'wikieditor-toolbar-tool-reference' => 'მინიშნებები',
'wikieditor-toolbar-tool-reference-example' => 'ჩასვით მინიშნებების ტექსტი აქ',
'wikieditor-toolbar-tool-reference-cancel' => 'გაუქმება',
@@ -13422,7 +14131,7 @@ $1:Example.jpg|აღწერა2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>სიის ელემენტი</li><li>სიის ელემენტი</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'ჩასმული ფაილი',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|წარწერის ტექსტი]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='წარწერის ტექსტი' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>წარწერის ტექსტი</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='წარწერის ტექსტი' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>წარწერის ტექსტი</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'მინიშნება',
'wikieditor-toolbar-help-content-reference-syntax' => 'გვერდის ტექსტი&lt;ref name="test"&gt;[http://www.example.org ბმულის ტექსტი], დამატებითი ტექსტი.&lt;/ref&gt;.',
'wikieditor-toolbar-help-content-reference-result' => "გვერდის ტექსტი<sup><a href='#'>[1]</a></sup>.",
@@ -13455,7 +14164,7 @@ $messages['kiu'] = array(
'wikieditor-toolbar-tool-link' => 'Girê',
);
-/** Kazakh (Cyrillic script) (‪Қазақша (кирил)‬)
+/** Kazakh (Cyrillic script) (қазақша (кирил)‎)
* @author GaiJin
* @author Kaztrans
*/
@@ -13818,7 +14527,7 @@ $1:ឧទាហរណ៍.jpg|ចំនងជើងក្រោមរូបភា
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>ធាតុរបស់បញ្ជី</li><li>ធាតុរបស់បញ្ជី</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'រូបភាពបង្កប់',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:ឧទាហរណ៍.png|thumb|ចំនងជើងក្រោមរូបភាព]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='ចំណងជើងក្រោមរូបភាព' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='ពង្រីក' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>ចំណងជើងក្រោមរូបភាព</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='ចំណងជើងក្រោមរូបភាព' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='ពង្រីក' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>ចំណងជើងក្រោមរូបភាព</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'ឯកសារ​យោង​',
'wikieditor-toolbar-help-content-reference-syntax' => 'អត្ថបទ​ទំព័រ​.&lt;ref name="test"&gt;[http://www.example.org តំណ​ភ្ជាប់], អក្សរ​បន្ថែម​.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "អត្ថបទ​ទំព័រ​.<sup><a href='#'>[1]</a></sup>",
@@ -13877,12 +14586,12 @@ $messages['ko'] = array(
'wikieditor' => '확장된 위키텍스트 편집 인터페이스',
'wikieditor-desc' => '확장된 위키 문법 편집 인터페이스와 다양한 기능을 제공하는 모듈을 제공',
'wikieditor-wikitext-tab' => '위키텍스트',
- 'wikieditor-loading' => '불러 오는 중...',
+ 'wikieditor-loading' => '불러오는 중...',
'wikieditor-preview-preference' => '미리 보기 비교 활성화',
'wikieditor-preview-tab' => '미리 보기',
'wikieditor-preview-changes-tab' => '차이',
'wikieditor-preview-loading' => '불러오는 중...',
- 'wikieditor-previewDialog-preference' => '미리보기 대화 상자 사용하기',
+ 'wikieditor-previewDialog-preference' => '미리 보기 대화 상자 사용하기',
'wikieditor-previewDialog-tab' => '미리 보기',
'wikieditor-previewDialog-loading' => '불러오는 중...',
'wikieditor-publish-preference' => '한 단계씩 게시 활성화',
@@ -13914,15 +14623,15 @@ $messages['ko'] = array(
'wikieditor-toolbar-tool-italic-example' => '기울인 글씨',
'wikieditor-toolbar-tool-ilink' => '내부 링크',
'wikieditor-toolbar-tool-ilink-example' => '문서 제목',
- 'wikieditor-toolbar-tool-xlink' => '외부 사이트 링크 (주소 앞에 http://가 있어야 합니다.)',
+ 'wikieditor-toolbar-tool-xlink' => '바깥 링크 (주소 앞에 http://가 있어야 합니다.)',
'wikieditor-toolbar-tool-xlink-example' => 'http://www.example.com 링크 이름',
'wikieditor-toolbar-tool-link' => '링크',
'wikieditor-toolbar-tool-link-title' => '링크 추가',
'wikieditor-toolbar-tool-link-int' => '위키 문서로 연결',
- 'wikieditor-toolbar-tool-link-int-target' => '문서 제목:',
+ 'wikieditor-toolbar-tool-link-int-target' => '대상 문서 또는 URL:',
'wikieditor-toolbar-tool-link-int-target-tooltip' => '문서 제목 또는 URL',
'wikieditor-toolbar-tool-link-int-text' => '링크 텍스트:',
- 'wikieditor-toolbar-tool-link-int-text-tooltip' => '문서에 표시되는 문장',
+ 'wikieditor-toolbar-tool-link-int-text-tooltip' => '문서에 보여지는 문장',
'wikieditor-toolbar-tool-link-ext' => '외부 웹 페이지로 연결',
'wikieditor-toolbar-tool-link-ext-target' => '링크 URL:',
'wikieditor-toolbar-tool-link-ext-text' => '링크 텍스트:',
@@ -13931,15 +14640,26 @@ $messages['ko'] = array(
'wikieditor-toolbar-tool-link-int-target-status-exists' => '문서가 존재합니다.',
'wikieditor-toolbar-tool-link-int-target-status-notexists' => '문서가 존재하지 않습니다.',
'wikieditor-toolbar-tool-link-int-target-status-invalid' => '제목이 잘못되었습니다.',
- 'wikieditor-toolbar-tool-link-int-target-status-external' => '외부 링크',
- 'wikieditor-toolbar-tool-link-int-target-status-loading' => '문서가 존재하는 지 확인 중…',
+ 'wikieditor-toolbar-tool-link-int-target-status-external' => '바깥 링크',
+ 'wikieditor-toolbar-tool-link-int-target-status-loading' => '문서가 존재하는 지 확인 중...',
'wikieditor-toolbar-tool-link-int-invalid' => '입력한 제목이 잘못되었습니다.',
- 'wikieditor-toolbar-tool-link-lookslikeinternal' => '당신이 입력한 URL은 다른 내부 문서일 수 있습니다. 내부 링크로 바꾸시겠습니까?',
+ 'wikieditor-toolbar-tool-link-lookslikeinternal' => '당신이 입력한 URL은 다른 내부 문서일 수 있습니다.
+내부 링크로 바꾸겠습니까?',
'wikieditor-toolbar-tool-link-lookslikeinternal-int' => '내부 링크',
- 'wikieditor-toolbar-tool-link-lookslikeinternal-ext' => '외부 링크',
+ 'wikieditor-toolbar-tool-link-lookslikeinternal-ext' => '바깥 링크',
'wikieditor-toolbar-tool-link-empty' => '링크할 대상을 입력하지 않았습니다.',
'wikieditor-toolbar-tool-file' => '파일 넣기',
'wikieditor-toolbar-tool-file-example' => 'Example.jpg',
+ 'wikieditor-toolbar-tool-file-title' => '파일 추가하기',
+ 'wikieditor-toolbar-file-target' => '파일 이름:',
+ 'wikieditor-toolbar-file-caption' => '설명:',
+ 'wikieditor-toolbar-file-size' => '크기:',
+ 'wikieditor-toolbar-file-float' => '정렬:',
+ 'wikieditor-toolbar-file-default' => '(기본값)',
+ 'wikieditor-toolbar-file-format' => '형식:',
+ 'wikieditor-toolbar-file-format-none' => '없음',
+ 'wikieditor-toolbar-tool-file-insert' => '추가',
+ 'wikieditor-toolbar-tool-file-cancel' => '취소',
'wikieditor-toolbar-tool-reference' => '출처',
'wikieditor-toolbar-tool-reference-example' => '여기에 출처 내용을 적어 주세요',
'wikieditor-toolbar-tool-reference-cancel' => '취소',
@@ -13955,10 +14675,10 @@ $messages['ko'] = array(
'wikieditor-toolbar-tool-heading-4' => '4단계',
'wikieditor-toolbar-tool-heading-5' => '5단계',
'wikieditor-toolbar-tool-heading-example' => '제목',
- 'wikieditor-toolbar-group-format' => '기능',
- 'wikieditor-toolbar-tool-ulist' => '순서 없는 목록',
+ 'wikieditor-toolbar-group-format' => '형식',
+ 'wikieditor-toolbar-tool-ulist' => '글머리 기호 목록',
'wikieditor-toolbar-tool-ulist-example' => '항목',
- 'wikieditor-toolbar-tool-olist' => '순서 있는 목록',
+ 'wikieditor-toolbar-tool-olist' => '번호가 매겨진 목록',
'wikieditor-toolbar-tool-olist-example' => '항목',
'wikieditor-toolbar-tool-indent' => '들여쓰기',
'wikieditor-toolbar-tool-indent-example' => '들여쓰기',
@@ -14021,7 +14741,7 @@ $1:Example.jpg|설명2',
'wikieditor-toolbar-tool-replace-success' => '문자열을 $1회 치환하였습니다.',
'wikieditor-toolbar-tool-replace-emptysearch' => '찾을 문자열을 입력하지 않았습니다.',
'wikieditor-toolbar-tool-replace-invalidregex' => '당신이 입력한 정규 표현식이 잘못되었습니다: $1',
- 'wikieditor-toolbar-section-characters' => '특수문자',
+ 'wikieditor-toolbar-section-characters' => '특수 문자',
'wikieditor-toolbar-characters-page-latin' => '라틴 문자',
'wikieditor-toolbar-characters-page-latinextended' => '확장 라틴 문자',
'wikieditor-toolbar-characters-page-ipa' => 'IPA 문자',
@@ -14062,10 +14782,9 @@ $1:Example.jpg|설명2',
'wikieditor-toolbar-help-content-bolditalic-syntax' => "'''''굵고 기울인 글씨'''''",
'wikieditor-toolbar-help-content-bolditalic-result' => '<strong><em>굵고 기울인 글씨</em></strong>',
'wikieditor-toolbar-help-content-ilink-description' => '내부 링크',
- 'wikieditor-toolbar-help-content-ilink-syntax' => '[[문서 이름|다른 이름]]<br />
-[[문서 이름]]',
+ 'wikieditor-toolbar-help-content-ilink-syntax' => '[[문서 이름|다른 이름]]<br />[[문서 이름]]',
'wikieditor-toolbar-help-content-ilink-result' => "<a href='#'>다른 이름</a><br /><a href='#'>문서 이름</a>",
- 'wikieditor-toolbar-help-content-xlink-description' => '외부 링크',
+ 'wikieditor-toolbar-help-content-xlink-description' => '바깥 링크',
'wikieditor-toolbar-help-content-xlink-syntax' => '[http://www.example.org 링크 이름]<br />[http://www.example.org]<br />http://www.example.org',
'wikieditor-toolbar-help-content-xlink-result' => "<a href='#' class='external'>링크 이름</a><br /><a href='#' class='external autonumber'>[1]</a><br /><a href='#' class='external'>http://www.example.org</a>",
'wikieditor-toolbar-help-content-heading2-description' => '2단계 제목',
@@ -14080,21 +14799,21 @@ $1:Example.jpg|설명2',
'wikieditor-toolbar-help-content-heading5-description' => '5단계 제목',
'wikieditor-toolbar-help-content-heading5-syntax' => '===== 제목 =====',
'wikieditor-toolbar-help-content-heading5-result' => '<h5>제목</h5>',
- 'wikieditor-toolbar-help-content-ulist-description' => '순서 없는 목록',
+ 'wikieditor-toolbar-help-content-ulist-description' => '글머리 기호 목록',
'wikieditor-toolbar-help-content-ulist-syntax' => '* 목록 항목<br />* 목록 항목',
'wikieditor-toolbar-help-content-ulist-result' => '<ul><li>목록 항목</li><li>목록 항목</li></ul>',
- 'wikieditor-toolbar-help-content-olist-description' => '순서 있는 목록',
+ 'wikieditor-toolbar-help-content-olist-description' => '번호가 매겨진 목록',
'wikieditor-toolbar-help-content-olist-syntax' => '# 목록 항목<br /># 목록 항목',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>목록 항목</li><li>목록 항목</li></ol>',
'wikieditor-toolbar-help-content-file-description' => '파일 넣기',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|그림 설명]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='실제 크기로' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>그림 설명</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='실제 크기로' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>그림 설명</div></div>",
'wikieditor-toolbar-help-content-reference-description' => '출처',
'wikieditor-toolbar-help-content-reference-syntax' => '문서 내용.&lt;ref name="test"&gt;[http://www.example.org 링크 제목], 기타 설명.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "문서 내용.<sup><a href='#'>[1]</a></sup>",
'wikieditor-toolbar-help-content-rereference-description' => '기존에 붙인 출처 재사용하기',
'wikieditor-toolbar-help-content-rereference-result' => "문서 내용.<sup><a href='#'>[1]</a></sup>",
- 'wikieditor-toolbar-help-content-showreferences-description' => '출처 표시하기',
+ 'wikieditor-toolbar-help-content-showreferences-description' => '출처 보이기',
'wikieditor-toolbar-help-content-showreferences-result' => "<ol class='references'><li id='cite_note-test-0'><b><a title='' href='#'>^</a></b> <a rel='nofollow' title='http://www.example.org' class='external text' href='#'>링크 제목</a>, 기타 설명.</li></ol>",
'wikieditor-toolbar-help-content-signaturetimestamp-description' => '서명 및 시각',
'wikieditor-toolbar-help-content-signaturetimestamp-result' => "<a href='#' title='{{#special:mypage}}'>사용자 이름</a> (<a href='#' title='{{#special:mytalk}}'>토론</a>) 2009년 6월 10일 (수) 15:54 (UTC)",
@@ -14105,7 +14824,7 @@ $1:Example.jpg|설명2',
'wikieditor-toolbar-help-content-indent-result' => '보통 글<dl><dd>들여쓰기된 글<dl><dd>들여쓰기된 글</dd></dl></dd></dl>',
);
-/** Karachay-Balkar (Къарачай-Малкъар)
+/** Karachay-Balkar (къарачай-малкъар)
* @author Iltever
* @author Къарачайлы
*/
@@ -14316,7 +15035,7 @@ $1:Юлгю.jpg|Ангылатыу2',
'wikieditor-toolbar-help-content-file-description' => 'Эндирилген файл',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Ачыкълау текст]]',
'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='
-Ачыкълау текст' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Уллайт' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>
+Ачыкълау текст' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Уллайт' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>
Ачыкълау текст</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Белги',
'wikieditor-toolbar-help-content-reference-syntax' => 'Бетни тексти.&lt;ref name="test"&gt;[http://www.example.org Джибериуню тексти], къошакъ текст.&lt;/ref&gt;',
@@ -14342,7 +15061,7 @@ $messages['ksh'] = array(
'wikieditor-desc' => 'Brängk en Müjjeleschkeit för Wikitäx enzejävve un ze ändere en et Wiki, di mer ußboue kann, un noch allerhand Kröhmsches met dobei hät.',
'wikieditor-wikitext-tab' => 'Wikitäx',
'wikieditor-loading' => 'Am Lade',
- 'wikieditor-preview-preference' => "Donn de {{int:preview}} nevve'eneijn zohlohße",
+ 'wikieditor-preview-preference' => 'Donn de {{int:preview}} nevvedraan zohlohße',
'wikieditor-preview-tab' => '{{int:preview}}',
'wikieditor-preview-changes-tab' => 'Änderunge',
'wikieditor-preview-loading' => 'Ben aam Laade{{int:ellipsis}}',
@@ -14371,7 +15090,7 @@ $messages['ksh'] = array(
'wikieditor-toolbar-preference' => 'Donn et ußföerlesh Werkzüsh för et Ändere aanzeije (bruch Java_Skripp)',
'wikieditor-toolbar-dialogs-preference' => 'Donn de Lengks aanzeije för Lengks, Tabälle, un mieh en Sigge em Wiki ennzefööje',
'wikieditor-toolbar-hidesig' => 'Donn dä Knopp för de „Ongerschreff“ nit aanzeije för nomaale Sigge vum Wiki singem Enhalld.',
- 'wikieditor-toolbar-loading' => 'Am Laade{{int:ellipsis}}',
+ 'wikieditor-toolbar-loading' => 'Aam Laade{{int:ellipsis}}',
'wikieditor-toolbar-tool-bold' => 'Fätte Schreff',
'wikieditor-toolbar-tool-bold-example' => 'Fätte Schreff',
'wikieditor-toolbar-tool-italic' => 'Scheive Schreff',
@@ -14380,7 +15099,7 @@ $messages['ksh'] = array(
'wikieditor-toolbar-tool-ilink-example' => 'Dä Tittel vun dä Sigk, woh dä Lengk drop jonn sull',
'wikieditor-toolbar-tool-xlink' => 'Lengk noh Ußerhallf vum Wiki',
'wikieditor-toolbar-tool-xlink-example' => 'http://www.example.com Täx för Aanzezeije, för däm Lengk singe Anker',
- 'wikieditor-toolbar-tool-link' => 'Lenk',
+ 'wikieditor-toolbar-tool-link' => 'Lengk',
'wikieditor-toolbar-tool-link-title' => 'Donn ene Lengk dobei',
'wikieditor-toolbar-tool-link-int' => 'Op en Sigg em Wiki',
'wikieditor-toolbar-tool-link-int-target' => 'Dä Sigg iere Tittel:',
@@ -14402,7 +15121,7 @@ $messages['ksh'] = array(
'wikieditor-toolbar-tool-link-lookslikeinternal-int' => 'Ene Lengk en et Wiki',
'wikieditor-toolbar-tool-link-lookslikeinternal-ext' => 'Ene Lengk uß em Wiki moh ußerhallef',
'wikieditor-toolbar-tool-link-empty' => 'Mer han nix faßjehallde för ne Lingk drop ze maache.',
- 'wikieditor-toolbar-tool-file' => 'Enjefösh Dattei',
+ 'wikieditor-toolbar-tool-file' => 'Enjefösch Dattei',
'wikieditor-toolbar-tool-file-example' => 'Beld_Beishpöll.jpeg',
'wikieditor-toolbar-tool-reference' => 'Fohßnoht',
'wikieditor-toolbar-tool-reference-example' => 'Donn hef dä Täx es för en Fohßnoht enjävve',
@@ -14420,15 +15139,15 @@ $messages['ksh'] = array(
'wikieditor-toolbar-tool-heading-5' => 'Om fönnefte Nivvoh',
'wikieditor-toolbar-tool-heading-example' => 'Dä Övverschreff iere Tex',
'wikieditor-toolbar-group-format' => 'Fommaat:',
- 'wikieditor-toolbar-tool-ulist' => 'En Leß met Knöpp',
+ 'wikieditor-toolbar-tool-ulist' => 'En Leß met Pungkte',
'wikieditor-toolbar-tool-ulist-example' => 'Ene Enndraach en dä Leß',
- 'wikieditor-toolbar-tool-olist' => 'En Leß met Nummere',
+ 'wikieditor-toolbar-tool-olist' => 'En Leß met Nommere',
'wikieditor-toolbar-tool-olist-example' => 'Ene Enndraach en dä Leß',
'wikieditor-toolbar-tool-indent' => 'Enjeröck',
'wikieditor-toolbar-tool-indent-example' => 'Enjeröck Reih',
'wikieditor-toolbar-tool-nowiki' => 'Der Wiki-Code för et Fommatteere üvverjonn',
'wikieditor-toolbar-tool-nowiki-example' => 'Jif dä Tex en, dä vun de Wiki-Soffwär nit bearbeid, un en Rauh jelooße wääde soll',
- 'wikieditor-toolbar-tool-redirect' => 'En Ömleidung',
+ 'wikieditor-toolbar-tool-redirect' => 'En Ömleidong',
'wikieditor-toolbar-tool-redirect-example' => 'Dä Tittel vun dä Sigg, wo et hen jonn sull',
'wikieditor-toolbar-tool-big' => 'Met en jröößer Schreff jeschrevve',
'wikieditor-toolbar-tool-big-example' => 'Met en jröößer Schreff jeschrevve',
@@ -14468,6 +15187,7 @@ $1:Beishpell.jpg|zweijte Beld-Täx',
'wikieditor-toolbar-tool-table-preview' => '{{int:preview}}',
'wikieditor-toolbar-tool-table-insert' => 'Lohß Jonn!',
'wikieditor-toolbar-tool-table-cancel' => 'Schloß! Ophüüre!',
+ 'wikieditor-toolbar-tool-table-example-text' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut nec purus diam. Sed aliquam imperdiet nunc quis lacinia. Donec rutrum consectetur placerat. Sed volutpat neque non purus faucibus id ultricies enim euismod. Un der Öhl läuf küßde Postölling Ähzebülle wann Ühle de Sohd beije.',
'wikieditor-toolbar-tool-table-toomany' => 'En Tabäll met mieh wi $1 Pläz kann heh dat Projramm nit en dä Täx enboue.',
'wikieditor-toolbar-tool-table-invalidnumber' => 'Do häs kein jöltije Zahl för de Reije udder de Schpallde enjejovve.',
'wikieditor-toolbar-tool-table-zero' => 'Do kanns kein Tabäll ennfööje, woh kein Schpallde udder kein Reije dren sin.',
@@ -14543,10 +15263,10 @@ $1:Beishpell.jpg|zweijte Beld-Täx',
'wikieditor-toolbar-help-content-heading5-description' => '<h5>Övverschreff om fönnefte Nivvoh</h5>',
'wikieditor-toolbar-help-content-heading5-syntax' => '===== Övverschreff om fönnefte Nivvoh =====',
'wikieditor-toolbar-help-content-heading5-result' => '<h5>Övverschreff om fönnefte Nivvoh</h5>',
- 'wikieditor-toolbar-help-content-ulist-description' => 'Leß met Knöpp',
+ 'wikieditor-toolbar-help-content-ulist-description' => 'Leß met Pungkte',
'wikieditor-toolbar-help-content-ulist-syntax' => '* Enndraach en de Leß<br />* Enndraach en de Leß',
'wikieditor-toolbar-help-content-ulist-result' => '<ul><li>Enndraach en de Leß</li><li>Enndraach en de Leß</li></ul>',
- 'wikieditor-toolbar-help-content-olist-description' => 'Leß met Nummere',
+ 'wikieditor-toolbar-help-content-olist-description' => 'Leß met Nommere',
'wikieditor-toolbar-help-content-olist-syntax' => '# Enndraach en de Leß<br /># Enndraach en de Leß',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Enndraach en de Leß</li><li>Enndraach en de Leß</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Enjeföösch Dattei',
@@ -14568,7 +15288,7 @@ $1:Beishpell.jpg|zweijte Beld-Täx',
'wikieditor-toolbar-help-content-indent-result' => 'Nommaale Täx<dl><dd>Enjerök<dl><dd>Un norrens enjerök</dd></dl></dd></dl>',
);
-/** Kurdish (Latin script) (‪Kurdî (latînî)‬)
+/** Kurdish (Latin script) (Kurdî (latînî)‎)
* @author Erdal Ronahi
* @author George Animal
* @author Ghybu
@@ -14582,14 +15302,14 @@ $messages['ku-latn'] = array(
'wikieditor-previewDialog-tab' => 'Pêşdîtin',
'wikieditor-previewDialog-loading' => 'Bar dibe…',
'wikieditor-publish-button-publish' => 'Weşandin',
- 'wikieditor-publish-button-cancel' => 'Betal',
+ 'wikieditor-publish-button-cancel' => 'Betal bike',
'wikieditor-publish-dialog-minor' => 'Guhertina biçûk',
'wikieditor-publish-dialog-watch' => 'Vê rûpelê bişopîne',
'wikieditor-publish-dialog-publish' => 'Weşandin',
'wikieditor-publish-dialog-goback' => 'Vegere',
'wikieditor-template-editor-dialog-title' => 'Şablonê biguherîne',
'wikieditor-template-editor-dialog-submit' => 'Rojanekirin',
- 'wikieditor-template-editor-dialog-cancel' => 'Betal',
+ 'wikieditor-template-editor-dialog-cancel' => 'Betal bike',
'wikieditor-toc-show' => 'Naverokan nîşan bide',
'wikieditor-toc-hide' => 'Naverokan veşêre',
'wikieditor-toolbar-loading' => 'Bar dibe…',
@@ -14603,7 +15323,7 @@ $messages['ku-latn'] = array(
'wikieditor-toolbar-tool-xlink-example' => 'http://www.minak.com sernavê lînkê',
'wikieditor-toolbar-tool-link' => 'Girêdan',
'wikieditor-toolbar-tool-link-title' => 'Girêdanê têxe',
- 'wikieditor-toolbar-tool-link-cancel' => 'Betal',
+ 'wikieditor-toolbar-tool-link-cancel' => 'Betal bike',
'wikieditor-toolbar-tool-link-int-target-status-exists' => 'Rûpel heye',
'wikieditor-toolbar-tool-link-int-target-status-notexists' => 'Rûpel tune',
'wikieditor-toolbar-tool-link-lookslikeinternal-ext' => 'Girêdanên derve',
@@ -14629,7 +15349,7 @@ $messages['ku-latn'] = array(
'wikieditor-toolbar-tool-big' => 'Mezin',
'wikieditor-toolbar-tool-big-example' => 'Nivîsa girdek',
'wikieditor-toolbar-tool-small' => 'Biçûk',
- 'wikieditor-toolbar-tool-gallery' => 'Galeriya wêneyan',
+ 'wikieditor-toolbar-tool-gallery' => 'Pêşangeha wêneyan',
'wikieditor-toolbar-tool-newline' => 'Rêzika nû',
'wikieditor-toolbar-tool-table' => 'Tablo',
'wikieditor-toolbar-tool-table-dimensions-rows' => 'Rêzik',
@@ -14637,7 +15357,7 @@ $messages['ku-latn'] = array(
'wikieditor-toolbar-tool-table-example' => 'Mînak',
'wikieditor-toolbar-tool-table-preview' => 'Pêşdîtin',
'wikieditor-toolbar-tool-table-insert' => 'Têxistin',
- 'wikieditor-toolbar-tool-table-cancel' => 'Betal',
+ 'wikieditor-toolbar-tool-table-cancel' => 'Betal bike',
'wikieditor-toolbar-tool-replace-close' => 'Girtin',
'wikieditor-toolbar-section-characters' => 'Karakterên taybet',
'wikieditor-toolbar-characters-page-latin' => 'Latînî',
@@ -14655,7 +15375,7 @@ $messages['ku-latn'] = array(
'wikieditor-toolbar-characters-page-gujarati' => 'Gucaratî',
'wikieditor-toolbar-characters-page-thai' => 'Tay',
'wikieditor-toolbar-characters-page-lao' => 'Lao',
- 'wikieditor-toolbar-characters-page-khmer' => 'Xmer',
+ 'wikieditor-toolbar-characters-page-khmer' => 'Khmer',
'wikieditor-toolbar-section-help' => 'Alîkarî',
'wikieditor-toolbar-help-heading-description' => 'Danasîn',
'wikieditor-toolbar-help-heading-syntax' => 'Tu çi dinivîsî',
@@ -14680,7 +15400,7 @@ $messages['ku-latn'] = array(
'wikieditor-toolbar-help-content-signature-description' => 'Îmze',
);
-/** Cornish (Kernowek)
+/** Cornish (kernowek)
* @author Kw-Moon
* @author Nrowe
*/
@@ -14871,7 +15591,7 @@ $1:Ensampel.jpg|Deskrifans2',
'wikieditor-toolbar-help-content-olist-result' => "<ol><li>Elven a'n rol</li><li>Elven a'n rol</li></ol>",
'wikieditor-toolbar-help-content-file-description' => 'Restren neythys',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Ensampel.png|thumb|Tekst an deskrifans]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Tekst an deskrifans' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Brashe' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Tekst an deskrifans</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Tekst an deskrifans' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Brashe' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Tekst an deskrifans</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Devyn',
'wikieditor-toolbar-help-content-reference-syntax' => 'Tekst an folen.&lt;ref name="test"&gt;[http://www.ensampel.org Tekst an gevren], tekst keworansel.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Tekst an folen.<sup><a href='#'>[1]</a></sup>",
@@ -14888,6 +15608,167 @@ $1:Ensampel.jpg|Deskrifans2',
'wikieditor-toolbar-help-content-indent-result' => 'Tekst usadow<dl><dd>Tekst krybys<dl><dd>Tekst krybys</dd></dl></dd></dl>',
);
+/** Kirghiz (Кыргызча)
+ * @author Chorobek
+ */
+$messages['ky'] = array(
+ 'wikieditor-toolbar-section-advanced' => 'Кеңейтилген',
+ 'wikieditor-toolbar-tool-heading' => 'Баш сөз',
+ 'wikieditor-toolbar-tool-heading-1' => '1 Деңгээл',
+ 'wikieditor-toolbar-tool-heading-2' => '2 Деңгээл',
+ 'wikieditor-toolbar-tool-heading-3' => '3 Деңгээл',
+ 'wikieditor-toolbar-tool-heading-4' => '4 Деңгээл',
+ 'wikieditor-toolbar-tool-heading-5' => '5 Деңгээл',
+ 'wikieditor-toolbar-tool-heading-example' => 'Баш сөздүн тексти',
+ 'wikieditor-toolbar-group-format' => 'Жасалга',
+ 'wikieditor-toolbar-tool-ulist' => 'Белгиленген тизме',
+ 'wikieditor-toolbar-tool-ulist-example' => 'Белгиленген тизме бирдиги',
+ 'wikieditor-toolbar-tool-olist' => 'Санакталган тизме',
+ 'wikieditor-toolbar-tool-olist-example' => 'Санакталган тизме бирдиги',
+ 'wikieditor-toolbar-tool-indent' => 'Жээк калтыр',
+ 'wikieditor-toolbar-tool-indent-example' => 'Жээк калтырып башталган сап',
+ 'wikieditor-toolbar-tool-nowiki' => 'Уики жасалгага көңүл бурба',
+ 'wikieditor-toolbar-tool-nowiki-example' => 'Жасалгаланбоочу тексти бул жерге киргиз',
+ 'wikieditor-toolbar-tool-redirect' => 'Багытта',
+ 'wikieditor-toolbar-tool-redirect-example' => 'Керектүү барактын аты',
+ 'wikieditor-toolbar-tool-big' => 'Чоң',
+ 'wikieditor-toolbar-tool-big-example' => 'Чоң текст',
+ 'wikieditor-toolbar-tool-small' => 'Майда',
+ 'wikieditor-toolbar-tool-small-example' => 'Майда текст',
+ 'wikieditor-toolbar-tool-superscript' => 'Сап үстүндө',
+ 'wikieditor-toolbar-tool-superscript-example' => 'Сап үстүндөгү текст',
+ 'wikieditor-toolbar-tool-subscript' => 'Саптан ылдый',
+ 'wikieditor-toolbar-tool-subscript-example' => 'Саптан ылдый текст',
+ 'wikieditor-toolbar-group-insert' => 'Киргиз',
+ 'wikieditor-toolbar-tool-gallery' => 'Сүрөттөр галлереясы',
+ 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Баяндама1
+$1:Example.jpg|Баяндама2',
+ 'wikieditor-toolbar-tool-newline' => 'Жаңы сап',
+ 'wikieditor-toolbar-tool-table' => 'Жадыбал',
+ 'wikieditor-toolbar-tool-table-example-old' => '-
+! бөрк сөз 1
+! бөрк сөз 2
+! бөрк сөз 3
+|-
+| 1 сап, 1 көзөнөк
+| 1 сап, 2 көзөнөк
+| 1 сап, 3 көзөнөк
+|-
+| 2 сап, 1 көзөнөк
+| 2 сап, 2 көзөнөк
+| 2 сап, 3 көзөнөк',
+ 'wikieditor-toolbar-tool-table-example-cell-text' => 'Көзөнөктүн тексти',
+ 'wikieditor-toolbar-tool-table-example-header' => 'Бөрк сөздүн тексти',
+ 'wikieditor-toolbar-tool-table-title' => 'Жадыбал киргиз',
+ 'wikieditor-toolbar-tool-table-dimensions-rows' => 'Саптар',
+ 'wikieditor-toolbar-tool-table-dimensions-columns' => 'Тилкелер',
+ 'wikieditor-toolbar-tool-table-dimensions-header' => 'Аталыш сап кош',
+ 'wikieditor-toolbar-tool-table-wikitable' => 'Чектери менен жасалга',
+ 'wikieditor-toolbar-tool-table-sortable' => 'Жадыбал иреттелме болсун',
+ 'wikieditor-toolbar-tool-table-example' => 'Мисал',
+ 'wikieditor-toolbar-tool-table-preview' => 'Алдын ала көргөз',
+ 'wikieditor-toolbar-tool-table-insert' => 'Киргиз',
+ 'wikieditor-toolbar-tool-table-cancel' => 'Жокко чыгар',
+ 'wikieditor-toolbar-tool-table-toomany' => 'Бул баарлашууда $1 ашык көзөнөгү бар жадыбал койгонго мүмкүн эмес.',
+ 'wikieditor-toolbar-tool-table-invalidnumber' => 'Сиз саптардын же тилкелердин туура эмес санын көргөздүңүз',
+ 'wikieditor-toolbar-tool-table-zero' => 'Сиз бир дагы сабы же тилкеси жок жадыбал киргизе албайсыз',
+ 'wikieditor-toolbar-tool-replace' => 'Таап алмаштыр',
+ 'wikieditor-toolbar-tool-replace-title' => 'Таап алмаштыр',
+ 'wikieditor-toolbar-tool-replace-search' => 'Изде:',
+ 'wikieditor-toolbar-tool-replace-replace' => 'Менен алмаштыр:',
+ 'wikieditor-toolbar-tool-replace-case' => 'Баш тамганы айырмала',
+ 'wikieditor-toolbar-tool-replace-regex' => 'Издөө көзөнөгүн регулярдуу айтылыш катары эсепте',
+ 'wikieditor-toolbar-tool-replace-button-findnext' => 'Ушуну тап',
+ 'wikieditor-toolbar-tool-replace-button-replace' => 'Алмаштыр',
+ 'wikieditor-toolbar-tool-replace-button-replaceall' => 'Баарын алмаштыр',
+ 'wikieditor-toolbar-tool-replace-close' => 'Жап',
+ 'wikieditor-toolbar-tool-replace-nomatch' => 'Сиздин талап боюнча эчтеке табылган жок',
+ 'wikieditor-toolbar-tool-replace-success' => '$1 алмаштыруу болду.',
+ 'wikieditor-toolbar-tool-replace-emptysearch' => 'Сиз издегенге эч нерсе көргөзгөн жоксуз.',
+ 'wikieditor-toolbar-tool-replace-invalidregex' => 'Сиз киргизген регулярдуу айтылыш туура эмес: $1',
+ 'wikieditor-toolbar-section-characters' => 'Атайын белгилер',
+ 'wikieditor-toolbar-characters-page-latin' => 'Латынча',
+ 'wikieditor-toolbar-characters-page-latinextended' => 'Латынча кеңейтилген',
+ 'wikieditor-toolbar-characters-page-ipa' => 'ЭФА (IPA)',
+ 'wikieditor-toolbar-characters-page-symbols' => 'Белгилер',
+ 'wikieditor-toolbar-characters-page-greek' => 'Грек',
+ 'wikieditor-toolbar-characters-page-cyrillic' => 'Кирилик',
+ 'wikieditor-toolbar-characters-page-arabic' => 'Араб',
+ 'wikieditor-toolbar-characters-page-arabicextended' => 'Арабча кеңейтилген',
+ 'wikieditor-toolbar-characters-page-persian' => 'Перс',
+ 'wikieditor-toolbar-characters-page-hebrew' => 'Иврит',
+ 'wikieditor-toolbar-characters-page-bangla' => 'Бенгал',
+ 'wikieditor-toolbar-characters-page-tamil' => 'Тамил',
+ 'wikieditor-toolbar-characters-page-telugu' => 'Телугу',
+ 'wikieditor-toolbar-characters-page-sinhala' => 'Сингала',
+ 'wikieditor-toolbar-characters-page-gujarati' => 'Гужарати',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'Деванагари',
+ 'wikieditor-toolbar-characters-page-thai' => 'Тай',
+ 'wikieditor-toolbar-characters-page-lao' => 'Лаос',
+ 'wikieditor-toolbar-characters-page-khmer' => 'Кхмер',
+ 'wikieditor-toolbar-section-help' => 'Жардам',
+ 'wikieditor-toolbar-help-heading-description' => 'Баяндамасы',
+ 'wikieditor-toolbar-help-heading-syntax' => 'Сиз ушуну киргизсеңиз',
+ 'wikieditor-toolbar-help-heading-result' => 'Ушул чыгат',
+ 'wikieditor-toolbar-help-page-format' => 'Жасалгалоо',
+ 'wikieditor-toolbar-help-page-link' => 'Шилтемелер',
+ 'wikieditor-toolbar-help-page-heading' => 'Баш сөздөр',
+ 'wikieditor-toolbar-help-page-list' => 'Тизмелер',
+ 'wikieditor-toolbar-help-page-file' => 'Файлдар',
+ 'wikieditor-toolbar-help-page-reference' => 'Шилтемелер',
+ 'wikieditor-toolbar-help-page-discussion' => 'Талкуу',
+ 'wikieditor-toolbar-help-content-italic-description' => 'Жантык',
+ 'wikieditor-toolbar-help-content-italic-syntax' => "''Жантык текст''",
+ 'wikieditor-toolbar-help-content-italic-result' => '<em>Жантык текст</em>',
+ 'wikieditor-toolbar-help-content-bold-description' => 'Калың',
+ 'wikieditor-toolbar-help-content-bold-syntax' => "'''Калың текст'''",
+ 'wikieditor-toolbar-help-content-bold-result' => '<strong>Калың текст</strong>',
+ 'wikieditor-toolbar-help-content-bolditalic-description' => 'Калың жана жантык',
+ 'wikieditor-toolbar-help-content-bolditalic-syntax' => "'''''Калың жана жантык текст'''''",
+ 'wikieditor-toolbar-help-content-bolditalic-result' => '<strong><em>Калың &amp; жантык текст</em></strong>',
+ 'wikieditor-toolbar-help-content-ilink-description' => 'Ички шилтеме',
+ 'wikieditor-toolbar-help-content-ilink-syntax' => '[[Барактын баш сөзү|Шилтеменин тексти]]<br />[[Барактын баш сөзү]]',
+ 'wikieditor-toolbar-help-content-ilink-result' => "<a href='#'>Шилтеменин тексти</a><br /><a href='#'>Барактын баш сөзү</a>",
+ 'wikieditor-toolbar-help-content-xlink-description' => 'Сырткы шилтеме',
+ 'wikieditor-toolbar-help-content-xlink-syntax' => '[http://www.example.org Шилтеменин тексти]<br />[http://www.example.org]<br />http://www.example.org',
+ 'wikieditor-toolbar-help-content-xlink-result' => "<a href='#' class='external'>Шилтеменин тексти</a><br /><a href='#' class='external autonumber'>[1]</a><br /><a href='#' class='external'>http://www.example.org</a>",
+ 'wikieditor-toolbar-help-content-heading2-description' => '2нчи деңгээлдеги баш сөз',
+ 'wikieditor-toolbar-help-content-heading2-syntax' => '==Баш сөздүн тексти==',
+ 'wikieditor-toolbar-help-content-heading2-result' => '<h2>Баш сөздүн тексти</h2>',
+ 'wikieditor-toolbar-help-content-heading3-description' => '3үнчү деңгээлдеги баш сөз',
+ 'wikieditor-toolbar-help-content-heading3-syntax' => '==== Баш сөздүн тексти ====',
+ 'wikieditor-toolbar-help-content-heading3-result' => '<h3>Баш сөздүн тексти</h3>',
+ 'wikieditor-toolbar-help-content-heading4-description' => '4үнчү деңгээлдеги баш сөз',
+ 'wikieditor-toolbar-help-content-heading4-syntax' => '==== Баш сөздүн тексти ====',
+ 'wikieditor-toolbar-help-content-heading4-result' => '<h4>Баш сөздүн тексти</h4>',
+ 'wikieditor-toolbar-help-content-heading5-description' => '5нчи деңгээлдеги баш сөз',
+ 'wikieditor-toolbar-help-content-heading5-syntax' => '==== Баш сөздүн тексти ====',
+ 'wikieditor-toolbar-help-content-heading5-result' => '<h5>Баш сөздүн тексти</h5>',
+ 'wikieditor-toolbar-help-content-ulist-description' => 'Белгиленген тизме',
+ 'wikieditor-toolbar-help-content-ulist-syntax' => '* Тизме бирдиги<br />* Тизме бирдиги',
+ 'wikieditor-toolbar-help-content-ulist-result' => '<ul><li>Тизме бирдиги</li><li>Тизме бирдиги</li></ul>',
+ 'wikieditor-toolbar-help-content-olist-description' => 'Санакталган тизме',
+ 'wikieditor-toolbar-help-content-olist-syntax' => '# Тизме бирдиги<br /># Тизме бирдиги',
+ 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Тизме бирдиги</li><li>Тизме бирдиги</li></ol>',
+ 'wikieditor-toolbar-help-content-file-description' => 'Кыстарылган файл',
+ 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Түшүндүрмө текст]]',
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Түшүндүрмө текст' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Чоңойт' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Түшүндүрмө текст</div></div>",
+ 'wikieditor-toolbar-help-content-reference-description' => 'Шилтемелер',
+ 'wikieditor-toolbar-help-content-reference-syntax' => 'Барактын тексти.&lt;ref name="test"&gt;[http://www.example.org Шилтеменин тексти], кошумча текст.&lt;/ref&gt;',
+ 'wikieditor-toolbar-help-content-reference-result' => "Барактын тексти.<sup><a href='#'>[1]</a></sup>",
+ 'wikieditor-toolbar-help-content-rereference-description' => 'Ошол эле шилтемени кошумча колдонуу',
+ 'wikieditor-toolbar-help-content-rereference-result' => "Барактын тексти.<sup><a href='#'>[1]</a></sup>",
+ 'wikieditor-toolbar-help-content-showreferences-description' => 'Шилтемелерди көргөз',
+ 'wikieditor-toolbar-help-content-showreferences-result' => "<ol class='references'><li id='cite_note-test-0'><b><a title='' href='#'>^</a></b> <a rel='nofollow' title='http://www.example.org' class='external text' href='#'>Шилтеменин тексти</a>, кошумча текст.</li></ol>",
+ 'wikieditor-toolbar-help-content-signaturetimestamp-description' => 'Кол тамга менен убакыт мөөрүн бас',
+ 'wikieditor-toolbar-help-content-signaturetimestamp-result' => "<a href='#' title='{{#special:mypage}}'>Колдонуучунун аты</a> (<a href='#' title='{{#special:mytalk}}'>талкуу</a>) 15:54, 10 June 2009 (UTC)",
+ 'wikieditor-toolbar-help-content-signature-description' => 'Кол тамга',
+ 'wikieditor-toolbar-help-content-signature-result' => "<a href='#' title='{{#special:mypage}}'>Колдонуучунун аты</a> (<a href='#' title='{{#special:mytalk}}'>талкуу</a>)",
+ 'wikieditor-toolbar-help-content-indent-description' => 'Жээк калтыр',
+ 'wikieditor-toolbar-help-content-indent-syntax' => 'Кадимки текст<br />:Жээк калтырган текст<br />::Жээк калтырган текст',
+ 'wikieditor-toolbar-help-content-indent-result' => 'Кадимки текст<dl><dd>Жээк калтырган текст<dl><dd>Жээк калтырган текст</dd></dl></dd></dl>',
+);
+
/** Latin (Latina)
* @author OrbiliusMagister
* @author UV
@@ -14970,7 +15851,7 @@ $1:Exemplum.jpg|Descriptio 2',
'wikieditor-toolbar-help-content-xlink-result' => "<a href='#' class='external'>Titulus nexus</a><br /><a href='#' class='external autonumber'>[1]</a><br /><a href='#' class='external'>http://www.example.org</a>",
'wikieditor-toolbar-help-content-file-description' => 'Fasciculus in pagina impositus',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Exemplum.png|thumb|Descriptio fasciculi]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Descriptio fasciculi' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Augere' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Descriptio fasciculi</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Descriptio fasciculi' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Augere' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Descriptio fasciculi</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Referentia bibliographica',
'wikieditor-toolbar-help-content-showreferences-description' => 'Referentias bibliographicas monstrare',
'wikieditor-toolbar-help-content-signaturetimestamp-description' => 'Subscriptio tua cum indicatione temporis',
@@ -15049,6 +15930,14 @@ $messages['lb'] = array(
'wikieditor-toolbar-tool-link-empty' => 'Dir hutt näischt aginn op dat verlinkt soll ginn.',
'wikieditor-toolbar-tool-file' => 'Agebonnene Fichier',
'wikieditor-toolbar-tool-file-example' => 'Beispill.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Fichier drasetzen',
+ 'wikieditor-toolbar-file-target' => 'Numm vum Fichier:',
+ 'wikieditor-toolbar-file-size' => 'Gréisst:',
+ 'wikieditor-toolbar-file-default' => '(Standard)',
+ 'wikieditor-toolbar-file-format' => 'Format:',
+ 'wikieditor-toolbar-file-format-none' => 'keen',
+ 'wikieditor-toolbar-tool-file-insert' => 'Drasetzen',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Ofbriechen',
'wikieditor-toolbar-tool-reference' => 'Referenz',
'wikieditor-toolbar-tool-reference-example' => 'Setzt den Text vun der Foussnote hei ann',
'wikieditor-toolbar-tool-reference-cancel' => 'Annulléieren',
@@ -15204,7 +16093,7 @@ $1:Example.jpg|Beschreiwung2',
</ol>',
'wikieditor-toolbar-help-content-file-description' => 'Agebonnene Fichier',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Ugewisenen Text]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Ugewisenen Texte' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Ugewisenen Text</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Ugewisenen Texte' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Ugewisenen Text</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Referenz',
'wikieditor-toolbar-help-content-reference-syntax' => 'Text vun der Säit.&lt;ref name="test"&gt;[http://www.example.org Text vum Link], zousätzlechen Text.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Text vun der Säit <sup><a href='#'>[1]</a></sup>",
@@ -15451,7 +16340,7 @@ $1:Veurbeildj2|Biesjrif2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Regel in genummerde lies</li><li>Regel in genummerde lies</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Mediabesjtandj',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Biesjrif]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Biesjrif' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Vergroeat' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Biesjrif</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Biesjrif' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Vergroeat' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Biesjrif</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Verwiezing',
'wikieditor-toolbar-help-content-reference-syntax' => 'Paginateks.&lt;ref name="test"&gt;[http://www.example.org Verwiezingsteks], biekómmendje teks.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Paginateks. <sup><a href='#'>[1]</a></sup>",
@@ -15468,10 +16357,12 @@ $1:Veurbeildj2|Biesjrif2',
'wikieditor-toolbar-help-content-indent-result' => 'Normaal teks<dl><dd>Ingesprónge teks<dl><dd>Ingesprónge teks</dd></dl></dd></dl>',
);
-/** Lithuanian (Lietuvių)
+/** Lithuanian (lietuvių)
+ * @author Eitvys200
* @author Garas
* @author Hugo.arg
* @author Matasg
+ * @author Vogone
* @author Vpovilaitis
*/
$messages['lt'] = array(
@@ -15539,6 +16430,15 @@ $messages['lt'] = array(
'wikieditor-toolbar-tool-link-empty' => 'Jūs neįvedėte nieko, į ką nurodyti.',
'wikieditor-toolbar-tool-file' => 'Įdėti failą',
'wikieditor-toolbar-tool-file-example' => 'Pavyzdys.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Įterpti failą',
+ 'wikieditor-toolbar-file-target' => 'Failo pavadinimas:',
+ 'wikieditor-toolbar-file-caption' => 'Antraštė:',
+ 'wikieditor-toolbar-file-size' => 'Dydis:',
+ 'wikieditor-toolbar-file-float' => 'Lygiuoti:',
+ 'wikieditor-toolbar-file-default' => '(numatytasis)',
+ 'wikieditor-toolbar-file-format' => 'Formatas:',
+ 'wikieditor-toolbar-tool-file-insert' => 'Įterpti',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Atšaukti',
'wikieditor-toolbar-tool-reference' => 'Išnaša',
'wikieditor-toolbar-tool-reference-example' => 'Čia įterpkite teksto išnašą',
'wikieditor-toolbar-tool-reference-cancel' => 'Atšaukti',
@@ -15613,6 +16513,7 @@ $1:Pavyzdys.jpg|Aprašymas2',
'wikieditor-toolbar-tool-replace-case' => 'Skirti didžiąsias ir mažąsias raides',
'wikieditor-toolbar-tool-replace-regex' => 'Laikyti paieškos eilutę kaip reguliariąją išraišką',
'wikieditor-toolbar-tool-replace-button-findnext' => 'Rasti kitą',
+ 'wikieditor-toolbar-tool-replace-button-replace' => 'Pakeisti',
'wikieditor-toolbar-tool-replace-button-replaceall' => 'Pakeisti visus',
'wikieditor-toolbar-tool-replace-close' => 'Uždaryti',
'wikieditor-toolbar-tool-replace-nomatch' => 'Jūsų paieška nieko nerado.',
@@ -15627,12 +16528,15 @@ $1:Pavyzdys.jpg|Aprašymas2',
'wikieditor-toolbar-characters-page-greek' => 'Graikų',
'wikieditor-toolbar-characters-page-cyrillic' => 'Kirilica',
'wikieditor-toolbar-characters-page-arabic' => 'Arabų',
+ 'wikieditor-toolbar-characters-page-arabicextended' => 'Arabic extended',
'wikieditor-toolbar-characters-page-persian' => 'Persų',
'wikieditor-toolbar-characters-page-hebrew' => 'Hebrajų',
'wikieditor-toolbar-characters-page-bangla' => 'Bengalų',
+ 'wikieditor-toolbar-characters-page-tamil' => 'Tamil',
'wikieditor-toolbar-characters-page-telugu' => 'Telugų',
'wikieditor-toolbar-characters-page-sinhala' => 'Sinhalų',
'wikieditor-toolbar-characters-page-gujarati' => 'Gudžaratų',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'Devanagari',
'wikieditor-toolbar-characters-page-thai' => 'Tajų',
'wikieditor-toolbar-characters-page-lao' => 'Laosiečių',
'wikieditor-toolbar-characters-page-khmer' => 'Khmerų',
@@ -15682,7 +16586,7 @@ $1:Pavyzdys.jpg|Aprašymas2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Sąrašo elementas</li><li>Sąrašo elementas</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Įterpti failą',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Aprašymas]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Aprašymas</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Aprašymas</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Išnaša',
'wikieditor-toolbar-help-content-reference-syntax' => 'Puslapio tekstas.&lt;ref name="test"&gt;[http://www.example.org Nuorodos tekstas], papildomas tekstas.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Puslapio tekstas.<sup><a href='#'>[1]</a></sup>",
@@ -15699,7 +16603,7 @@ $1:Pavyzdys.jpg|Aprašymas2',
'wikieditor-toolbar-help-content-indent-result' => 'Normalus tekstas<dl><dd>Įtrauktas tekstas<dl><dd>Įtrauktas tekstas</dd></dl></dd></dl>',
);
-/** Latgalian (Latgaļu)
+/** Latgalian (latgaļu)
* @author Dark Eagle
*/
$messages['ltg'] = array(
@@ -15898,7 +16802,7 @@ $1:Entirna.jpg|Sawifiahna2',
'wikieditor-toolbar-help-content-indent-result' => 'Thu tlúang<dl><dd>Tlar tihchìam<dl><dd>Tihtlum lehchhàwn</dd></dl></dd></dl>',
);
-/** Latvian (Latviešu)
+/** Latvian (latviešu)
* @author Gleb Borisov
* @author GreenZeb
* @author Marozols
@@ -15962,6 +16866,14 @@ $messages['lv'] = array(
'wikieditor-toolbar-tool-link-empty' => 'Jūs nenorādījāt lapu, uz kuru jāizveido saite.',
'wikieditor-toolbar-tool-file' => 'Iekļaut failu',
'wikieditor-toolbar-tool-file-example' => 'Piemērs.jpg',
+ 'wikieditor-toolbar-file-target' => 'Faila nosaukums:',
+ 'wikieditor-toolbar-file-caption' => 'Paraksts:',
+ 'wikieditor-toolbar-file-size' => 'Izmērs:',
+ 'wikieditor-toolbar-file-float' => 'Izlīdzināt:',
+ 'wikieditor-toolbar-file-default' => '(pēc noklusējuma)',
+ 'wikieditor-toolbar-file-format' => 'Formāts:',
+ 'wikieditor-toolbar-tool-file-insert' => 'Ievietot',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Atcelt',
'wikieditor-toolbar-tool-reference' => 'Atsauce',
'wikieditor-toolbar-tool-reference-example' => 'Ievadi zemsvītras atsauces tekstu šeit',
'wikieditor-toolbar-tool-reference-cancel' => 'Atcelt',
@@ -16036,6 +16948,7 @@ $1:Example.jpg|Apraksts2',
'wikieditor-toolbar-tool-replace-case' => 'Ņemt vērā lielos un mazos burtus',
'wikieditor-toolbar-tool-replace-regex' => 'Uztvert meklējamo virkni kā regulāru izteiksmi',
'wikieditor-toolbar-tool-replace-button-findnext' => 'Meklēt nākamo',
+ 'wikieditor-toolbar-tool-replace-button-replace' => 'Aizstāt',
'wikieditor-toolbar-tool-replace-button-replaceall' => 'Aizvietot visus',
'wikieditor-toolbar-tool-replace-close' => 'Aizvērt',
'wikieditor-toolbar-tool-replace-nomatch' => 'Nekas netika atrasts.',
@@ -16102,7 +17015,7 @@ $1:Example.jpg|Apraksts2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Saraksta elements</li><li>Saraksta elements</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Iekļauts fails',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Apraksts]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Apraksts' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Palielināt' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Apraksts</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Apraksts' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Palielināt' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Apraksts</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Atsauce',
'wikieditor-toolbar-help-content-reference-syntax' => 'Lapas teksts.&lt;ref name="test"&gt;[http://www.example.org Saites teksts], papildus teksts.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Lapas teksts.<sup><a href='#'>[1]</a></sup>",
@@ -16340,7 +17253,7 @@ $1:Contoh.jpg|Judul2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Senarai hal</li><li>Senarai hal</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Cantumkan berkas',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Contoh.png|thumb|Teks gambar]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Teks gambar' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Pagadang' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Teks gambar</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Teks gambar' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Pagadang' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Teks gambar</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Rujukan',
'wikieditor-toolbar-help-content-reference-syntax' => 'Teks laman.&lt;ref name="test"&gt;[http://www.example.org Teks tautan], teks tambahan.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Teks laman.<sup><a href='#'>[1]</a></sup>",
@@ -16357,7 +17270,7 @@ $1:Contoh.jpg|Judul2',
'wikieditor-toolbar-help-content-indent-result' => 'Teks normal<dl><dd>Teks lekuk<dl><dd>Teks lekuk</dd></dl></dd></dl>',
);
-/** Macedonian (Македонски)
+/** Macedonian (македонски)
* @author Bjankuloski06
* @author Brest
*/
@@ -16392,7 +17305,7 @@ $messages['mk'] = array(
'wikieditor-toc-hide' => 'Скриј содржина',
'wikieditor-toolbar' => 'Алатник за уредување',
'wikieditor-toolbar-desc' => 'Алатник за уредување со подобрена употребливост',
- 'wikieditor-toolbar-preference' => 'Овозможи подобрен алатник за уредување',
+ 'wikieditor-toolbar-preference' => 'Вклучи го подобрениот алатник за уредување',
'wikieditor-toolbar-dialogs-preference' => 'Овозможи дијалози за вметнување врски, табели и повеќе',
'wikieditor-toolbar-hidesig' => 'Скриј го копчето за потпис на страниците во главниот именски простор',
'wikieditor-toolbar-loading' => 'Вчитувам...',
@@ -16428,6 +17341,16 @@ $messages['mk'] = array(
'wikieditor-toolbar-tool-link-empty' => 'Не внесовте одредница за врската.',
'wikieditor-toolbar-tool-file' => 'Вметната податотека',
'wikieditor-toolbar-tool-file-example' => 'Пример.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Вметни податотека',
+ 'wikieditor-toolbar-file-target' => 'Податотека:',
+ 'wikieditor-toolbar-file-caption' => 'Опис:',
+ 'wikieditor-toolbar-file-size' => 'Големина:',
+ 'wikieditor-toolbar-file-float' => 'Порамни:',
+ 'wikieditor-toolbar-file-default' => '(по основно)',
+ 'wikieditor-toolbar-file-format' => 'Формат:',
+ 'wikieditor-toolbar-file-format-none' => 'ниеден',
+ 'wikieditor-toolbar-tool-file-insert' => 'Вметни',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Откажи',
'wikieditor-toolbar-tool-reference' => 'Навод',
'wikieditor-toolbar-tool-reference-example' => 'Тука внесете текст на фуснотата',
'wikieditor-toolbar-tool-reference-cancel' => 'Откажи',
@@ -16575,7 +17498,7 @@ $1:Пример.jpg|Опис2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Ставка</li><li>Ставка</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Вметната податотека',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Описен текст]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Опис' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Зголеми' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Опис</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Опис' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Зголеми' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Опис</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Навод',
'wikieditor-toolbar-help-content-reference-syntax' => 'Текст во страницата.&lt;ref name="test"&gt;[http://www.пример.org Текст на врската], дополнителен текст.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Текст во страницата.<sup><a href='#'>[1]</a></sup>",
@@ -16664,6 +17587,16 @@ $messages['ml'] = array(
'wikieditor-toolbar-tool-link-empty' => 'കണ്ണിവത്കരിക്കേണ്ട ഒന്നും താങ്കൾ നൽകിയിട്ടില്ല.',
'wikieditor-toolbar-tool-file' => 'പ്രമാണം ചേർക്കൽ',
'wikieditor-toolbar-tool-file-example' => 'ഉദാഹരണം.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'പ്രമാണം ഉൾപ്പെടുത്തുക',
+ 'wikieditor-toolbar-file-target' => 'പ്രമാണത്തിന്റെ പേര്‌:',
+ 'wikieditor-toolbar-file-caption' => 'അടിക്കുറിപ്പ്:',
+ 'wikieditor-toolbar-file-size' => 'വലിപ്പം:',
+ 'wikieditor-toolbar-file-float' => 'സ്ഥാനം:',
+ 'wikieditor-toolbar-file-default' => '(സ്വതേ)',
+ 'wikieditor-toolbar-file-format' => 'തരം:',
+ 'wikieditor-toolbar-file-format-none' => 'ഒന്നുമില്ല',
+ 'wikieditor-toolbar-tool-file-insert' => 'ഉൾപ്പെടുത്തുക',
+ 'wikieditor-toolbar-tool-file-cancel' => 'റദ്ദാക്കുക',
'wikieditor-toolbar-tool-reference' => 'അവലംബം',
'wikieditor-toolbar-tool-reference-example' => 'അടിക്കുറിപ്പിനുള്ള എഴുത്ത് ഇവിടെ ചേർക്കുക',
'wikieditor-toolbar-tool-reference-cancel' => 'റദ്ദാക്കുക',
@@ -16811,7 +17744,7 @@ $1:Example.jpg|കുറിപ്പ്2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>ലിസ്റ്റിലെ അംഗം</li><li>ലിസ്റ്റിലെ അംഗം</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'പ്രമാണം ചേർക്കൽ',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|വിവരണ കുറിപ്പ്]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='കുറിപ്പായുള്ള എഴുത്ത്' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt='ലഘുചിത്രം'/></a><div class='thumbcaption'><div class='magnify'><a title='വലുതാക്കുക' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>കുറിപ്പായുള്ള എഴുത്ത്</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='കുറിപ്പായുള്ള എഴുത്ത്' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt='ലഘുചിത്രം'/></a><div class='thumbcaption'><div class='magnify'><a title='വലുതാക്കുക' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>കുറിപ്പായുള്ള എഴുത്ത്</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'അവലംബം',
'wikieditor-toolbar-help-content-reference-syntax' => 'താളിലെ എഴുത്ത്.&lt;ref name="test"&gt;[http://www.example.org കണ്ണിയായുള്ള എഴുത്ത്], കൂടുതൽ എഴുത്ത്.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "താളിലെ എഴുത്ത്.<sup><a href='#'>[1]</a></sup>",
@@ -16828,7 +17761,7 @@ $1:Example.jpg|കുറിപ്പ്2',
'wikieditor-toolbar-help-content-indent-result' => 'സാധാരണ എഴുത്ത്<dl><dd>നീക്കിയുള്ള എഴുത്ത്<dl><dd>നീക്കിയുള്ള എഴുത്ത്</dd></dl></dd></dl>',
);
-/** Mongolian (Монгол)
+/** Mongolian (монгол)
* @author Chinneeb
*/
$messages['mn'] = array(
@@ -17062,8 +17995,8 @@ $1:Example.jpg|चित्रपरिचय २',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>यादी घटक</li><li>यादी घटक</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'संलग्न संचिका',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|मथळा मजकूर]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='मथळा मजकूर' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Caption text</div></div>
-<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Caption text</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='मथळा मजकूर' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Caption text</div></div>
+<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Caption text</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'संदर्भ',
'wikieditor-toolbar-help-content-reference-syntax' => 'Page text.&lt;ref name="test"&gt;[http://www.example.org Link text], additional text.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Page text.<sup><a href='#'>[1]</a></sup>",
@@ -17156,6 +18089,16 @@ $messages['ms'] = array(
'wikieditor-toolbar-tool-link-empty' => 'Anda tidak memasukkan apa-apa untuk dipautkan.',
'wikieditor-toolbar-tool-file' => 'Fail terbenam',
'wikieditor-toolbar-tool-file-example' => 'Contoh.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Sisipkan fail',
+ 'wikieditor-toolbar-file-target' => 'Nama fail:',
+ 'wikieditor-toolbar-file-caption' => 'Kapsyen:',
+ 'wikieditor-toolbar-file-size' => 'Saiz:',
+ 'wikieditor-toolbar-file-float' => 'Jajaran:',
+ 'wikieditor-toolbar-file-default' => '(azali)',
+ 'wikieditor-toolbar-file-format' => 'Format:',
+ 'wikieditor-toolbar-file-format-none' => 'tiada',
+ 'wikieditor-toolbar-tool-file-insert' => 'Sisipkan',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Batalkan',
'wikieditor-toolbar-tool-reference' => 'Rujukan',
'wikieditor-toolbar-tool-reference-example' => 'Sisip nota kaki di sini',
'wikieditor-toolbar-tool-reference-cancel' => 'Batalkan',
@@ -17306,7 +18249,7 @@ $1:Contoh.jpg|Sari kata 2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Perkara senarai</li><li>Perkara senarai</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Fail terbenam',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Contoh.png|thumb|Teks kapsyen]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Teks kapsyen' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Besarkan' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Teks kapsyen</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Teks kapsyen' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Besarkan' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Teks kapsyen</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Rujukan',
'wikieditor-toolbar-help-content-reference-syntax' => 'Teks laman.&lt;ref nama="cubaan"&gt;[http://www.contoh.org Teks pautan], teks tambahan.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Teks laman.<sup><a href='#'>[1]</a></sup>",
@@ -17358,6 +18301,7 @@ $messages['mt'] = array(
'wikieditor-toolbar-desc' => "Immodifika l-kaxxa tal-għodda b'akbar użabilità",
'wikieditor-toolbar-preference' => 'Awtorizza l-użu tal-kaxxa tal-għodda estiża',
'wikieditor-toolbar-dialogs-preference' => "Awtorizza l-għajnuna għaż-żieda ta' test wiki avvanzat",
+ 'wikieditor-toolbar-hidesig' => 'Aħbi l-buttuna tal-firma mill-paġni tal-ispazju tal-isem prinċipali',
'wikieditor-toolbar-loading' => "Tiela'...",
'wikieditor-toolbar-tool-bold' => 'Tipa ħoxna',
'wikieditor-toolbar-tool-bold-example' => 'Tipa ħoxna',
@@ -17391,6 +18335,15 @@ $messages['mt'] = array(
'wikieditor-toolbar-tool-link-empty' => 'Ma daħħalt xejn lejn fejn se torbot.',
'wikieditor-toolbar-tool-file' => 'Fajl inkorporat',
'wikieditor-toolbar-tool-file-example' => 'Eżempju.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Daħħal fajl',
+ 'wikieditor-toolbar-file-target' => 'Isem tal-fajl:',
+ 'wikieditor-toolbar-file-caption' => 'Deskrizzjoni:',
+ 'wikieditor-toolbar-file-size' => 'Daqs:',
+ 'wikieditor-toolbar-file-float' => 'Pożizzjoni:',
+ 'wikieditor-toolbar-file-default' => '(definita minn qabel)',
+ 'wikieditor-toolbar-file-format' => 'Format:',
+ 'wikieditor-toolbar-tool-file-insert' => 'Daħħal',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Ħassar',
'wikieditor-toolbar-tool-reference' => 'Nota',
'wikieditor-toolbar-tool-reference-example' => 'Daħħal hawnhekk it-test tan-nota',
'wikieditor-toolbar-tool-reference-cancel' => 'Annulla',
@@ -17480,12 +18433,18 @@ $1:Eżempju.jpg|Deskrizzjoni2',
'wikieditor-toolbar-characters-page-greek' => 'Grieg',
'wikieditor-toolbar-characters-page-cyrillic' => 'Ċirilliku',
'wikieditor-toolbar-characters-page-arabic' => 'Għarbi',
+ 'wikieditor-toolbar-characters-page-arabicextended' => 'Għarbi estiż',
'wikieditor-toolbar-characters-page-persian' => 'Persjan',
'wikieditor-toolbar-characters-page-hebrew' => 'Ebrajk',
'wikieditor-toolbar-characters-page-bangla' => 'Bengali',
+ 'wikieditor-toolbar-characters-page-tamil' => 'Tamil',
'wikieditor-toolbar-characters-page-telugu' => 'Telugu',
'wikieditor-toolbar-characters-page-sinhala' => 'Sinħaliż',
'wikieditor-toolbar-characters-page-gujarati' => 'Gujarati',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'Devanagari',
+ 'wikieditor-toolbar-characters-page-thai' => 'Tajlandiż',
+ 'wikieditor-toolbar-characters-page-lao' => 'Lao',
+ 'wikieditor-toolbar-characters-page-khmer' => 'Khmer',
'wikieditor-toolbar-section-help' => 'Għajnuna',
'wikieditor-toolbar-help-heading-description' => 'Deskrizzjoni',
'wikieditor-toolbar-help-heading-syntax' => "X'tikteb",
@@ -17532,7 +18491,7 @@ $1:Eżempju.jpg|Deskrizzjoni2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Element tal-lista</li><li>Element tal-lista</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Fajl inkorporat',
'wikieditor-toolbar-help-content-file-syntax' => "[[$1:Eżempju.png|thumb|thumb|Test ta' deskrizzjoni]]",
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Test tad-deskrizzjoni' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Kabbar' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Test tad-deskrizzjoni</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Test tad-deskrizzjoni' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Kabbar' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Test tad-deskrizzjoni</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Referenza',
'wikieditor-toolbar-help-content-reference-syntax' => 'Test tal-paġna.&lt;ref name="test"&gt;[http://www.example.org Test tal-ħolqa], test addizzjonali.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Test tal-paġna.<sup><a href='#'>[1]</a></sup>",
@@ -17549,7 +18508,7 @@ $1:Eżempju.jpg|Deskrizzjoni2',
'wikieditor-toolbar-help-content-indent-result' => 'Test normali<dl><dd>Test indentat<dl><dd>Test indentat</dd></dl></dd></dl>',
);
-/** Erzya (Эрзянь)
+/** Erzya (эрзянь)
* @author Botuzhaleny-sodamo
*/
$messages['myv'] = array(
@@ -17740,7 +18699,7 @@ $messages['nah'] = array(
'wikieditor-toolbar-help-content-ilink-description' => 'Tlâtek tzòwistli',
'wikieditor-toolbar-help-content-xlink-description' => 'Calān tzonhuiliztli',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Ejemplo.png|thumb|Tlatòkâyòtilisyòtl]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Tlatòkâyòtilisyòtl</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Tlatòkâyòtilisyòtl</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Tlànalòyàntli',
'wikieditor-toolbar-help-content-reference-syntax' => 'Tlaìxtlapallâkuilòlmantli.&lt;ref name="test"&gt;[http://www.example.org Tzòwistlâkuilòlmantli], tlâxitìllâkuilòlmantli.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Tlaìxtlapallâkuilòlmantli.<sup><a href='#'>[1]</a></sup>",
@@ -17757,11 +18716,14 @@ $messages['nah'] = array(
'wikieditor-toolbar-help-content-indent-result' => 'Sâsanỉman tlâkuilòlmantli<dl><dd>Tlâtlapouhki tlakuilòlmantli<dl><dd>Tlâtlapouhki tlâkuilòlmantli</dd></dl></dd></dl>',
);
-/** Norwegian (bokmål)‬ (‪Norsk (bokmål)‬)
+/** Norwegian Bokmål (norsk (bokmål)‎)
+ * @author Danmichaelo
* @author Event
- * @author Jon Harald Søby
+ * @author Haakon K
+ * @author Jsoby
* @author Laaknor
* @author Nghtwlkr
+ * @author Simny
*/
$messages['nb'] = array(
'wikieditor' => 'Avansert grensesnitt for redigering av wikitekst',
@@ -17830,6 +18792,16 @@ $messages['nb'] = array(
'wikieditor-toolbar-tool-link-empty' => 'Du skrev ikke inn noe å lenke til',
'wikieditor-toolbar-tool-file' => 'Fil',
'wikieditor-toolbar-tool-file-example' => 'Eksempel.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Sett inn fil',
+ 'wikieditor-toolbar-file-target' => 'Filnavn:',
+ 'wikieditor-toolbar-file-caption' => 'Bildetekst:',
+ 'wikieditor-toolbar-file-size' => 'Størrelse:',
+ 'wikieditor-toolbar-file-float' => 'Justering:',
+ 'wikieditor-toolbar-file-default' => '(standard)',
+ 'wikieditor-toolbar-file-format' => 'Format:',
+ 'wikieditor-toolbar-file-format-none' => 'ingen',
+ 'wikieditor-toolbar-tool-file-insert' => 'Sett inn',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Avbryt',
'wikieditor-toolbar-tool-reference' => 'Referanse',
'wikieditor-toolbar-tool-reference-example' => 'Sett inn fotnotetekst her',
'wikieditor-toolbar-tool-reference-cancel' => 'Avbryt',
@@ -17904,6 +18876,7 @@ $1:Example.jpg|Bildetekst2',
'wikieditor-toolbar-tool-replace-case' => 'Skill mellom store/små bokstaver',
'wikieditor-toolbar-tool-replace-regex' => 'Bruk søkestrengen som et regulært uttrykk',
'wikieditor-toolbar-tool-replace-button-findnext' => 'Finn neste',
+ 'wikieditor-toolbar-tool-replace-button-replace' => 'Erstatt',
'wikieditor-toolbar-tool-replace-button-replaceall' => 'Erstatt alle',
'wikieditor-toolbar-tool-replace-close' => 'Lukk',
'wikieditor-toolbar-tool-replace-nomatch' => 'Søket ga ingen resultater.',
@@ -17922,9 +18895,11 @@ $1:Example.jpg|Bildetekst2',
'wikieditor-toolbar-characters-page-persian' => 'Persisk',
'wikieditor-toolbar-characters-page-hebrew' => 'Hebraisk',
'wikieditor-toolbar-characters-page-bangla' => 'Bangla',
+ 'wikieditor-toolbar-characters-page-tamil' => 'Tamilsk',
'wikieditor-toolbar-characters-page-telugu' => 'Telugu',
'wikieditor-toolbar-characters-page-sinhala' => 'Singalesisk',
'wikieditor-toolbar-characters-page-gujarati' => 'Gujarati',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'Devanagari',
'wikieditor-toolbar-characters-page-thai' => 'Thai',
'wikieditor-toolbar-characters-page-lao' => 'Laotisk',
'wikieditor-toolbar-characters-page-khmer' => 'Khmer',
@@ -17954,16 +18929,16 @@ $1:Example.jpg|Bildetekst2',
'wikieditor-toolbar-help-content-xlink-description' => 'Ekstern lenke',
'wikieditor-toolbar-help-content-xlink-syntax' => '[http://www.example.org Lenkenavn]<br />[http://www.example.org]<br />http://www.example.org',
'wikieditor-toolbar-help-content-xlink-result' => "<a href='#' class='external'>Lenkenavn</a><br /><a href='#' class='external autonumber'>[1]</a><br /><a href='#' class='external'>http://www.example.org</a>",
- 'wikieditor-toolbar-help-content-heading2-description' => '2. nivå overskrift',
+ 'wikieditor-toolbar-help-content-heading2-description' => 'Overskrift på 2. nivå',
'wikieditor-toolbar-help-content-heading2-syntax' => '== Overskrift ==',
'wikieditor-toolbar-help-content-heading2-result' => '<h2>Overskrift</h2>',
- 'wikieditor-toolbar-help-content-heading3-description' => '3. nivå overskrift',
+ 'wikieditor-toolbar-help-content-heading3-description' => 'Overskrift på 3. nivå',
'wikieditor-toolbar-help-content-heading3-syntax' => '=== Overskrift ===',
'wikieditor-toolbar-help-content-heading3-result' => '<h3>Overskrift</h3>',
- 'wikieditor-toolbar-help-content-heading4-description' => '4. nivå overskrift',
+ 'wikieditor-toolbar-help-content-heading4-description' => 'Overskrift på 4. nivå',
'wikieditor-toolbar-help-content-heading4-syntax' => '==== Overskrift ====',
'wikieditor-toolbar-help-content-heading4-result' => '<h4>Overskrift</h4>',
- 'wikieditor-toolbar-help-content-heading5-description' => '5. nivå overskrift',
+ 'wikieditor-toolbar-help-content-heading5-description' => 'Overskrift på 5. nivå',
'wikieditor-toolbar-help-content-heading5-syntax' => '===== Overskrift =====',
'wikieditor-toolbar-help-content-heading5-result' => '<h5>Overskrift</h5>',
'wikieditor-toolbar-help-content-ulist-description' => 'Punktliste',
@@ -17976,7 +18951,7 @@ $1:Example.jpg|Bildetekst2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Listeelement</li><li>Listeelement</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Fil',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Bildetekst]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Bildetekst' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Forstørr' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Bildetekst</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Bildetekst' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Forstørr' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Bildetekst</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Referanse',
'wikieditor-toolbar-help-content-reference-syntax' => 'Tekst.&lt;ref name="test"&gt;[http://www.example.org Lenketekst], ytterligere tekst.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Tekst.<sup><a href='#'>[1]</a></sup>",
@@ -18011,7 +18986,7 @@ $messages['nds-nl'] = array(
'wikieditor-publish-dialog-title' => 'Publiseren naor {{SITENAME}}',
'wikieditor-publish-dialog-summary' => 'Bewarkingssamenvatting (beschrief de wijzingen in t kort):',
'wikieditor-publish-dialog-minor' => 'Kleine bewarking',
- 'wikieditor-publish-dialog-watch' => 'Volg disse pagina',
+ 'wikieditor-publish-dialog-watch' => 'Volg disse zied',
'wikieditor-publish-dialog-publish' => 'Publiseren',
'wikieditor-publish-dialog-goback' => 'Weerumme',
'wikieditor-template-editor-preference' => 'Formulier-ebaseerd bewarken van wikimallen inschakelen',
@@ -18037,23 +19012,23 @@ $messages['nds-nl'] = array(
'wikieditor-toolbar-tool-xlink-example' => 'http://www.example.com beschrieving',
'wikieditor-toolbar-tool-link' => 'Verwiezing',
'wikieditor-toolbar-tool-link-title' => 'Verwiezing derbie doon',
- 'wikieditor-toolbar-tool-link-int' => 'Naor n wikipagina',
- 'wikieditor-toolbar-tool-link-int-target' => 'Paginanaam:',
- 'wikieditor-toolbar-tool-link-int-target-tooltip' => 'Paginanaam of webadres',
+ 'wikieditor-toolbar-tool-link-int' => 'Naor n wikizied',
+ 'wikieditor-toolbar-tool-link-int-target' => 'Ziednaam:',
+ 'wikieditor-toolbar-tool-link-int-target-tooltip' => 'Ziednaam of webadres',
'wikieditor-toolbar-tool-link-int-text' => 'Beschrieving:',
'wikieditor-toolbar-tool-link-int-text-tooltip' => 'Zet hier de tekste in die te zien mut ween',
- 'wikieditor-toolbar-tool-link-ext' => 'Naor n uutgaonde webpagina',
+ 'wikieditor-toolbar-tool-link-ext' => 'Naor n uutgaonde webstee',
'wikieditor-toolbar-tool-link-ext-target' => 'Webadres:',
'wikieditor-toolbar-tool-link-ext-text' => 'Beschrieving:',
'wikieditor-toolbar-tool-link-insert' => 'Verwiezing derbie doon',
'wikieditor-toolbar-tool-link-cancel' => 'Aofbreken',
- 'wikieditor-toolbar-tool-link-int-target-status-exists' => 'De pagina besteet al',
- 'wikieditor-toolbar-tool-link-int-target-status-notexists' => 'De pagina besteet niet',
- 'wikieditor-toolbar-tool-link-int-target-status-invalid' => 'Ongeldige paginanaam',
+ 'wikieditor-toolbar-tool-link-int-target-status-exists' => 'De zied besteet al',
+ 'wikieditor-toolbar-tool-link-int-target-status-notexists' => 'De zied besteet niet',
+ 'wikieditor-toolbar-tool-link-int-target-status-invalid' => 'Ongeldige ziednaam',
'wikieditor-toolbar-tool-link-int-target-status-external' => 'Uutgaonde verwiezing',
- 'wikieditor-toolbar-tool-link-int-target-status-loading' => 'Is an t kieken of disse pagina al besteet...',
- 'wikieditor-toolbar-tool-link-int-invalid' => 'De op-egeven pagina is ongeldig.',
- 'wikieditor-toolbar-tool-link-lookslikeinternal' => "t Lik as of t webadres da'j op-egeven hebben n verwiezing naor n aandere wikipagina mut ween.
+ 'wikieditor-toolbar-tool-link-int-target-status-loading' => 'Is an t kieken of disse zied al besteet...',
+ 'wikieditor-toolbar-tool-link-int-invalid' => 'De op-egeven zied is ongeldig.',
+ 'wikieditor-toolbar-tool-link-lookslikeinternal' => "t Lik as of t webadres da'j op-egeven hebben n verwiezing naor n aandere wikizied mut ween.
Wi'j der n interne verwiezing van maken?",
'wikieditor-toolbar-tool-link-lookslikeinternal-int' => 'Interne verwiezing',
'wikieditor-toolbar-tool-link-lookslikeinternal-ext' => 'Uutgaonde verwiezing',
@@ -18085,7 +19060,7 @@ Wi'j der n interne verwiezing van maken?",
'wikieditor-toolbar-tool-nowiki' => 'Gien wiki-opmaak',
'wikieditor-toolbar-tool-nowiki-example' => 'Tekste zonder opmaak hier invoegen',
'wikieditor-toolbar-tool-redirect' => 'Deurverwiezing',
- 'wikieditor-toolbar-tool-redirect-example' => 'Doelpagina',
+ 'wikieditor-toolbar-tool-redirect-example' => 'Doelzied',
'wikieditor-toolbar-tool-big' => 'Groot',
'wikieditor-toolbar-tool-big-example' => 'Groot edrokten tekste',
'wikieditor-toolbar-tool-small' => 'Klein',
@@ -18175,8 +19150,8 @@ $1:Veurbeeld2|Bieschrift2',
'wikieditor-toolbar-help-content-bolditalic-syntax' => "'''''Vet- en schunedrokten tekste'''''",
'wikieditor-toolbar-help-content-bolditalic-result' => '<em><strong>Vet- en schunedrokten tekste</strong></em>',
'wikieditor-toolbar-help-content-ilink-description' => 'Interne verwiezing',
- 'wikieditor-toolbar-help-content-ilink-syntax' => '[[Paginanaam|Beschrieving]]<br />[[Paginanaam]]',
- 'wikieditor-toolbar-help-content-ilink-result' => "<a href='#'>Beschrieving</a><br /><a href='#'>Paginanaam</a>",
+ 'wikieditor-toolbar-help-content-ilink-syntax' => '[[Ziednaam|Beschrieving]]<br />[[Ziednaam]]',
+ 'wikieditor-toolbar-help-content-ilink-result' => "<a href='#'>Beschrieving</a><br /><a href='#'>Ziednaam</a>",
'wikieditor-toolbar-help-content-xlink-description' => 'Uutgaonde verwiezing',
'wikieditor-toolbar-help-content-xlink-syntax' => '[http://www.example.org Beschrieving]<br />[http://www.example.org]<br />http://www.example.org',
'wikieditor-toolbar-help-content-xlink-result' => "<a href='#' class='external'>Beschrieving</a><br /><a href='#' class='external autonummering'>[1]</a><br /><a href='#' class='external'>http://www.example.org</a>",
@@ -18199,13 +19174,13 @@ $1:Veurbeeld2|Bieschrift2',
'wikieditor-toolbar-help-content-olist-syntax' => '# Regel in n lieste mit nummers<br /># Regel in n lieste mit nummers',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Regel in n lieste mit nummers</li><li>Regel in n lieste mit nummers</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Bestaand derbie doon',
- 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Veurbeeld.png|thumb|Beschrieving]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Bieschrift' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Vergroten' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Bieschrift</div></div>",
+ 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Veurbeeld.png|thumb|Bieschrift]]',
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Bieschrift' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Vergroten' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Bieschrift</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Referensie',
- 'wikieditor-toolbar-help-content-reference-syntax' => 'Paginatekste.&lt;ref name="test"&gt;[http://www.example.org Beschrieving], eventuele tekste.&lt;/ref&gt;',
- 'wikieditor-toolbar-help-content-reference-result' => "Paginatekste <sup><a href='#'>[1]</a></sup>",
+ 'wikieditor-toolbar-help-content-reference-syntax' => 'Ziedtekste.&lt;ref name="test"&gt;[http://www.example.org Beschrieving], eventuele tekste.&lt;/ref&gt;',
+ 'wikieditor-toolbar-help-content-reference-result' => "Ziedtekste <sup><a href='#'>[1]</a></sup>",
'wikieditor-toolbar-help-content-rereference-description' => 'Hergebruuk van de zelfde referensie',
- 'wikieditor-toolbar-help-content-rereference-result' => "Paginatekste <sup><a href='#'>[1]</a></sup>",
+ 'wikieditor-toolbar-help-content-rereference-result' => "Ziedtekste <sup><a href='#'>[1]</a></sup>",
'wikieditor-toolbar-help-content-showreferences-description' => 'Referensies weergeven',
'wikieditor-toolbar-help-content-showreferences-result' => "<ol class='references'><li id='cite_note-test-0'><b><a title='' href='#'>^</a></b> <a rel='nofollow' title='http://www.example.org' class='external text' href='#'>Beschrieving</a>, eventuele tekste.</li></ol>",
'wikieditor-toolbar-help-content-signaturetimestamp-description' => 'Ondertekening mit tiedstempel',
@@ -18306,6 +19281,16 @@ Wilt u er een interne verwijzing van maken?',
'wikieditor-toolbar-tool-link-empty' => 'U hebt niets opgegeven om naar te verwijzen.',
'wikieditor-toolbar-tool-file' => 'Ingebed bestand',
'wikieditor-toolbar-tool-file-example' => 'Voorbeeld.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Bestand toevoegen',
+ 'wikieditor-toolbar-file-target' => 'Bestandsnaam:',
+ 'wikieditor-toolbar-file-caption' => 'Bijschrift:',
+ 'wikieditor-toolbar-file-size' => 'Grootte:',
+ 'wikieditor-toolbar-file-float' => 'Uitlijning:',
+ 'wikieditor-toolbar-file-default' => '(standaard)',
+ 'wikieditor-toolbar-file-format' => 'Opmaak:',
+ 'wikieditor-toolbar-file-format-none' => 'geen',
+ 'wikieditor-toolbar-tool-file-insert' => 'Invoegen',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Annuleren',
'wikieditor-toolbar-tool-reference' => 'Referentie',
'wikieditor-toolbar-tool-reference-example' => 'Plaats hier tekst voor de voetnoot',
'wikieditor-toolbar-tool-reference-cancel' => 'Annuleren',
@@ -18453,7 +19438,7 @@ $1:Voorbeeld.jpg|Bijschrift2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Regel in genummerde lijst</li><li>Regel in genummerde lijst</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Ingebed bestand',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Voorbeeld.png|thumb|Bijschrift]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Bijschrift' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Vergroten' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Bijschrift</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Bijschrift' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Vergroten' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Bijschrift</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Referentie',
'wikieditor-toolbar-help-content-reference-syntax' => 'Paginatekst.&lt;ref name="test"&gt;[http://www.example.org Verwijzingstekst], extra tekst.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Paginatekst. <sup><a href='#'>[1]</a></sup>",
@@ -18470,7 +19455,25 @@ $1:Voorbeeld.jpg|Bijschrift2',
'wikieditor-toolbar-help-content-indent-result' => 'Normale tekst<dl><dd>Ingesprongen tekst<dl><dd>Ingesprongen tekst</dd></dl></dd></dl>',
);
-/** Norwegian Nynorsk (‪Norsk (nynorsk)‬)
+/** Nederlands (informeel)‎ (Nederlands (informeel)‎)
+ * @author Siebrand
+ */
+$messages['nl-informal'] = array(
+ 'wikieditor-publish-dialog-summary' => 'Bewerkingssamenvatting (beschrijf kort de door jou gemaakte wijzingen):',
+ 'wikieditor-toolbar-tool-link-int-invalid' => 'De pagina die je hebt opgegeven is ongeldig.',
+ 'wikieditor-toolbar-tool-link-lookslikeinternal' => 'De URL die je hebt opgegeven lijkt bedoeld te zijn als verwijzing naar een andere wikipagina.
+Wil je er een interne verwijzing van maken?',
+ 'wikieditor-toolbar-tool-link-empty' => 'Je hebt niets opgegeven om naar te verwijzen.',
+ 'wikieditor-toolbar-tool-table-invalidnumber' => 'Je hebt een ongeldig aantal regels of kolommen opgegeven.',
+ 'wikieditor-toolbar-tool-table-zero' => 'Je kunt geen tabel invoegen zonder regels of kolommen.',
+ 'wikieditor-toolbar-tool-replace-nomatch' => 'Je zoekopdracht heeft geen resultaten opgeleverd.',
+ 'wikieditor-toolbar-tool-replace-emptysearch' => 'Je hebt geen zoekterm opgegeven.',
+ 'wikieditor-toolbar-tool-replace-invalidregex' => 'Je reguliere expressie is ongeldig: $1',
+ 'wikieditor-toolbar-help-heading-syntax' => 'Wat je typt',
+ 'wikieditor-toolbar-help-heading-result' => 'Wat je te zien krijgt',
+);
+
+/** Norwegian Nynorsk (norsk (nynorsk)‎)
* @author Eirik
* @author Gunnernett
* @author Harald Khan
@@ -18541,6 +19544,15 @@ $messages['nn'] = array(
'wikieditor-toolbar-tool-link-empty' => 'Du skreiv ikkje inn noko å lenkja til.',
'wikieditor-toolbar-tool-file' => 'Fil',
'wikieditor-toolbar-tool-file-example' => 'Døme.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Set inn fil',
+ 'wikieditor-toolbar-file-target' => 'Filnamn:',
+ 'wikieditor-toolbar-file-caption' => 'Skildring:',
+ 'wikieditor-toolbar-file-size' => 'Storleik:',
+ 'wikieditor-toolbar-file-float' => 'Stad:',
+ 'wikieditor-toolbar-file-default' => '(standard)',
+ 'wikieditor-toolbar-file-format' => 'Format:',
+ 'wikieditor-toolbar-tool-file-insert' => 'Set inn',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Bryt av',
'wikieditor-toolbar-tool-reference' => 'Referanse',
'wikieditor-toolbar-tool-reference-example' => 'Set inn referansetekst her',
'wikieditor-toolbar-tool-reference-cancel' => 'Avbryt',
@@ -18562,7 +19574,7 @@ $messages['nn'] = array(
'wikieditor-toolbar-tool-olist' => 'Nummerert liste',
'wikieditor-toolbar-tool-olist-example' => 'Nummerert listeelement',
'wikieditor-toolbar-tool-indent' => 'Innrykk',
- 'wikieditor-toolbar-tool-indent-example' => 'Innrykt lina',
+ 'wikieditor-toolbar-tool-indent-example' => 'Innrykt line',
'wikieditor-toolbar-tool-nowiki' => 'Inga wikiformatering',
'wikieditor-toolbar-tool-nowiki-example' => 'Set inn uformatert tekst her',
'wikieditor-toolbar-tool-redirect' => 'Omdirigering',
@@ -18663,16 +19675,16 @@ $1:Døme.jpg|Bilettekst2',
'wikieditor-toolbar-help-content-xlink-description' => 'Ekstern lenkje',
'wikieditor-toolbar-help-content-xlink-syntax' => '[http://www.døme.org Lenkjenamn]<br />[http://www.døme.org]<br />http://www.døme.org',
'wikieditor-toolbar-help-content-xlink-result' => "<a href='#' class='external'>Lenkjetekst</a><br /><a href='#' class='external autonumber'>[1]</a><br /><a href='#' class='external'>http://www.døme.org</a>",
- 'wikieditor-toolbar-help-content-heading2-description' => 'Overskrift på andre nivå',
+ 'wikieditor-toolbar-help-content-heading2-description' => 'Overskrift på andre nivået',
'wikieditor-toolbar-help-content-heading2-syntax' => '== Overskriftstekst ==',
'wikieditor-toolbar-help-content-heading2-result' => '<h2>Overskriftstekst</h2>',
- 'wikieditor-toolbar-help-content-heading3-description' => 'Overskrift på tredje nivå',
+ 'wikieditor-toolbar-help-content-heading3-description' => 'Overskrift på tredje nivået',
'wikieditor-toolbar-help-content-heading3-syntax' => '=== Overskriftstekst ===',
'wikieditor-toolbar-help-content-heading3-result' => '<h3>Overskriftstekst</h3>',
- 'wikieditor-toolbar-help-content-heading4-description' => 'Overskrift på fjerde nivå',
+ 'wikieditor-toolbar-help-content-heading4-description' => 'Overskrift på fjerde nivået',
'wikieditor-toolbar-help-content-heading4-syntax' => '==== Overskriftstekst ====',
'wikieditor-toolbar-help-content-heading4-result' => '<h4>Overskriftstekst</h4>',
- 'wikieditor-toolbar-help-content-heading5-description' => 'Overskrift på femte nivå',
+ 'wikieditor-toolbar-help-content-heading5-description' => 'Overskrift på femte nivået',
'wikieditor-toolbar-help-content-heading5-syntax' => '===== Overskriftstekst =====',
'wikieditor-toolbar-help-content-heading5-result' => '<h5>Overskriftstekst</h5>',
'wikieditor-toolbar-help-content-ulist-description' => 'Punktliste',
@@ -18683,7 +19695,7 @@ $1:Døme.jpg|Bilettekst2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Listeelement</li><li>Listeelement</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Fil',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Bilettekst]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Bilettekst'class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Forstørr' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Bilettekst</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Bilettekst'class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Forstørr' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Bilettekst</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Referanse',
'wikieditor-toolbar-help-content-reference-syntax' => 'Sidetekst.&lt;ref name="test"&gt;[http://www.døme.org Lenkjetekst], ekstra lenkjetekst.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Sidetekst.<sup><a href='#'>[1]</a></sup>",
@@ -18732,7 +19744,7 @@ $messages['nso'] = array(
'wikieditor-toolbar-help-content-heading5-syntax' => '== Ditlhaka tša hlogo-taba ==',
);
-/** Occitan (Occitan)
+/** Occitan (occitan)
* @author Boulaur
* @author Cedric31
* @author Jfblanc
@@ -18935,7 +19947,7 @@ $1:Exemple.jpg|Descripcion 2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Element de la lista</li><li>Element de la lista</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Fichièr inserit',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Tèxte afichat]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Tèxte afichat' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Tèxte afichat</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Tèxte afichat' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Tèxte afichat</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Referéncia',
'wikieditor-toolbar-help-content-reference-syntax' => 'Tèxte de la pagina.&lt;ref name="test"&gt;[http://www.example.org tèxte del ligam], tèxte adicional.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Tèxte de la pagina <sup><a href='#'>[1]</a></sup>",
@@ -18956,6 +19968,7 @@ $1:Exemple.jpg|Descripcion 2',
* @author Ansumang
* @author Odisha1
* @author Psubhashish
+ * @author Shisir 1945
*/
$messages['or'] = array(
'wikieditor' => 'ଉନ୍ନତ ଉଇକିଟେକ୍ସଟ ସମ୍ପାଦନା ଇଣ୍ଟରଫେସ',
@@ -19025,6 +20038,15 @@ $messages['or'] = array(
'wikieditor-toolbar-tool-link-empty' => 'ଆପଣ କିଛି ଲିଙ୍କ ସମ୍ପର୍କିତ କରିବା ପାଇଁ ଦେଇନାହାନ୍ତି ।',
'wikieditor-toolbar-tool-file' => 'ଏମବେଡ଼ ହୋଇ ଥିବା ଫାଇଲ',
'wikieditor-toolbar-tool-file-example' => 'ଉଦାହରଣ.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'ଫାଇଲ୍‌ ପୁରାନ୍ତୁ',
+ 'wikieditor-toolbar-file-target' => 'ଫାଇଲ ନାମ:',
+ 'wikieditor-toolbar-file-caption' => 'ଶିରୋନାମା:',
+ 'wikieditor-toolbar-file-size' => 'ଆକାର:',
+ 'wikieditor-toolbar-file-float' => 'ସଜାଣି:',
+ 'wikieditor-toolbar-file-default' => '(ମୂଳ)',
+ 'wikieditor-toolbar-file-format' => 'ସଜାଣି:',
+ 'wikieditor-toolbar-tool-file-insert' => 'ଭରିବେ',
+ 'wikieditor-toolbar-tool-file-cancel' => 'ନାକଚ',
'wikieditor-toolbar-tool-reference' => 'ଆଧାର',
'wikieditor-toolbar-tool-reference-example' => 'ଏଠାରେ ପାଦଟୀକାଟି ରଖିବେ',
'wikieditor-toolbar-tool-reference-cancel' => 'ନାକଚ',
@@ -19118,9 +20140,11 @@ $1:ଉଦାହରଣ.jpg|ଶିରୋନାମା୨',
'wikieditor-toolbar-characters-page-persian' => 'ପାରସିକ',
'wikieditor-toolbar-characters-page-hebrew' => 'ହିବୁରୁ',
'wikieditor-toolbar-characters-page-bangla' => 'ବଙ୍ଗଳା',
+ 'wikieditor-toolbar-characters-page-tamil' => 'ତାମିଲ',
'wikieditor-toolbar-characters-page-telugu' => 'ତେଲୁଗୁ',
'wikieditor-toolbar-characters-page-sinhala' => 'ସିଂହଳି',
'wikieditor-toolbar-characters-page-gujarati' => 'ଗୁଜୁରାଟି',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'ଦେବନାଗରୀ',
'wikieditor-toolbar-characters-page-thai' => 'ଥାଇ',
'wikieditor-toolbar-characters-page-lao' => 'ଲାଓ',
'wikieditor-toolbar-characters-page-khmer' => 'କମେର ଭାଷା',
@@ -19170,7 +20194,7 @@ $1:ଉଦାହରଣ.jpg|ଶିରୋନାମା୨',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>ତାଲିକା ଚିଜ</li><li>ତାଲିକା ଚିଜ</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'ଏମବେଡ଼ ହୋଇ ଥିବା ଫାଇଲ',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:ଉଦାହରଣ.png|thumb|ଶିରୋନାମା ଲେଖା]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='ଶିରୋନାମା ଲେଖା' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='ବଡ଼ କରିବେ' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>ଶିରୋନାମା ଲେଖା</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='ଶିରୋନାମା ଲେଖା' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='ବଡ଼ କରିବେ' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>ଶିରୋନାମା ଲେଖା</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'ଆଧାର',
'wikieditor-toolbar-help-content-reference-syntax' => 'ପୃଷ୍ଠା ଲେଖା.&lt;ref name="test"&gt;[http://www.example.org Link text], ଅତିରିକ୍ତ ଲେଖା ।&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "ପୃଷ୍ଠା ଲେଖା ।<sup><a href='#'>[1]</a></sup>",
@@ -19280,12 +20304,13 @@ $messages['pfl'] = array(
'wikieditor-toolbar-help-content-bold-syntax' => "'''Fedde Tegschd'''",
);
-/** Polish (Polski)
+/** Polish (polski)
* @author BeginaFelicysym
* @author Leinad
* @author Marcin Łukasz Kiejzik
* @author Nux
* @author Olgak85
+ * @author Przemub
* @author Sp5uhe
* @author ToSter
* @author Wpedzich
@@ -19357,6 +20382,15 @@ $messages['pl'] = array(
'wikieditor-toolbar-tool-link-empty' => 'Nie podałeś adresu do którego ma prowadzić link.',
'wikieditor-toolbar-tool-file' => 'Plik osadzony',
'wikieditor-toolbar-tool-file-example' => 'Przykład.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Wstaw plik',
+ 'wikieditor-toolbar-file-target' => 'Plik:',
+ 'wikieditor-toolbar-file-caption' => 'Podpis:',
+ 'wikieditor-toolbar-file-size' => 'Rozmiar:',
+ 'wikieditor-toolbar-file-float' => 'Wyrównywanie:',
+ 'wikieditor-toolbar-file-default' => '(domyślnie)',
+ 'wikieditor-toolbar-file-format' => 'Format:',
+ 'wikieditor-toolbar-tool-file-insert' => 'Wstaw',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Anuluj',
'wikieditor-toolbar-tool-reference' => 'Przypis',
'wikieditor-toolbar-tool-reference-example' => 'Wstaw tekst przypisu',
'wikieditor-toolbar-tool-reference-cancel' => 'Anuluj',
@@ -19450,9 +20484,11 @@ $1:Example.jpg|Podpis2',
'wikieditor-toolbar-characters-page-persian' => 'Perskie',
'wikieditor-toolbar-characters-page-hebrew' => 'Hebrajskie',
'wikieditor-toolbar-characters-page-bangla' => 'Bengalski',
+ 'wikieditor-toolbar-characters-page-tamil' => 'Tamilski',
'wikieditor-toolbar-characters-page-telugu' => 'Telugu',
'wikieditor-toolbar-characters-page-sinhala' => 'Syngaleskie',
'wikieditor-toolbar-characters-page-gujarati' => 'Gudźarackie',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'Dewanagari',
'wikieditor-toolbar-characters-page-thai' => 'Tajskie',
'wikieditor-toolbar-characters-page-lao' => 'Laotańskie',
'wikieditor-toolbar-characters-page-khmer' => 'Khmerskie',
@@ -19502,7 +20538,7 @@ $1:Example.jpg|Podpis2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Pozycja listy</li><li>Pozycja listy</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Plik osadzony',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Przykład.png|thumb|Tekst podpisu]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Tekst podpisu</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Tekst podpisu</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Przypis',
'wikieditor-toolbar-help-content-reference-syntax' => 'Treść strony&lt;ref name="test"&gt; [http://www.przyklad.org Opis linku], dodatkowy tekst. &lt;/ref&gt;.',
'wikieditor-toolbar-help-content-reference-result' => "Treść strony<sup><a href='#'>[1]</a></sup>.",
@@ -19590,6 +20626,15 @@ $messages['pms'] = array(
'wikieditor-toolbar-tool-link-empty' => "A l'ha anserì gnente al qual a-i peula esse n'anliura.",
'wikieditor-toolbar-tool-file' => 'Archivi anserì',
'wikieditor-toolbar-tool-file-example' => 'Esempi.jpg',
+ 'wikieditor-toolbar-tool-file-title' => "Anserì l'archivi",
+ 'wikieditor-toolbar-file-target' => "Nòm ëd l'archivi:",
+ 'wikieditor-toolbar-file-caption' => 'Descrission:',
+ 'wikieditor-toolbar-file-size' => 'Grandëssa:',
+ 'wikieditor-toolbar-file-float' => 'Alineament:',
+ 'wikieditor-toolbar-file-default' => '(stàndard)',
+ 'wikieditor-toolbar-file-format' => 'Formà:',
+ 'wikieditor-toolbar-tool-file-insert' => 'Anserì',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Scancela',
'wikieditor-toolbar-tool-reference' => 'Arferiment',
'wikieditor-toolbar-tool-reference-example' => 'Anserì ël test ëd la nòta an bass dla pàgina ambelessì',
'wikieditor-toolbar-tool-reference-cancel' => 'Scancela',
@@ -19737,7 +20782,7 @@ $1:Esempi.jpg|Descrission2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Element ëd la lista</li><li>Element ëd la lista</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Archivi anserì',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Test dël tìtol]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Test mostrà' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Test mostrà</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Test mostrà' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Test mostrà</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Arferiment',
'wikieditor-toolbar-help-content-reference-syntax' => 'Test ëd dla pàgina.&lt;ref name="test"&gt;[http://www.example.org Test dël colegament], test adissional.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Test ëd la pàgina.<sup><a href='#'>[1]</a></sup>",
@@ -20000,13 +21045,13 @@ $messages['pnt'] = array(
$messages['ps'] = array(
'wikieditor' => 'د پرمختللی ويکي متن د سمون ليدنمخ',
'wikieditor-wikitext-tab' => 'ويکي متن',
- 'wikieditor-loading' => 'د برسېرېدو په حال کې',
+ 'wikieditor-loading' => 'برسېرېدنې کې دی...',
'wikieditor-preview-preference' => 'څنګ په څنګ مخليدنه چارنده کول',
'wikieditor-preview-tab' => 'مخليدنه',
'wikieditor-preview-changes-tab' => 'بدلونونه',
- 'wikieditor-preview-loading' => 'د برسېرېدلو په حال کې...',
+ 'wikieditor-preview-loading' => 'برسېرېدنې کې دی...',
'wikieditor-previewDialog-tab' => 'مخليدنه',
- 'wikieditor-previewDialog-loading' => 'د برسېرېدلو په حال کې...',
+ 'wikieditor-previewDialog-loading' => 'برسېرېدنې کې دی...',
'wikieditor-publish-preference' => 'ګام په ګام خپرېدنه چارنده کول',
'wikieditor-publish-button-publish' => 'خپرول',
'wikieditor-publish-button-cancel' => 'ناګارل',
@@ -20023,7 +21068,7 @@ $messages['ps'] = array(
'wikieditor-toc-show' => 'مېنځپانګه ښکاره کول',
'wikieditor-toc-hide' => 'مېنځپانګه پټول',
'wikieditor-toolbar' => 'د سمون توکپټه',
- 'wikieditor-toolbar-loading' => 'د برسېرېدلو په حال کې...',
+ 'wikieditor-toolbar-loading' => 'برسېرېدنې کې دی...',
'wikieditor-toolbar-tool-bold' => 'زغرد',
'wikieditor-toolbar-tool-bold-example' => 'زغرد متن',
'wikieditor-toolbar-tool-italic' => 'رېوند',
@@ -20053,6 +21098,12 @@ $messages['ps'] = array(
'wikieditor-toolbar-tool-link-lookslikeinternal-int' => 'کورنۍ تړنه',
'wikieditor-toolbar-tool-link-lookslikeinternal-ext' => 'باندنۍ تړنه',
'wikieditor-toolbar-tool-file' => 'خښه شوې دوتنه',
+ 'wikieditor-toolbar-file-target' => 'د دوتنې نوم:',
+ 'wikieditor-toolbar-file-size' => 'کچه:',
+ 'wikieditor-toolbar-file-default' => '(تلواليز)',
+ 'wikieditor-toolbar-file-format' => 'بڼه:',
+ 'wikieditor-toolbar-tool-file-insert' => 'ورټومبل',
+ 'wikieditor-toolbar-tool-file-cancel' => 'ناګارل',
'wikieditor-toolbar-tool-reference' => 'سرچينه',
'wikieditor-toolbar-tool-reference-example' => 'د پايڅوړ متن دلته وليکۍ',
'wikieditor-toolbar-tool-reference-cancel' => 'ناګارل',
@@ -20071,7 +21122,7 @@ $messages['ps'] = array(
'wikieditor-toolbar-group-format' => 'بڼه',
'wikieditor-toolbar-tool-ulist' => 'ګولۍ داره لړليک',
'wikieditor-toolbar-tool-ulist-example' => 'د ګولۍ داره لړليک توکی',
- 'wikieditor-toolbar-tool-olist' => 'شمېر لرونکی لړليک',
+ 'wikieditor-toolbar-tool-olist' => 'شمېرن لړليک',
'wikieditor-toolbar-tool-redirect-example' => 'د هدفي مخ نوم',
'wikieditor-toolbar-tool-big' => 'لوی',
'wikieditor-toolbar-tool-big-example' => 'لوی متن',
@@ -20085,6 +21136,18 @@ $messages['ps'] = array(
'wikieditor-toolbar-tool-gallery' => 'د انځورونو انځورتون',
'wikieditor-toolbar-tool-newline' => 'نوې کرښه',
'wikieditor-toolbar-tool-table' => 'لښتيال',
+ 'wikieditor-toolbar-tool-table-example-old' => '-
+! سرليک 1
+! سرليک 2
+! سرليک 3
+|-
+| صف 1، کوټه 1
+| صف 1، کوټه 2
+| صف 1، کوټه 3
+|-
+| صف 2، کوټه 1
+| صف 2، کوټه 2
+| صف 2، کوټه 3',
'wikieditor-toolbar-tool-table-example-header' => 'د سرليک متن',
'wikieditor-toolbar-tool-table-title' => 'لښتيال ورټومبل',
'wikieditor-toolbar-tool-table-dimensions-rows' => 'ليکې',
@@ -20117,9 +21180,11 @@ $messages['ps'] = array(
'wikieditor-toolbar-characters-page-persian' => 'پارسي',
'wikieditor-toolbar-characters-page-hebrew' => 'عبراني',
'wikieditor-toolbar-characters-page-bangla' => 'بنګالي',
+ 'wikieditor-toolbar-characters-page-tamil' => 'تاميلي',
'wikieditor-toolbar-characters-page-telugu' => 'تېلوګو',
'wikieditor-toolbar-characters-page-sinhala' => 'سېنهالي',
'wikieditor-toolbar-characters-page-gujarati' => 'ګجراتي',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'دېوانګري',
'wikieditor-toolbar-characters-page-thai' => 'تايلنډي',
'wikieditor-toolbar-characters-page-lao' => 'لاوي',
'wikieditor-toolbar-characters-page-khmer' => 'خمري',
@@ -20160,7 +21225,7 @@ $messages['ps'] = array(
'wikieditor-toolbar-help-content-ulist-description' => 'ګولۍ داره لړليک',
'wikieditor-toolbar-help-content-ulist-syntax' => '* د لړليک توکی<br />* د لړليک توکی',
'wikieditor-toolbar-help-content-ulist-result' => '<ul><li>د لړليک توکی</li><li>د لړليک توکی</li></ul>',
- 'wikieditor-toolbar-help-content-olist-description' => 'شمېر لرونکی لړليک',
+ 'wikieditor-toolbar-help-content-olist-description' => 'شمېرن لړليک',
'wikieditor-toolbar-help-content-olist-syntax' => '# د لړليک توکی<br /># د لړليک توکی',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>د لړليک توکی</li><li>د لړليک توکی</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'خښه شوې دوتنه',
@@ -20181,7 +21246,7 @@ $messages['ps'] = array(
'wikieditor-toolbar-help-content-indent-result' => 'عادي متن<dl><dd>سرتشېدلی متن<dl><dd>سرتشېدلی متن</dd></dl></dd></dl>',
);
-/** Portuguese (Português)
+/** Portuguese (português)
* @author 555
* @author Giro720
* @author Hamilton Abreu
@@ -20190,6 +21255,7 @@ $messages['ps'] = array(
* @author Luckas Blade
* @author Malafaya
* @author MetalBrasil
+ * @author SandroHc
*/
$messages['pt'] = array(
'wikieditor' => 'Interface avançada de edição de texto wiki',
@@ -20258,6 +21324,15 @@ $messages['pt'] = array(
'wikieditor-toolbar-tool-link-empty' => 'Não introduziu o destino do link.',
'wikieditor-toolbar-tool-file' => 'Ficheiro incorporado',
'wikieditor-toolbar-tool-file-example' => 'Exemplo.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Inserir ficheiro',
+ 'wikieditor-toolbar-file-target' => 'Nome do ficheiro:',
+ 'wikieditor-toolbar-file-caption' => 'Legenda:',
+ 'wikieditor-toolbar-file-size' => 'Tamanho:',
+ 'wikieditor-toolbar-file-float' => 'Alinhamento:',
+ 'wikieditor-toolbar-file-default' => '(padrão)',
+ 'wikieditor-toolbar-file-format' => 'Formato:',
+ 'wikieditor-toolbar-tool-file-insert' => 'Inserir',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Cancelar',
'wikieditor-toolbar-tool-reference' => 'Referência',
'wikieditor-toolbar-tool-reference-example' => 'Inserir texto da referência aqui',
'wikieditor-toolbar-tool-reference-cancel' => 'Cancelar',
@@ -20351,9 +21426,11 @@ $1:Exemplo2.jpg|Legenda2',
'wikieditor-toolbar-characters-page-persian' => 'Persa',
'wikieditor-toolbar-characters-page-hebrew' => 'Hebraico',
'wikieditor-toolbar-characters-page-bangla' => 'Bangla',
+ 'wikieditor-toolbar-characters-page-tamil' => 'Tâmil',
'wikieditor-toolbar-characters-page-telugu' => 'Telugo',
'wikieditor-toolbar-characters-page-sinhala' => 'Cingalês',
'wikieditor-toolbar-characters-page-gujarati' => 'Guzerate',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'Devanágari',
'wikieditor-toolbar-characters-page-thai' => 'Tailandês',
'wikieditor-toolbar-characters-page-lao' => 'Laociano',
'wikieditor-toolbar-characters-page-khmer' => 'Cambojano',
@@ -20403,7 +21480,7 @@ $1:Exemplo2.jpg|Legenda2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Elemento de lista</li><li>Elemento de lista</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Ficheiro incorporado',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Exemplo.png|thumb|Texto da legenda]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Legenda' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Aumentar' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Legenda</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Legenda' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Aumentar' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Legenda</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Referência',
'wikieditor-toolbar-help-content-reference-syntax' => 'Texto da página.&lt;ref name="teste"&gt;[http://www.exemplo.org Texto do link], texto adicional.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Texto da página.<sup><a href='#'>[1]</a></sup>",
@@ -20420,7 +21497,7 @@ $1:Exemplo2.jpg|Legenda2',
'wikieditor-toolbar-help-content-indent-result' => 'Texto normal<dl><dd>Texto indentado<dl><dd>Texto indentado</dd></dl></dd></dl>',
);
-/** Brazilian Portuguese (Português do Brasil)
+/** Brazilian Portuguese (português do Brasil)
* @author 555
* @author Daemorris
* @author Everton137
@@ -20500,6 +21577,15 @@ $messages['pt-br'] = array(
'wikieditor-toolbar-tool-link-empty' => 'Você não inseriu um link de destino.',
'wikieditor-toolbar-tool-file' => 'Arquivo embutido',
'wikieditor-toolbar-tool-file-example' => 'Exemplo.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Inserir arquivo',
+ 'wikieditor-toolbar-file-target' => 'Nome do arquivo:',
+ 'wikieditor-toolbar-file-caption' => 'Legenda:',
+ 'wikieditor-toolbar-file-size' => 'Tamanho:',
+ 'wikieditor-toolbar-file-float' => 'Alinhamento:',
+ 'wikieditor-toolbar-file-default' => '(padrão)',
+ 'wikieditor-toolbar-file-format' => 'Formato:',
+ 'wikieditor-toolbar-tool-file-insert' => 'Inserir',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Cancelar',
'wikieditor-toolbar-tool-reference' => 'Referência',
'wikieditor-toolbar-tool-reference-example' => 'Insira o texto da referência aqui',
'wikieditor-toolbar-tool-reference-cancel' => 'Cancelar',
@@ -20593,9 +21679,11 @@ $1:Exemplo.jpg|Legenda2',
'wikieditor-toolbar-characters-page-persian' => 'Persa',
'wikieditor-toolbar-characters-page-hebrew' => 'Hebraico',
'wikieditor-toolbar-characters-page-bangla' => 'Bengali',
+ 'wikieditor-toolbar-characters-page-tamil' => 'Tâmil',
'wikieditor-toolbar-characters-page-telugu' => 'Telugu',
'wikieditor-toolbar-characters-page-sinhala' => 'Cingalês',
'wikieditor-toolbar-characters-page-gujarati' => 'Guzerate',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'Devanágari',
'wikieditor-toolbar-characters-page-thai' => 'Tailandês',
'wikieditor-toolbar-characters-page-lao' => 'Laociano',
'wikieditor-toolbar-characters-page-khmer' => 'Cambojano',
@@ -20645,7 +21733,7 @@ $1:Exemplo.jpg|Legenda2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Item de lista</li><li>Item de lista</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Arquivo embutido',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Exemplo.png|thumb|Legenda]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Legenda' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Aumentar' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Legenda</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Legenda' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Aumentar' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Legenda</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Referência',
'wikieditor-toolbar-help-content-reference-syntax' => 'Texto da página.&lt;ref name="teste"&gt;[http://www.exemplo.org Texto do link], texto adicional.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Texto da página.<sup><a href='#'>[1]</a></sup>",
@@ -20875,7 +21963,7 @@ $1:Qhawarichiy.jpg|Ch'uyanchay2",
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Sutisuyup qallawan</li><li>Sutisuyup qallawan</li></ol>',
'wikieditor-toolbar-help-content-file-description' => "Ch'aqtasqa rikcha",
'wikieditor-toolbar-help-content-file-syntax' => "[[$1:Qhawarichiy.png|thumb|Ch'uyanchay qillqa]]",
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Ch'uyanchay qillqa' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Hatunchay' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Ch'uyanchay qillqa</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Ch'uyanchay qillqa' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Hatunchay' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Ch'uyanchay qillqa</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Pukyumanta willay',
'wikieditor-toolbar-help-content-reference-syntax' => 'P\'anqa qillqa.&lt;ref name="test"&gt;[http://www.example.org T\'inki qillqa], yapasqa qillqa.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "P'anqa qillqa.<sup><a href='#'>[1]</a></sup>",
@@ -20897,6 +21985,7 @@ $1:Qhawarichiy.jpg|Ch'uyanchay2",
* @author Cin
* @author Firilacroco
* @author Minisarm
+ * @author Stelistcristi
*/
$messages['ro'] = array(
'wikieditor' => 'Interfață de modificare wikitext avansată',
@@ -20965,6 +22054,15 @@ $messages['ro'] = array(
'wikieditor-toolbar-tool-link-empty' => 'Nu ați introdus nimic către care să stabilesc o legătură.',
'wikieditor-toolbar-tool-file' => 'Fișier inserat',
'wikieditor-toolbar-tool-file-example' => 'Exemplu.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Inserare fișier',
+ 'wikieditor-toolbar-file-target' => 'Numele fișierului:',
+ 'wikieditor-toolbar-file-caption' => 'Descriere:',
+ 'wikieditor-toolbar-file-size' => 'Mărime:',
+ 'wikieditor-toolbar-file-float' => 'Aliniere:',
+ 'wikieditor-toolbar-file-default' => '(implicit)',
+ 'wikieditor-toolbar-file-format' => 'Format:',
+ 'wikieditor-toolbar-tool-file-insert' => 'Inserează',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Revocare',
'wikieditor-toolbar-tool-reference' => 'Referință',
'wikieditor-toolbar-tool-reference-example' => 'Introduceți textul notei de subsol aici.',
'wikieditor-toolbar-tool-reference-cancel' => 'Revocare',
@@ -21112,7 +22210,7 @@ $1:Exemplu.jpg|Descriere 2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Element</li><li>Element</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Fișier inserat',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Exemplu.png|thumb|Descrierea imaginii]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Descrierea imaginii' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Mărește' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Descrierea imaginii</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Descrierea imaginii' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Mărește' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Descrierea imaginii</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Referință',
'wikieditor-toolbar-help-content-reference-syntax' => 'Textul paginii.&lt;ref name="test"&gt;[http://www.exemplu.org Textul legăturii], text suplimentar.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Textul paginii.<sup><a href='#'>[1]</a></sup>",
@@ -21129,7 +22227,7 @@ $1:Exemplu.jpg|Descriere 2',
'wikieditor-toolbar-help-content-indent-result' => 'Text normal<dl><dd>Text indentat<dl><dd>Text indentat</dd></dl></dd></dl>',
);
-/** Tarandíne (Tarandíne)
+/** tarandíne (tarandíne)
* @author Joetaras
* @author Reder
*/
@@ -21144,7 +22242,7 @@ $messages['roa-tara'] = array(
'wikieditor-preview-loading' => 'Carecamende...',
'wikieditor-previewDialog-preference' => "Abbilete 'u dialoghe de l'andeprime",
'wikieditor-previewDialog-tab' => 'Andeprime',
- 'wikieditor-previewDialog-loading' => 'Carecamende...',
+ 'wikieditor-previewDialog-loading' => 'Stoche a careche…',
'wikieditor-publish-preference' => "Abbilete 'a pubblecazione passe pe passe",
'wikieditor-publish-button-publish' => 'Pubbleche',
'wikieditor-publish-button-cancel' => 'Annulle',
@@ -21190,7 +22288,7 @@ $messages['roa-tara'] = array(
'wikieditor-toolbar-tool-link-cancel' => 'Scangille',
'wikieditor-toolbar-tool-link-int-target-status-exists' => "'A pàgene esiste",
'wikieditor-toolbar-tool-link-int-target-status-notexists' => "'A pàgene non g'esiste",
- 'wikieditor-toolbar-tool-link-int-target-status-invalid' => 'Titele invalide',
+ 'wikieditor-toolbar-tool-link-int-target-status-invalid' => 'Titole invalide',
'wikieditor-toolbar-tool-link-int-target-status-external' => 'Collegaminde fore a Uicchipèdie',
'wikieditor-toolbar-tool-link-int-target-status-loading' => "Stoche a verifiche l'esistenze d'a pàgene...",
'wikieditor-toolbar-tool-link-int-invalid' => "'U titele ca è specificate jè invalide.",
@@ -21198,8 +22296,17 @@ $messages['roa-tara'] = array(
'wikieditor-toolbar-tool-link-lookslikeinternal-int' => "Collegamende jndr'à Uicchipèdie",
'wikieditor-toolbar-tool-link-lookslikeinternal-ext' => 'Collegamende fore a Uicchipèdie',
'wikieditor-toolbar-tool-link-empty' => 'Tu non ge inzeriste ninde ca se collegave.',
- 'wikieditor-toolbar-tool-file' => 'Fiel ingapsulate',
+ 'wikieditor-toolbar-tool-file' => 'File ingapsulate',
'wikieditor-toolbar-tool-file-example' => 'Esembie.jpg',
+ 'wikieditor-toolbar-tool-file-title' => "'Nzerisce 'nu file",
+ 'wikieditor-toolbar-file-target' => "Nome d'u file:",
+ 'wikieditor-toolbar-file-caption' => "'Ndestazione:",
+ 'wikieditor-toolbar-file-size' => 'Dimenzione:',
+ 'wikieditor-toolbar-file-float' => 'Allineamende:',
+ 'wikieditor-toolbar-file-default' => '(de base)',
+ 'wikieditor-toolbar-file-format' => 'Formate:',
+ 'wikieditor-toolbar-tool-file-insert' => "'Nzerisce",
+ 'wikieditor-toolbar-tool-file-cancel' => 'Annulle',
'wikieditor-toolbar-tool-reference' => 'Riferimende',
'wikieditor-toolbar-tool-reference-example' => "Mitte 'u teste le note de sotte aqquà",
'wikieditor-toolbar-tool-reference-cancel' => 'Annulle',
@@ -21293,9 +22400,11 @@ $1:Example.jpg|Titele2',
'wikieditor-toolbar-characters-page-persian' => 'Persiane',
'wikieditor-toolbar-characters-page-hebrew' => 'Ebbrèe',
'wikieditor-toolbar-characters-page-bangla' => 'Bangladesciane',
+ 'wikieditor-toolbar-characters-page-tamil' => 'Tamil',
'wikieditor-toolbar-characters-page-telugu' => 'Telugu',
'wikieditor-toolbar-characters-page-sinhala' => 'Sinhala',
'wikieditor-toolbar-characters-page-gujarati' => 'Gujarati',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'Devanagari',
'wikieditor-toolbar-characters-page-thai' => 'Thai',
'wikieditor-toolbar-characters-page-lao' => 'Lao',
'wikieditor-toolbar-characters-page-khmer' => 'Khmer',
@@ -21306,10 +22415,10 @@ $1:Example.jpg|Titele2',
'wikieditor-toolbar-help-page-format' => 'Formattanne',
'wikieditor-toolbar-help-page-link' => 'Collegaminde',
'wikieditor-toolbar-help-page-heading' => 'Testate',
- 'wikieditor-toolbar-help-page-list' => 'Liste',
+ 'wikieditor-toolbar-help-page-list' => 'Elenghe',
'wikieditor-toolbar-help-page-file' => 'File',
'wikieditor-toolbar-help-page-reference' => 'Rifereminde',
- 'wikieditor-toolbar-help-page-discussion' => "'Ngazzaminde",
+ 'wikieditor-toolbar-help-page-discussion' => "'Ngazzamende",
'wikieditor-toolbar-help-content-italic-description' => 'Corsive',
'wikieditor-toolbar-help-content-italic-syntax' => "''Teste Corsive''",
'wikieditor-toolbar-help-content-italic-result' => '<em>Teste Corsive</em>',
@@ -21345,7 +22454,7 @@ $1:Example.jpg|Titele2',
'wikieditor-toolbar-help-content-olist-result' => "<ol><li>Elemende de l'elenghe</li><li>Elemende de l'elenghe</li></ol>",
'wikieditor-toolbar-help-content-file-description' => "File 'ngorporate",
'wikieditor-toolbar-help-content-file-syntax' => "[[$1:Example.png|thumb|Teste d'u titele]]",
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Teste d'u titele' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Allarie' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Teste d'u titele</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Teste d'u titele' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Allarie' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Teste d'u titele</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Riferimende',
'wikieditor-toolbar-help-content-reference-syntax' => 'Teste d\'a pàgene.&lt;ref name="test"&gt;[http://www.example.org Teste d\'u collegamende], teste addizionale.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Teste d'a pàgene.<sup><a href='#'>[1]</a></sup>",
@@ -21363,7 +22472,9 @@ $1:Example.jpg|Titele2',
);
/** Russian (русский)
+ * @author Alexandr Efremov
* @author Claymore
+ * @author David1010
* @author Dim Grits
* @author Eleferen
* @author G0rn
@@ -21440,6 +22551,15 @@ $messages['ru'] = array(
'wikieditor-toolbar-tool-link-empty' => 'Вы не указали на что ссылаться.',
'wikieditor-toolbar-tool-file' => 'Встроенный файл',
'wikieditor-toolbar-tool-file-example' => 'Example.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Вставить файл',
+ 'wikieditor-toolbar-file-target' => 'Имя файла:',
+ 'wikieditor-toolbar-file-caption' => 'Подпись:',
+ 'wikieditor-toolbar-file-size' => 'Размер:',
+ 'wikieditor-toolbar-file-float' => 'Выравнивание:',
+ 'wikieditor-toolbar-file-default' => '(по умолчанию)',
+ 'wikieditor-toolbar-file-format' => 'Формат:',
+ 'wikieditor-toolbar-tool-file-insert' => 'Вставка',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Отмена',
'wikieditor-toolbar-tool-reference' => 'Сноска',
'wikieditor-toolbar-tool-reference-example' => 'Вставьте сюда текст сноски',
'wikieditor-toolbar-tool-reference-cancel' => 'Отмена',
@@ -21589,7 +22709,7 @@ $1:Example.jpg|Описание2',
'wikieditor-toolbar-help-content-file-description' => 'Встроенный файл',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Пояснительный текст]]',
'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='
-Пояснительный текст' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Увеличить' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>
+Пояснительный текст' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Увеличить' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>
Пояснительный текст</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Примечание',
'wikieditor-toolbar-help-content-reference-syntax' => 'Текст страницы.&lt;ref name="test"&gt;[http://www.example.org Текст ссылки], дополнительный текст.&lt;/ref&gt;',
@@ -21609,7 +22729,7 @@ $1:Example.jpg|Описание2',
'wikieditor-toolbar-help-content-indent-result' => 'Обычный текст<dl><dd>Текст с отступом<dl><dd>Текст с отступом</dd></dl></dd></dl>',
);
-/** Rusyn (Русиньскый)
+/** Rusyn (русиньскый)
* @author Gazeb
*/
$messages['rue'] = array(
@@ -21679,6 +22799,11 @@ $messages['rue'] = array(
'wikieditor-toolbar-tool-link-empty' => 'Мусите увести ціль одказу.',
'wikieditor-toolbar-tool-file' => 'Вложеный файл',
'wikieditor-toolbar-tool-file-example' => 'Приклад.jpg',
+ 'wikieditor-toolbar-file-target' => 'Назва файлу:',
+ 'wikieditor-toolbar-file-caption' => 'Пописок:',
+ 'wikieditor-toolbar-file-format' => 'Формат:',
+ 'wikieditor-toolbar-tool-file-insert' => 'Вложыти',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Зрушыти',
'wikieditor-toolbar-tool-reference' => 'Позначкы',
'wikieditor-toolbar-tool-reference-example' => 'Ту вложте текст позначкы',
'wikieditor-toolbar-tool-reference-cancel' => 'Сторно',
@@ -21823,7 +22948,7 @@ $1:Example.jpg|Опис2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Положка списку</li><li>Положка списку</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Вложіня файлу',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Пояснюючій текст]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Пояснюючій текст' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Звекшыти' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Пояснюючій текст</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Пояснюючій текст' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Звекшыти' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Пояснюючій текст</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Позначка',
'wikieditor-toolbar-help-content-reference-syntax' => 'Текст сторінкы&lt;ref name="test"&gt;[http://www.example.org Текст одказу], додатковый текст.&lt;/ref&gt;.',
'wikieditor-toolbar-help-content-reference-result' => "Текст сторінкы.<sup><a href='#'>[1]</a></sup>",
@@ -21843,21 +22968,250 @@ $1:Example.jpg|Опис2',
/** Sanskrit (संस्कृतम्)
* @author Ansumang
* @author Bhawani Gautam
+ * @author Shubha
*/
$messages['sa'] = array(
+ 'wikieditor' => 'उन्नतवीकिपाठ्यांशस्य सम्पादनमाध्यमम्',
+ 'wikieditor-desc' => 'मध्यस्थसम्पादनयोग्यं विस्तारशीलं विकिपाठ्यांशं विविधानुकूलकारिणः विभागान् च प्रददाति',
+ 'wikieditor-wikitext-tab' => 'विकिपाठः',
+ 'wikieditor-loading' => 'आरोप्यमाणमस्ति.....',
+ 'wikieditor-preview-preference' => 'पक्षशः प्राग्दृश्यं सक्षमं क्रियताम्',
+ 'wikieditor-preview-tab' => 'प्राग्दृश्यम्',
+ 'wikieditor-preview-changes-tab' => 'परिवर्तनानि',
+ 'wikieditor-preview-loading' => 'आरोप्यमाणमस्ति.....',
+ 'wikieditor-previewDialog-preference' => 'प्राग्दृश्यं सक्षमं क्रियताम्',
+ 'wikieditor-previewDialog-tab' => 'प्राग्दृश्यम्',
+ 'wikieditor-previewDialog-loading' => 'आरोप्यमाणमस्ति.....',
+ 'wikieditor-publish-preference' => 'सोपानशः प्रकाशनं सक्षमं क्रियताम्',
+ 'wikieditor-publish-button-publish' => 'प्रकाश्यताम्',
+ 'wikieditor-publish-button-cancel' => 'निरस्यताम्',
+ 'wikieditor-publish-dialog-title' => '{{SITENAME}} इत्येतत् प्रकाश्यताम्',
+ 'wikieditor-publish-dialog-summary' => 'सारः सम्पाद्यताम् (भवता कृतानि परिवर्तनानि संक्षेपेण विव्रियताम्) :',
+ 'wikieditor-publish-dialog-minor' => 'लघु सम्पादनम्',
+ 'wikieditor-publish-dialog-watch' => 'इदं पृष्ठं निरीक्षताम्',
+ 'wikieditor-publish-dialog-publish' => 'प्रकाश्यताम्',
+ 'wikieditor-publish-dialog-goback' => 'प्रतिगम्यताम्',
+ 'wikieditor-template-editor-preference' => 'विकिप्राकृतीनां प्रपत्राधारितं सम्पादनं सक्रियं करोतु',
+ 'wikieditor-template-editor-dialog-title' => 'प्राकृतिः सम्पाद्यताम्',
+ 'wikieditor-template-editor-dialog-submit' => 'अद्यतनीक्रियताम्',
+ 'wikieditor-template-editor-dialog-cancel' => 'निरस्यताम्',
+ 'wikieditor-templates-preference' => 'प्राकृतेः पतनं सक्रियं करोतु',
+ 'wikieditor-toc-preference' => 'सञ्चारशीलं विषयकोष्टकं सक्रियं क्रियताम्',
+ 'wikieditor-toc-show' => 'विषयाः दर्श्यन्ताम्',
+ 'wikieditor-toc-hide' => 'विषयाः गोप्यन्ताम्',
+ 'wikieditor-toolbar' => 'उपकरणपेटिका सम्पाद्यताम्',
+ 'wikieditor-toolbar-desc' => 'विवृद्धोपयोगयुक्तम् उपकरणपेटिकापृष्ठं सम्पाद्यताम्',
+ 'wikieditor-toolbar-preference' => 'विवृद्धोपकरणपेटिकायाः सम्पादनं सक्रियं क्रियताम्',
+ 'wikieditor-toolbar-dialogs-preference' => 'अनुबन्धकोष्टकादीनां समायोजनाय सम्भाषणं सक्रियं करोतु',
+ 'wikieditor-toolbar-hidesig' => 'मुख्यनामावकाशपृष्ठेषु हस्ताक्षरकुड्मलं विलोपयतु',
+ 'wikieditor-toolbar-loading' => 'आरोप्यमाणमस्ति.....',
+ 'wikieditor-toolbar-tool-bold' => 'स्थूलक्षरम्',
+ 'wikieditor-toolbar-tool-bold-example' => 'स्थूलाक्षरैः युक्तः भागः',
+ 'wikieditor-toolbar-tool-italic' => 'वलिताक्षरम्',
+ 'wikieditor-toolbar-tool-italic-example' => 'वलिताक्षराणि',
+ 'wikieditor-toolbar-tool-ilink' => 'आन्तरिकसम्पर्कतन्तुः',
+ 'wikieditor-toolbar-tool-ilink-example' => 'अनुबन्धस्य शीर्षकम्',
+ 'wikieditor-toolbar-tool-xlink' => 'बाह्यानुबन्धः (http://इति पूर्वलग्नं स्मर्तव्यम्)',
+ 'wikieditor-toolbar-tool-xlink-example' => 'http://www.example.com अनुबन्धस्य शीर्षकम्',
+ 'wikieditor-toolbar-tool-link' => 'अनुबन्धः',
+ 'wikieditor-toolbar-tool-link-title' => 'अनुबन्धः योज्यताम्',
+ 'wikieditor-toolbar-tool-link-int' => 'विकिपृष्ठाय',
+ 'wikieditor-toolbar-tool-link-int-target' => 'लक्ष्यपृष्ठम् अथवा URL:',
+ 'wikieditor-toolbar-tool-link-int-target-tooltip' => 'पृष्ठशीर्षकम् अथवा URL',
+ 'wikieditor-toolbar-tool-link-int-text' => 'प्रदर्शनाय पाठ्यभागः :',
+ 'wikieditor-toolbar-tool-link-int-text-tooltip' => 'प्रदर्शनाय पाठ्यांशः',
+ 'wikieditor-toolbar-tool-link-ext' => 'बाह्यजालपुटं प्रति',
+ 'wikieditor-toolbar-tool-link-ext-target' => 'अनुबन्धः URL:',
+ 'wikieditor-toolbar-tool-link-ext-text' => 'पाट्यांशानुबन्धः :',
+ 'wikieditor-toolbar-tool-link-insert' => 'अनुबन्धः योज्यताम्',
+ 'wikieditor-toolbar-tool-link-cancel' => 'निरस्यताम्',
+ 'wikieditor-toolbar-tool-link-int-target-status-exists' => 'पृष्ठं विद्यते',
+ 'wikieditor-toolbar-tool-link-int-target-status-notexists' => 'पृष्ठं न विद्यते',
+ 'wikieditor-toolbar-tool-link-int-target-status-invalid' => 'अमान्यं शीर्षकम्',
+ 'wikieditor-toolbar-tool-link-int-target-status-external' => 'बाह्यसम्पर्कतन्तुः',
+ 'wikieditor-toolbar-tool-link-int-target-status-loading' => 'पृष्ठस्य अस्तित्वं परिशीलयति ....',
+ 'wikieditor-toolbar-tool-link-int-invalid' => 'सूचिता शीर्षिका अमान्या वर्तते ।',
+ 'wikieditor-toolbar-tool-link-lookslikeinternal' => 'भवता सूचितः जालसङ्केतः अन्यस्य विकिपृष्ठस्य अनुबन्धः इति भाति ।
+इदम् आन्तरिकानुबन्धत्वेन कर्तुमिच्छति किम् ?',
+ 'wikieditor-toolbar-tool-link-lookslikeinternal-int' => 'आन्तरिकसम्पर्कतन्तुः',
+ 'wikieditor-toolbar-tool-link-lookslikeinternal-ext' => 'बाह्यसम्पर्कतन्तुः',
+ 'wikieditor-toolbar-tool-link-empty' => 'सम्पर्ककल्पनाय न किञ्चित् सूचितम् ।',
+ 'wikieditor-toolbar-tool-file' => 'अन्तर्गता सञ्चिका',
+ 'wikieditor-toolbar-tool-file-example' => 'उदाहरणम्.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'सञ्चिका योज्यताम्',
+ 'wikieditor-toolbar-file-target' => 'सञ्चिकानाम:',
+ 'wikieditor-toolbar-file-caption' => 'शिरोनाम :',
+ 'wikieditor-toolbar-file-size' => 'आकारः :',
+ 'wikieditor-toolbar-file-float' => 'पङ्क्तिं करोतु :',
+ 'wikieditor-toolbar-file-default' => '(पूर्वनिर्दिष्टम्)',
+ 'wikieditor-toolbar-file-format' => 'प्रारूपम्',
+ 'wikieditor-toolbar-tool-file-insert' => 'योज्यताम्',
+ 'wikieditor-toolbar-tool-file-cancel' => 'निरस्यताम्',
+ 'wikieditor-toolbar-tool-reference' => 'आधारः',
+ 'wikieditor-toolbar-tool-reference-example' => 'अत्र अधोटिप्पणी योज्यताम्',
+ 'wikieditor-toolbar-tool-reference-cancel' => 'निरस्यताम्',
+ 'wikieditor-toolbar-tool-reference-title' => 'आधारः योज्यताम्',
+ 'wikieditor-toolbar-tool-reference-insert' => 'योज्यताम्',
+ 'wikieditor-toolbar-tool-reference-text' => 'आधारपाठ्यांशः',
+ 'wikieditor-toolbar-tool-signature' => 'हस्ताक्षरं समयाङ्कनञ्च',
'wikieditor-toolbar-section-advanced' => 'उन्नतम्',
+ 'wikieditor-toolbar-tool-heading' => 'शीर्षकम्',
+ 'wikieditor-toolbar-tool-heading-1' => 'स्तरः १',
'wikieditor-toolbar-tool-heading-2' => 'शीर्षकम् 2',
'wikieditor-toolbar-tool-heading-3' => 'शीर्षकम्',
'wikieditor-toolbar-tool-heading-4' => 'शीर्षकम् 4',
'wikieditor-toolbar-tool-heading-5' => 'शीर्षकम्',
+ 'wikieditor-toolbar-tool-heading-example' => 'शीर्षकपाठ्यांशः',
+ 'wikieditor-toolbar-group-format' => 'प्रारूपम्',
+ 'wikieditor-toolbar-tool-ulist' => 'अङ्किता सूची',
+ 'wikieditor-toolbar-tool-ulist-example' => 'क्रमाङ्कितसूच्यंशाः',
+ 'wikieditor-toolbar-tool-olist' => 'क्रमाङ्कितसूची',
+ 'wikieditor-toolbar-tool-olist-example' => 'क्रमाङ्कितसूच्यंशाः',
+ 'wikieditor-toolbar-tool-indent' => 'अभिस्थापनम्',
+ 'wikieditor-toolbar-tool-indent-example' => 'अभिस्थापितरेखा',
+ 'wikieditor-toolbar-tool-nowiki' => 'विकिप्रारूपं न विद्यते',
+ 'wikieditor-toolbar-tool-nowiki-example' => 'अप्रारूपीकृतं पाठम् अत्र निवेशयतु',
+ 'wikieditor-toolbar-tool-redirect' => 'पुनर्निर्दिश्यताम्',
+ 'wikieditor-toolbar-tool-redirect-example' => 'लक्ष्यपृष्ठस्य नाम',
+ 'wikieditor-toolbar-tool-big' => 'महत्',
+ 'wikieditor-toolbar-tool-big-example' => 'महान् पाठः',
+ 'wikieditor-toolbar-tool-small' => 'लघु',
+ 'wikieditor-toolbar-tool-small-example' => 'लघुः पाठ्यांशः',
+ 'wikieditor-toolbar-tool-superscript' => 'उदङ्कः',
+ 'wikieditor-toolbar-tool-superscript-example' => 'उदङ्कपाट्यांशः',
+ 'wikieditor-toolbar-tool-subscript' => 'अवाङ्कः',
+ 'wikieditor-toolbar-tool-subscript-example' => 'अवाङ्कपाठ्यांशः',
+ 'wikieditor-toolbar-group-insert' => 'योज्यताम्',
+ 'wikieditor-toolbar-tool-gallery' => 'चित्रवीथिका',
+ 'wikieditor-toolbar-tool-gallery-example' => '$1:उदाहरणम्.jpg|चित्रशीर्षकम्१
+$1:उदाहरणम्.jpg|चित्रशीर्षकम्२',
+ 'wikieditor-toolbar-tool-newline' => 'नूतना पङ्क्तिः',
+ 'wikieditor-toolbar-tool-table' => 'कोष्टकम्',
+ 'wikieditor-toolbar-tool-table-example-old' => '-
+! शीर्षकम् १
+! शीर्षकम् २
+! शीर्षकम् ३
+|-
+| पंक्तिः १, प्रकोष्ठम् १
+| पंक्तिः १, प्रकोष्ठम् २
+| पंक्तिः १, प्रकोष्ठम् ३
+|-
+| पंक्तिः २, प्रकोष्ठम् १
+| पंक्तिः २, प्रकोष्ठम् २
+| पंक्तिः २, प्रकोष्ठम् ३',
+ 'wikieditor-toolbar-tool-table-example-cell-text' => 'प्रकोष्ठपाठः',
+ 'wikieditor-toolbar-tool-table-example-header' => 'शीर्षपाठः',
+ 'wikieditor-toolbar-tool-table-title' => 'कोष्टकं योज्यताम्',
+ 'wikieditor-toolbar-tool-table-dimensions-rows' => 'पङ्क्तिः',
+ 'wikieditor-toolbar-tool-table-dimensions-columns' => 'स्तम्भाः',
+ 'wikieditor-toolbar-tool-table-dimensions-header' => 'शीर्षलेखपंक्तिः योज्यताम्',
+ 'wikieditor-toolbar-tool-table-wikitable' => 'सीमाशैली',
+ 'wikieditor-toolbar-tool-table-sortable' => 'कोष्टकं विभागीकर्तुं योग्यं क्रियताम्',
+ 'wikieditor-toolbar-tool-table-example' => 'उदाहरणम्',
+ 'wikieditor-toolbar-tool-table-preview' => 'प्राग्दृश्यम्',
+ 'wikieditor-toolbar-tool-table-insert' => 'योज्यताम्',
+ 'wikieditor-toolbar-tool-table-cancel' => 'निरस्यताम्',
+ 'wikieditor-toolbar-tool-table-toomany' => '$1 अपेक्षया अधिकांशयुक्तं कोष्टकम् अस्मिन् योजयितुं न शक्यते ।',
+ 'wikieditor-toolbar-tool-table-invalidnumber' => 'स्तम्भानां पङ्क्तीनां वा योग्यसङ्ख्या भवता न योजिता ।',
+ 'wikieditor-toolbar-tool-table-zero' => 'शून्यसङ्ख्यायुक्ता पङ्क्तिः स्तम्भो वा योजयितुं न शक्यते ।',
+ 'wikieditor-toolbar-tool-replace' => 'अन्विष्यतां परिवर्त्यताञ्च',
+ 'wikieditor-toolbar-tool-replace-title' => 'अन्विष्यतां परिवर्त्यताञ्च',
+ 'wikieditor-toolbar-tool-replace-search' => 'इत्यस्य अन्विष्यताम्',
+ 'wikieditor-toolbar-tool-replace-replace' => 'एतेन परिवर्त्यताम् :',
+ 'wikieditor-toolbar-tool-replace-case' => 'अक्षराणि संयोज्यताम्',
+ 'wikieditor-toolbar-tool-replace-regex' => 'अन्वेषणतन्तुं नियताभिव्यक्तिः इति मन्यताम्',
+ 'wikieditor-toolbar-tool-replace-button-findnext' => 'अग्रिमम् अन्विष्यताम्',
+ 'wikieditor-toolbar-tool-replace-button-replace' => 'एतेन परिवर्त्यताम्',
+ 'wikieditor-toolbar-tool-replace-button-replaceall' => 'सर्वं परिवर्त्यताम्',
+ 'wikieditor-toolbar-tool-replace-close' => 'पिदधातु',
+ 'wikieditor-toolbar-tool-replace-nomatch' => 'भवतः अन्वेषणस्य फलं न प्राप्तम् ।',
+ 'wikieditor-toolbar-tool-replace-success' => '$1 प्रतिस्थापनं जातम् ।',
+ 'wikieditor-toolbar-tool-replace-emptysearch' => 'अन्वेषणाय न किञ्चित् सूचितम् ।',
+ 'wikieditor-toolbar-tool-replace-invalidregex' => 'भवता योजिता नियताभिव्यक्तिः अमान्या विद्यते : $1',
'wikieditor-toolbar-section-characters' => 'विशेष-वर्णानि',
+ 'wikieditor-toolbar-characters-page-latin' => 'ल्याटिन्',
+ 'wikieditor-toolbar-characters-page-latinextended' => 'ल्याटिन्-विस्तारितम्',
+ 'wikieditor-toolbar-characters-page-ipa' => 'ऐपिए',
'wikieditor-toolbar-characters-page-symbols' => 'प्रतीक',
'wikieditor-toolbar-characters-page-greek' => 'ग्रीक',
+ 'wikieditor-toolbar-characters-page-cyrillic' => 'सिरिलिक्',
+ 'wikieditor-toolbar-characters-page-arabic' => 'अरबी',
+ 'wikieditor-toolbar-characters-page-arabicextended' => 'अरबीविस्तारितम्',
+ 'wikieditor-toolbar-characters-page-persian' => 'पर्शियन्',
+ 'wikieditor-toolbar-characters-page-hebrew' => 'हिब्रू',
'wikieditor-toolbar-characters-page-bangla' => 'वङ्गलिपि',
+ 'wikieditor-toolbar-characters-page-tamil' => 'तमिल्',
+ 'wikieditor-toolbar-characters-page-telugu' => 'तेलुगु',
+ 'wikieditor-toolbar-characters-page-sinhala' => 'सिंहल',
+ 'wikieditor-toolbar-characters-page-gujarati' => 'गुजराती',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'देवनागरी',
+ 'wikieditor-toolbar-characters-page-thai' => 'थाई',
+ 'wikieditor-toolbar-characters-page-lao' => 'लाओ',
+ 'wikieditor-toolbar-characters-page-khmer' => 'खमेर',
'wikieditor-toolbar-section-help' => 'साहाय्यम्',
+ 'wikieditor-toolbar-help-heading-description' => 'वर्णनम्',
+ 'wikieditor-toolbar-help-heading-syntax' => 'भवता किं लिख्यते',
+ 'wikieditor-toolbar-help-heading-result' => 'भवता किं प्राप्यते',
+ 'wikieditor-toolbar-help-page-format' => 'प्रारूपणम्',
+ 'wikieditor-toolbar-help-page-link' => 'अनुबन्धाः',
+ 'wikieditor-toolbar-help-page-heading' => 'शीर्षकाणि',
+ 'wikieditor-toolbar-help-page-list' => 'सूच्यः',
+ 'wikieditor-toolbar-help-page-file' => 'सञ्चिका:',
+ 'wikieditor-toolbar-help-page-reference' => 'आधारः',
+ 'wikieditor-toolbar-help-page-discussion' => 'चर्चा',
+ 'wikieditor-toolbar-help-content-italic-description' => 'वलिताक्षरम्',
+ 'wikieditor-toolbar-help-content-italic-syntax' => "''वलिताक्षरयुतपाठः ''",
+ 'wikieditor-toolbar-help-content-italic-result' => '<em>वलिताक्षरयुतपाठः</em>',
+ 'wikieditor-toolbar-help-content-bold-description' => 'स्थूलक्षरम्',
+ 'wikieditor-toolbar-help-content-bold-syntax' => "''' स्थूलाक्षरयुतपाठः '''",
+ 'wikieditor-toolbar-help-content-bold-result' => '<strong>स्थूलाक्षरयुतपाठः</strong>',
+ 'wikieditor-toolbar-help-content-bolditalic-description' => 'स्थूलं &amp; वलितम्',
+ 'wikieditor-toolbar-help-content-bolditalic-syntax' => "'''''स्थूलं &amp; वलिताक्षरयुतपाठः'''''",
+ 'wikieditor-toolbar-help-content-bolditalic-result' => '<strong><em>स्थूलम् &amp; वलिताक्षरयुतपाठः</em></strong>',
+ 'wikieditor-toolbar-help-content-ilink-description' => 'आन्तरिकानुबन्धः',
+ 'wikieditor-toolbar-help-content-ilink-syntax' => '[[पृष्ठशीर्षकम्|अनुबन्धशिरोनाम]]<br />[[पृष्ठशीर्षकम्]]',
+ 'wikieditor-toolbar-help-content-ilink-result' => "<a href='#'>अनुबन्धशिरोनाम</a><br /><a href='#'>पृष्ठशीर्षकम्</a>",
+ 'wikieditor-toolbar-help-content-xlink-description' => 'बाह्यसम्पर्कतन्तुः',
+ 'wikieditor-toolbar-help-content-xlink-syntax' => '[http://www.example.org अनुबन्धशिरोनाम]<br />[http://www.example.org]<br />http://www.example.org',
+ 'wikieditor-toolbar-help-content-xlink-result' => "<a href='#' class='external'>अनुबन्धशिरोनाम</a><br /><a href='#' class='external autonumber'>[1]</a><br /><a href='#' class='external'>http://www.example.org</a>",
+ 'wikieditor-toolbar-help-content-heading2-description' => 'द्वितीयस्तरीयशीर्षकम्',
+ 'wikieditor-toolbar-help-content-heading2-syntax' => '== शीर्षकपाठः ==',
+ 'wikieditor-toolbar-help-content-heading2-result' => '<h2>शीर्षकपाठः</h2>',
+ 'wikieditor-toolbar-help-content-heading3-description' => 'तृतीयस्तरीयशीर्षकम्',
+ 'wikieditor-toolbar-help-content-heading3-syntax' => '=== शीर्षकपाठः ===',
+ 'wikieditor-toolbar-help-content-heading3-result' => '<h3>शीर्षकपाठः</h3>',
+ 'wikieditor-toolbar-help-content-heading4-description' => 'चतुर्थस्तरीयशीर्षकम्',
+ 'wikieditor-toolbar-help-content-heading4-syntax' => '==== शीर्षकपाठः ====',
+ 'wikieditor-toolbar-help-content-heading4-result' => '<h4>शीर्षकपाठः</h4>',
+ 'wikieditor-toolbar-help-content-heading5-description' => 'पञ्चमस्तरीयशीर्षकम्',
+ 'wikieditor-toolbar-help-content-heading5-syntax' => '===== शीर्षकपाठः =====',
+ 'wikieditor-toolbar-help-content-heading5-result' => '<h5>शीर्षकपाठः</h5>',
+ 'wikieditor-toolbar-help-content-ulist-description' => 'अङ्किता सूची',
+ 'wikieditor-toolbar-help-content-ulist-syntax' => '* अंशानां सूची <br />* अंशानां सूची',
+ 'wikieditor-toolbar-help-content-ulist-result' => '<ul><li>अंशानां सूची </li><li>अंशानां सूची </li></ul>',
+ 'wikieditor-toolbar-help-content-olist-description' => 'क्रमाङ्किता सूची',
+ 'wikieditor-toolbar-help-content-olist-syntax' => '# अंशानां सूची <br /># अंशानां सूची',
+ 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>अंशानां सूची </li><li>अंशानां सूची </li></ol>',
+ 'wikieditor-toolbar-help-content-file-description' => 'अन्तर्गता सञ्चिका',
+ 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:उदाहरणम्.png|thumb|शीर्षकपाठः]]',
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='व्यासः:१०४px;' class='thumbinner'><a title='शीर्षकम्' class='चित्रम्' href='#'><img height='५०' व्यासः='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='विशालीकरोतु' class='आन्तरिकम्' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>शीर्षकम्</div></div>",
+ 'wikieditor-toolbar-help-content-reference-description' => 'आधारः',
+ 'wikieditor-toolbar-help-content-reference-syntax' => 'पृष्ठपाठः ।&lt;ref name="test"&gt;[http://www.example.org अनुबन्धपाठः], अतिरिक्तपाठः.&lt;/ref&gt;',
+ 'wikieditor-toolbar-help-content-reference-result' => "पृष्ठपाठः.<sup><a href='#'>[1]</a></sup>",
+ 'wikieditor-toolbar-help-content-rereference-description' => 'तस्यैव आधारस्य अतिरिक्तः उपयोगः',
+ 'wikieditor-toolbar-help-content-rereference-result' => "पृष्ठपाठः .<sup><a href='#'>[1]</a></sup>",
+ 'wikieditor-toolbar-help-content-showreferences-description' => 'आधारः दर्श्यताम्',
+ 'wikieditor-toolbar-help-content-showreferences-result' => "<ol class='आधाराः'><li id='cite_note-test-0'><b><a title='' href='#'>^</a></b> <a rel='nofollow' title='http://www.example.org' class='बाह्यलेखः' href='#'>अनुबन्धलेखः</a>, अतिरिक्तलेखः ।</li></ol>",
+ 'wikieditor-toolbar-help-content-signaturetimestamp-description' => 'हस्ताक्षरं समयाङ्कनञ्च',
+ 'wikieditor-toolbar-help-content-signaturetimestamp-result' => "<a href='#' title='{{#special:mypage}}'>सदस्यनाम</a> (<a href='#' title='{{#special:mytalk}}'>चर्चा</a>) 15:54, 10 June 2009 (UTC)",
+ 'wikieditor-toolbar-help-content-signature-description' => 'हस्ताक्षरम्',
+ 'wikieditor-toolbar-help-content-signature-result' => "<a href='#' title='{{#special:mypage}}'>सदस्यनाम</a> (<a href='#' title='{{#special:mytalk}}'>चर्चा</a>)",
+ 'wikieditor-toolbar-help-content-indent-description' => 'भङ्गुरीकरोति',
+ 'wikieditor-toolbar-help-content-indent-syntax' => 'सामान्यलेखः<br />:समीकृतः लेखः<br />::समीकृतः लेखः',
+ 'wikieditor-toolbar-help-content-indent-result' => 'सामान्यः लेखः<dl><dd>सज्जीकृतः लेखः<dl><dd>सज्जीकृतः लेखः</dd></dl></dd></dl>',
);
-/** Sakha (Саха тыла)
+/** Sakha (саха тыла)
* @author HalanTul
*/
$messages['sah'] = array(
@@ -22070,7 +23424,7 @@ $1:Example.jpg|Сурук2',
'wikieditor-toolbar-help-content-file-description' => 'Иһинээҕи билэ',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Быһаарыыта]]',
'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='
-Быһаарыы сурук' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>
+Быһаарыы сурук' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>
Быһаарыы сурук</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Быһаарыы',
'wikieditor-toolbar-help-content-reference-syntax' => 'Сирэй тиэкиһэ.&lt;ref name="test"&gt;[http://www.example.org Сигэ быһаарыыта], эбии быһаарыы.&lt;/ref&gt;',
@@ -22088,7 +23442,7 @@ $1:Example.jpg|Сурук2',
'wikieditor-toolbar-help-content-indent-result' => 'Судургу тиэкис<dl><dd>Отступтаах тиэкис<dl><dd>Отступтаах тиэкис</dd></dl></dd></dl>',
);
-/** Sardinian (Sardu)
+/** Sardinian (sardu)
* @author Andria
*/
$messages['sc'] = array(
@@ -22282,7 +23636,7 @@ $1:Esèmpiu.jpg|Didascalia2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Elementu de sa lista</li><li>Elementu de sa lista</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'File incorporadu',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Esempru.png|thumb|Testu de sa didascalia]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Testu de sa didascalia' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Amannia' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Testu de sa didascalia</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Testu de sa didascalia' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Amannia' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Testu de sa didascalia</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Referèntzia',
'wikieditor-toolbar-help-content-reference-result' => "Testu de sa pàgina.<sup><a href='#'>[1]</a></sup>",
'wikieditor-toolbar-help-content-rereference-result' => "Testu de sa pàgina.<sup><a href='#'>[1]</a></sup>",
@@ -22292,7 +23646,7 @@ $1:Esèmpiu.jpg|Didascalia2',
'wikieditor-toolbar-help-content-indent-description' => 'Indentatzione',
);
-/** Sicilian (Sicilianu)
+/** Sicilian (sicilianu)
* @author Aushulz
* @author Gmelfi
*/
@@ -22520,7 +23874,7 @@ $1:Example.jpg|Didascalia2',
'wikieditor-toolbar-help-content-olist-result' => "<ol><li>Elementu di l'elencu</li><li>Elementu di l'elencu</li></ol>",
'wikieditor-toolbar-help-content-file-description' => 'File ncurpuratu',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Testu dâ didascalia]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Testu dâ didascalia' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Ngrannisci' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Testu dâ didascalia</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Testu dâ didascalia' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Ngrannisci' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Testu dâ didascalia</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Rifirenza',
'wikieditor-toolbar-help-content-reference-syntax' => 'Testu dâ pàggina.&lt;ref name="test"&gt;[http://www.example.org Testu dû culligamentu], testu ca si pò junciri.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Testu dâ pàggina.<sup><a href='#'>[1]</a></sup>",
@@ -22620,6 +23974,15 @@ $messages['si'] = array(
'wikieditor-toolbar-tool-link-empty' => 'ඔබ සබැඳුමකට කිසිවක් ඇතුළු කර නොමැත.',
'wikieditor-toolbar-tool-file' => 'කා වැද්දූ ගොනුව',
'wikieditor-toolbar-tool-file-example' => 'උදාහරණ.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'ගොනුව ඇතුල් කරන්න',
+ 'wikieditor-toolbar-file-target' => 'ගොනුනාමය:',
+ 'wikieditor-toolbar-file-caption' => 'ශ්‍රීර්ෂ පාඨය:',
+ 'wikieditor-toolbar-file-size' => 'විශාලත්වය:',
+ 'wikieditor-toolbar-file-float' => 'පෙළගැස්ම:',
+ 'wikieditor-toolbar-file-default' => '(සාමාන්‍ය)',
+ 'wikieditor-toolbar-file-format' => 'ආකෘතිය:',
+ 'wikieditor-toolbar-tool-file-insert' => 'ඇතුල් කරන්න',
+ 'wikieditor-toolbar-tool-file-cancel' => 'අවලංගු කරන්න',
'wikieditor-toolbar-tool-reference' => 'යොමුව',
'wikieditor-toolbar-tool-reference-example' => 'මෙහි footnote පෙළක් ඇතුල් කරන්න',
'wikieditor-toolbar-tool-reference-cancel' => 'අවලංගු කරන්න',
@@ -22713,9 +24076,11 @@ $1:උදාහරණ.jpg| 2 යටි ලියමන',
'wikieditor-toolbar-characters-page-persian' => 'පර්සියානු',
'wikieditor-toolbar-characters-page-hebrew' => 'හෙබ්‍රෙව් අක්ෂර',
'wikieditor-toolbar-characters-page-bangla' => 'බංග්ලා',
+ 'wikieditor-toolbar-characters-page-tamil' => 'දෙමළ',
'wikieditor-toolbar-characters-page-telugu' => 'තෙලිඟු අක්ෂර',
'wikieditor-toolbar-characters-page-sinhala' => 'සිංහල',
'wikieditor-toolbar-characters-page-gujarati' => 'ගුජරාටි',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'දේවනගරි',
'wikieditor-toolbar-characters-page-thai' => 'තායි',
'wikieditor-toolbar-characters-page-lao' => 'ලාඕ',
'wikieditor-toolbar-characters-page-khmer' => 'ඛෙමර්',
@@ -22765,7 +24130,7 @@ $1:උදාහරණ.jpg| 2 යටි ලියමන',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>ලැයිස්තු අයිතමය</li><li>ලැයිස්තු අයිතමය</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'කා වැද්දූ ගොනුව',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|යටි ලියමන් පෙළ]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='යටි ලියමන් පෙළ' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='විශාලනය කිරීම' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>යටි ලියමන් පෙළ</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='යටි ලියමන් පෙළ' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='විශාලනය කිරීම' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>යටි ලියමන් පෙළ</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'යොමුව',
'wikieditor-toolbar-help-content-reference-syntax' => 'පිටු පෙළ.&lt;ref name="test"&gt;[http://www.example.org සබැඳුම් පෙළ], අමතර පෙළ.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "පිටු පෙළ.<sup><a href='#'>[1]</a></sup>",
@@ -22782,7 +24147,7 @@ $1:උදාහරණ.jpg| 2 යටි ලියමන',
'wikieditor-toolbar-help-content-indent-result' => 'සාමාන්‍ය පෙළ<dl><dd>ඉන්ඩෙන්ට් කළ පෙළ<dl><dd>ඉන්ඩෙන්ට් කළ පෙළ</dd></dl></dd></dl>',
);
-/** Slovak (Slovenčina)
+/** Slovak (slovenčina)
* @author Helix84
* @author Jkjk
* @author McDutchie
@@ -23000,7 +24365,7 @@ $1:Príklad.jpg|Popis2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Položka zoznamu</li><li>Položka zoznamu</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Vložený súbor',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Príklad.png|thumb|Text nadpisu]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Text nadpisu' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Zväčšiť' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Text nadpisu</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Text nadpisu' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Zväčšiť' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Text nadpisu</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Referencie',
'wikieditor-toolbar-help-content-reference-syntax' => 'Text stránky.&lt;ref name="test"&gt;[http://www.example.org Text odkazu], ďalší text.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Text stránky.<sup><a href='#'>[1]</a></sup>",
@@ -23017,8 +24382,9 @@ $1:Príklad.jpg|Popis2',
'wikieditor-toolbar-help-content-indent-result' => 'Bežný text<dl><dd>Odsadený text<dl><dd>Odsadený text</dd></dl></dd></dl>',
);
-/** Slovenian (Slovenščina)
+/** Slovenian (slovenščina)
* @author Dbc334
+ * @author Yerpo
*/
$messages['sl'] = array(
'wikieditor' => 'Napredni vmesnik za urejanje wikibesedila',
@@ -23087,6 +24453,16 @@ $messages['sl'] = array(
'wikieditor-toolbar-tool-link-empty' => 'Niste vnesli ničesar, na kar bi se lahko povezovalo.',
'wikieditor-toolbar-tool-file' => 'Vgradi datoteko',
'wikieditor-toolbar-tool-file-example' => 'Zgled.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Vstavi datoteko',
+ 'wikieditor-toolbar-file-target' => 'Ime datoteke:',
+ 'wikieditor-toolbar-file-caption' => 'Napis:',
+ 'wikieditor-toolbar-file-size' => 'Velikost:',
+ 'wikieditor-toolbar-file-float' => 'Poravnava:',
+ 'wikieditor-toolbar-file-default' => '(privzeto)',
+ 'wikieditor-toolbar-file-format' => 'Oblika:',
+ 'wikieditor-toolbar-file-format-none' => 'noben',
+ 'wikieditor-toolbar-tool-file-insert' => 'Vstavi',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Prekliči',
'wikieditor-toolbar-tool-reference' => 'Reference',
'wikieditor-toolbar-tool-reference-example' => 'Tukaj vstavite besedilo opombe',
'wikieditor-toolbar-tool-reference-cancel' => 'Prekliči',
@@ -23184,6 +24560,7 @@ $1:Primer 2.jpg|Napis 2',
'wikieditor-toolbar-characters-page-telugu' => 'Telugijski',
'wikieditor-toolbar-characters-page-sinhala' => 'Singalščina',
'wikieditor-toolbar-characters-page-gujarati' => 'Gudžarati',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'Devanagari',
'wikieditor-toolbar-characters-page-thai' => 'Tajski',
'wikieditor-toolbar-characters-page-lao' => 'Laoški',
'wikieditor-toolbar-characters-page-khmer' => 'Kmerski',
@@ -23233,7 +24610,7 @@ $1:Primer 2.jpg|Napis 2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li> Vnos a </li><li> Vnos b </li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Vgradnja slike',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Primer.png|thumb|Napis pod sliko]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'> <a title=\"Napis pod sliko\" class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a> <div class='thumbcaption'><div class='magnify'> <a title=\"Povečaj\" class='internal' href='#'><img height='11' width='15' alt='' src='\$1/common/images/magnify-clip.png'/></a> </div> Napis pod sliko </div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'> <a title=\"Napis pod sliko\" class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='\$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a> <div class='thumbcaption'><div class='magnify'> <a title=\"Povečaj\" class='internal' href='#'><img height='11' width='15' alt='' src='\$1/common/images/magnify-clip.png'/></a> </div> Napis pod sliko </div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Sprotna opomba',
'wikieditor-toolbar-help-content-reference-syntax' => 'Besedilo strani. &lt;ref name=&quot;test&quot;&gt; [http://www.example.org Oznaka povezave], dodatno besedilo. &lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Besedilo strani. <a href='#'><sup>[1]</sup></a>",
@@ -23250,7 +24627,7 @@ $1:Primer 2.jpg|Napis 2',
'wikieditor-toolbar-help-content-indent-result' => 'Navadno besedilo <dl><dd> Zamaknjeno besedilo <dl><dd> Še bolj zamaknjeno besedilo </dd></dl></dd></dl>',
);
-/** Albanian (Shqip)
+/** Albanian (shqip)
* @author Mikullovci11
* @author Olsi
*/
@@ -23463,7 +24840,7 @@ $messages['sq'] = array(
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Listo artikullin</li><li>Listo artikullin</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Vendos një figurë',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Caption text]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Përshkrimi' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Zmadhoe' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Përshkrimi</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Përshkrimi' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Zmadhoe' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Përshkrimi</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Burimi',
'wikieditor-toolbar-help-content-reference-syntax' => 'Teksti i Faqës.&lt;ref name="test"&gt;[http://www.shembull.org Teksti i lidhjes], Tekst shtues.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Teksti i Faqës.<sup><a href='#'>[1]</a></sup>",
@@ -23480,7 +24857,7 @@ $messages['sq'] = array(
'wikieditor-toolbar-help-content-indent-result' => 'Tekst normal<dl><dd>Tekst me kryeradhë<dl><dd>Tekst me kryeradhë</dd></dl></dd></dl>',
);
-/** Serbian (Cyrillic script) (‪Српски (ћирилица)‬)
+/** Serbian (Cyrillic script) (српски (ћирилица)‎)
* @author Charmed94
* @author Helios13
* @author McDutchie
@@ -23491,6 +24868,7 @@ $messages['sq'] = array(
*/
$messages['sr-ec'] = array(
'wikieditor' => 'Напредно сучеље уређивања викитекста',
+ 'wikieditor-desc' => 'Пружа прошириво корисничко окружење за уређивање викитекста и много модула са бројним могућностима',
'wikieditor-wikitext-tab' => 'Викитекст',
'wikieditor-loading' => 'Учитавање',
'wikieditor-preview-preference' => 'Омогући упоредни преглед',
@@ -23555,6 +24933,15 @@ $messages['sr-ec'] = array(
'wikieditor-toolbar-tool-link-empty' => 'Ниста унели ништа за повезивање.',
'wikieditor-toolbar-tool-file' => 'Уграђена датотека',
'wikieditor-toolbar-tool-file-example' => 'Пример.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Убацивање датотеке',
+ 'wikieditor-toolbar-file-target' => 'Назив датотеке:',
+ 'wikieditor-toolbar-file-caption' => 'Наслов:',
+ 'wikieditor-toolbar-file-size' => 'Величина:',
+ 'wikieditor-toolbar-file-float' => 'Поравнање:',
+ 'wikieditor-toolbar-file-default' => '(подразумевано)',
+ 'wikieditor-toolbar-file-format' => 'Формат:',
+ 'wikieditor-toolbar-tool-file-insert' => 'Убаци',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Откажи',
'wikieditor-toolbar-tool-reference' => 'Навод',
'wikieditor-toolbar-tool-reference-example' => 'Овде унесите текст фусноте',
'wikieditor-toolbar-tool-reference-cancel' => 'Откажи',
@@ -23649,6 +25036,7 @@ $1:пример2.jpg|Наслов2',
'wikieditor-toolbar-characters-page-persian' => 'персијски',
'wikieditor-toolbar-characters-page-hebrew' => 'хебрејски',
'wikieditor-toolbar-characters-page-bangla' => 'бенгалски',
+ 'wikieditor-toolbar-characters-page-tamil' => 'тамилски',
'wikieditor-toolbar-characters-page-telugu' => 'телугу',
'wikieditor-toolbar-characters-page-sinhala' => 'синхалски',
'wikieditor-toolbar-characters-page-gujarati' => 'гуџарати',
@@ -23700,7 +25088,7 @@ $1:пример2.jpg|Наслов2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Ставка</li><li>Ставка</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Уграђена датотека',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Пример.png|thumb|Описни текст]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Опис' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Повећај' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Опис</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Опис' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Повећај' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Опис</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Навод',
'wikieditor-toolbar-help-content-reference-syntax' => 'Текст странице.&lt;ref name="test"&gt;[http://www.primer.org Текст везе], додатни текст.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Текст странице.<sup><a href='#'>[1]</a></sup>",
@@ -23719,7 +25107,7 @@ $1:пример2.jpg|Наслов2',
'wikieditor-toolbar-help-content-indent-result' => 'Обични текст<dl><dd>Увучени текст<dl><dd>Увучени текст</dd></dl></dd></dl>',
);
-/** Serbian (Latin script) (‪Srpski (latinica)‬)
+/** Serbian (Latin script) (srpski (latinica)‎)
* @author Liangent
* @author McDutchie
* @author Rancher
@@ -23727,11 +25115,14 @@ $1:пример2.jpg|Наслов2',
*/
$messages['sr-el'] = array(
'wikieditor' => 'Napredno sučelje uređivanja vikiteksta',
+ 'wikieditor-desc' => 'Pruža proširivo korisničko okruženje za uređivanje vikiteksta i mnogo modula sa brojnim mogućnostima',
'wikieditor-wikitext-tab' => 'Vikitekst',
'wikieditor-loading' => 'Učitavanje',
+ 'wikieditor-preview-preference' => 'Omogući uporedni pregled',
'wikieditor-preview-tab' => 'Pretpregled',
'wikieditor-preview-changes-tab' => 'Izmene',
'wikieditor-preview-loading' => 'Učitavanje...',
+ 'wikieditor-previewDialog-preference' => 'Omogući prozorče za pregled',
'wikieditor-previewDialog-tab' => 'Pregled',
'wikieditor-previewDialog-loading' => 'Učitavanje...',
'wikieditor-publish-preference' => 'Omogući postepeno objavljivanje',
@@ -23743,6 +25134,7 @@ $messages['sr-el'] = array(
'wikieditor-publish-dialog-watch' => 'Nadgledaj ovu stranicu',
'wikieditor-publish-dialog-publish' => 'Objavi',
'wikieditor-publish-dialog-goback' => 'Vrati se',
+ 'wikieditor-template-editor-preference' => 'Omogući uređivanje viki-šablona preko obrasca',
'wikieditor-template-editor-dialog-title' => 'Izmeni šablon',
'wikieditor-template-editor-dialog-submit' => 'Ažuriraj',
'wikieditor-template-editor-dialog-cancel' => 'Otkaži',
@@ -23751,7 +25143,10 @@ $messages['sr-el'] = array(
'wikieditor-toc-show' => 'Pokaži sadržaj',
'wikieditor-toc-hide' => 'Sakrij sadržaj',
'wikieditor-toolbar' => 'Alatna traka za uređivanje',
+ 'wikieditor-toolbar-desc' => 'Alatna traka za uređivanje s poboljšanom upotrebljivošću',
'wikieditor-toolbar-preference' => 'Omogući poboljšanu traku za uređivanje',
+ 'wikieditor-toolbar-dialogs-preference' => 'Omogući prozorčad za ubacivanje veza, tabela i više',
+ 'wikieditor-toolbar-hidesig' => 'Sakrij dugme za potpis na stranicama u glavnom imenskom prostoru',
'wikieditor-toolbar-loading' => 'Učitavanje...',
'wikieditor-toolbar-tool-bold' => 'Podebljan',
'wikieditor-toolbar-tool-bold-example' => 'Podebljan tekst',
@@ -23785,6 +25180,15 @@ $messages['sr-el'] = array(
'wikieditor-toolbar-tool-link-empty' => 'Nista uneli ništa za povezivanje.',
'wikieditor-toolbar-tool-file' => 'Ugrađena datoteka',
'wikieditor-toolbar-tool-file-example' => 'Primer.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Ubacivanje datoteke',
+ 'wikieditor-toolbar-file-target' => 'Naziv datoteke:',
+ 'wikieditor-toolbar-file-caption' => 'Naslov:',
+ 'wikieditor-toolbar-file-size' => 'Veličina:',
+ 'wikieditor-toolbar-file-float' => 'Poravnanje:',
+ 'wikieditor-toolbar-file-default' => '(podrazumevano)',
+ 'wikieditor-toolbar-file-format' => 'Format:',
+ 'wikieditor-toolbar-tool-file-insert' => 'Ubaci',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Otkaži',
'wikieditor-toolbar-tool-reference' => 'Referenca',
'wikieditor-toolbar-tool-reference-example' => 'Unesite tekst fusnote ovde',
'wikieditor-toolbar-tool-reference-cancel' => 'Otkaži',
@@ -23810,6 +25214,7 @@ $messages['sr-el'] = array(
'wikieditor-toolbar-tool-nowiki' => 'Bez viki oblikovanja',
'wikieditor-toolbar-tool-nowiki-example' => 'Ubacite neoblikovan tekst ovde',
'wikieditor-toolbar-tool-redirect' => 'Preusmerenje',
+ 'wikieditor-toolbar-tool-redirect-example' => 'Ime ciljne stranice',
'wikieditor-toolbar-tool-big' => 'Velik',
'wikieditor-toolbar-tool-big-example' => 'Velik tekst',
'wikieditor-toolbar-tool-small' => 'Mali',
@@ -23849,6 +25254,7 @@ $1:primer2.jpg|Naslov2',
'wikieditor-toolbar-tool-table-insert' => 'Ubaci',
'wikieditor-toolbar-tool-table-cancel' => 'Otkaži',
'wikieditor-toolbar-tool-table-example-text' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut nec purus diam. Sed aliquam imperdiet nunc quis lacinia. Donec rutrum consectetur placerat. Sed volutpat neque non purus faucibus id ultricies enim euismod.',
+ 'wikieditor-toolbar-tool-table-toomany' => 'Ne možete da ubacujete tabele s više od $1 ćelija s ovim prozorčetom.',
'wikieditor-toolbar-tool-table-invalidnumber' => 'Niste uneli validan broj redova i kolona',
'wikieditor-toolbar-tool-table-zero' => 'Ne možete da unesete tabelu sa 0 redova ili kolona.',
'wikieditor-toolbar-tool-replace' => 'Traži i zameni',
@@ -23858,6 +25264,7 @@ $1:primer2.jpg|Naslov2',
'wikieditor-toolbar-tool-replace-case' => 'Pazi na veličinu slova',
'wikieditor-toolbar-tool-replace-regex' => 'Postupi s nitima za pretragu kao s običnim izrazima',
'wikieditor-toolbar-tool-replace-button-findnext' => 'Nađi sledeće',
+ 'wikieditor-toolbar-tool-replace-button-replace' => 'Zameni',
'wikieditor-toolbar-tool-replace-button-replaceall' => 'Zameni sve',
'wikieditor-toolbar-tool-replace-close' => 'Zatvori',
'wikieditor-toolbar-tool-replace-nomatch' => 'Pretraga nije pronašla rezultate.',
@@ -23876,6 +25283,7 @@ $1:primer2.jpg|Naslov2',
'wikieditor-toolbar-characters-page-persian' => 'persijski',
'wikieditor-toolbar-characters-page-hebrew' => 'jevrejsko',
'wikieditor-toolbar-characters-page-bangla' => 'Bangla',
+ 'wikieditor-toolbar-characters-page-tamil' => 'tamilski',
'wikieditor-toolbar-characters-page-telugu' => 'telugu',
'wikieditor-toolbar-characters-page-sinhala' => 'sinhalski',
'wikieditor-toolbar-characters-page-gujarati' => 'Gudžarati',
@@ -23903,6 +25311,7 @@ $1:primer2.jpg|Naslov2',
'wikieditor-toolbar-help-content-bolditalic-syntax' => "'''''Podebljani &amp; iskošeni tekst'''''",
'wikieditor-toolbar-help-content-bolditalic-result' => '<strong><em>Podebljan &amp; iskošen tekst</em></strong>',
'wikieditor-toolbar-help-content-ilink-description' => 'Unutrašnja veza',
+ 'wikieditor-toolbar-help-content-ilink-syntax' => '[[Naslov stranice|Naslov veze]]<br />[[Naslov stranice]]',
'wikieditor-toolbar-help-content-ilink-result' => "<a href='#'>Naziv veze</a><br /><a href='#'>Naslov stranice</a>",
'wikieditor-toolbar-help-content-xlink-description' => 'Spoljašnja veza',
'wikieditor-toolbar-help-content-xlink-syntax' => '[http://www.primer.org Naslov veze]<br />[http://www.primer.org]<br />http://www.primer.org',
@@ -23919,19 +25328,27 @@ $1:primer2.jpg|Naslov2',
'wikieditor-toolbar-help-content-heading5-syntax' => '===== Naslov odeljka =====',
'wikieditor-toolbar-help-content-heading5-result' => '<h5>Naslov odeljka</h5>',
'wikieditor-toolbar-help-content-ulist-description' => 'Spisak s oznakama',
+ 'wikieditor-toolbar-help-content-ulist-syntax' => '* Stavka<br />* Stavka',
+ 'wikieditor-toolbar-help-content-ulist-result' => '<ul><li>Stavka</li><li>Stavka</li></ul>',
'wikieditor-toolbar-help-content-olist-description' => 'Numerisana lista',
+ 'wikieditor-toolbar-help-content-olist-syntax' => '# Stavka<br /># Stavka',
+ 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Stavka</li><li>Stavka</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Ugrađena datoteka',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Primjer.png|thumb|Naziv slike]]',
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Opis' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Povećaj' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Opis</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Reference',
+ 'wikieditor-toolbar-help-content-reference-syntax' => 'Tekst stranice.&lt;ref name="test"&gt;[http://www.primer.org Tekst veze], dodatni tekst.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Tekst stranice.<sup><a href='#'>[1]</a></sup>",
'wikieditor-toolbar-help-content-rereference-description' => 'Dodatna upotreba istog navoda',
'wikieditor-toolbar-help-content-rereference-syntax' => '&lt;ref name="proba" /&gt;',
'wikieditor-toolbar-help-content-rereference-result' => "Tekst stranice.<sup><a href='#'>[1]</a></sup>",
'wikieditor-toolbar-help-content-showreferences-description' => 'Prikaži reference',
'wikieditor-toolbar-help-content-showreferences-syntax' => '&lt;navodi /&gt;',
+ 'wikieditor-toolbar-help-content-showreferences-result' => "<ol class='references'><li id='cite_note-test-0'><b><a title='' href='#'>^</a></b> <a rel='nofollow' title='http://www.primer.org' class='external text' href='#'>Tekst veze</a>, dodatni tekst.</li></ol>",
'wikieditor-toolbar-help-content-signaturetimestamp-description' => 'Potpis s trenutnim vremenom',
'wikieditor-toolbar-help-content-signaturetimestamp-result' => "<a href='#' title='{{#special:mypage}}'>Korisnik</a> (<a href='#' title='{{#special:mytalk}}'>razgovor</a>) 15:54, 10. jun 2009. (UTC)",
'wikieditor-toolbar-help-content-signature-description' => 'Potpis',
+ 'wikieditor-toolbar-help-content-signature-result' => "<a href='#' title='{{#special:mypage}}'>Korisničko ime</a> (<a href='#' title='{{#special:mytalk}}'>razgovor</a>)",
'wikieditor-toolbar-help-content-indent-description' => 'Uvlačenje',
'wikieditor-toolbar-help-content-indent-syntax' => 'Normalan tekst<br />:Uvučen tekst<br />::Uvučen tekst',
'wikieditor-toolbar-help-content-indent-result' => 'Obični tekst<dl><dd>Uvučeni tekst<dl><dd>Uvučeni tekst</dd></dl></dd></dl>',
@@ -24132,7 +25549,7 @@ $1:Conto.jpg|Pedaran2',
'wikieditor-toolbar-help-content-ulist-description' => 'Béréndélan pélor',
'wikieditor-toolbar-help-content-olist-description' => 'Béréndélan nomer',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Conto.png|thumb|Téks gambar]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Téks pedaran' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Gedéan' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Téks pedaran</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Téks pedaran' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Gedéan' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Téks pedaran</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Rujukan',
'wikieditor-toolbar-help-content-reference-syntax' => 'Téks kaca.&lt;ref name="test"&gt;[http://www.conto.org Téks tutumbu], téks panambih.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Téks kaca.<sup><a href='#'>[1]</a></sup>",
@@ -24148,16 +25565,18 @@ $1:Conto.jpg|Pedaran2',
'wikieditor-toolbar-help-content-indent-result' => 'Téks normal<dl><dd>Téks ngelok<dl><dd>Téks ngelok</dd></dl></dd></dl>',
);
-/** Swedish (Svenska)
+/** Swedish (svenska)
* @author Ainali
* @author Boivie
* @author Cohan
* @author Dafer45
* @author Hannibal
* @author Lokal Profil
+ * @author Martinwiss
* @author McDutchie
* @author Sertion
* @author Warrakkk
+ * @author WikiPhoenix
*/
$messages['sv'] = array(
'wikieditor' => 'Avancerat gränssnitt för redigering av wikitext',
@@ -24226,6 +25645,16 @@ $messages['sv'] = array(
'wikieditor-toolbar-tool-link-empty' => 'Du skrev inget att länka till.',
'wikieditor-toolbar-tool-file' => 'Inbäddad fil',
'wikieditor-toolbar-tool-file-example' => 'Exempel.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Infoga fil',
+ 'wikieditor-toolbar-file-target' => 'Filnamn:',
+ 'wikieditor-toolbar-file-caption' => 'Bildtext:',
+ 'wikieditor-toolbar-file-size' => 'Storlek:',
+ 'wikieditor-toolbar-file-float' => 'Justering:',
+ 'wikieditor-toolbar-file-default' => '(standard)',
+ 'wikieditor-toolbar-file-format' => 'Format:',
+ 'wikieditor-toolbar-file-format-none' => 'ingen',
+ 'wikieditor-toolbar-tool-file-insert' => 'Infoga',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Avbryt',
'wikieditor-toolbar-tool-reference' => 'Referens',
'wikieditor-toolbar-tool-reference-example' => 'Sätt in fotnotstexten här',
'wikieditor-toolbar-tool-reference-cancel' => 'Avbryt',
@@ -24323,6 +25752,7 @@ $1:Exempel.jpg|Bildtext2',
'wikieditor-toolbar-characters-page-telugu' => 'Telugu',
'wikieditor-toolbar-characters-page-sinhala' => 'Singalesiska',
'wikieditor-toolbar-characters-page-gujarati' => 'Gujarati',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'Devenagari',
'wikieditor-toolbar-characters-page-thai' => 'Thai',
'wikieditor-toolbar-characters-page-lao' => 'Laotisk',
'wikieditor-toolbar-characters-page-khmer' => 'Khmer',
@@ -24372,7 +25802,7 @@ $1:Exempel.jpg|Bildtext2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Listelement</li><li>Listelement</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Inbäddad fil',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Exempel.png|thumb|Bildtext]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Bildtext' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Förstora' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Bildtext</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Bildtext' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Förstora' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Bildtext</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Referens',
'wikieditor-toolbar-help-content-reference-syntax' => 'Brödtext.&lt;ref name="test"&gt;[http://www.example.org Länktext], ytterligare text.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Brödtext.<sup><a href='#'>[1]</a></sup>",
@@ -24390,6 +25820,7 @@ $1:Exempel.jpg|Bildtext2',
);
/** Swahili (Kiswahili)
+ * @author Kwisha
* @author Lloffiwr
* @author Muddyb Blast Producer
*/
@@ -24458,6 +25889,11 @@ $messages['sw'] = array(
'wikieditor-toolbar-tool-link-empty' => 'Hukuandika kitu cha kuunganisha naye.',
'wikieditor-toolbar-tool-file' => 'Faili futike',
'wikieditor-toolbar-tool-file-example' => 'Mfano.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Ingiza faili',
+ 'wikieditor-toolbar-file-target' => 'Jina la faili:',
+ 'wikieditor-toolbar-file-size' => 'Ukubwa:',
+ 'wikieditor-toolbar-tool-file-insert' => 'Ingiza',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Ghairi',
'wikieditor-toolbar-tool-reference' => 'Tiniwayo',
'wikieditor-toolbar-tool-reference-example' => 'Weka maneno ya tiniwayo hapa',
'wikieditor-toolbar-tool-reference-cancel' => 'Batilisha',
@@ -24604,7 +26040,7 @@ Idadi ya mistari au ya safu si halali.',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Aya</li><li>Aya</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Faili futike',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Maelezo mafupi]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Maelezo mafupi' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Kuza' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Maelezo mafupi</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Maelezo mafupi' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Kuza' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Maelezo mafupi</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Tiniwayo',
'wikieditor-toolbar-help-content-reference-syntax' => 'Maandishi ya ukurasa.&lt;ref name="mfano"&gt;[http://www.example.org Maandishi ya kiungo], maandishi mengine.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Maandiko.<sup><a href='#'>[1]</a></sup>",
@@ -24622,11 +26058,14 @@ Idadi ya mistari au ya safu si halali.',
);
/** Tamil (தமிழ்)
+ * @author Balajijagadesh
* @author Karthi.dr
* @author Logicwiki
+ * @author Shanmugamp7
* @author Surya Prakash.S.A.
* @author TRYPPN
* @author செல்வா
+ * @author மதனாஹரன்
*/
$messages['ta'] = array(
'wikieditor' => 'மேம்பட்ட விக்கியுரைத் தொகுப்பு இடைமுகம்',
@@ -24693,6 +26132,14 @@ $messages['ta'] = array(
'wikieditor-toolbar-tool-link-empty' => 'நீங்கள் இணைப்பதற்கு எதையுமே உள்ளிடவில்லை.',
'wikieditor-toolbar-tool-file' => 'பொதிந்துள்ள படிமம்',
'wikieditor-toolbar-tool-file-example' => 'மாதிரிப்படம்',
+ 'wikieditor-toolbar-tool-file-title' => 'கோப்பை நுழை',
+ 'wikieditor-toolbar-file-target' => 'கோப்பின் பெயர்:',
+ 'wikieditor-toolbar-file-caption' => 'தலைப்பு:',
+ 'wikieditor-toolbar-file-size' => 'அளவு:',
+ 'wikieditor-toolbar-file-default' => '(இயல்பிருப்பு)',
+ 'wikieditor-toolbar-file-format' => 'வடிவமைப்பு:',
+ 'wikieditor-toolbar-tool-file-insert' => 'உள்ளிடு',
+ 'wikieditor-toolbar-tool-file-cancel' => 'ரத்து செய்',
'wikieditor-toolbar-tool-reference' => '# மேற்கோள்
# முன்மாதிரி',
'wikieditor-toolbar-tool-reference-example' => 'அடிக்குறிப்பை இங்கே எழுதவும்',
@@ -24774,6 +26221,7 @@ $1:எடுத்துக்காட்டு.jpg|படவிளக்கம
'wikieditor-toolbar-tool-replace-case' => 'பெரிய / சிறிய எழுத்துப் பொருத்தம்',
'wikieditor-toolbar-tool-replace-regex' => 'தேடப்படும் சொற்றொடரை வழக்கமானதாக எடுத்துக்கொள்ளவும்',
'wikieditor-toolbar-tool-replace-button-findnext' => 'அடுத்ததை கண்டுபிடி',
+ 'wikieditor-toolbar-tool-replace-button-replace' => 'மாற்றுக',
'wikieditor-toolbar-tool-replace-button-replaceall' => 'எல்லாவற்றையும் மாற்றவும்',
'wikieditor-toolbar-tool-replace-close' => 'மூடுக',
'wikieditor-toolbar-tool-replace-nomatch' => 'தங்களது தேடலுக்கான முடிவு எங்கும் ஒத்துவரவில்லை.',
@@ -24788,6 +26236,7 @@ $1:எடுத்துக்காட்டு.jpg|படவிளக்கம
'wikieditor-toolbar-characters-page-greek' => 'கிரேக்கம்',
'wikieditor-toolbar-characters-page-cyrillic' => 'சைரிலிக் (Cyrillic)',
'wikieditor-toolbar-characters-page-arabic' => 'அரபு',
+ 'wikieditor-toolbar-characters-page-arabicextended' => 'அரபு விரிவு',
'wikieditor-toolbar-characters-page-persian' => 'பாரசீகம்',
'wikieditor-toolbar-characters-page-hebrew' => 'எபிரேயம் (ஈபுரு)',
'wikieditor-toolbar-characters-page-bangla' => 'வங்காளம்',
@@ -24795,6 +26244,7 @@ $1:எடுத்துக்காட்டு.jpg|படவிளக்கம
'wikieditor-toolbar-characters-page-telugu' => 'தெலுங்கு',
'wikieditor-toolbar-characters-page-sinhala' => 'சிங்களம்',
'wikieditor-toolbar-characters-page-gujarati' => 'குசராத்தி',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'தேவநாகரி',
'wikieditor-toolbar-characters-page-thai' => 'தாய்',
'wikieditor-toolbar-characters-page-lao' => 'இலாவோ',
'wikieditor-toolbar-characters-page-khmer' => 'கெமெர்',
@@ -24844,7 +26294,7 @@ $1:எடுத்துக்காட்டு.jpg|படவிளக்கம
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>பட்டியல் உருப்படி</li><li>பட்டியல் உருப்படி</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'பொதிந்துள்ள படிமம்',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:எடுத்துக்காட்டு.png|விரலளவுப்படம்|படவிளக்கவுரை]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='தலைப்புப் பெயர்' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='பெரிதாக்கு' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>தலைப்புப் பெயர்</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='தலைப்புப் பெயர்' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='பெரிதாக்கு' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>தலைப்புப் பெயர்</div></div>",
'wikieditor-toolbar-help-content-reference-description' => '# மேற்கோள்
# முன்மாதிரி',
'wikieditor-toolbar-help-content-reference-syntax' => 'பக்க உரை.&lt;ref name="சோதனை"&gt;[http://www.example.org இணைப்பு உரை], கூடுதல் உரை.&lt;/ref&gt;',
@@ -24926,6 +26376,10 @@ $messages['te'] = array(
'wikieditor-toolbar-tool-link-lookslikeinternal-ext' => 'బయటి లంకె',
'wikieditor-toolbar-tool-link-empty' => 'మీరు దేనికి లంకె వెయ్యాలో పేర్కొనలేదు.',
'wikieditor-toolbar-tool-file' => 'పొదిగిన ఫైలు',
+ 'wikieditor-toolbar-file-target' => 'దస్త్రం పేరు:',
+ 'wikieditor-toolbar-file-size' => 'పరిమాణం:',
+ 'wikieditor-toolbar-file-default' => '(అప్రమేయం)',
+ 'wikieditor-toolbar-tool-file-cancel' => 'రద్దుచేయి',
'wikieditor-toolbar-tool-reference' => 'సాక్ష్యాలు',
'wikieditor-toolbar-tool-reference-example' => 'పాదసూచిక పాఠ్యాన్ని ఇక్కడ చేర్చండి',
'wikieditor-toolbar-tool-reference-cancel' => 'రద్దుచేయి',
@@ -25004,6 +26458,7 @@ $1:Example.jpg|ఉపశీర్షిక2',
'wikieditor-toolbar-characters-page-telugu' => 'తెలుగు',
'wikieditor-toolbar-characters-page-sinhala' => 'సింహళ',
'wikieditor-toolbar-characters-page-gujarati' => 'గుజరాతీ',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'దేవనాగరి',
'wikieditor-toolbar-characters-page-thai' => 'థాయి',
'wikieditor-toolbar-characters-page-lao' => 'లావో',
'wikieditor-toolbar-characters-page-khmer' => 'ఖ్మెర్',
@@ -25051,7 +26506,7 @@ $1:Example.jpg|ఉపశీర్షిక2',
'wikieditor-toolbar-help-content-olist-syntax' => '# జాబితా అంశం<br /># జాబితా అంశం',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>జాబితా అంశం</li><li>జాబితా అంశం</li></ol>',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|వివరణ పాఠ్యం]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>వివరణ పాఠ్యం</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>వివరణ పాఠ్యం</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'సాక్ష్యాలు',
'wikieditor-toolbar-help-content-reference-syntax' => 'పేజీ పాఠ్యం.&lt;ref name="test"&gt;[http://www.example.org లింకు పాఠ్యం], అదనపు పాఠ్యం.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "పేజీ పాఠ్యం.<sup><a href='#'>[1]</a></sup>",
@@ -25063,13 +26518,13 @@ $1:Example.jpg|ఉపశీర్షిక2',
'wikieditor-toolbar-help-content-signature-result' => "<a href='#' title='{{#special:mypage}}'>వాడుకరిపేరు</a> (<a href='#' title='{{#special:mytalk}}'>చర్చ</a>)",
);
-/** Tajik (Cyrillic script) (Тоҷикӣ) */
+/** Tajik (Cyrillic script) (тоҷикӣ) */
$messages['tg-cyrl'] = array(
'wikieditor-toolbar-tool-link' => 'Пайванд',
'wikieditor-toolbar-tool-link-cancel' => 'Лағв',
);
-/** Tajik (Latin script) (Tojikī)
+/** Tajik (Latin script) (tojikī)
* @author Liangent
*/
$messages['tg-latn'] = array(
@@ -25285,7 +26740,7 @@ $1:Example.jpg|คำอธิบายภาพ2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>เนื้อหารายการ</li><li>เนื้อหารายการ</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'แทรกไฟล์',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|คำอธิบายภาพ]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='คำอธิบาย' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='ขยายใหญ่' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>คำอธิบาย</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='คำอธิบาย' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='ขยายใหญ่' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>คำอธิบาย</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'อ้างอิง',
'wikieditor-toolbar-help-content-reference-syntax' => 'ชื่อหน้า.&lt;ref name="test"&gt;[http://www.example.org ชื่อลิงก์], คำอธิบายเพิ่มเติม.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "ข้อความในหน้า<sup><a href='#'>[1]</a></sup>",
@@ -25513,7 +26968,7 @@ $1:Example.jpg|Titr2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Sanaw elementi</li><li>Sanaw elementi</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Salnan faýl',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Titriň teksti]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Titriň teksti' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Ulalt' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Titriň teksti</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Titriň teksti' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Ulalt' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Titriň teksti</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Salgylanma',
'wikieditor-toolbar-help-content-reference-syntax' => 'Sahypanyň teksti.&lt;ref name="test"&gt;[http://www.example.org Çykgydyň teksti], goşmaça tekst.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Sahypa teksti.<sup><a href='#'>[1]</a></sup>",
@@ -25601,6 +27056,15 @@ $messages['tl'] = array(
'wikieditor-toolbar-tool-link-empty' => 'Hindi ka naglagay ng anumang kakawingan.',
'wikieditor-toolbar-tool-file' => 'Talaksang nakabaon',
'wikieditor-toolbar-tool-file-example' => 'Halimbawa.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Isingit ang talaksan',
+ 'wikieditor-toolbar-file-target' => 'Pangalan ng talaksan:',
+ 'wikieditor-toolbar-file-caption' => 'Paliwanag:',
+ 'wikieditor-toolbar-file-size' => 'Sukat:',
+ 'wikieditor-toolbar-file-float' => 'Ipantay:',
+ 'wikieditor-toolbar-file-default' => '(likas na katakdaan)',
+ 'wikieditor-toolbar-file-format' => 'Kaanyuan:',
+ 'wikieditor-toolbar-tool-file-insert' => 'Isingit',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Huwag ituloy',
'wikieditor-toolbar-tool-reference' => 'Sanggunian',
'wikieditor-toolbar-tool-reference-example' => 'Isingit dito ang teksto ng talababa',
'wikieditor-toolbar-tool-reference-cancel' => 'Huwag ituloy',
@@ -25665,6 +27129,7 @@ $1:Halimbawa.jpg|Kapsyon2',
'wikieditor-toolbar-tool-table-preview' => 'Paunang tingin',
'wikieditor-toolbar-tool-table-insert' => 'Isingit',
'wikieditor-toolbar-tool-table-cancel' => 'Huwag ituloy',
+ 'wikieditor-toolbar-tool-table-example-text' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut nec purus diam. Sed aliquam imperdiet nunc quis lacinia. Donec rutrum consectetur placerat. Sed volutpat neque non purus faucibus id ultricies enim euismod.',
'wikieditor-toolbar-tool-table-toomany' => 'Hindi maaari sa salitaang ganito ang pagsisingit ng isang talahanayang may mahigit sa $1 na mga sihay.',
'wikieditor-toolbar-tool-table-invalidnumber' => 'Hindi ka nagpasok ng isang tanggap na bilang ng mga hanay na pahalang o pababa.',
'wikieditor-toolbar-tool-table-zero' => 'Hindi ka makapagsisingit ng isang talahanayang walang mga hanay na pahalang o pababa.',
@@ -25675,6 +27140,7 @@ $1:Halimbawa.jpg|Kapsyon2',
'wikieditor-toolbar-tool-replace-case' => 'Itugma sa uri ng sukat ng titik',
'wikieditor-toolbar-tool-replace-regex' => 'Ituring ang bagting ng paghahanap bilang isang pangkaraniwang pananalita',
'wikieditor-toolbar-tool-replace-button-findnext' => 'Susunod na hahanapin',
+ 'wikieditor-toolbar-tool-replace-button-replace' => 'Palitan',
'wikieditor-toolbar-tool-replace-button-replaceall' => 'Palitang lahat',
'wikieditor-toolbar-tool-replace-close' => 'Isara',
'wikieditor-toolbar-tool-replace-nomatch' => 'Hindi tumugma sa anuman ang paghahanap mo.',
@@ -25689,12 +27155,15 @@ $1:Halimbawa.jpg|Kapsyon2',
'wikieditor-toolbar-characters-page-greek' => 'Griyego',
'wikieditor-toolbar-characters-page-cyrillic' => 'Siriliko',
'wikieditor-toolbar-characters-page-arabic' => 'Arabe',
+ 'wikieditor-toolbar-characters-page-arabicextended' => 'Pinalawig na Arabe',
'wikieditor-toolbar-characters-page-persian' => 'Persyano',
'wikieditor-toolbar-characters-page-hebrew' => 'Hebreo',
'wikieditor-toolbar-characters-page-bangla' => 'Bangla',
+ 'wikieditor-toolbar-characters-page-tamil' => 'Tamil',
'wikieditor-toolbar-characters-page-telugu' => 'Telugu',
'wikieditor-toolbar-characters-page-sinhala' => 'Sinhala',
'wikieditor-toolbar-characters-page-gujarati' => 'Guharati',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'Devanagari',
'wikieditor-toolbar-characters-page-thai' => 'Thai',
'wikieditor-toolbar-characters-page-lao' => 'Lao',
'wikieditor-toolbar-characters-page-khmer' => 'Khmer',
@@ -25744,13 +27213,15 @@ $1:Halimbawa.jpg|Kapsyon2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Bagay sa talaan</li><li>Bagay sa talaan</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Talaksang nakabaon',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Halimbawa.png|thumb|Teksto ng kapsyon]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Tekstong nagpapaliwanag</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Tekstong nagpapaliwanag</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Sanggunian',
'wikieditor-toolbar-help-content-reference-syntax' => 'Taksto ng pahina.&lt;ref name="test"&gt;[http://www.halimbawa.org Teksto ng kawing], karagdagang teksto.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Teksto ng pahina.<sup><a href='#'>[1]</a></sup>",
'wikieditor-toolbar-help-content-rereference-description' => 'Karagdagang paggamit na gayun ding sanggunian',
+ 'wikieditor-toolbar-help-content-rereference-syntax' => '&lt;ref name="test" /&gt;',
'wikieditor-toolbar-help-content-rereference-result' => "Teksto ng pahina.<sup><a href='#'>[1]</a></sup>",
'wikieditor-toolbar-help-content-showreferences-description' => 'Ipakita ang mga sanggunian',
+ 'wikieditor-toolbar-help-content-showreferences-syntax' => '&lt;mga sanggunian /&gt;',
'wikieditor-toolbar-help-content-showreferences-result' => "<ol class='references'><li id='cite_note-test-0'><b><a title='' href='#'>^</a></b> <a rel='nofollow' title='http://www.halimbawa.org' class='external text' href='#'>Teksto ng kawing</a>, karagdagang teksto.</li></ol>",
'wikieditor-toolbar-help-content-signaturetimestamp-description' => 'Lagdang may tatak ng oras',
'wikieditor-toolbar-help-content-signaturetimestamp-result' => "<a href='#' title='{{#special:mypage}}'>Pangalan ng tagagamit</a> (<a href='#' title='{{#special:mytalk}}'>talk</a>) 15:54, 10 Hunyo 2009 (UTC)",
@@ -25761,6 +27232,13 @@ $1:Halimbawa.jpg|Kapsyon2',
'wikieditor-toolbar-help-content-indent-result' => 'Karaniwang teksto<dl><dd>Tekstong nakaurong<dl><dd>Tekstong nakaurong</dd></dl></dd></dl>',
);
+/** толышә зывон (толышә зывон)
+ * @author Erdemaslancan
+ */
+$messages['tly'] = array(
+ 'wikieditor-toolbar-section-help' => 'Арајиш',
+);
+
/** Tok Pisin (Tok Pisin)
* @author Iketsi
*/
@@ -25770,6 +27248,7 @@ $messages['tpi'] = array(
/** Turkish (Türkçe)
* @author Emperyan
+ * @author Erdemaslancan
* @author Joseph
* @author Koc61
* @author Manco Capac
@@ -25844,6 +27323,7 @@ $messages['tr'] = array(
'wikieditor-toolbar-tool-link-empty' => 'Bağlantı verecek hiçbir şey girmediniz.',
'wikieditor-toolbar-tool-file' => 'Gömülü dosya',
'wikieditor-toolbar-tool-file-example' => 'Örnek.jpg',
+ 'wikieditor-toolbar-file-float' => 'Hizalama:',
'wikieditor-toolbar-tool-reference' => 'Kaynakça',
'wikieditor-toolbar-tool-reference-example' => 'Dipnot metnini buraya ekleyin',
'wikieditor-toolbar-tool-reference-cancel' => 'İptal',
@@ -25990,7 +27470,7 @@ $1:Örnek.jpg|Altyazı 2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Liste ögesi</li><li>Liste ögesi</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Gömülü dosya',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Örnek.png|thumb|Başlık metni]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Altyazı metni' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Büyüt' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Altyazı metni</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Altyazı metni' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Büyüt' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Altyazı metni</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Kaynak',
'wikieditor-toolbar-help-content-reference-syntax' => 'Sayfa metni.&lt;ref name="deneme"&gt;[http://www.ornek.org Bağlanı metni], ek metin.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Sayfa metni.<sup><a href='#'>[1]</a></sup>",
@@ -26007,7 +27487,7 @@ $1:Örnek.jpg|Altyazı 2',
'wikieditor-toolbar-help-content-indent-result' => 'Normal metin<dl><dd>Girintili metin<dl><dd>Girintili metin</dd></dl></dd></dl>',
);
-/** Tatar (Cyrillic script) (Татарча)
+/** Tatar (Cyrillic script) (татарча)
* @author Bulatbulat
* @author Zahidulla
* @author Ильнар
@@ -26223,7 +27703,7 @@ $1:Мисал.jpg|Тасвирлама2',
'wikieditor-toolbar-help-content-file-description' => 'Куелган файл',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Аңлатмалы текст]]',
'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='
-Аңлатмалы текст' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Зурайтырга' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>
+Аңлатмалы текст' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Зурайтырга' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>
Аңлатмалы текст</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Искәрмә',
'wikieditor-toolbar-help-content-reference-syntax' => 'Битнең тексты.&lt;ref name="test"&gt;[http://www.example.org Сылтаманың тексты], өстәмә текст.&lt;/ref&gt;',
@@ -26241,10 +27721,12 @@ $1:Мисал.jpg|Тасвирлама2',
'wikieditor-toolbar-help-content-indent-result' => 'Гади текст<dl><dd>Чигенешле текст<dl><dd>Чигенешле текст</dd></dl></dd></dl>',
);
-/** Ukrainian (Українська)
+/** Ukrainian (українська)
* @author AS
* @author Ahonc
* @author Dim Grits
+ * @author Microcell
+ * @author NickK
* @author Olvin
* @author Prima klasy4na
* @author Тест
@@ -26281,7 +27763,7 @@ $messages['uk'] = array(
'wikieditor-toolbar' => 'Панель засобів редагування',
'wikieditor-toolbar-desc' => 'Панель засобів редагування з покращеною ужитковістю',
'wikieditor-toolbar-preference' => 'Увімкнути покращену панель засобів редагування',
- 'wikieditor-toolbar-dialogs-preference' => 'Увімкнути діалоги для додавання посилань, таблиць та іншого',
+ 'wikieditor-toolbar-dialogs-preference' => 'Увімкнути діалоги для пошуку і заміни, додавання посилань, таблиць та іншого',
'wikieditor-toolbar-hidesig' => 'Приховати кнопку підпису зі сторінок в основному просторі назв',
'wikieditor-toolbar-loading' => 'Завантаження…',
'wikieditor-toolbar-tool-bold' => 'Жирний',
@@ -26316,6 +27798,15 @@ $messages['uk'] = array(
'wikieditor-toolbar-tool-link-empty' => 'Ви не зазначили, на що створити посилання.',
'wikieditor-toolbar-tool-file' => 'Вкладений файл',
'wikieditor-toolbar-tool-file-example' => 'Example.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Вставити файл',
+ 'wikieditor-toolbar-file-target' => 'Назва файлу:',
+ 'wikieditor-toolbar-file-caption' => 'Підпис:',
+ 'wikieditor-toolbar-file-size' => 'Розмір:',
+ 'wikieditor-toolbar-file-float' => 'Вирівнювання:',
+ 'wikieditor-toolbar-file-default' => '(стандартно)',
+ 'wikieditor-toolbar-file-format' => 'Формат:',
+ 'wikieditor-toolbar-tool-file-insert' => 'Вставити',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Скасувати',
'wikieditor-toolbar-tool-reference' => 'Виноска',
'wikieditor-toolbar-tool-reference-example' => 'Вставте сюди текст виноски',
'wikieditor-toolbar-tool-reference-cancel' => 'Скасувати',
@@ -26410,9 +27901,11 @@ $1:Example.jpg|Опис2',
'wikieditor-toolbar-characters-page-persian' => 'Перські',
'wikieditor-toolbar-characters-page-hebrew' => 'Іврит',
'wikieditor-toolbar-characters-page-bangla' => 'Бенгальські',
+ 'wikieditor-toolbar-characters-page-tamil' => 'Тамільська',
'wikieditor-toolbar-characters-page-telugu' => 'Телугу',
'wikieditor-toolbar-characters-page-sinhala' => 'Сингальська',
'wikieditor-toolbar-characters-page-gujarati' => 'Гуджараті',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'Деванагарі',
'wikieditor-toolbar-characters-page-thai' => 'Тайські',
'wikieditor-toolbar-characters-page-lao' => 'Лаоські',
'wikieditor-toolbar-characters-page-khmer' => 'Кхмерські',
@@ -26462,7 +27955,7 @@ $1:Example.jpg|Опис2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Елемент списку</li><li>Елемент списку</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Вбудований файл',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Пояснювальний текст]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Пояснювальний текст' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Збільшити' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Пояснювальний текст</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Пояснювальний текст' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Збільшити' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Пояснювальний текст</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Виноска',
'wikieditor-toolbar-help-content-reference-syntax' => 'Текст сторінки&lt;ref name="test"&gt;[http://www.example.org Текст посилання], додатковий текст.&lt;/ref&gt;.',
'wikieditor-toolbar-help-content-reference-result' => "Текст сторінки.<sup><a href='#'>[1]</a></sup>",
@@ -26483,6 +27976,7 @@ $1:Example.jpg|Опис2',
/** Urdu (اردو)
* @author محبوب عالم
+ * @author පසිඳු කාවින්ද
*/
$messages['ur'] = array(
'wikieditor' => 'ویکی متن کی تدوین کیلئے پیش رفتہ سطح البین',
@@ -26507,6 +28001,7 @@ $messages['ur'] = array(
'wikieditor-publish-dialog-goback' => 'پیچھے جاؤ',
'wikieditor-template-editor-preference' => 'ویکی سانچہ جات کا شکلبندی تدوین فعال کرو',
'wikieditor-template-editor-dialog-title' => 'سانچہ کی تدوین',
+ 'wikieditor-template-editor-dialog-submit' => 'اپ ڈیٹ',
'wikieditor-template-editor-dialog-cancel' => 'منسوخ',
'wikieditor-templates-preference' => 'سانچہ کی تہدیم فعال کرو',
'wikieditor-toc-show' => 'مشتملات دکھاؤ',
@@ -26548,6 +28043,15 @@ $messages['ur'] = array(
'wikieditor-toolbar-tool-link-empty' => 'آپ نے ربط کیلئے کچھ داخل نہیں کیا۔',
'wikieditor-toolbar-tool-file' => 'پیوستہ ملف',
'wikieditor-toolbar-tool-file-example' => 'مثال.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'فائل کو داخل کریں',
+ 'wikieditor-toolbar-file-target' => 'توسیعۂ اسم:',
+ 'wikieditor-toolbar-file-caption' => 'عنوان:',
+ 'wikieditor-toolbar-file-size' => 'کا سائز:',
+ 'wikieditor-toolbar-file-float' => 'سیدھ کریں:',
+ 'wikieditor-toolbar-file-default' => '(طے شدہ)',
+ 'wikieditor-toolbar-file-format' => 'فارمیٹ:',
+ 'wikieditor-toolbar-tool-file-insert' => 'ڈالیں',
+ 'wikieditor-toolbar-tool-file-cancel' => 'منسوخ',
'wikieditor-toolbar-tool-reference' => 'حوالہ',
'wikieditor-toolbar-tool-reference-example' => 'حاشیہ متن یہاں داخل کرو',
'wikieditor-toolbar-tool-reference-cancel' => 'منسوخ',
@@ -26568,6 +28072,9 @@ $messages['ur'] = array(
'wikieditor-toolbar-tool-ulist-example' => 'نقاطی فہرست کی مَد',
'wikieditor-toolbar-tool-olist' => 'نمبرشدہ فہرست',
'wikieditor-toolbar-tool-olist-example' => 'نمبرشُدہ فہرست کی مَد',
+ 'wikieditor-toolbar-tool-nowiki' => 'کوئی وکی فارمیٹنگ',
+ 'wikieditor-toolbar-tool-nowiki-example' => 'غیر فارمیٹ متن یہاں داخل کریں',
+ 'wikieditor-toolbar-tool-redirect' => 'کی سمت تبدیل',
'wikieditor-toolbar-tool-redirect-example' => 'ہدف صفحہ کا نام',
'wikieditor-toolbar-tool-big' => 'بڑا',
'wikieditor-toolbar-tool-big-example' => 'بڑا متن',
@@ -26614,6 +28121,8 @@ $1:مثال.jpg|تعقیب2',
'wikieditor-toolbar-tool-replace-title' => 'تلاش و تبدیلئ متن',
'wikieditor-toolbar-tool-replace-search' => 'تلاش برائے:',
'wikieditor-toolbar-tool-replace-replace' => 'اِس کے ساتھ تبدیل کرو:',
+ 'wikieditor-toolbar-tool-replace-case' => 'میچ کے کیس',
+ 'wikieditor-toolbar-tool-replace-regex' => 'ایک باقاعدہ اظہار طور پر تلاش تار کا علاج',
'wikieditor-toolbar-tool-replace-button-findnext' => 'اگلی دریافت',
'wikieditor-toolbar-tool-replace-button-replace' => 'بدل دو',
'wikieditor-toolbar-tool-replace-button-replaceall' => 'سب بدل دو',
@@ -26631,6 +28140,7 @@ $1:مثال.jpg|تعقیب2',
'wikieditor-toolbar-characters-page-persian' => 'فارسی',
'wikieditor-toolbar-characters-page-hebrew' => 'عبرانی',
'wikieditor-toolbar-characters-page-bangla' => 'بنگالی',
+ 'wikieditor-toolbar-characters-page-tamil' => 'تامل',
'wikieditor-toolbar-characters-page-telugu' => 'تلگو',
'wikieditor-toolbar-characters-page-sinhala' => 'سنگھالی',
'wikieditor-toolbar-characters-page-gujarati' => 'گجراتی',
@@ -26685,7 +28195,253 @@ $1:مثال.jpg|تعقیب2',
'wikieditor-toolbar-help-content-signature-description' => 'دستخط',
);
-/** Vèneto (Vèneto)
+/** Uzbek (oʻzbekcha)
+ * @author CoderSI
+ */
+$messages['uz'] = array(
+ 'wikieditor' => 'Vikimatnni tahrirlashning kengaytirilgan interfeysi',
+ 'wikieditor-desc' => "Vikimatnni tahrirlashning kengaytirilgan interfeysi va modullar tomonidan taqdim qilinadigan ko'pchilik amallar bilan ta'minlaydi",
+ 'wikieditor-wikitext-tab' => 'Vikimatn',
+ 'wikieditor-loading' => 'Yuklash...',
+ 'wikieditor-preview-preference' => "Yonma-yon batafsil ko'rsatishni yoqish",
+ 'wikieditor-preview-tab' => "Batafsil ko'rsatish",
+ 'wikieditor-preview-changes-tab' => "O'zgarishlar",
+ 'wikieditor-preview-loading' => 'Yuklash...',
+ 'wikieditor-previewDialog-preference' => "Batafsil ko'rsatish dialogini yoqish",
+ 'wikieditor-previewDialog-tab' => "Batafsil ko'rsatish",
+ 'wikieditor-previewDialog-loading' => 'Yuklash...',
+ 'wikieditor-publish-preference' => 'Qadamba-qadam nashr qilishni yoqish',
+ 'wikieditor-publish-button-publish' => 'Nashr qilish',
+ 'wikieditor-publish-button-cancel' => 'Bekor',
+ 'wikieditor-publish-dialog-title' => '{{SITENAME}} loyihasida nashr qilish',
+ 'wikieditor-publish-dialog-summary' => "O'zgarishlar tavsifi (qanday o'zgarishlar sodir bo'lganini qisqacha ko'rsating):",
+ 'wikieditor-publish-dialog-minor' => "Kichik o'zgarish",
+ 'wikieditor-publish-dialog-watch' => 'Bu sahifani kuzatish',
+ 'wikieditor-publish-dialog-publish' => 'Nashr qilish',
+ 'wikieditor-publish-dialog-goback' => 'Orqaga',
+ 'wikieditor-template-editor-preference' => 'Shakllar yodamida andozalarni tahrirlashni yoqish',
+ 'wikieditor-template-editor-dialog-title' => "Andozani o'zgartirish",
+ 'wikieditor-template-editor-dialog-submit' => 'Yangilash',
+ 'wikieditor-template-editor-dialog-cancel' => 'Bekor',
+ 'wikieditor-templates-preference' => "Andozalarni yig'ishni yoqish",
+ 'wikieditor-toc-preference' => "O'tish imkonini beruvchi mundarijani yoqish",
+ 'wikieditor-toc-show' => "Mundarijani ko'rsatish",
+ 'wikieditor-toc-hide' => 'Mundarijani yashirish',
+ 'wikieditor-toolbar' => 'Tahrirlash darchasi',
+ 'wikieditor-toolbar-desc' => "Foydalanishga qulayroq bo'lgan tahrirlash darchasi",
+ 'wikieditor-toolbar-preference' => 'Yaxshilangan tahrirlash darchasini yoqish',
+ 'wikieditor-toolbar-dialogs-preference' => "Havolalar, jadvallar va boshqa obyektlarni qo'yish uchun dialoglarni yoqish",
+ 'wikieditor-toolbar-hidesig' => 'Asosiy nomfazodagi sahifalarda imzo tugmasini yashirish',
+ 'wikieditor-toolbar-loading' => 'Yuklash...',
+ 'wikieditor-toolbar-tool-bold' => 'Qalin',
+ 'wikieditor-toolbar-tool-bold-example' => 'Qalin matn',
+ 'wikieditor-toolbar-tool-italic' => 'Yotiq',
+ 'wikieditor-toolbar-tool-italic-example' => 'Yotiq matn',
+ 'wikieditor-toolbar-tool-ilink' => 'Ichki havola',
+ 'wikieditor-toolbar-tool-ilink-example' => 'Havola sarlavhasi',
+ 'wikieditor-toolbar-tool-xlink' => 'Tashqi ishorat (http:// prefiksini unutmang)',
+ 'wikieditor-toolbar-tool-xlink-example' => 'http://www.example.com ishorat nomi',
+ 'wikieditor-toolbar-tool-link' => 'Havola',
+ 'wikieditor-toolbar-tool-link-title' => "Havola qo'yish",
+ 'wikieditor-toolbar-tool-link-int' => 'Viki-sahifaga',
+ 'wikieditor-toolbar-tool-link-int-target' => "Mo'ljal sahifa yoki URL:",
+ 'wikieditor-toolbar-tool-link-int-target-tooltip' => 'Sahifa nomi yoki URL',
+ 'wikieditor-toolbar-tool-link-int-text' => "Ko'rsatiladigan matn:",
+ 'wikieditor-toolbar-tool-link-int-text-tooltip' => "Ko'rsatiladigan matnni kiriting",
+ 'wikieditor-toolbar-tool-link-ext' => 'Tashqi veb-sahifaga',
+ 'wikieditor-toolbar-tool-link-ext-target' => 'URL havolalar:',
+ 'wikieditor-toolbar-tool-link-ext-text' => 'Havola matni:',
+ 'wikieditor-toolbar-tool-link-insert' => "Havola qo'yish",
+ 'wikieditor-toolbar-tool-link-cancel' => 'Bekor',
+ 'wikieditor-toolbar-tool-link-int-target-status-exists' => 'Sahifa mavjud',
+ 'wikieditor-toolbar-tool-link-int-target-status-notexists' => 'Sahifa mavjud emas',
+ 'wikieditor-toolbar-tool-link-int-target-status-invalid' => "Mumkin bo'lmagan nom",
+ 'wikieditor-toolbar-tool-link-int-target-status-external' => 'Tashqi havola',
+ 'wikieditor-toolbar-tool-link-int-target-status-loading' => 'Sahifa mavjudligiga tekshirish',
+ 'wikieditor-toolbar-tool-link-int-invalid' => "Ko'rsatilgan nom mumkin emas.",
+ 'wikieditor-toolbar-tool-link-lookslikeinternal' => "Siz tomondan ko'rsatilgan URL boshqa viki-sahifaga havolaga o'xshash. Siz mazkur havolani ichki qilishni xohlaysizmi?",
+ 'wikieditor-toolbar-tool-link-lookslikeinternal-int' => 'Ichki havola',
+ 'wikieditor-toolbar-tool-link-lookslikeinternal-ext' => 'Tashqi havola',
+ 'wikieditor-toolbar-tool-link-empty' => "Nimaga ishorat qilishni ko'rsatmadingiz",
+ 'wikieditor-toolbar-tool-file' => "O'rnatilgan fayl",
+ 'wikieditor-toolbar-tool-file-example' => 'Example.jpg',
+ 'wikieditor-toolbar-tool-file-title' => "Fayl qo'yish",
+ 'wikieditor-toolbar-file-target' => 'Fayl nomi:',
+ 'wikieditor-toolbar-file-caption' => 'Yozuv:',
+ 'wikieditor-toolbar-file-size' => 'Oʻlchami',
+ 'wikieditor-toolbar-file-float' => 'Tekislash:',
+ 'wikieditor-toolbar-file-default' => "(boshlang'ich)",
+ 'wikieditor-toolbar-file-format' => 'Formati:',
+ 'wikieditor-toolbar-file-format-none' => "yo'q",
+ 'wikieditor-toolbar-tool-file-insert' => "Qo'yish",
+ 'wikieditor-toolbar-tool-file-cancel' => 'Bekor',
+ 'wikieditor-toolbar-tool-reference' => 'Havola',
+ 'wikieditor-toolbar-tool-reference-example' => "Havola matnini bu yerga qo'ying",
+ 'wikieditor-toolbar-tool-reference-cancel' => 'Bekor',
+ 'wikieditor-toolbar-tool-reference-title' => "Havola qo'yish",
+ 'wikieditor-toolbar-tool-reference-insert' => "Qo'yish",
+ 'wikieditor-toolbar-tool-reference-text' => 'Havola matni',
+ 'wikieditor-toolbar-tool-signature' => 'Imzo va vaqt',
+ 'wikieditor-toolbar-section-advanced' => "Qo'shimcha",
+ 'wikieditor-toolbar-tool-heading' => 'Sarlavha',
+ 'wikieditor-toolbar-tool-heading-1' => 'Daraja 1',
+ 'wikieditor-toolbar-tool-heading-2' => 'Daraja 2',
+ 'wikieditor-toolbar-tool-heading-3' => 'Daraja 3',
+ 'wikieditor-toolbar-tool-heading-4' => 'Daraja 4',
+ 'wikieditor-toolbar-tool-heading-5' => 'Daraja 5',
+ 'wikieditor-toolbar-tool-heading-example' => 'Sarlavha matni',
+ 'wikieditor-toolbar-group-format' => 'Formati',
+ 'wikieditor-toolbar-tool-ulist' => "Belgili ro'yxat",
+ 'wikieditor-toolbar-tool-ulist-example' => "Belgili ro'yxat qismi",
+ 'wikieditor-toolbar-tool-olist' => "Raqamlangan ro'yxat",
+ 'wikieditor-toolbar-tool-olist-example' => "Raqamlangan ro'yxat qismi",
+ 'wikieditor-toolbar-tool-indent' => 'Xat boshi',
+ 'wikieditor-toolbar-tool-indent-example' => 'Satr xat boshi bilan',
+ 'wikieditor-toolbar-tool-nowiki' => "Viki-formatlashga e'tibor qilmaslik",
+ 'wikieditor-toolbar-tool-nowiki-example' => "Bu yerga formatlash zarur bo'lmagan matnni qo'ying",
+ 'wikieditor-toolbar-tool-redirect' => "Qaytayo'naltirish",
+ 'wikieditor-toolbar-tool-redirect-example' => "Mo'ljal sahifa nomi",
+ 'wikieditor-toolbar-tool-big' => 'Yirik',
+ 'wikieditor-toolbar-tool-big-example' => 'Yirik matn',
+ 'wikieditor-toolbar-tool-small' => 'Kichik',
+ 'wikieditor-toolbar-tool-small-example' => 'Kichik matn',
+ 'wikieditor-toolbar-tool-superscript' => 'Satrusti',
+ 'wikieditor-toolbar-tool-superscript-example' => 'Satrusti matn',
+ 'wikieditor-toolbar-tool-subscript' => 'Satrosti',
+ 'wikieditor-toolbar-tool-subscript-example' => 'Satrosti matn',
+ 'wikieditor-toolbar-group-insert' => "Qo'yish",
+ 'wikieditor-toolbar-tool-gallery' => 'Rasmlar galereyasi',
+ 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Izoh1
+$1:Example.jpg|Izoh2',
+ 'wikieditor-toolbar-tool-newline' => 'Yangi qator',
+ 'wikieditor-toolbar-tool-table' => 'Jadval',
+ 'wikieditor-toolbar-tool-table-example-old' => '-
+! sarlavha 1
+! sarlavha 2
+! sarlavha 3
+|-
+| qator 1, katak 1
+| qator 1, katak 2
+| qator 1, katak 3
+|-
+| qator 2, katak 1
+| qator 2, katak 2
+| qator 2, katak 3',
+ 'wikieditor-toolbar-tool-table-example-cell-text' => 'Katak matni',
+ 'wikieditor-toolbar-tool-table-example-header' => 'Sarlavha matni',
+ 'wikieditor-toolbar-tool-table-title' => "Jadval qo'yish",
+ 'wikieditor-toolbar-tool-table-dimensions-rows' => 'Qatorlar',
+ 'wikieditor-toolbar-tool-table-dimensions-columns' => 'Ustunlar',
+ 'wikieditor-toolbar-tool-table-dimensions-header' => "Sarlavha qatori qo'shish",
+ 'wikieditor-toolbar-tool-table-wikitable' => 'Chegaralar bilan bezash',
+ 'wikieditor-toolbar-tool-table-sortable' => 'Jadvalni saralanadigan qilish',
+ 'wikieditor-toolbar-tool-table-example' => 'Misol',
+ 'wikieditor-toolbar-tool-table-preview' => "Batafsil ko'rinishi",
+ 'wikieditor-toolbar-tool-table-insert' => "Qo'yish",
+ 'wikieditor-toolbar-tool-table-cancel' => 'Bekor',
+ 'wikieditor-toolbar-tool-table-toomany' => "Ushbu dialog $1 ta katakdan katta hajmdagi jadvalni qo'yish imkonini bermaydi.",
+ 'wikieditor-toolbar-tool-table-invalidnumber' => "To'g'ri qator yoki ustun miqdorini ko'rsatmadingiz.",
+ 'wikieditor-toolbar-tool-table-zero' => "Siz nol miqdordagi qatorli yoki ustunli jadval qo'ya olmaysiz.",
+ 'wikieditor-toolbar-tool-replace' => 'Qidiruv va almashtirish',
+ 'wikieditor-toolbar-tool-replace-title' => 'Qidiruv va almashtirish',
+ 'wikieditor-toolbar-tool-replace-search' => 'Qidirish:',
+ 'wikieditor-toolbar-tool-replace-replace' => 'Quyidagiga almashtirish:',
+ 'wikieditor-toolbar-tool-replace-case' => 'Registrni hisobga olish',
+ 'wikieditor-toolbar-tool-replace-regex' => 'Qidiruv satrini regulyar ifoda sifatida qarash',
+ 'wikieditor-toolbar-tool-replace-button-findnext' => 'Keyingisini qidirish',
+ 'wikieditor-toolbar-tool-replace-button-replace' => 'Almashtirish',
+ 'wikieditor-toolbar-tool-replace-button-replaceall' => 'Hammasini almashtirish',
+ 'wikieditor-toolbar-tool-replace-close' => 'Yopish',
+ 'wikieditor-toolbar-tool-replace-nomatch' => "Sizning so'rovingiz bo'yicha hech nima topilmadi.",
+ 'wikieditor-toolbar-tool-replace-success' => '$1 ta almashtirish amalga oshirildi.',
+ 'wikieditor-toolbar-tool-replace-emptysearch' => "Nimani qidirishni ko'rsatmadingiz.",
+ 'wikieditor-toolbar-tool-replace-invalidregex' => 'Siz tomondan kiritilgan regulyar ifoda xato: $1',
+ 'wikieditor-toolbar-section-characters' => 'Maxsus belgilar',
+ 'wikieditor-toolbar-characters-page-latin' => 'Lotin',
+ 'wikieditor-toolbar-characters-page-latinextended' => 'Lotin kengaytirilgan',
+ 'wikieditor-toolbar-characters-page-ipa' => 'XFA (MFA)',
+ 'wikieditor-toolbar-characters-page-symbols' => 'Belgilar',
+ 'wikieditor-toolbar-characters-page-greek' => 'Yunon',
+ 'wikieditor-toolbar-characters-page-cyrillic' => 'Kirill',
+ 'wikieditor-toolbar-characters-page-arabic' => 'Arab',
+ 'wikieditor-toolbar-characters-page-arabicextended' => 'Arab kengaytirilgan',
+ 'wikieditor-toolbar-characters-page-persian' => 'Forsiy',
+ 'wikieditor-toolbar-characters-page-hebrew' => 'Yahudiy',
+ 'wikieditor-toolbar-characters-page-bangla' => 'Bengal',
+ 'wikieditor-toolbar-characters-page-tamil' => 'Tamil',
+ 'wikieditor-toolbar-characters-page-telugu' => 'Telugu',
+ 'wikieditor-toolbar-characters-page-sinhala' => 'Singal',
+ 'wikieditor-toolbar-characters-page-gujarati' => 'Gujarati',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'Devanagari',
+ 'wikieditor-toolbar-characters-page-thai' => 'Tay',
+ 'wikieditor-toolbar-characters-page-lao' => 'Laos',
+ 'wikieditor-toolbar-characters-page-khmer' => 'Kxmer',
+ 'wikieditor-toolbar-section-help' => 'Yordam',
+ 'wikieditor-toolbar-help-heading-description' => 'Taʻrif',
+ 'wikieditor-toolbar-help-heading-syntax' => 'Nima kirityapsiz',
+ 'wikieditor-toolbar-help-heading-result' => 'Nima olyapsiz',
+ 'wikieditor-toolbar-help-page-format' => 'Formatlash',
+ 'wikieditor-toolbar-help-page-link' => 'Havolalar',
+ 'wikieditor-toolbar-help-page-heading' => 'Sarlavhalar',
+ 'wikieditor-toolbar-help-page-list' => "Ro'yxatlar",
+ 'wikieditor-toolbar-help-page-file' => 'Fayllar',
+ 'wikieditor-toolbar-help-page-reference' => 'Izohlar',
+ 'wikieditor-toolbar-help-page-discussion' => 'Munozara',
+ 'wikieditor-toolbar-help-content-italic-description' => 'Yotiq',
+ 'wikieditor-toolbar-help-content-italic-syntax' => "''Yotiq matn''",
+ 'wikieditor-toolbar-help-content-italic-result' => '<em>Yotiq matn</em>',
+ 'wikieditor-toolbar-help-content-bold-description' => 'Qalin',
+ 'wikieditor-toolbar-help-content-bold-syntax' => "'''Qalin matn'''",
+ 'wikieditor-toolbar-help-content-bold-result' => '<strong>Qalin matn</strong>',
+ 'wikieditor-toolbar-help-content-bolditalic-description' => 'Qalin yotiq',
+ 'wikieditor-toolbar-help-content-bolditalic-syntax' => "'''''Qalin yotiq'''''",
+ 'wikieditor-toolbar-help-content-bolditalic-result' => '<em><strong>Qalin yotiq</strong></em>',
+ 'wikieditor-toolbar-help-content-ilink-description' => 'Ichki havola',
+ 'wikieditor-toolbar-help-content-ilink-syntax' => '[[Sahifa sarlavhasi|Havola matni]]<br />[[Sahifa sarlavhasi]]',
+ 'wikieditor-toolbar-help-content-ilink-result' => "<a href='#'>Havola matni</a><br /><a href='#'>Sahifa sarlavhasi</a>",
+ 'wikieditor-toolbar-help-content-xlink-description' => 'Tashqi havola',
+ 'wikieditor-toolbar-help-content-xlink-syntax' => '[http://www.example.org Havola matni]<br />[http://www.example.org]<br />http://www.example.org',
+ 'wikieditor-toolbar-help-content-xlink-result' => "<a href='#' class='external'>Havola matni</a><br /><a href='#' class='external autonumber'>[1]</a><br /><a href='#' class='external'>http://www.example.org</a>",
+ 'wikieditor-toolbar-help-content-heading2-description' => '2-darajadagi sarlavha',
+ 'wikieditor-toolbar-help-content-heading2-syntax' => '== Sarlavha matni ==',
+ 'wikieditor-toolbar-help-content-heading2-result' => '<h2>Sarlavha matni</h2>',
+ 'wikieditor-toolbar-help-content-heading3-description' => '3-darajadagi sarlavha',
+ 'wikieditor-toolbar-help-content-heading3-syntax' => '=== Sarlavha matni ===',
+ 'wikieditor-toolbar-help-content-heading3-result' => '<h3>Sarlavha matni</h3>',
+ 'wikieditor-toolbar-help-content-heading4-description' => '4-darajadagi sarlavha',
+ 'wikieditor-toolbar-help-content-heading4-syntax' => '==== Sarlavha matni ====',
+ 'wikieditor-toolbar-help-content-heading4-result' => '<h4>Sarlavha matni</h4>',
+ 'wikieditor-toolbar-help-content-heading5-description' => '5-darajadagi sarlavha',
+ 'wikieditor-toolbar-help-content-heading5-syntax' => '===== Sarlavha matni =====',
+ 'wikieditor-toolbar-help-content-heading5-result' => '<h5>Sarlavha matni</h5>',
+ 'wikieditor-toolbar-help-content-ulist-description' => "Belgili ro'yxat",
+ 'wikieditor-toolbar-help-content-ulist-syntax' => "* Ro'yxat qismi<br />* Ro'yxat qismi",
+ 'wikieditor-toolbar-help-content-ulist-result' => "<ul><li>Ro'yxat qismi</li><li>Ro'yxat qismi</li></ul>",
+ 'wikieditor-toolbar-help-content-olist-description' => "Raqamlangan ro'yxat",
+ 'wikieditor-toolbar-help-content-olist-syntax' => "# Ro'yxat qismi<br /># Ro'yxat qismi",
+ 'wikieditor-toolbar-help-content-olist-result' => "<ol><li>Ro'yxat qismi</li><li>Ro'yxat qismi</li></ol>",
+ 'wikieditor-toolbar-help-content-file-description' => "O'rnatilgan fayl",
+ 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Izohlovchi matn]]',
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='
+Izohlovchi matn' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Kattalashtirish' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>
+Izohlovchi matn</div></div>",
+ 'wikieditor-toolbar-help-content-reference-description' => 'Izoh',
+ 'wikieditor-toolbar-help-content-reference-syntax' => 'Sahifa matni.&lt;ref name="test"&gt;[http://www.example.org Havola matni], qo\'shimcha matn.&lt;/ref&gt;',
+ 'wikieditor-toolbar-help-content-reference-result' => "Sahifa matni.<sup><a href='#'>[1]</a></sup>",
+ 'wikieditor-toolbar-help-content-rereference-description' => "O'sha havoladan qo'shimcha foydalanish",
+ 'wikieditor-toolbar-help-content-rereference-result' => "Sahifa matni.<sup><a href='#'>[1]</a></sup>",
+ 'wikieditor-toolbar-help-content-showreferences-description' => "Izohlarni ko'rsatish",
+ 'wikieditor-toolbar-help-content-showreferences-result' => "<ol class='references'><li id='cite_note-test-0'><b><a title='' href='#'>^</a></b> <a rel='nofollow' title='http://www.example.org' class='external text' href='#'>Havola matni</a>, qo'shimcha matn.</li></ol>",
+ 'wikieditor-toolbar-help-content-signaturetimestamp-description' => 'Imzo vaqt bilan birga',
+ 'wikieditor-toolbar-help-content-signaturetimestamp-result' => "<a href='#' title='{{#special:mypage}}'>Ishtirokchi ismi</a> (<a href='#' title='{{#special:mytalk}}'>munozara</a>) 15:54, 10 iyun 2009 (UTC)",
+ 'wikieditor-toolbar-help-content-signature-description' => 'Imzo',
+ 'wikieditor-toolbar-help-content-signature-result' => "<a href='#' title='{{#special:mypage}}'>Ishtirokchi ismi</a> (<a href='#' title='{{#special:mytalk}}'>munozara</a>)",
+ 'wikieditor-toolbar-help-content-indent-description' => 'Xat boshi',
+ 'wikieditor-toolbar-help-content-indent-syntax' => 'Odatiy matn<br />:Matn xat boshi bilan<br />::Matn xat boshi bilan',
+ 'wikieditor-toolbar-help-content-indent-result' => 'Odatiy matn<dl><dd>Matn xat boshi bilan<dl><dd>Matn xat boshi bilan</dd></dl></dd></dl>',
+);
+
+/** vèneto (vèneto)
* @author Candalua
* @author Vajotwo
*/
@@ -26898,7 +28654,7 @@ $1:Esenpio.jpg|Didascalia2',
'wikieditor-toolbar-help-content-olist-result' => "<ol><li>Elemento de l'elenco</li><li>Elemento de l'elenco</li></ol>",
'wikieditor-toolbar-help-content-file-description' => 'File incorporado',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Testo de la didascalia]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Testo de la didascalia</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Testo de la didascalia</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Nota',
'wikieditor-toolbar-help-content-reference-syntax' => 'Testo de la pagina.&lt;ref name="test"&gt;[http://www.esenpio.org Testo del colegamento], altro testo in più.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Testo de la pagina.<sup><a href='#'>[1]</a></sup>",
@@ -26915,7 +28671,7 @@ $1:Esenpio.jpg|Didascalia2',
'wikieditor-toolbar-help-content-indent-result' => 'Testo normal<dl><dd>Testo rientrà<dl><dd>Testo rientrà</dd></dl></dd></dl>',
);
-/** Veps (Vepsän kel’)
+/** Veps (vepsän kel’)
* @author Игорь Бродский
*/
$messages['vep'] = array(
@@ -27004,6 +28760,7 @@ $messages['vep'] = array(
/** Vietnamese (Tiếng Việt)
* @author Minh Nguyen
* @author Vinhtantran
+ * @author පසිඳු කාවින්ද
*/
$messages['vi'] = array(
'wikieditor' => 'Giao diện sửa đổi văn bản wiki nâng cao',
@@ -27072,6 +28829,16 @@ $messages['vi'] = array(
'wikieditor-toolbar-tool-link-empty' => 'Bạn chưa nhập nơi nào để cho liên kết dẫn tới.',
'wikieditor-toolbar-tool-file' => 'Chèn tập tin',
'wikieditor-toolbar-tool-file-example' => 'Ví dụ.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'Chèn tập tin',
+ 'wikieditor-toolbar-file-target' => 'Tên tập tin:',
+ 'wikieditor-toolbar-file-caption' => 'Chú thích:',
+ 'wikieditor-toolbar-file-size' => 'Kích cỡ:',
+ 'wikieditor-toolbar-file-float' => 'Căn:',
+ 'wikieditor-toolbar-file-default' => '(mặc định)',
+ 'wikieditor-toolbar-file-format' => 'Định dạng:',
+ 'wikieditor-toolbar-file-format-none' => 'không',
+ 'wikieditor-toolbar-tool-file-insert' => 'Chèn',
+ 'wikieditor-toolbar-tool-file-cancel' => 'Hủy bỏ',
'wikieditor-toolbar-tool-reference' => 'Chú thích tham khảo',
'wikieditor-toolbar-tool-reference-example' => 'Ghi chú tại đây',
'wikieditor-toolbar-tool-reference-cancel' => 'Hủy bỏ',
@@ -27219,7 +28986,7 @@ $1:Ví dụ.jpg|Chú thích 2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Mục danh sách</li><li>Mục danh sách</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Chèn tập tin',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Ví dụ.png|thumb|Văn bản chú thích]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Văn bản chú thích' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Phóng lớn' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Văn bản chú thích</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Văn bản chú thích' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Phóng lớn' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Văn bản chú thích</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Tham khảo',
'wikieditor-toolbar-help-content-reference-syntax' => 'Nội dung trang&lt;ref name="thử"&gt;[http://www.example.org Văn bản liên kết], văn bản bổ sung.&lt;/ref&gt;.',
'wikieditor-toolbar-help-content-reference-result' => "Nội dung trang<sup><a href='#'>[1]</a></sup>.",
@@ -27385,6 +29152,7 @@ $messages['xmf'] = array(
/** Yiddish (ייִדיש)
* @author פוילישער
+ * @author පසිඳු කාවින්ද
*/
$messages['yi'] = array(
'wikieditor' => 'פֿארטגעשריטענע וויקיטעקסט רעדאַקטירונג',
@@ -27395,11 +29163,13 @@ $messages['yi'] = array(
'wikieditor-preview-tab' => 'פֿאראויסשטעלונג',
'wikieditor-preview-changes-tab' => 'ענדערונגען',
'wikieditor-preview-loading' => 'לאָדט…',
+ 'wikieditor-previewDialog-preference' => 'אקטיווירן פאראויסקוק דיאלאג',
'wikieditor-previewDialog-tab' => 'פֿאראויסשטעלונג',
'wikieditor-previewDialog-loading' => 'לאָדט…',
'wikieditor-publish-button-publish' => 'פֿאַרעפֿנטלעכן',
'wikieditor-publish-button-cancel' => 'אַנולירן',
'wikieditor-publish-dialog-title' => 'פארעפנטלעכן אויף {{SITENAME}}',
+ 'wikieditor-publish-dialog-summary' => 'רעדאקטירן רעזומע (קורצע באשרייבונג פון אייערע ענדערונגען):',
'wikieditor-publish-dialog-minor' => 'מינערדיקער רעדאַקטירונג',
'wikieditor-publish-dialog-watch' => 'אויפֿפאַסן אויף דעם בלאַט',
'wikieditor-publish-dialog-publish' => 'פֿאַרעפֿנטלעכן',
@@ -27407,6 +29177,7 @@ $messages['yi'] = array(
'wikieditor-template-editor-dialog-title' => 'רעדאַקטירן מוסטער',
'wikieditor-template-editor-dialog-submit' => 'דערהײַנטיקן',
'wikieditor-template-editor-dialog-cancel' => 'אַנולירן',
+ 'wikieditor-templates-preference' => 'דערמעגלעכן איינפאלן פון מוסטערן',
'wikieditor-toc-show' => 'ווײַזן אינהאַלט',
'wikieditor-toc-hide' => 'באַהאַלטן אינהאַלט',
'wikieditor-toolbar' => 'רעדאקטירונג געצייג־פאס',
@@ -27447,6 +29218,16 @@ $messages['yi'] = array(
'wikieditor-toolbar-tool-link-empty' => 'איר האט גאָרנישט ארײַנגעגעבן צום פֿאַרבינדן.',
'wikieditor-toolbar-tool-file' => 'אײַנגעבעטעטע טעקע',
'wikieditor-toolbar-tool-file-example' => 'בײַשפיל.jpg',
+ 'wikieditor-toolbar-tool-file-title' => 'צולייגן טעקע',
+ 'wikieditor-toolbar-file-target' => 'טעקע נאָמען:',
+ 'wikieditor-toolbar-file-caption' => 'באַשרײַבונג',
+ 'wikieditor-toolbar-file-size' => 'גרייס:',
+ 'wikieditor-toolbar-file-float' => 'אויסגלײַכונג:',
+ 'wikieditor-toolbar-file-default' => '(גרונטלעך)',
+ 'wikieditor-toolbar-file-format' => 'פֿאָרמאַט:',
+ 'wikieditor-toolbar-file-format-none' => 'קיין',
+ 'wikieditor-toolbar-tool-file-insert' => 'צולייגן',
+ 'wikieditor-toolbar-tool-file-cancel' => 'אנולירן',
'wikieditor-toolbar-tool-reference' => 'רעפערענץ',
'wikieditor-toolbar-tool-reference-example' => 'אַרײַנשטעלן פֿיסל טעקסט דא',
'wikieditor-toolbar-tool-reference-cancel' => 'אַנולירן',
@@ -27536,12 +29317,15 @@ $1:בײַשפיל.jpg|קעפל2',
'wikieditor-toolbar-characters-page-greek' => 'גריכיש',
'wikieditor-toolbar-characters-page-cyrillic' => 'ציריליש',
'wikieditor-toolbar-characters-page-arabic' => 'אראביש',
+ 'wikieditor-toolbar-characters-page-arabicextended' => 'פארברייטערטע אראביש',
'wikieditor-toolbar-characters-page-persian' => 'פּערסיש',
'wikieditor-toolbar-characters-page-hebrew' => 'העברעיש',
'wikieditor-toolbar-characters-page-bangla' => 'בענגאַליש',
+ 'wikieditor-toolbar-characters-page-tamil' => 'טאַמיליש',
'wikieditor-toolbar-characters-page-telugu' => 'טעלוגו',
'wikieditor-toolbar-characters-page-sinhala' => 'סינהאַלאַ',
'wikieditor-toolbar-characters-page-gujarati' => 'גודזשאַראַטי',
+ 'wikieditor-toolbar-characters-page-devanagari' => 'דעוואַנאַגאַרי',
'wikieditor-toolbar-characters-page-thai' => 'טהאי',
'wikieditor-toolbar-characters-page-lao' => 'לאַאטיש',
'wikieditor-toolbar-characters-page-khmer' => 'כמער',
@@ -27591,10 +29375,11 @@ $1:בײַשפיל.jpg|קעפל2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>ליסטע איינצל</li><li>ליסטע איינצל</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'אײַנגעבעטעטע טעקע',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|באשרייבונג]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='קעפל טעקסט' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='פארגרעסערן' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>באַשרײַבונג</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='קעפל טעקסט' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='פארגרעסערן' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>באַשרײַבונג</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'רעפערענץ',
'wikieditor-toolbar-help-content-reference-syntax' => 'בלאַט טעקסט.&lt;ref name="test"&gt;[http://www.example.org לינק טעקסט], צוגעגעבענער טעקסט.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "בלאַט טעקסט. <a href='#'><sup>[1]</sup></a>",
+ 'wikieditor-toolbar-help-content-rereference-description' => 'נאך א ניץ פונעם זעלבן רעפערענץ',
'wikieditor-toolbar-help-content-rereference-result' => "בלאַט טעקסט. <a href='#'><sup>[1]</sup></a>",
'wikieditor-toolbar-help-content-showreferences-description' => 'ווייַזן רעפֿערענצן',
'wikieditor-toolbar-help-content-showreferences-result' => "<ol class='references'><li id='cite_note-test-0'><b><a title='' href='#'>^</a></b> <a rel='nofollow' title='http://www.example.org' class='external text' href='#'>לינק טעקסט</a>, נאך טעקסט.</li></ol>",
@@ -27817,7 +29602,7 @@ $1:Example.jpg|Àkọlé2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Ohun àkójọ</li><li>Ohun àkójọ</li></ol>',
'wikieditor-toolbar-help-content-file-description' => 'Fáìlì alákòósínú',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Àkọlé]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Ìkọ àkọlé' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Ìkọ àkọlé</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Ìkọ àkọlé' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Ìkọ àkọlé</div></div>",
'wikieditor-toolbar-help-content-reference-description' => 'Ìtọ́kasí',
'wikieditor-toolbar-help-content-reference-syntax' => 'Íkọ ojúewé.&lt;ref name="test"&gt;[http://www.example.org Ìkọ ìjápọ̀], ìkọ mìràn.&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "Ìkọ ojúewé.<sup><a href='#'>[1]</a></sup>",
@@ -28063,7 +29848,7 @@ Bangla',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>一覽項目</li><li>一覽項目</li></ol>',
'wikieditor-toolbar-help-content-file-description' => '結合檔',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|標題字]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='標題字' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='放大' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>標題字</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='標題字' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='放大' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>標題字</div></div>",
'wikieditor-toolbar-help-content-reference-description' => '參考',
'wikieditor-toolbar-help-content-reference-syntax' => '頁字。&lt;ref name="test"&gt;[http://www.example.org 連字],附加字。&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "頁字。<sup><a href='#'>[1]</a></sup>",
@@ -28080,7 +29865,7 @@ Bangla',
'wikieditor-toolbar-help-content-indent-result' => '標準字<dl><dd>縮排字<dl><dd>縮排字</dd></dl></dd></dl>',
);
-/** Simplified Chinese (‪中文(简体)‬)
+/** Simplified Chinese (中文(简体)‎)
* @author Anakmalaysia
* @author Bencmq
* @author Fantasticfears
@@ -28089,7 +29874,9 @@ Bangla',
* @author Liangent
* @author Onecountry
* @author PhiLiP
+ * @author Shirayuki
* @author Shizhao
+ * @author Simon Shek
* @author Xiaomingyan
*/
$messages['zh-hans'] = array(
@@ -28159,6 +29946,15 @@ $messages['zh-hans'] = array(
'wikieditor-toolbar-tool-link-empty' => '您没有输入链接内容。',
'wikieditor-toolbar-tool-file' => '嵌入文件',
'wikieditor-toolbar-tool-file-example' => '范例.jpg(在这里输入文件名)',
+ 'wikieditor-toolbar-tool-file-title' => '插入文件',
+ 'wikieditor-toolbar-file-target' => '文件名:',
+ 'wikieditor-toolbar-file-caption' => '标题:',
+ 'wikieditor-toolbar-file-size' => '大小:',
+ 'wikieditor-toolbar-file-float' => '对齐:',
+ 'wikieditor-toolbar-file-default' => '(默认)',
+ 'wikieditor-toolbar-file-format' => '格式:',
+ 'wikieditor-toolbar-tool-file-insert' => '插入',
+ 'wikieditor-toolbar-tool-file-cancel' => '取消',
'wikieditor-toolbar-tool-reference' => '参考',
'wikieditor-toolbar-tool-reference-example' => '在此处插入注释文字',
'wikieditor-toolbar-tool-reference-cancel' => '取消',
@@ -28252,9 +30048,11 @@ $1:Example.jpg|标题2',
'wikieditor-toolbar-characters-page-persian' => '波斯语',
'wikieditor-toolbar-characters-page-hebrew' => '希伯来字母',
'wikieditor-toolbar-characters-page-bangla' => '孟加拉',
+ 'wikieditor-toolbar-characters-page-tamil' => '泰米尔',
'wikieditor-toolbar-characters-page-telugu' => '泰卢固字母',
'wikieditor-toolbar-characters-page-sinhala' => '僧伽罗字母',
'wikieditor-toolbar-characters-page-gujarati' => '古吉拉特字母',
+ 'wikieditor-toolbar-characters-page-devanagari' => '梵文',
'wikieditor-toolbar-characters-page-thai' => '泰语',
'wikieditor-toolbar-characters-page-lao' => '老挝语',
'wikieditor-toolbar-characters-page-khmer' => '高棉语',
@@ -28304,7 +30102,7 @@ $1:Example.jpg|标题2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>列表项</li><li>列表项</li></ol>',
'wikieditor-toolbar-help-content-file-description' => '嵌入文件',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|标题文本]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='标题文本' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='放大' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>标题文本</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='标题文本' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='放大' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>标题文本</div></div>",
'wikieditor-toolbar-help-content-reference-description' => '参考',
'wikieditor-toolbar-help-content-reference-syntax' => '页面文本。&lt;ref name="测试"&gt;[http://www.example.org 链接文本],附加文本。&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "页面文本。<sup><a href='#'>[1]</a></sup>",
@@ -28322,7 +30120,7 @@ $1:Example.jpg|标题2',
'wikieditor-toolbar-help-content-indent-result' => '标准文本<dl><dd>缩进文本<dl><dd>缩进文本</dd></dl></dd></dl>',
);
-/** Traditional Chinese (‪中文(繁體)‬)
+/** Traditional Chinese (中文(繁體)‎)
* @author Anakmalaysia
* @author Frankou
* @author Gaoxuewei
@@ -28332,6 +30130,7 @@ $1:Example.jpg|标题2',
* @author Mark85296341
* @author Oapbtommy
* @author PhiLiP
+ * @author Simon Shek
* @author Waihorace
* @author Wong128hk
* @author Wrightbus
@@ -28403,6 +30202,15 @@ $messages['zh-hant'] = array(
'wikieditor-toolbar-tool-link-empty' => '閣下並未輸入連結。',
'wikieditor-toolbar-tool-file' => '結合標題',
'wikieditor-toolbar-tool-file-example' => 'Example.jpg',
+ 'wikieditor-toolbar-tool-file-title' => '插入檔案',
+ 'wikieditor-toolbar-file-target' => '檔案名稱:',
+ 'wikieditor-toolbar-file-caption' => '說明:',
+ 'wikieditor-toolbar-file-size' => '大小:',
+ 'wikieditor-toolbar-file-float' => '對齊:',
+ 'wikieditor-toolbar-file-default' => '(預設)',
+ 'wikieditor-toolbar-file-format' => '格式:',
+ 'wikieditor-toolbar-tool-file-insert' => '插入',
+ 'wikieditor-toolbar-tool-file-cancel' => '取消',
'wikieditor-toolbar-tool-reference' => '參考',
'wikieditor-toolbar-tool-reference-example' => '插入腳註文字於此',
'wikieditor-toolbar-tool-reference-cancel' => '取消',
@@ -28518,9 +30326,11 @@ $1:Example.jpg|標題2',
'wikieditor-toolbar-characters-page-persian' => '波斯語',
'wikieditor-toolbar-characters-page-hebrew' => '希伯來字母',
'wikieditor-toolbar-characters-page-bangla' => '孟加拉',
+ 'wikieditor-toolbar-characters-page-tamil' => '泰米爾人',
'wikieditor-toolbar-characters-page-telugu' => '泰盧固語',
'wikieditor-toolbar-characters-page-sinhala' => '僧伽羅文',
'wikieditor-toolbar-characters-page-gujarati' => '古吉拉特語',
+ 'wikieditor-toolbar-characters-page-devanagari' => '梵文',
'wikieditor-toolbar-characters-page-thai' => '泰語',
'wikieditor-toolbar-characters-page-lao' => '寮語',
'wikieditor-toolbar-characters-page-khmer' => '高棉語',
@@ -28570,7 +30380,7 @@ $1:Example.jpg|標題2',
'wikieditor-toolbar-help-content-olist-result' => '<ol><li>列表項目</li><li>列表項目</li></ol>',
'wikieditor-toolbar-help-content-file-description' => '結合檔',
'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|標題文字]]',
- 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='標題文字' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='放大' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>標題文字</div></div>",
+ 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='標題文字' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='放大' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>標題文字</div></div>",
'wikieditor-toolbar-help-content-reference-description' => '參考',
'wikieditor-toolbar-help-content-reference-syntax' => '頁面文字。&lt;ref name="測試"&gt;[http://www.example.org 連結文字],附加文字。&lt;/ref&gt;',
'wikieditor-toolbar-help-content-reference-result' => "頁面文字。<sup><a href='#'>[1]</a></sup>",
diff --git a/extensions/WikiEditor/WikiEditor.php b/extensions/WikiEditor/WikiEditor.php
index b3579ea5..de1d1695 100644
--- a/extensions/WikiEditor/WikiEditor.php
+++ b/extensions/WikiEditor/WikiEditor.php
@@ -124,6 +124,19 @@ $wgResourceModules += array(
'jquery.wikiEditor.dialogs',
'jquery.wikiEditor.toolbar.i18n',
'jquery.suggestions',
+ 'mediawiki.Title',
+ ),
+ 'messages' => array(
+ 'wikieditor-toolbar-tool-file-title',
+ 'wikieditor-toolbar-file-target',
+ 'wikieditor-toolbar-file-caption',
+ 'wikieditor-toolbar-file-size',
+ 'wikieditor-toolbar-file-float',
+ 'wikieditor-toolbar-file-default',
+ 'wikieditor-toolbar-file-format-none',
+ 'wikieditor-toolbar-file-format',
+ 'wikieditor-toolbar-tool-file-insert',
+ 'wikieditor-toolbar-tool-file-cancel',
),
),
'jquery.wikiEditor.highlight' => $wikiEditorTpl + array(
diff --git a/extensions/WikiEditor/modules/ext.wikiEditor.css b/extensions/WikiEditor/modules/ext.wikiEditor.css
index 53e320d5..f0665730 100644
--- a/extensions/WikiEditor/modules/ext.wikiEditor.css
+++ b/extensions/WikiEditor/modules/ext.wikiEditor.css
@@ -1,4 +1,4 @@
-/*
+/**
* CSS for WikiEditor
*/
@@ -7,10 +7,13 @@ form#editform {
margin: 0;
padding: 0;
}
+
/* These IDs (#wpSummaryLabel and #wpSummary) could change in MediaWiki */
-#wpSummary, #wpSummaryLabel {
+#wpSummary,
+#wpSummaryLabel {
margin-bottom: 1em;
}
+
/* This ID (#wpTextbox1) could change in MediaWiki */
.wikiEditor-ui textarea#wpTextbox1 {
border: none;
@@ -19,6 +22,7 @@ form#editform {
line-height: 1.5em;
resize: vertical;
}
+
.wikiEditor-ui .wikiEditor-ui-text > textarea#wpTextbox1 {
margin: 0;
}
diff --git a/extensions/WikiEditor/modules/ext.wikiEditor.dialogs.js b/extensions/WikiEditor/modules/ext.wikiEditor.dialogs.js
index 45a19593..0e0dd090 100644
--- a/extensions/WikiEditor/modules/ext.wikiEditor.dialogs.js
+++ b/extensions/WikiEditor/modules/ext.wikiEditor.dialogs.js
@@ -12,4 +12,4 @@ $( document ).ready( function() {
// Add dialogs module
$( '#wpTextbox1' ).wikiEditor( 'addModule', $.wikiEditor.modules.dialogs.config.getDefaultConfig() );
-} ); \ No newline at end of file
+} );
diff --git a/extensions/WikiEditor/modules/ext.wikiEditor.templateEditor.js b/extensions/WikiEditor/modules/ext.wikiEditor.templateEditor.js
index 650910d2..8879d10d 100644
--- a/extensions/WikiEditor/modules/ext.wikiEditor.templateEditor.js
+++ b/extensions/WikiEditor/modules/ext.wikiEditor.templateEditor.js
@@ -2,9 +2,9 @@
* JavaScript for WikiEditor Template Editor
*/
-$( document ).ready( function() {
+$( document ).ready( function () {
// Disable in template namespace
- if ( mw.config.get( 'wgNamespaceNumber' ) == 10 ) {
+ if ( mw.config.get( 'wgNamespaceNumber' ) === 10 ) {
return true;
}
// Add template editor module
diff --git a/extensions/WikiEditor/modules/ext.wikiEditor.templates.js b/extensions/WikiEditor/modules/ext.wikiEditor.templates.js
index 4ac09b54..6eae6de5 100644
--- a/extensions/WikiEditor/modules/ext.wikiEditor.templates.js
+++ b/extensions/WikiEditor/modules/ext.wikiEditor.templates.js
@@ -2,11 +2,11 @@
* JavaScript for WikiEditor Templates
*/
-$( document ).ready( function() {
+$( document ).ready( function () {
// Disable for template namespace
- if ( mw.config.get( 'wgNamespaceNumber' ) == 10 ) {
+ if ( mw.config.get( 'wgNamespaceNumber' ) === 10 ) {
return true;
}
// Add templates module
$( '#wpTextbox1' ).wikiEditor( 'addModule', 'templates' );
-} ); \ No newline at end of file
+} );
diff --git a/extensions/WikiEditor/modules/ext.wikiEditor.tests.toolbar.js b/extensions/WikiEditor/modules/ext.wikiEditor.tests.toolbar.js
index 69fe2905..d4ffe5ae 100644
--- a/extensions/WikiEditor/modules/ext.wikiEditor.tests.toolbar.js
+++ b/extensions/WikiEditor/modules/ext.wikiEditor.tests.toolbar.js
@@ -4,9 +4,9 @@
var textareaId = '#wpTextbox1';
var wikiEditorTests = {
// Add emoticons section
- 'add_sections_toolbar': {
- 'call': 'addToToolbar',
- 'data': {
+ add_sections_toolbar: {
+ call: 'addToToolbar',
+ data: {
'sections': {
'emoticons': {
'type': 'toolbar',
@@ -14,30 +14,30 @@ var wikiEditorTests = {
}
}
},
- 'test': '*[rel=emoticons].section',
- 'pre': 0,
- 'post': 1
+ test: '*[rel=emoticons].section',
+ pre: 0,
+ post: 1
},
// Add faces group to emoticons section
'add_groups': {
- 'call': 'addToToolbar',
- 'data': {
- 'section': 'emoticons',
+ call: 'addToToolbar',
+ data: {
+ section: 'emoticons',
'groups': {
'faces': {
'label': 'Faces'
}
}
},
- 'test': '*[rel=emoticons].section *[rel=faces].group',
- 'pre': 0,
- 'post': 1
+ test: '*[rel=emoticons].section *[rel=faces].group',
+ pre: 0,
+ post: 1
},
// Add smile tool to faces group of emoticons section
'add_tools': {
- 'call': 'addToToolbar',
- 'data': {
- 'section': 'emoticons',
+ call: 'addToToolbar',
+ data: {
+ section: 'emoticons',
'group': 'faces',
'tools': {
'smile': {
@@ -47,20 +47,20 @@ var wikiEditorTests = {
action: {
type: 'encapsulate',
options: {
- pre: ":)"
+ pre: ':)'
}
}
}
}
},
- 'test': '*[rel=emoticons].section *[rel=faces].group *[rel=smile].tool',
- 'pre': 0,
- 'post': 1
+ test: '*[rel=emoticons].section *[rel=faces].group *[rel=smile].tool',
+ pre: 0,
+ post: 1
},
// Add info section
'add_sections_booklet': {
- 'call': 'addToToolbar',
- 'data': {
+ call: 'addToToolbar',
+ data: {
'sections': {
'info': {
'type': 'booklet',
@@ -68,16 +68,16 @@ var wikiEditorTests = {
}
}
},
- 'test': '*[rel=info].section',
- 'pre': 0,
- 'post': 1
+ test: '*[rel=info].section',
+ pre: 0,
+ post: 1
},
// Add info section
'add_pages_table': {
- 'call': 'addToToolbar',
- 'data': {
- 'section': 'info',
- 'pages': {
+ call: 'addToToolbar',
+ data: {
+ section: 'info',
+ pages: {
'colors': {
'layout': 'table',
'label': 'Colors',
@@ -89,44 +89,44 @@ var wikiEditorTests = {
}
}
},
- 'test': '*[rel=info].section *[rel=colors].page',
- 'pre': 0,
- 'post': 1
+ test: '*[rel=info].section *[rel=colors].page',
+ pre: 0,
+ post: 1
},
// Add colors rows
'add_rows': {
- 'call': 'addToToolbar',
- 'data': {
- 'section': 'info',
- 'page': 'colors',
+ call: 'addToToolbar',
+ data: {
+ section: 'info',
+ page: 'colors',
'rows': [
{
'name': { text: 'Red' },
'temp': { text: 'Warm' },
- 'swatch': { html: '<div style="width:10px;height:10px;background-color:red;">' }
+ 'swatch': { html: '<div style="width: 10px; height: 10px; background-color: red;">' }
},
{
'name': { text: 'Blue' },
'temp': { text: 'Cold' },
- 'swatch': { html: '<div style="width:10px;height:10px;background-color:blue;">' }
+ 'swatch': { html: '<div style="width: 10px; height: 10px; background-color: blue;">' }
},
{
'name': { text: 'Silver' },
'temp': { text: 'Neutral' },
- 'swatch': { html: '<div style="width:10px;height:10px;background-color:silver;">' }
+ 'swatch': { html: '<div style="width: 10px; height: 10px; background-color: silver;">' }
}
]
},
- 'test': '*[rel=info].section *[rel=colors].page tr td',
- 'pre': 0,
- 'post': 9
+ test: '*[rel=info].section *[rel=colors].page tr td',
+ pre: 0,
+ post: 9
},
// Add
'add_pages_characters': {
- 'call': 'addToToolbar',
- 'data': {
- 'section': 'info',
- 'pages': {
+ call: 'addToToolbar',
+ data: {
+ section: 'info',
+ pages: {
'emoticons': {
'layout': 'characters',
'label': 'Emoticons'
@@ -137,110 +137,119 @@ var wikiEditorTests = {
}
}
},
- 'test': '*[rel=info].section *[rel=emoticons].page',
- 'pre': 0,
- 'post': 1
+ test: '*[rel=info].section *[rel=emoticons].page',
+ pre: 0,
+ post: 1
},
// Add
'add_characters': {
- 'call': 'addToToolbar',
- 'data': {
- 'section': 'info',
- 'page': 'emoticons',
- 'characters': [ ':)', ':))', ':(', '<3', ';)' ]
+ call: 'addToToolbar',
+ data: {
+ section: 'info',
+ page: 'emoticons',
+ characters: [ ':)', ':))', ':(', '<3', ';)' ]
},
- 'test': '*[rel=info].section *[rel=emoticons].page *[rel=":)"]',
- 'pre': 0,
- 'post': 1
+ test: '*[rel=info].section *[rel=emoticons].page *[rel=":)"]',
+ pre: 0,
+ post: 1
},
// Remove page
'remove_page': {
- 'call': 'removeFromToolbar',
- 'data': {
- 'section': 'info',
- 'page': 'removeme'
+ call: 'removeFromToolbar',
+ data: {
+ section: 'info',
+ page: 'removeme'
},
- 'test': '*[rel=info].section *[rel=removeme].page',
- 'pre': 1,
- 'post': 0
+ test: '*[rel=info].section *[rel=removeme].page',
+ pre: 1,
+ post: 0
},
// Remove :)) from emoticon characters
'remove_character': {
- 'call': 'removeFromToolbar',
- 'data': {
- 'section': 'info',
- 'page': 'emoticons',
+ call: 'removeFromToolbar',
+ data: {
+ section: 'info',
+ page: 'emoticons',
'character': ':))'
},
- 'test': '*[rel=info].section *[rel=emoticons].page *[rel=":))"]',
- 'pre': 1,
- 'post': 0
+ test: '*[rel=info].section *[rel=emoticons].page *[rel=":))"]',
+ pre: 1,
+ post: 0
},
// Remove row from colors table of info section
'remove_row': {
- 'call': 'removeFromToolbar',
- 'data': {
- 'section': 'info',
- 'page': 'colors',
+ call: 'removeFromToolbar',
+ data: {
+ section: 'info',
+ page: 'colors',
'row': 0
},
- 'test': '*[rel=info].section *[rel=colors].page tr td',
- 'pre': 9,
- 'post': 6
+ test: '*[rel=info].section *[rel=colors].page tr td',
+ pre: 9,
+ post: 6
}
};
-$(document).ready( function() {
- var button = $( '<button>Run wikiEditor Tests!</button>' )
+
+jQuery(document).ready( function ( $ ) {
+ var $button = $( '<button>Run wikiEditor Tests!</button>' )
.css( {
- 'position': 'fixed',
- 'bottom': 0,
- 'right': 0,
- 'width': '100%',
- 'backgroundColor': '#333333',
- 'opacity': 0.75,
- 'color': '#DDDDDD',
- 'padding': '0.5em',
- 'border': 'none',
- 'display': 'none'
+ position: 'fixed',
+ bottom: 0,
+ right: 0,
+ width: '100%',
+ backgroundColor: '#333',
+ opacity: 0.75,
+ color: '#DDDDDD',
+ padding: '0.7em',
+ border: 'none',
+ display: 'none',
+ cursor: 'pointer'
} )
- .click( function() {
- if ( $(this).attr( 'enabled' ) == 'false' ) {
+ .click( function () {
+ if ( $(this).data( 'testDone' ) ) {
$(this).slideUp( 'fast' );
return false;
}
- var messages = [ 'Running tests for wikiEditor API' ];
- var $target = $( textareaId );
- var $ui = $target.data( 'wikiEditor-context' ).$ui;
- var passes = 0;
- var tests = 0;
- for ( var test in wikiEditorTests ) {
- var pre = $ui.find( wikiEditorTests[test].test ).size() ==
- wikiEditorTests[test].pre;
+
+ var test, pre, post,
+ messages = [ 'Running tests for wikiEditor API' ],
+ $target = $( textareaId ),
+ $ui = $target.data( 'wikiEditor-context' ).$ui,
+ passes = 0,
+ tests = 0;
+
+ for ( test in wikiEditorTests ) {
+ pre = $ui.find( wikiEditorTests[test].test ).length === wikiEditorTests[test].pre;
messages.push ( test + '-pre: ' + ( pre ? 'PASS' : 'FAIL' ) );
$target.wikiEditor(
wikiEditorTests[test].call,
wikiEditorTests[test].data
);
- var post = $ui.find( wikiEditorTests[test].test ).size() ==
- wikiEditorTests[test].post;
+ post = $ui.find( wikiEditorTests[test].test ).length === wikiEditorTests[test].post;
messages.push ( test + '-post: ' + ( post ? 'PASS' : 'FAIL' ) );
if ( pre && post ) {
passes++;
}
tests++;
}
- if ( window.console !== undefined ) {
+
+ if ( window.console ) {
for ( var i = 0; i < messages.length; i++ ) {
- console.log( messages[i] );
+ window.console.log( messages[i] );
}
}
+
$(this)
.attr( 'title', messages.join( " | " ) )
.text( passes + ' / ' + tests + ' were successful' )
.css( 'backgroundColor', passes < tests ? 'red' : 'green' )
- .attr( 'enabled', 'false' )
+ .data( 'testDone', 'true' )
.blur();
} )
.appendTo( $( 'body' ) );
- setTimeout( function() { button.slideDown( 'fast' ) }, 2000 );
+
+ setTimeout( function () {
+ $button.slideDown( 'fast' );
+ }, 1500 );
+
} );
diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.config.css b/extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.config.css
index 15c1435b..efde00fb 100644
--- a/extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.config.css
+++ b/extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.config.css
@@ -80,6 +80,15 @@
background-image: url(images/dialogs/insert-link-external.png);
background-position: left;
}
+/* File dialog */
+#wikieditor-toolbar-file-target,
+#wikieditor-toolbar-file-caption {
+ width: 100%;
+}
+.wikieditor-toolbar-file-options .wikieditor-toolbar-field-wrapper {
+ float: left;
+ margin: 0 20px 0 0;
+}
/* Reference Dialog */
#wikieditor-toolbar-reference-dialog label {
float: left;
diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.config.js b/extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.config.js
index 0c24c368..ca8af558 100644
--- a/extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.config.js
+++ b/extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.config.js
@@ -1,1201 +1,1372 @@
/**
* Configuration of Dialog module for wikiEditor
*/
-( function( $ ) { $.wikiEditor.modules.dialogs.config = {
+( function ( $, mw ) {
-replaceIcons: function( $textarea ) {
- $textarea
- .wikiEditor( 'removeFromToolbar', { 'section': 'main', 'group': 'insert', 'tool': 'xlink' } )
- .wikiEditor( 'removeFromToolbar', { 'section': 'main', 'group': 'insert', 'tool': 'ilink' } )
- .wikiEditor( 'removeFromToolbar', { 'section': 'main', 'group': 'insert', 'tool': 'reference' } )
- .wikiEditor( 'removeFromToolbar', { 'section': 'advanced', 'group': 'insert', 'tool': 'table' } )
- .wikiEditor( 'addToToolbar', {
- 'section': 'main',
- 'group': 'insert',
- 'tools': {
- 'link': {
- 'labelMsg': 'wikieditor-toolbar-tool-link',
- 'type': 'button',
- 'icon': 'insert-link.png',
- 'offset': [2, -1654],
- 'action': {
- 'type': 'dialog',
- 'module': 'insert-link'
- }
- },
- 'reference': {
- 'labelMsg': 'wikieditor-toolbar-tool-reference',
- 'filters': [ 'body.ns-subject' ],
- 'type': 'button',
- 'icon': 'insert-reference.png',
- 'offset': [2, -1798],
- 'action': {
- 'type': 'dialog',
- 'module': 'insert-reference'
+$.wikiEditor.modules.dialogs.config = {
+
+ replaceIcons: function ( $textarea ) {
+ $textarea
+ .wikiEditor( 'removeFromToolbar', { section: 'main', group: 'insert', tool: 'xlink' } )
+ .wikiEditor( 'removeFromToolbar', { section: 'main', group: 'insert', tool: 'ilink' } )
+ .wikiEditor( 'removeFromToolbar', { section: 'main', group: 'insert', tool: 'file' } )
+ .wikiEditor( 'removeFromToolbar', { section: 'main', group: 'insert', tool: 'reference' } )
+ .wikiEditor( 'removeFromToolbar', { section: 'advanced', group: 'insert', tool: 'table' } )
+ .wikiEditor( 'addToToolbar', {
+ section: 'main',
+ group: 'insert',
+ tools: {
+ 'link': {
+ labelMsg: 'wikieditor-toolbar-tool-link',
+ type: 'button',
+ icon: 'insert-link.png',
+ offset: [2, -1654],
+ action: {
+ type: 'dialog',
+ module: 'insert-link'
+ }
+ },
+ 'file': {
+ labelMsg: 'wikieditor-toolbar-tool-file',
+ type: 'button',
+ icon: 'insert-file.png',
+ offset: [2, -1438],
+ action: {
+ type: 'dialog',
+ module: 'insert-file'
+ }
+ },
+ 'reference': {
+ labelMsg: 'wikieditor-toolbar-tool-reference',
+ filters: [ 'body.ns-subject' ],
+ type: 'button',
+ icon: 'insert-reference.png',
+ offset: [2, -1798],
+ action: {
+ type: 'dialog',
+ module: 'insert-reference'
+ }
}
}
- }
- } )
- .wikiEditor( 'addToToolbar', {
- 'section': 'advanced',
- 'group': 'insert',
- 'tools': {
- 'table': {
- 'labelMsg': 'wikieditor-toolbar-tool-table',
- 'type': 'button',
- 'icon': 'insert-table.png',
- 'offset': [2, -1942],
- 'action': {
- 'type': 'dialog',
- 'module': 'insert-table'
+ } )
+ .wikiEditor( 'addToToolbar', {
+ section: 'advanced',
+ group: 'insert',
+ tools: {
+ 'table': {
+ labelMsg: 'wikieditor-toolbar-tool-table',
+ type: 'button',
+ icon: 'insert-table.png',
+ offset: [2, -1942],
+ action: {
+ type: 'dialog',
+ module: 'insert-table'
+ }
}
}
- }
- } )
- .wikiEditor( 'addToToolbar', {
- 'section': 'advanced',
- 'groups': {
- 'search': {
- 'tools': {
- 'replace': {
- 'labelMsg': 'wikieditor-toolbar-tool-replace',
- 'type': 'button',
- 'icon': 'search-replace.png',
- 'offset': [-70, -214],
- 'action': {
- 'type': 'dialog',
- 'module': 'search-and-replace'
+ } )
+ .wikiEditor( 'addToToolbar', {
+ section: 'advanced',
+ groups: {
+ 'search': {
+ tools: {
+ 'replace': {
+ labelMsg: 'wikieditor-toolbar-tool-replace',
+ type: 'button',
+ icon: 'search-replace.png',
+ offset: [-70, -214],
+ action: {
+ type: 'dialog',
+ module: 'search-and-replace'
+ }
}
}
}
}
- }
- } );
-},
+ } );
+ },
-getDefaultConfig: function () {
- return { 'dialogs': {
- 'insert-link': {
- titleMsg: 'wikieditor-toolbar-tool-link-title',
- id: 'wikieditor-toolbar-link-dialog',
- html: '\
- <fieldset>\
- <div class="wikieditor-toolbar-field-wrapper">\
- <label for="wikieditor-toolbar-link-int-target" rel="wikieditor-toolbar-tool-link-int-target" id="wikieditor-toolbar-tool-link-int-target-label"></label>\
- <div id="wikieditor-toolbar-link-int-target-status"></div>\
- <input type="text" id="wikieditor-toolbar-link-int-target" />\
- </div>\
- <div class="wikieditor-toolbar-field-wrapper">\
- <label for="wikieditor-toolbar-link-int-text" rel="wikieditor-toolbar-tool-link-int-text"></label>\
- <input type="text" id="wikieditor-toolbar-link-int-text" />\
- </div>\
- <div class="wikieditor-toolbar-field-wrapper">\
- <div class="wikieditor-toolbar-floated-field-wrapper">\
- <input type="radio" id="wikieditor-toolbar-link-type-int" name="wikieditor-toolbar-link-type" selected />\
- <label for="wikieditor-toolbar-link-type-int" rel="wikieditor-toolbar-tool-link-int"></label>\
+ getDefaultConfig: function () {
+ return { 'dialogs': {
+ 'insert-link': {
+ titleMsg: 'wikieditor-toolbar-tool-link-title',
+ id: 'wikieditor-toolbar-link-dialog',
+ html: '\
+ <fieldset>\
+ <div class="wikieditor-toolbar-field-wrapper">\
+ <label for="wikieditor-toolbar-link-int-target" rel="wikieditor-toolbar-tool-link-int-target" id="wikieditor-toolbar-tool-link-int-target-label"></label>\
+ <div id="wikieditor-toolbar-link-int-target-status"></div>\
+ <input type="text" id="wikieditor-toolbar-link-int-target"/>\
</div>\
- <div class="wikieditor-toolbar-floated-field-wrapper">\
- <input type="radio" id="wikieditor-toolbar-link-type-ext" name="wikieditor-toolbar-link-type" />\
- <label for="wikieditor-toolbar-link-type-ext" rel="wikieditor-toolbar-tool-link-ext"></label>\
+ <div class="wikieditor-toolbar-field-wrapper">\
+ <label for="wikieditor-toolbar-link-int-text" rel="wikieditor-toolbar-tool-link-int-text"></label>\
+ <input type="text" id="wikieditor-toolbar-link-int-text"/>\
</div>\
- </div>\
- </fieldset>',
- init: function() {
- function isExternalLink( s ) {
- // The following things are considered to be external links:
- // * Starts a URL protocol
- // * Starts with www.
- // All of these are potentially valid titles, and the latter two categories match about 6300
- // titles in enwiki's ns0. Out of 6.9M titles, that's 0.09%
- if ( typeof arguments.callee.regex == 'undefined' ) {
- // Cache the regex
- arguments.callee.regex =
- new RegExp( "^(" + mw.config.get( 'wgUrlProtocols' ) + "|www\\.)", 'i');
- }
- return s.match( arguments.callee.regex );
- }
- // Updates the status indicator above the target link
- function updateWidget( status ) {
- $( '#wikieditor-toolbar-link-int-target-status' ).children().hide();
- $( '#wikieditor-toolbar-link-int-target' ).parent()
- .removeClass(
- 'status-invalid status-external status-notexists status-exists status-loading'
- );
- if ( status ) {
- $( '#wikieditor-toolbar-link-int-target-status-' + status ).show();
- $( '#wikieditor-toolbar-link-int-target' ).parent().addClass( 'status-' + status );
- }
- if ( status == 'invalid' ) {
- $( '.ui-dialog:visible .ui-dialog-buttonpane button:first' )
- .attr( 'disabled', true )
- .addClass( 'disabled' );
- } else {
- $( '.ui-dialog:visible .ui-dialog-buttonpane button:first' )
- .removeAttr('disabled')
- .removeClass('disabled');
- }
- }
- // Updates the UI to show if the page title being inputed by the user exists or not
- // accepts parameter internal for bypassing external link detection
- function updateExistence( internal ) {
- // ensure the internal parameter is a boolean
- if ( internal != true ) internal = false;
- // Abort previous request
- var request = $( '#wikieditor-toolbar-link-int-target-status' ).data( 'request' );
- if ( request ) {
- request.abort();
- }
- var target = $( '#wikieditor-toolbar-link-int-target' ).val();
- var cache = $( '#wikieditor-toolbar-link-int-target-status' ).data( 'existencecache' );
- if ( cache[target] ) {
- updateWidget( cache[target] );
- return;
- }
- if ( target.replace( /^\s+$/,'' ) == '' ) {
- // Hide the widget when the textbox is empty
- updateWidget( false );
- return;
- }
- // If the forced internal paremter was not true, check if the target is an external link
- if ( !internal && isExternalLink( target ) ) {
- updateWidget( 'external' );
- return;
+ <div class="wikieditor-toolbar-field-wrapper">\
+ <div class="wikieditor-toolbar-floated-field-wrapper">\
+ <input type="radio" id="wikieditor-toolbar-link-type-int" name="wikieditor-toolbar-link-type" selected/>\
+ <label for="wikieditor-toolbar-link-type-int" rel="wikieditor-toolbar-tool-link-int"></label>\
+ </div>\
+ <div class="wikieditor-toolbar-floated-field-wrapper">\
+ <input type="radio" id="wikieditor-toolbar-link-type-ext" name="wikieditor-toolbar-link-type"/>\
+ <label for="wikieditor-toolbar-link-type-ext" rel="wikieditor-toolbar-tool-link-ext"></label>\
+ </div>\
+ </div>\
+ </fieldset>',
+
+ init: function () {
+ function isExternalLink( s ) {
+ // The following things are considered to be external links:
+ // * Starts a URL protocol
+ // * Starts with www.
+ // All of these are potentially valid titles, and the latter two categories match about 6300
+ // titles in enwiki's ns0. Out of 6.9M titles, that's 0.09%
+ if ( typeof arguments.callee.regex === 'undefined' ) {
+ // Cache the regex
+ arguments.callee.regex =
+ new RegExp( "^(" + mw.config.get( 'wgUrlProtocols' ) + "|www\\.)", 'i');
+ }
+ return s.match( arguments.callee.regex );
}
- if ( target.indexOf( '|' ) != -1 ) {
- // Title contains | , which means it's invalid
- // but confuses the API. Show invalid and bypass API
- updateWidget( 'invalid' );
- return;
+
+ // Updates the status indicator above the target link
+ function updateWidget( status ) {
+ $( '#wikieditor-toolbar-link-int-target-status' ).children().hide();
+ $( '#wikieditor-toolbar-link-int-target' ).parent()
+ .removeClass(
+ 'status-invalid status-external status-notexists status-exists status-loading'
+ );
+ if ( status ) {
+ $( '#wikieditor-toolbar-link-int-target-status-' + status ).show();
+ $( '#wikieditor-toolbar-link-int-target' ).parent().addClass( 'status-' + status );
+ }
+ if ( status === 'invalid' ) {
+ $( '.ui-dialog:visible .ui-dialog-buttonpane button:first' )
+ .attr( 'disabled', true )
+ .addClass( 'disabled' );
+ } else {
+ $( '.ui-dialog:visible .ui-dialog-buttonpane button:first' )
+ .removeAttr('disabled')
+ .removeClass('disabled');
+ }
}
- // Show loading spinner while waiting for the API to respond
- updateWidget( 'loading' );
- // Call the API to check page status, saving the request object so it can be aborted if
- // necessary
- $( '#wikieditor-toolbar-link-int-target-status' ).data(
- 'request',
- $.ajax( {
- url: mw.util.wikiScript( 'api' ),
- dataType: 'json',
- data: {
- 'action': 'query',
- 'indexpageids': '',
- 'titles': target,
- 'converttitles': '',
- 'format': 'json'
- },
- success: function( data ) {
- var status;
- if ( !data || typeof data.query == 'undefined' ) {
- // This happens in some weird cases
- status = false;
- } else {
- var page = data.query.pages[data.query.pageids[0]];
- status = 'exists';
- if ( typeof page.missing != 'undefined' )
- status = 'notexists';
- else if ( typeof page.invalid != 'undefined' )
- status = 'invalid';
- }
- // Cache the status of the link target if the force internal parameter was not
- // passed
- if ( !internal ) cache[target] = status;
- updateWidget( status );
- }
- } )
- );
- }
- $( '#wikieditor-toolbar-link-type-int, #wikieditor-toolbar-link-type-ext' ).click( function() {
- if( $( '#wikieditor-toolbar-link-type-ext' ).is( ':checked' ) ) {
+
+ // Updates the UI to show if the page title being inputed by the user exists or not
+ // accepts parameter internal for bypassing external link detection
+ function updateExistence( internal ) {
+ // ensure the internal parameter is a boolean
+ if ( internal !== true ) {
+ internal = false;
+ }
// Abort previous request
var request = $( '#wikieditor-toolbar-link-int-target-status' ).data( 'request' );
if ( request ) {
request.abort();
}
- updateWidget( 'external' );
- }
- if( $( '#wikieditor-toolbar-link-type-int' ).is( ':checked' ) )
- updateExistence( true );
- });
- // Set labels of tabs based on rel values
- $(this).find( '[rel]' ).each( function() {
- $(this).text( mediaWiki.msg( $(this).attr( 'rel' ) ) );
- });
- // Set tabindexes on form fields
- $.wikiEditor.modules.dialogs.fn.setTabindexes( $(this).find( 'input' ).not( '[tabindex]' ) );
- // Setup the tooltips in the textboxes
- $( '#wikieditor-toolbar-link-int-target' )
- .data( 'tooltip', mediaWiki.msg( 'wikieditor-toolbar-tool-link-int-target-tooltip' ) );
- $( '#wikieditor-toolbar-link-int-text' )
- .data( 'tooltip', mediaWiki.msg( 'wikieditor-toolbar-tool-link-int-text-tooltip' ) );
- $( '#wikieditor-toolbar-link-int-target, #wikieditor-toolbar-link-int-text' )
- .each( function() {
- var tooltip = mediaWiki.msg( $( this ).attr( 'id' ) + '-tooltip' );
- if ( $( this ).val() == '' )
- $( this )
- .addClass( 'wikieditor-toolbar-dialog-hint' )
- .val( $( this ).data( 'tooltip' ) )
- .data( 'tooltip-mode', true );
- } )
- .focus( function() {
- if( $( this ).val() == $( this ).data( 'tooltip' ) ) {
- $( this )
- .val( '' )
- .removeClass( 'wikieditor-toolbar-dialog-hint' )
- .data( 'tooltip-mode', false );
- }
- })
- .bind( 'change', function() {
- if ( $( this ).val() != $( this ).data( 'tooltip' ) ) {
- $( this )
- .removeClass( 'wikieditor-toolbar-dialog-hint' )
- .data( 'tooltip-mode', false );
+ var target = $( '#wikieditor-toolbar-link-int-target' ).val();
+ var cache = $( '#wikieditor-toolbar-link-int-target-status' ).data( 'existencecache' );
+ if ( cache[target] ) {
+ updateWidget( cache[target] );
+ return;
}
- })
- .bind( 'blur', function() {
- if ( $( this ).val() == '' ) {
- $( this )
- .addClass( 'wikieditor-toolbar-dialog-hint' )
- .val( $( this ).data( 'tooltip' ) )
- .data( 'tooltip-mode', true );
+ if ( target.replace( /^\s+$/,'' ) === '' ) {
+ // Hide the widget when the textbox is empty
+ updateWidget( false );
+ return;
}
- });
-
- // Automatically copy the value of the internal link page title field to the link text field unless the
- // user has changed the link text field - this is a convenience thing since most link texts are going to
- // be the the same as the page title - Also change the internal/external radio button accordingly
- $( '#wikieditor-toolbar-link-int-target' ).bind( 'change keydown paste cut', function() {
- // $(this).val() is the old value, before the keypress - Defer this until $(this).val() has
- // been updated
- setTimeout( function() {
- if ( isExternalLink( $( '#wikieditor-toolbar-link-int-target' ).val() ) ) {
- $( '#wikieditor-toolbar-link-type-ext' ).attr( 'checked', 'checked' );
+ // If the forced internal paremter was not true, check if the target is an external link
+ if ( !internal && isExternalLink( target ) ) {
updateWidget( 'external' );
- } else {
- $( '#wikieditor-toolbar-link-type-int' ).attr( 'checked', 'checked' );
- updateExistence();
+ return;
}
- if ( $( '#wikieditor-toolbar-link-int-text' ).data( 'untouched' ) )
- if ( $( '#wikieditor-toolbar-link-int-target' ).val() ==
- $( '#wikieditor-toolbar-link-int-target' ).data( 'tooltip' ) ) {
- $( '#wikieditor-toolbar-link-int-text' )
- .addClass( 'wikieditor-toolbar-dialog-hint' )
- .val( $( '#wikieditor-toolbar-link-int-text' ).data( 'tooltip' ) )
- .change();
- } else {
- $( '#wikieditor-toolbar-link-int-text' )
- .val( $( '#wikieditor-toolbar-link-int-target' ).val() )
- .change();
- }
- }, 0 );
- });
- $( '#wikieditor-toolbar-link-int-text' ).bind( 'change keydown paste cut', function() {
- var oldVal = $(this).val();
- var that = this;
- setTimeout( function() {
- if ( $(that).val() != oldVal )
- $(that).data( 'untouched', false );
- }, 0 );
- });
- // Add images to the page existence widget, which will be shown mutually exclusively to communicate if
- // the page exists, does not exist or the title is invalid (like if it contains a | character)
- var existsMsg = mediaWiki.msg( 'wikieditor-toolbar-tool-link-int-target-status-exists' );
- var notexistsMsg = mediaWiki.msg( 'wikieditor-toolbar-tool-link-int-target-status-notexists' );
- var invalidMsg = mediaWiki.msg( 'wikieditor-toolbar-tool-link-int-target-status-invalid' );
- var externalMsg = mediaWiki.msg( 'wikieditor-toolbar-tool-link-int-target-status-external' );
- var loadingMsg = mediaWiki.msg( 'wikieditor-toolbar-tool-link-int-target-status-loading' );
- $( '#wikieditor-toolbar-link-int-target-status' )
- .append( $( '<div />' )
- .attr( 'id', 'wikieditor-toolbar-link-int-target-status-exists' )
- .append( existsMsg )
- )
- .append( $( '<div />' )
- .attr( 'id', 'wikieditor-toolbar-link-int-target-status-notexists' )
- .append( notexistsMsg )
- )
- .append( $( '<div />' )
- .attr( 'id', 'wikieditor-toolbar-link-int-target-status-invalid' )
- .append( invalidMsg )
- )
- .append( $( '<div />' )
- .attr( 'id', 'wikieditor-toolbar-link-int-target-status-external' )
- .append( externalMsg )
- )
- .append( $( '<div />' )
- .attr( 'id', 'wikieditor-toolbar-link-int-target-status-loading' )
- .append( $( '<img />' ).attr( {
- 'src': $.wikiEditor.imgPath + 'dialogs/' + 'loading-small.gif',
- 'alt': loadingMsg,
- 'title': loadingMsg
- } ) )
- )
- .data( 'existencecache', {} )
- .children().hide();
-
- $( '#wikieditor-toolbar-link-int-target' )
- .bind( 'keyup paste cut', function() {
- // Cancel the running timer if applicable
- if ( typeof $(this).data( 'timerID' ) != 'undefined' ) {
- clearTimeout( $(this).data( 'timerID' ) );
+ if ( target.indexOf( '|' ) !== -1 ) {
+ // Title contains | , which means it's invalid
+ // but confuses the API. Show invalid and bypass API
+ updateWidget( 'invalid' );
+ return;
}
- // Delay fetch for a while
- // FIXME: Make 120 configurable elsewhere
- var timerID = setTimeout( updateExistence, 120 );
- $(this).data( 'timerID', timerID );
- } )
- .change( function() {
- // Cancel the running timer if applicable
- if ( typeof $(this).data( 'timerID' ) != 'undefined' ) {
- clearTimeout( $(this).data( 'timerID' ) );
+ // Show loading spinner while waiting for the API to respond
+ updateWidget( 'loading' );
+ // Call the API to check page status, saving the request object so it can be aborted if
+ // necessary
+ $( '#wikieditor-toolbar-link-int-target-status' ).data(
+ 'request',
+ $.ajax( {
+ url: mw.util.wikiScript( 'api' ),
+ dataType: 'json',
+ data: {
+ action: 'query',
+ indexpageids: '',
+ titles: target,
+ converttitles: '',
+ format: 'json'
+ },
+ success: function ( data ) {
+ var status;
+ if ( !data || !data.query ) {
+ // This happens in some weird cases
+ status = false;
+ } else {
+ var page = data.query.pages[data.query.pageids[0]];
+ status = 'exists';
+ if ( page.missing !== undefined ) {
+ status = 'notexists';
+ } else if ( page.invalid !== undefined ) {
+ status = 'invalid';
+ }
+ }
+ // Cache the status of the link target if the force internal
+ // parameter was not passed
+ if ( !internal ) {
+ cache[target] = status;
+ }
+ updateWidget( status );
+ }
+ } )
+ );
+ }
+ $( '#wikieditor-toolbar-link-type-int, #wikieditor-toolbar-link-type-ext' ).click( function () {
+ if ( $( '#wikieditor-toolbar-link-type-ext' ).is( ':checked' ) ) {
+ // Abort previous request
+ var request = $( '#wikieditor-toolbar-link-int-target-status' ).data( 'request' );
+ if ( request ) {
+ request.abort();
+ }
+ updateWidget( 'external' );
}
- // Fetch right now
- updateExistence();
- } );
+ if ( $( '#wikieditor-toolbar-link-type-int' ).is( ':checked' ) )
+ updateExistence( true );
+ });
+ // Set labels of tabs based on rel values
+ $(this).find( '[rel]' ).each( function () {
+ $(this).text( mw.msg( $(this).attr( 'rel' ) ) );
+ });
+ // Set tabindexes on form fields
+ $.wikiEditor.modules.dialogs.fn.setTabindexes( $(this).find( 'input' ).not( '[tabindex]' ) );
+ // Setup the tooltips in the textboxes
+ $( '#wikieditor-toolbar-link-int-target' )
+ .data( 'tooltip', mw.msg( 'wikieditor-toolbar-tool-link-int-target-tooltip' ) );
+ $( '#wikieditor-toolbar-link-int-text' )
+ .data( 'tooltip', mw.msg( 'wikieditor-toolbar-tool-link-int-text-tooltip' ) );
+ $( '#wikieditor-toolbar-link-int-target, #wikieditor-toolbar-link-int-text' )
+ .each( function () {
+ var tooltip = mw.msg( $( this ).attr( 'id' ) + '-tooltip' );
+ if ( $( this ).val() === '' )
+ $( this )
+ .addClass( 'wikieditor-toolbar-dialog-hint' )
+ .val( $( this ).data( 'tooltip' ) )
+ .data( 'tooltip-mode', true );
+ } )
+ .focus( function () {
+ if ( $( this ).val() === $( this ).data( 'tooltip' ) ) {
+ $( this )
+ .val( '' )
+ .removeClass( 'wikieditor-toolbar-dialog-hint' )
+ .data( 'tooltip-mode', false );
+ }
+ })
+ .bind( 'change', function () {
+ if ( $( this ).val() !== $( this ).data( 'tooltip' ) ) {
+ $( this )
+ .removeClass( 'wikieditor-toolbar-dialog-hint' )
+ .data( 'tooltip-mode', false );
+ }
+ })
+ .bind( 'blur', function () {
+ if ( $( this ).val() === '' ) {
+ $( this )
+ .addClass( 'wikieditor-toolbar-dialog-hint' )
+ .val( $( this ).data( 'tooltip' ) )
+ .data( 'tooltip-mode', true );
+ }
+ });
- // Title suggestions
- $( '#wikieditor-toolbar-link-int-target' ).data( 'suggcache', {} ).suggestions( {
- fetch: function( query ) {
+ // Automatically copy the value of the internal link page title field to the link text field unless the
+ // user has changed the link text field - this is a convenience thing since most link texts are going to
+ // be the the same as the page title - Also change the internal/external radio button accordingly
+ $( '#wikieditor-toolbar-link-int-target' ).bind( 'change keydown paste cut', function () {
+ // $(this).val() is the old value, before the keypress - Defer this until $(this).val() has
+ // been updated
+ setTimeout( function () {
+ if ( isExternalLink( $( '#wikieditor-toolbar-link-int-target' ).val() ) ) {
+ $( '#wikieditor-toolbar-link-type-ext' ).prop( 'checked', true );
+ updateWidget( 'external' );
+ } else {
+ $( '#wikieditor-toolbar-link-type-int' ).prop( 'checked', true );
+ updateExistence();
+ }
+ if ( $( '#wikieditor-toolbar-link-int-text' ).data( 'untouched' ) )
+ if ( $( '#wikieditor-toolbar-link-int-target' ).val() ==
+ $( '#wikieditor-toolbar-link-int-target' ).data( 'tooltip' ) ) {
+ $( '#wikieditor-toolbar-link-int-text' )
+ .addClass( 'wikieditor-toolbar-dialog-hint' )
+ .val( $( '#wikieditor-toolbar-link-int-text' ).data( 'tooltip' ) )
+ .change();
+ } else {
+ $( '#wikieditor-toolbar-link-int-text' )
+ .val( $( '#wikieditor-toolbar-link-int-target' ).val() )
+ .change();
+ }
+ }, 0 );
+ });
+ $( '#wikieditor-toolbar-link-int-text' ).bind( 'change keydown paste cut', function () {
+ var oldVal = $(this).val();
var that = this;
- var title = $(this).val();
+ setTimeout( function () {
+ if ( $(that).val() !== oldVal )
+ $(that).data( 'untouched', false );
+ }, 0 );
+ });
+ // Add images to the page existence widget, which will be shown mutually exclusively to communicate if
+ // the page exists, does not exist or the title is invalid (like if it contains a | character)
+ var existsMsg = mw.msg( 'wikieditor-toolbar-tool-link-int-target-status-exists' );
+ var notexistsMsg = mw.msg( 'wikieditor-toolbar-tool-link-int-target-status-notexists' );
+ var invalidMsg = mw.msg( 'wikieditor-toolbar-tool-link-int-target-status-invalid' );
+ var externalMsg = mw.msg( 'wikieditor-toolbar-tool-link-int-target-status-external' );
+ var loadingMsg = mw.msg( 'wikieditor-toolbar-tool-link-int-target-status-loading' );
+ $( '#wikieditor-toolbar-link-int-target-status' )
+ .append( $( '<div>' )
+ .attr( 'id', 'wikieditor-toolbar-link-int-target-status-exists' )
+ .append( existsMsg )
+ )
+ .append( $( '<div>' )
+ .attr( 'id', 'wikieditor-toolbar-link-int-target-status-notexists' )
+ .append( notexistsMsg )
+ )
+ .append( $( '<div>' )
+ .attr( 'id', 'wikieditor-toolbar-link-int-target-status-invalid' )
+ .append( invalidMsg )
+ )
+ .append( $( '<div>' )
+ .attr( 'id', 'wikieditor-toolbar-link-int-target-status-external' )
+ .append( externalMsg )
+ )
+ .append( $( '<div>' )
+ .attr( 'id', 'wikieditor-toolbar-link-int-target-status-loading' )
+ .append( $( '<img>' ).attr( {
+ 'src': $.wikiEditor.imgPath + 'dialogs/' + 'loading-small.gif',
+ 'alt': loadingMsg,
+ 'title': loadingMsg
+ } ) )
+ )
+ .data( 'existencecache', {} )
+ .children().hide();
- if ( isExternalLink( title ) || title.indexOf( '|' ) != -1 || title == '') {
- $(this).suggestions( 'suggestions', [] );
- return;
- }
+ $( '#wikieditor-toolbar-link-int-target' )
+ .bind( 'keyup paste cut', function () {
+ // Cancel the running timer if applicable
+ if ( typeof $(this).data( 'timerID' ) !== 'undefined' ) {
+ clearTimeout( $(this).data( 'timerID' ) );
+ }
+ // Delay fetch for a while
+ // FIXME: Make 120 configurable elsewhere
+ var timerID = setTimeout( updateExistence, 120 );
+ $(this).data( 'timerID', timerID );
+ } )
+ .change( function () {
+ // Cancel the running timer if applicable
+ if ( typeof $(this).data( 'timerID' ) !== 'undefined' ) {
+ clearTimeout( $(this).data( 'timerID' ) );
+ }
+ // Fetch right now
+ updateExistence();
+ } );
- var cache = $(this).data( 'suggcache' );
- if ( typeof cache[title] != 'undefined' ) {
- $(this).suggestions( 'suggestions', cache[title] );
- return;
- }
+ // Title suggestions
+ $( '#wikieditor-toolbar-link-int-target' ).data( 'suggcache', {} ).suggestions( {
+ fetch: function ( query ) {
+ var that = this;
+ var title = $(this).val();
- var request = $.ajax( {
- url: mw.util.wikiScript( 'api' ),
- data: {
- 'action': 'opensearch',
- 'search': title,
- 'namespace': 0,
- 'suggest': '',
- 'format': 'json'
- },
- dataType: 'json',
- success: function( data ) {
- cache[title] = data[1];
- $(that).suggestions( 'suggestions', data[1] );
- }
- });
- $(this).data( 'request', request );
- },
- cancel: function() {
- var request = $(this).data( 'request' );
- if ( request )
- request.abort();
- }
- });
- },
- dialog: {
- width: 500,
- dialogClass: 'wikiEditor-toolbar-dialog',
- buttons: {
- 'wikieditor-toolbar-tool-link-insert': function() {
- function escapeInternalText( s ) {
- // FIXME: Should this escape [[ too? Seems to work without that
- return s.replace( /(]{2,})/g, '<nowiki>$1</nowiki>' );
- }
- function escapeExternalTarget( s ) {
- return s.replace( / /g, '%20' )
- .replace( /\[/g, '%5B' )
- .replace( /]/g, '%5D' );
- }
- function escapeExternalText( s ) {
- // FIXME: Should this escape [ too? Seems to work without that
- return s.replace( /(]+)/g, '<nowiki>$1</nowiki>' );
- }
- var insertText = '';
- var whitespace = $( '#wikieditor-toolbar-link-dialog' ).data( 'whitespace' );
- var target = $( '#wikieditor-toolbar-link-int-target' ).val();
- var text = $( '#wikieditor-toolbar-link-int-text' ).val();
- // check if the tooltips were passed as target or text
- if ( $( '#wikieditor-toolbar-link-int-target' ).data( 'tooltip-mode' ) )
- target = "";
- if ( $( '#wikieditor-toolbar-link-int-text' ).data( 'tooltip-mode' ) )
- text = "";
- if ( target == '' ) {
- alert( mediaWiki.msg( 'wikieditor-toolbar-tool-link-empty' ) );
- return;
- }
- if ( $.trim( text ) == '' ) {
- // [[Foo| ]] creates an invisible link
- // Instead, generate [[Foo|]]
- text = '';
- }
- if ( $( '#wikieditor-toolbar-link-type-int' ).is( ':checked' ) ) {
- // FIXME: Exactly how fragile is this?
- if ( $( '#wikieditor-toolbar-link-int-target-status-invalid' ).is( ':visible' ) ) {
- // Refuse to add links to invalid titles
- alert( mediaWiki.msg( 'wikieditor-toolbar-tool-link-int-invalid' ) );
+ if ( isExternalLink( title ) || title.indexOf( '|' ) !== -1 || title === '') {
+ $(this).suggestions( 'suggestions', [] );
return;
}
- if ( target == text || !text.length )
- insertText = '[[' + target + ']]';
- else
- insertText = '[[' + target + '|' + escapeInternalText( text ) + ']]';
- } else {
- // Prepend http:// if there is no protocol
- if ( !target.match( /^[a-z]+:\/\/./ ) )
- target = 'http://' + target;
+ var cache = $(this).data( 'suggcache' );
+ if ( typeof cache[title] !== 'undefined' ) {
+ $(this).suggestions( 'suggestions', cache[title] );
+ return;
+ }
- // Detect if this is really an internal link in disguise
- var match = target.match( $(this).data( 'articlePathRegex' ) );
- if ( match && !$(this).data( 'ignoreLooksInternal' ) ) {
- var buttons = { };
- var that = this;
- buttons[ mediaWiki.msg( 'wikieditor-toolbar-tool-link-lookslikeinternal-int' ) ] =
- function() {
- $( '#wikieditor-toolbar-link-int-target' ).val( match[1] ).change();
- $(this).dialog( 'close' );
- };
- buttons[ mediaWiki.msg( 'wikieditor-toolbar-tool-link-lookslikeinternal-ext' ) ] =
- function() {
- $(that).data( 'ignoreLooksInternal', true );
- $(that).closest( '.ui-dialog' ).find( 'button:first' ).click();
- $(that).data( 'ignoreLooksInternal', false );
- $(this).dialog( 'close' );
- };
- $.wikiEditor.modules.dialogs.quickDialog(
- mediaWiki.msg( 'wikieditor-toolbar-tool-link-lookslikeinternal', match[1] ),
- { buttons: buttons }
- );
+ var request = $.ajax( {
+ url: mw.util.wikiScript( 'api' ),
+ data: {
+ action: 'opensearch',
+ search: title,
+ namespace: 0,
+ suggest: '',
+ format: 'json'
+ },
+ dataType: 'json',
+ success: function ( data ) {
+ cache[title] = data[1];
+ $(that).suggestions( 'suggestions', data[1] );
+ }
+ });
+ $(this).data( 'request', request );
+ },
+ cancel: function () {
+ var request = $(this).data( 'request' );
+ if ( request )
+ request.abort();
+ }
+ });
+ },
+ dialog: {
+ width: 500,
+ dialogClass: 'wikiEditor-toolbar-dialog',
+ buttons: {
+ 'wikieditor-toolbar-tool-link-insert': function () {
+ function escapeInternalText( s ) {
+ return s.replace( /(\]{2,})/g, '<nowiki>$1</nowiki>' );
+ }
+ function escapeExternalTarget( s ) {
+ return s.replace( / /g, '%20' )
+ .replace( /\[/g, '%5B' )
+ .replace( /\]/g, '%5D' );
+ }
+ function escapeExternalText( s ) {
+ return s.replace( /(\]+)/g, '<nowiki>$1</nowiki>' );
+ }
+ var insertText = '';
+ var whitespace = $( '#wikieditor-toolbar-link-dialog' ).data( 'whitespace' );
+ var target = $( '#wikieditor-toolbar-link-int-target' ).val();
+ var text = $( '#wikieditor-toolbar-link-int-text' ).val();
+ // check if the tooltips were passed as target or text
+ if ( $( '#wikieditor-toolbar-link-int-target' ).data( 'tooltip-mode' ) )
+ target = "";
+ if ( $( '#wikieditor-toolbar-link-int-text' ).data( 'tooltip-mode' ) )
+ text = "";
+ if ( target === '' ) {
+ alert( mw.msg( 'wikieditor-toolbar-tool-link-empty' ) );
return;
}
+ if ( $.trim( text ) === '' ) {
+ // [[Foo| ]] creates an invisible link
+ // Instead, generate [[Foo|]]
+ text = '';
+ }
+ if ( $( '#wikieditor-toolbar-link-type-int' ).is( ':checked' ) ) {
+ // FIXME: Exactly how fragile is this?
+ if ( $( '#wikieditor-toolbar-link-int-target-status-invalid' ).is( ':visible' ) ) {
+ // Refuse to add links to invalid titles
+ alert( mw.msg( 'wikieditor-toolbar-tool-link-int-invalid' ) );
+ return;
+ }
- var escTarget = escapeExternalTarget( target );
- var escText = escapeExternalText( text );
+ if ( target === text || !text.length )
+ insertText = '[[' + target + ']]';
+ else
+ insertText = '[[' + target + '|' + escapeInternalText( text ) + ']]';
+ } else {
+ // Prepend http:// if there is no protocol
+ if ( !target.match( /^[a-z]+:\/\/./ ) )
+ target = 'http://' + target;
- if ( escTarget == escText )
- insertText = escTarget;
- else if ( text == '' )
- insertText = '[' + escTarget + ']';
- else
- insertText = '[' + escTarget + ' ' + escText + ']';
- }
- // Preserve whitespace in selection when replacing
- if ( whitespace ) insertText = whitespace[0] + insertText + whitespace[1];
- $(this).dialog( 'close' );
- $.wikiEditor.modules.toolbar.fn.doAction( $(this).data( 'context' ), {
- type: 'replace',
- options: {
- pre: insertText
+ // Detect if this is really an internal link in disguise
+ var match = target.match( $(this).data( 'articlePathRegex' ) );
+ if ( match && !$(this).data( 'ignoreLooksInternal' ) ) {
+ var buttons = { };
+ var that = this;
+ buttons[ mw.msg( 'wikieditor-toolbar-tool-link-lookslikeinternal-int' ) ] =
+ function () {
+ $( '#wikieditor-toolbar-link-int-target' ).val( match[1] ).change();
+ $(this).dialog( 'close' );
+ };
+ buttons[ mw.msg( 'wikieditor-toolbar-tool-link-lookslikeinternal-ext' ) ] =
+ function () {
+ $(that).data( 'ignoreLooksInternal', true );
+ $(that).closest( '.ui-dialog' ).find( 'button:first' ).click();
+ $(that).data( 'ignoreLooksInternal', false );
+ $(this).dialog( 'close' );
+ };
+ $.wikiEditor.modules.dialogs.quickDialog(
+ mw.msg( 'wikieditor-toolbar-tool-link-lookslikeinternal', match[1] ),
+ { buttons: buttons }
+ );
+ return;
+ }
+
+ var escTarget = escapeExternalTarget( target );
+ var escText = escapeExternalText( text );
+
+ if ( escTarget === escText )
+ insertText = escTarget;
+ else if ( text === '' )
+ insertText = '[' + escTarget + ']';
+ else
+ insertText = '[' + escTarget + ' ' + escText + ']';
+ }
+ // Preserve whitespace in selection when replacing
+ if ( whitespace ) {
+ insertText = whitespace[0] + insertText + whitespace[1];
}
- }, $(this) );
+ $(this).dialog( 'close' );
+ $.wikiEditor.modules.toolbar.fn.doAction( $(this).data( 'context' ), {
+ type: 'replace',
+ options: {
+ pre: insertText
+ }
+ }, $(this) );
- // Blank form
- $( '#wikieditor-toolbar-link-int-target, #wikieditor-toolbar-link-int-text' ).val( '' );
- $( '#wikieditor-toolbar-link-type-int, #wikieditor-toolbar-link-type-ext' )
- .attr( 'checked', '' );
+ // Blank form
+ $( '#wikieditor-toolbar-link-int-target, #wikieditor-toolbar-link-int-text' ).val( '' );
+ $( '#wikieditor-toolbar-link-type-int, #wikieditor-toolbar-link-type-ext' )
+ .attr( 'checked', '' );
+ },
+ 'wikieditor-toolbar-tool-link-cancel': function () {
+ // Clear any saved selection state
+ var context = $(this).data( 'context' );
+ context.fn.restoreCursorAndScrollTop();
+ $(this).dialog( 'close' );
+ }
},
- 'wikieditor-toolbar-tool-link-cancel': function() {
- // Clear any saved selection state
+ open: function () {
+ var target, text, type, matches;
+
+ // Obtain the server name without the protocol. wgServer may be protocol-relative
+ var serverName = mw.config.get( 'wgServer' ).replace( /^(https?:)?\/\//, '' );
+ // Cache the articlepath regex
+ $(this).data( 'articlePathRegex', new RegExp(
+ '^https?://' + $.escapeRE( serverName + mw.config.get( 'wgArticlePath' ) )
+ .replace( /\\\$1/g, '(.*)' ) + '$'
+ ) );
+ // Pre-fill the text fields based on the current selection
var context = $(this).data( 'context' );
+ // Restore and immediately save selection state, needed for inserting stuff later
context.fn.restoreCursorAndScrollTop();
- $(this).dialog( 'close' );
- }
- },
- open: function() {
- // Obtain the server name without the protocol. wgServer may be protocol-relative
- var serverName = mw.config.get( 'wgServer' ).replace( /^(https?:)?\/\//, '' );
- // Cache the articlepath regex
- $(this).data( 'articlePathRegex', new RegExp(
- '^https?://' + $.escapeRE( serverName + mw.config.get( 'wgArticlePath' ) )
- .replace( /\\\$1/g, '(.*)' ) + '$'
- ) );
- // Pre-fill the text fields based on the current selection
- var context = $(this).data( 'context' );
- // Restore and immediately save selection state, needed for inserting stuff later
- context.fn.restoreCursorAndScrollTop();
- context.fn.saveCursorAndScrollTop();
- var selection = context.$textarea.textSelection( 'getSelection' );
- $( '#wikieditor-toolbar-link-int-target' ).focus();
- // Trigger the change event, so the link status indicator is up to date
- $( '#wikieditor-toolbar-link-int-target' ).change();
- $( '#wikieditor-toolbar-link-dialog' ).data( 'whitespace', [ '', '' ] );
- if ( selection != '' ) {
- var target, text, type;
- var matches;
- if ( ( matches = selection.match( /^(\s*)\[\[([^\]\|]+)(\|([^\]\|]*))?\]\](\s*)$/ ) ) ) {
- // [[foo|bar]] or [[foo]]
- target = matches[2];
- text = ( matches[4] ? matches[4] : matches[2] );
- type = 'int';
- // Preserve whitespace when replacing
- $( '#wikieditor-toolbar-link-dialog' ).data( 'whitespace', [ matches[1], matches[5] ] );
- } else if ( ( matches = selection.match( /^(\s*)\[([^\] ]+)( ([^\]]+))?\](\s*)$/ ) ) ) {
- // [http://www.example.com foo] or [http://www.example.com]
- target = matches[2];
- text = ( matches[4] ? matches[4] : '' );
- type = 'ext';
- // Preserve whitespace when replacing
- $( '#wikieditor-toolbar-link-dialog' ).data( 'whitespace', [ matches[1], matches[5] ] );
- } else {
- // Trim any leading and trailing whitespace from the selection,
- // but preserve it when replacing
- target = text = $.trim( selection );
- if ( target.length < selection.length ) {
- $( '#wikieditor-toolbar-link-dialog' ).data( 'whitespace', [
- selection.substr( 0, selection.indexOf( target.charAt( 0 ) ) ),
- selection.substr(
- selection.lastIndexOf( target.charAt( target.length - 1 ) ) + 1
- ) ]
- );
+ context.fn.saveCursorAndScrollTop();
+ var selection = context.$textarea.textSelection( 'getSelection' );
+ $( '#wikieditor-toolbar-link-int-target' ).focus();
+ // Trigger the change event, so the link status indicator is up to date
+ $( '#wikieditor-toolbar-link-int-target' ).change();
+ $( '#wikieditor-toolbar-link-dialog' ).data( 'whitespace', [ '', '' ] );
+ if ( selection !== '' ) {
+ if ( ( matches = selection.match( /^(\s*)\[\[([^\]\|]+)(\|([^\]\|]*))?\]\](\s*)$/ ) ) ) {
+ // [[foo|bar]] or [[foo]]
+ target = matches[2];
+ text = ( matches[4] ? matches[4] : matches[2] );
+ type = 'int';
+ // Preserve whitespace when replacing
+ $( '#wikieditor-toolbar-link-dialog' ).data( 'whitespace', [ matches[1], matches[5] ] );
+ } else if ( ( matches = selection.match( /^(\s*)\[([^\] ]+)( ([^\]]+))?\](\s*)$/ ) ) ) {
+ // [http://www.example.com foo] or [http://www.example.com]
+ target = matches[2];
+ text = ( matches[4] || '' );
+ type = 'ext';
+ // Preserve whitespace when replacing
+ $( '#wikieditor-toolbar-link-dialog' ).data( 'whitespace', [ matches[1], matches[5] ] );
+ } else {
+ // Trim any leading and trailing whitespace from the selection,
+ // but preserve it when replacing
+ target = text = $.trim( selection );
+ if ( target.length < selection.length ) {
+ $( '#wikieditor-toolbar-link-dialog' ).data( 'whitespace', [
+ selection.substr( 0, selection.indexOf( target.charAt( 0 ) ) ),
+ selection.substr(
+ selection.lastIndexOf( target.charAt( target.length - 1 ) ) + 1
+ ) ]
+ );
+ }
}
- }
- // Change the value by calling val() doesn't trigger the change event, so let's do that
- // ourselves
- if ( typeof text != 'undefined' )
- $( '#wikieditor-toolbar-link-int-text' ).val( text ).change();
- if ( typeof target != 'undefined' )
- $( '#wikieditor-toolbar-link-int-target' ).val( target ).change();
- if ( typeof type != 'undefined' )
- $( '#wikieditor-toolbar-link-' + type ).attr( 'checked', 'checked' );
- }
- $( '#wikieditor-toolbar-link-int-text' ).data( 'untouched',
- $( '#wikieditor-toolbar-link-int-text' ).val() ==
- $( '#wikieditor-toolbar-link-int-target' ).val() ||
- $( '#wikieditor-toolbar-link-int-text' ).hasClass( 'wikieditor-toolbar-dialog-hint' )
- );
- $( '#wikieditor-toolbar-link-int-target' ).suggestions();
+ // Change the value by calling val() doesn't trigger the change event, so let's do that
+ // ourselves
+ if ( typeof text !== 'undefined' )
+ $( '#wikieditor-toolbar-link-int-text' ).val( text ).change();
+ if ( typeof target !== 'undefined' )
+ $( '#wikieditor-toolbar-link-int-target' ).val( target ).change();
+ if ( typeof type !== 'undefined' )
+ $( '#wikieditor-toolbar-link-' + type ).prop( 'checked', true );
+ }
+ $( '#wikieditor-toolbar-link-int-text' ).data( 'untouched',
+ $( '#wikieditor-toolbar-link-int-text' ).val() ===
+ $( '#wikieditor-toolbar-link-int-target' ).val() ||
+ $( '#wikieditor-toolbar-link-int-text' ).hasClass( 'wikieditor-toolbar-dialog-hint' )
+ );
+ $( '#wikieditor-toolbar-link-int-target' ).suggestions();
- //don't overwrite user's text
- if( selection != '' ){
- $( '#wikieditor-toolbar-link-int-text' ).data( 'untouched', false );
- }
+ // don't overwrite user's text
+ if ( selection !== '' ){
+ $( '#wikieditor-toolbar-link-int-text' ).data( 'untouched', false );
+ }
- $( '#wikieditor-toolbar-link-int-text, #wikiedit-toolbar-link-int-target' )
- .each( function() {
- if ( $(this).val() == '' )
- $(this).parent().find( 'label' ).show();
- });
+ $( '#wikieditor-toolbar-link-int-text, #wikiedit-toolbar-link-int-target' )
+ .each( function () {
+ if ( $(this).val() === '' )
+ $(this).parent().find( 'label' ).show();
+ });
- if ( !( $(this).data( 'dialogkeypressset' ) ) ) {
- $(this).data( 'dialogkeypressset', true );
- // Execute the action associated with the first button
- // when the user presses Enter
- $(this).closest( '.ui-dialog' ).keypress( function( e ) {
- if ( ( e.keyCode || e.which ) == 13 ) {
- var button = $(this).data( 'dialogaction' ) || $(this).find( 'button:first' );
- button.click();
- e.preventDefault();
- }
- });
+ if ( !$(this).data( 'dialogkeypressset' ) ) {
+ $(this).data( 'dialogkeypressset', true );
+ // Execute the action associated with the first button
+ // when the user presses Enter
+ $(this).closest( '.ui-dialog' ).keypress( function ( e ) {
+ if ( ( e.keyCode || e.which ) == 13 ) {
+ var button = $(this).data( 'dialogaction' ) || $(this).find( 'button:first' );
+ button.click();
+ e.preventDefault();
+ }
+ });
- // Make tabbing to a button and pressing
- // Enter do what people expect
- $(this).closest( '.ui-dialog' ).find( 'button' ).focus( function() {
- $(this).closest( '.ui-dialog' ).data( 'dialogaction', this );
- });
+ // Make tabbing to a button and pressing
+ // Enter do what people expect
+ $(this).closest( '.ui-dialog' ).find( 'button' ).focus( function () {
+ $(this).closest( '.ui-dialog' ).data( 'dialogaction', this );
+ });
+ }
}
}
- }
- },
- 'insert-reference': {
- titleMsg: 'wikieditor-toolbar-tool-reference-title',
- id: 'wikieditor-toolbar-reference-dialog',
- html: '\
- <div class="wikieditor-toolbar-dialog-wrapper">\
- <fieldset><div class="wikieditor-toolbar-table-form">\
- <div class="wikieditor-toolbar-field-wrapper">\
- <label for="wikieditor-toolbar-reference-text"\
- rel="wikieditor-toolbar-tool-reference-text"></label>\
- <input type="text" id="wikieditor-toolbar-reference-text" />\
- </div>\
- </div></fieldset>\
- </div>',
- init: function() {
- // Insert translated strings into labels
- $( this ).find( '[rel]' ).each( function() {
- $( this ).text( mediaWiki.msg( $( this ).attr( 'rel' ) ) );
- } );
-
},
- dialog: {
- dialogClass: 'wikiEditor-toolbar-dialog',
- width: 590,
- buttons: {
- 'wikieditor-toolbar-tool-reference-insert': function() {
- var insertText = $( '#wikieditor-toolbar-reference-text' ).val();
- var whitespace = $( '#wikieditor-toolbar-reference-dialog' ).data( 'whitespace' );
- var attributes = $( '#wikieditor-toolbar-reference-dialog' ).data( 'attributes' );
- // Close the dialog
- $( this ).dialog( 'close' );
- $.wikiEditor.modules.toolbar.fn.doAction(
- $( this ).data( 'context' ),
- {
- type: 'replace',
- options: {
- pre: whitespace[0] + '<ref' + attributes + '>',
- peri: insertText,
- post: '</ref>' + whitespace[1]
- }
- },
- $( this )
- );
- // Restore form state
- $( '#wikieditor-toolbar-reference-text' ).val( "" );
+ 'insert-reference': {
+ titleMsg: 'wikieditor-toolbar-tool-reference-title',
+ id: 'wikieditor-toolbar-reference-dialog',
+ html: '\
+ <div class="wikieditor-toolbar-dialog-wrapper">\
+ <fieldset><div class="wikieditor-toolbar-table-form">\
+ <div class="wikieditor-toolbar-field-wrapper">\
+ <label for="wikieditor-toolbar-reference-text"\
+ rel="wikieditor-toolbar-tool-reference-text"></label>\
+ <input type="text" id="wikieditor-toolbar-reference-text"/>\
+ </div>\
+ </div></fieldset>\
+ </div>',
+ init: function () {
+ // Insert translated strings into labels
+ $( this ).find( '[rel]' ).each( function () {
+ $( this ).text( mw.msg( $( this ).attr( 'rel' ) ) );
+ } );
+
+ },
+ dialog: {
+ dialogClass: 'wikiEditor-toolbar-dialog',
+ width: 590,
+ buttons: {
+ 'wikieditor-toolbar-tool-reference-insert': function () {
+ var insertText = $( '#wikieditor-toolbar-reference-text' ).val();
+ var whitespace = $( '#wikieditor-toolbar-reference-dialog' ).data( 'whitespace' );
+ var attributes = $( '#wikieditor-toolbar-reference-dialog' ).data( 'attributes' );
+ // Close the dialog
+ $( this ).dialog( 'close' );
+ $.wikiEditor.modules.toolbar.fn.doAction(
+ $( this ).data( 'context' ),
+ {
+ type: 'replace',
+ options: {
+ pre: whitespace[0] + '<ref' + attributes + '>',
+ peri: insertText,
+ post: '</ref>' + whitespace[1]
+ }
+ },
+ $( this )
+ );
+ // Restore form state
+ $( '#wikieditor-toolbar-reference-text' ).val( '' );
+ },
+ 'wikieditor-toolbar-tool-reference-cancel': function () {
+ // Clear any saved selection state
+ var context = $( this ).data( 'context' );
+ context.fn.restoreCursorAndScrollTop();
+ $( this ).dialog( 'close' );
+ }
},
- 'wikieditor-toolbar-tool-reference-cancel': function() {
- // Clear any saved selection state
- var context = $( this ).data( 'context' );
+ open: function () {
+ // Pre-fill the text fields based on the current selection
+ var context = $(this).data( 'context' );
+ // Restore and immediately save selection state, needed for inserting stuff later
context.fn.restoreCursorAndScrollTop();
- $( this ).dialog( 'close' );
- }
- },
- open: function() {
- // Pre-fill the text fields based on the current selection
- var context = $(this).data( 'context' );
- // Restore and immediately save selection state, needed for inserting stuff later
- context.fn.restoreCursorAndScrollTop();
- context.fn.saveCursorAndScrollTop();
- var selection = context.$textarea.textSelection( 'getSelection' );
- // set focus
- $( '#wikieditor-toolbar-reference-text' ).focus();
- $( '#wikieditor-toolbar-reference-dialog' )
- .data( 'whitespace', [ '', '' ] )
- .data( 'attributes', '' );
- if ( selection != '' ) {
- var matches, text;
- if ( ( matches = selection.match( /^(\s*)<ref([^\>]*)>([^\<]*)<\/ref\>(\s*)$/ ) ) ) {
- text = matches[3];
- // Preserve whitespace when replacing
- $( '#wikieditor-toolbar-reference-dialog' )
- .data( 'whitespace', [ matches[1], matches[4] ] );
- $( '#wikieditor-toolbar-reference-dialog' ).data( 'attributes', matches[2] );
- } else {
- text = selection;
+ context.fn.saveCursorAndScrollTop();
+ var selection = context.$textarea.textSelection( 'getSelection' );
+ // set focus
+ $( '#wikieditor-toolbar-reference-text' ).focus();
+ $( '#wikieditor-toolbar-reference-dialog' )
+ .data( 'whitespace', [ '', '' ] )
+ .data( 'attributes', '' );
+ if ( selection !== '' ) {
+ var matches, text;
+ if ( ( matches = selection.match( /^(\s*)<ref([^\>]*)>([^<]*)<\/ref\>(\s*)$/ ) ) ) {
+ text = matches[3];
+ // Preserve whitespace when replacing
+ $( '#wikieditor-toolbar-reference-dialog' )
+ .data( 'whitespace', [ matches[1], matches[4] ] );
+ $( '#wikieditor-toolbar-reference-dialog' ).data( 'attributes', matches[2] );
+ } else {
+ text = selection;
+ }
+ $( '#wikieditor-toolbar-reference-text' ).val( text );
+ }
+ if ( !( $( this ).data( 'dialogkeypressset' ) ) ) {
+ $( this ).data( 'dialogkeypressset', true );
+ // Execute the action associated with the first button
+ // when the user presses Enter
+ $( this ).closest( '.ui-dialog' ).keypress( function ( e ) {
+ if ( ( e.keyCode || e.which ) == 13 ) {
+ var button = $( this ).data( 'dialogaction' ) || $( this ).find( 'button:first' );
+ button.click();
+ e.preventDefault();
+ }
+ } );
+ // Make tabbing to a button and pressing
+ // Enter do what people expect
+ $( this ).closest( '.ui-dialog' ).find( 'button' ).focus( function () {
+ $( this ).closest( '.ui-dialog' ).data( 'dialogaction', this );
+ } );
}
- $( '#wikieditor-toolbar-reference-text' ).val( text );
}
- if ( !( $( this ).data( 'dialogkeypressset' ) ) ) {
- $( this ).data( 'dialogkeypressset', true );
- // Execute the action associated with the first button
- // when the user presses Enter
- $( this ).closest( '.ui-dialog' ).keypress( function( e ) {
- if ( ( e.keyCode || e.which ) == 13 ) {
- var button = $( this ).data( 'dialogaction' ) || $( this ).find( 'button:first' );
- button.click();
- e.preventDefault();
+ }
+ },
+ 'insert-file': {
+ titleMsg: 'wikieditor-toolbar-tool-file-title',
+ id: 'wikieditor-toolbar-file-dialog',
+ html: '\
+ <fieldset>\
+ <div class="wikieditor-toolbar-field-wrapper">\
+ <label for="wikieditor-toolbar-file-target" rel="wikieditor-toolbar-file-target" id="wikieditor-toolbar-tool-file-target-label"></label>\
+ <input type="text" id="wikieditor-toolbar-file-target"/>\
+ </div>\
+ <div class="wikieditor-toolbar-field-wrapper">\
+ <label for="wikieditor-toolbar-file-caption" rel="wikieditor-toolbar-file-caption"></label>\
+ <input type="text" id="wikieditor-toolbar-file-caption"/>\
+ </div>\
+ <div class="wikieditor-toolbar-file-options">\
+ <div class="wikieditor-toolbar-field-wrapper">\
+ <label for="wikieditor-toolbar-file-size" rel="wikieditor-toolbar-file-size"></label><br/>\
+ <input type="text" id="wikieditor-toolbar-file-size" size="5"/>\
+ </div>\
+ <div class="wikieditor-toolbar-field-wrapper">\
+ <label for="wikieditor-toolbar-file-float" rel="wikieditor-toolbar-file-float"></label><br/>\
+ <select type="text" id="wikieditor-toolbar-file-float">\
+ <option value="default" selected="selected" rel="wikieditor-toolbar-file-default"></option>\
+ <option data-i18n-magic="img_none"></option>\
+ <option data-i18n-magic="img_center"></option>\
+ <option data-i18n-magic="img_left"></option>\
+ <option data-i18n-magic="img_right"></option>\
+ </select>\
+ </div>\
+ <div class="wikieditor-toolbar-field-wrapper">\
+ <label for="wikieditor-toolbar-file-format" rel="wikieditor-toolbar-file-format"></label><br/>\
+ <select type="text" id="wikieditor-toolbar-file-format">\
+ <option selected="selected" data-i18n-magic="img_thumbnail">thumb</option>\
+ <option data-i18n-magic="img_framed"></option>\
+ <option data-i18n-magic="img_frameless"></option>\
+ <option value="default" rel="wikieditor-toolbar-file-format-none"></option>\
+ </select>\
+ </div>\
+ </div>\
+ </fieldset>',
+ init: function () {
+ var magicWordsI18N = mw.config.get( 'wgWikiEditorMagicWords' );
+ var defaultMsg = mw.msg( 'wikieditor-toolbar-file-default' );
+ $( this )
+ .find( '[data-i18n-magic]' )
+ .text( function () {
+ return magicWordsI18N[ $( this ).attr( 'data-i18n-magic' ) ];
+ })
+ .removeAttr( 'data-i18n-magic' )
+ .end()
+ .find( '#wikieditor-toolbar-file-size' )
+ .attr( 'placeholder', defaultMsg )
+ // The message may be long in some languages
+ .attr( 'size', defaultMsg.length )
+ .end()
+ .find( '[rel]' )
+ .text( function () {
+ return mw.msg( $( this ).attr( 'rel' ) );
+ })
+ .removeAttr( 'rel' )
+ .end();
+ },
+ dialog: {
+ resizable: false,
+ dialogClass: 'wikiEditor-toolbar-dialog',
+ width: 590,
+ buttons: {
+ 'wikieditor-toolbar-tool-file-insert': function () {
+ var fileName, caption, fileFloat, fileFormat, fileSize, fileTitle,
+ options, fileUse,
+ hasPxRgx = /.+px$/;
+ fileName = $( '#wikieditor-toolbar-file-target' ).val();
+ caption = $( '#wikieditor-toolbar-file-caption' ).val();
+ fileFloat = $( '#wikieditor-toolbar-file-float' ).val();
+ fileFormat = $( '#wikieditor-toolbar-file-format' ).val();
+ fileSize = $( '#wikieditor-toolbar-file-size' ).val();
+ // Append px to end to size if not already contains it
+ if ( fileSize !== '' && !hasPxRgx.test( fileSize ) ) {
+ fileSize += 'px';
}
- } );
- // Make tabbing to a button and pressing
- // Enter do what people expect
- $( this ).closest( '.ui-dialog' ).find( 'button' ).focus( function() {
- $( this ).closest( '.ui-dialog' ).data( 'dialogaction', this );
- } );
+ if ( fileName !== '' ) {
+ fileTitle = new mw.Title( fileName );
+ // Append file namespace prefix to filename if not already contains it
+ if ( fileTitle.getNamespaceId() !== 6 ){
+ fileTitle = new mw.Title( fileName, 6 );
+ }
+ fileName = fileTitle.toText();
+ }
+ options = [ fileSize, fileFormat, fileFloat ];
+ // Filter empty values
+ options = $.grep( options, function ( val ) {
+ return val.length && val !== 'default';
+ } );
+ if ( caption.length ) {
+ options.push( caption );
+ }
+ fileUse = options.length === 0 ? fileName : ( fileName + '|' + options.join( '|' ) );
+ $( this ).dialog( 'close' );
+ $.wikiEditor.modules.toolbar.fn.doAction(
+ $( this ).data( 'context' ),
+ {
+ type: 'replace',
+ options: {
+ pre: '[[',
+ peri: fileUse,
+ post: ']]',
+ ownline: true
+ }
+ },
+ $( this )
+ );
+
+ // Restore form state
+ $( ['#wikieditor-toolbar-file-target',
+ '#wikieditor-toolbar-file-caption',
+ '#wikieditor-toolbar-file-size',
+ '#wikieditor-toolbar-file-float',
+ '#wikieditor-toolbar-file-format'].join( ',' )
+ ).val( '' );
+ },
+ 'wikieditor-toolbar-tool-file-cancel': function () {
+ $( this ).dialog( 'close' );
+ }
+ },
+ open: function () {
+ $( '#wikieditor-toolbar-file-target' ).focus();
+ if ( !( $( this ).data( 'dialogkeypressset' ) ) ) {
+ $( this ).data( 'dialogkeypressset', true );
+ // Execute the action associated with the first button
+ // when the user presses Enter
+ $( this ).closest( '.ui-dialog' ).keypress( function( e ) {
+ if ( e.which === 13 ) {
+ var button = $( this ).data( 'dialogaction' ) ||
+ $( this ).find( 'button:first' );
+ button.click();
+ e.preventDefault();
+ }
+ });
+
+ // Make tabbing to a button and pressing
+ // Enter do what people expect
+ $( this ).closest( '.ui-dialog' ).find( 'button' ).focus( function() {
+ $( this ).closest( '.ui-dialog' ).data( 'dialogaction', this );
+ });
+ }
}
}
- }
- },
- 'insert-table': {
- titleMsg: 'wikieditor-toolbar-tool-table-title',
- id: 'wikieditor-toolbar-table-dialog',
- // FIXME: Localize 'x'?
- html: '\
- <div class="wikieditor-toolbar-dialog-wrapper">\
- <fieldset><div class="wikieditor-toolbar-table-form">\
- <div class="wikieditor-toolbar-field-wrapper">\
- <input type="checkbox" id="wikieditor-toolbar-table-dimensions-header" checked />\
- <label for="wikieditor-toolbar-table-dimensions-header"\
- rel="wikieditor-toolbar-tool-table-dimensions-header"></label>\
- </div>\
- <div class="wikieditor-toolbar-field-wrapper">\
- <input type="checkbox" id="wikieditor-toolbar-table-wikitable" checked />\
- <label for="wikieditor-toolbar-table-wikitable" rel="wikieditor-toolbar-tool-table-wikitable"></label>\
- </div>\
- <div class="wikieditor-toolbar-field-wrapper">\
- <input type="checkbox" id="wikieditor-toolbar-table-sortable" />\
- <label for="wikieditor-toolbar-table-sortable" rel="wikieditor-toolbar-tool-table-sortable"></label>\
- </div>\
- <div class="wikieditor-toolbar-table-dimension-fields">\
+ },
+ 'insert-table': {
+ titleMsg: 'wikieditor-toolbar-tool-table-title',
+ id: 'wikieditor-toolbar-table-dialog',
+ // FIXME: Localize 'x'?
+ html: '\
+ <div class="wikieditor-toolbar-dialog-wrapper">\
+ <fieldset><div class="wikieditor-toolbar-table-form">\
<div class="wikieditor-toolbar-field-wrapper">\
- <label for="wikieditor-toolbar-table-dimensions-rows"\
- rel="wikieditor-toolbar-tool-table-dimensions-rows"></label><br />\
- <input type="text" id="wikieditor-toolbar-table-dimensions-rows" size="4" />\
+ <input type="checkbox" id="wikieditor-toolbar-table-dimensions-header" checked/>\
+ <label for="wikieditor-toolbar-table-dimensions-header"\
+ rel="wikieditor-toolbar-tool-table-dimensions-header"></label>\
</div>\
<div class="wikieditor-toolbar-field-wrapper">\
- <label for="wikieditor-toolbar-table-dimensions-columns"\
- rel="wikieditor-toolbar-tool-table-dimensions-columns"></label><br />\
- <input type="text" id="wikieditor-toolbar-table-dimensions-columns" size="4" />\
+ <input type="checkbox" id="wikieditor-toolbar-table-wikitable" checked/>\
+ <label for="wikieditor-toolbar-table-wikitable" rel="wikieditor-toolbar-tool-table-wikitable"></label>\
</div>\
- </div>\
- </div></fieldset>\
- <div class="wikieditor-toolbar-table-preview-wrapper" >\
- <span rel="wikieditor-toolbar-tool-table-example"></span>\
- <div class="wikieditor-toolbar-table-preview-content">\
- <table id="wikieditor-toolbar-table-preview" class="wikieditor-toolbar-table-preview wikitable">\
- <thead>\
- <tr class="wikieditor-toolbar-table-preview-header">\
- <th rel="wikieditor-toolbar-tool-table-example-header"></th>\
- <th rel="wikieditor-toolbar-tool-table-example-header"></th>\
- <th rel="wikieditor-toolbar-tool-table-example-header"></th>\
- </tr>\
- </thead><tbody>\
- <tr class="wikieditor-toolbar-table-preview-hidden" style="display: none;">\
- <td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>\
- <td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>\
- <td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>\
- </tr><tr>\
- <td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>\
- <td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>\
- <td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>\
- </tr><tr>\
- <td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>\
- <td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>\
- <td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>\
- </tr><tr>\
- <td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>\
- <td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>\
- <td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>\
- </tr>\
- </tbody>\
- </table>\
- </div>\
- </div></div>',
- init: function() {
- $(this).find( '[rel]' ).each( function() {
- $(this).text( mediaWiki.msg( $(this).attr( 'rel' ) ) );
- });
- // Set tabindexes on form fields
- $.wikiEditor.modules.dialogs.fn.setTabindexes( $(this).find( 'input' ).not( '[tabindex]' ) );
+ <div class="wikieditor-toolbar-field-wrapper">\
+ <input type="checkbox" id="wikieditor-toolbar-table-sortable"/>\
+ <label for="wikieditor-toolbar-table-sortable" rel="wikieditor-toolbar-tool-table-sortable"></label>\
+ </div>\
+ <div class="wikieditor-toolbar-table-dimension-fields">\
+ <div class="wikieditor-toolbar-field-wrapper">\
+ <label for="wikieditor-toolbar-table-dimensions-rows"\
+ rel="wikieditor-toolbar-tool-table-dimensions-rows"></label><br/>\
+ <input type="number" min="1" max="1000" id="wikieditor-toolbar-table-dimensions-rows" size="4"/>\
+ </div>\
+ <div class="wikieditor-toolbar-field-wrapper">\
+ <label for="wikieditor-toolbar-table-dimensions-columns"\
+ rel="wikieditor-toolbar-tool-table-dimensions-columns"></label><br/>\
+ <input type="number" min="1" max="1000" id="wikieditor-toolbar-table-dimensions-columns" size="4"/>\
+ </div>\
+ </div>\
+ </div></fieldset>\
+ <div class="wikieditor-toolbar-table-preview-wrapper" >\
+ <span rel="wikieditor-toolbar-tool-table-example"></span>\
+ <div class="wikieditor-toolbar-table-preview-content">\
+ <table id="wikieditor-toolbar-table-preview" class="wikieditor-toolbar-table-preview wikitable">\
+ <thead>\
+ <tr class="wikieditor-toolbar-table-preview-header">\
+ <th rel="wikieditor-toolbar-tool-table-example-header"></th>\
+ <th rel="wikieditor-toolbar-tool-table-example-header"></th>\
+ <th rel="wikieditor-toolbar-tool-table-example-header"></th>\
+ </tr>\
+ </thead><tbody>\
+ <tr class="wikieditor-toolbar-table-preview-hidden" style="display: none;">\
+ <td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>\
+ <td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>\
+ <td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>\
+ </tr><tr>\
+ <td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>\
+ <td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>\
+ <td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>\
+ </tr><tr>\
+ <td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>\
+ <td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>\
+ <td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>\
+ </tr><tr>\
+ <td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>\
+ <td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>\
+ <td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>\
+ </tr>\
+ </tbody>\
+ </table>\
+ </div>\
+ </div></div>',
+ init: function () {
+ $(this).find( '[rel]' ).each( function () {
+ $(this).text( mw.msg( $(this).attr( 'rel' ) ) );
+ });
+ // Set tabindexes on form fields
+ $.wikiEditor.modules.dialogs.fn.setTabindexes( $(this).find( 'input' ).not( '[tabindex]' ) );
- $( '#wikieditor-toolbar-table-dimensions-rows' ).val( 3 );
- $( '#wikieditor-toolbar-table-dimensions-columns' ).val( 3 );
- $( '#wikieditor-toolbar-table-wikitable' ).click( function() {
- $( '.wikieditor-toolbar-table-preview' ).toggleClass( 'wikitable' );
- });
+ $( '#wikieditor-toolbar-table-dimensions-rows' ).val( 3 );
+ $( '#wikieditor-toolbar-table-dimensions-columns' ).val( 3 );
+ $( '#wikieditor-toolbar-table-wikitable' ).click( function () {
+ $( '.wikieditor-toolbar-table-preview' ).toggleClass( 'wikitable' );
+ });
- // Hack for sortable preview: dynamically adding
- // sortable class doesn't work, so we use a clone
- $( '#wikieditor-toolbar-table-preview' )
- .clone()
- .attr( 'id', 'wikieditor-toolbar-table-preview2' )
- .addClass( 'sortable' )
- .insertAfter( $( '#wikieditor-toolbar-table-preview' ) )
- .hide();
+ // Hack for sortable preview: dynamically adding
+ // sortable class doesn't work, so we use a clone
+ $( '#wikieditor-toolbar-table-preview' )
+ .clone()
+ .attr( 'id', 'wikieditor-toolbar-table-preview2' )
+ .addClass( 'sortable' )
+ .insertAfter( $( '#wikieditor-toolbar-table-preview' ) )
+ .hide();
- mw.loader.using( 'jquery.tablesorter', function() {
- $( '#wikieditor-toolbar-table-preview2' ).tablesorter();
- });
+ mw.loader.using( 'jquery.tablesorter', function () {
+ $( '#wikieditor-toolbar-table-preview2' ).tablesorter();
+ });
- $( '#wikieditor-toolbar-table-sortable' ).click( function() {
- // Swap the currently shown one clone with the other one
- $( '#wikieditor-toolbar-table-preview' )
- .hide()
- .attr( 'id', 'wikieditor-toolbar-table-preview3' );
- $( '#wikieditor-toolbar-table-preview2' )
- .attr( 'id', 'wikieditor-toolbar-table-preview' )
- .show();
- $( '#wikieditor-toolbar-table-preview3' ).attr( 'id', 'wikieditor-toolbar-table-preview2' );
- });
+ $( '#wikieditor-toolbar-table-sortable' ).click( function () {
+ // Swap the currently shown one clone with the other one
+ $( '#wikieditor-toolbar-table-preview' )
+ .hide()
+ .attr( 'id', 'wikieditor-toolbar-table-preview3' );
+ $( '#wikieditor-toolbar-table-preview2' )
+ .attr( 'id', 'wikieditor-toolbar-table-preview' )
+ .show();
+ $( '#wikieditor-toolbar-table-preview3' ).attr( 'id', 'wikieditor-toolbar-table-preview2' );
+ });
- $( '#wikieditor-toolbar-table-dimensions-header' ).click( function() {
- // Instead of show/hiding, switch the HTML around
- // We do this because the sortable tables script styles the first row,
- // visible or not
- var headerHTML = $( '.wikieditor-toolbar-table-preview-header' ).html();
- var hiddenHTML = $( '.wikieditor-toolbar-table-preview-hidden' ).html();
- $( '.wikieditor-toolbar-table-preview-header' ).html( hiddenHTML );
- $( '.wikieditor-toolbar-table-preview-hidden' ).html( headerHTML );
- if ( typeof jQuery.fn.tablesorter == 'function' ) {
- $( '#wikieditor-toolbar-table-preview, #wikieditor-toolbar-table-preview2' )
- .filter( '.sortable' )
- .tablesorter();
- }
- });
- },
- dialog: {
- resizable: false,
- dialogClass: 'wikiEditor-toolbar-dialog',
- width: 590,
- buttons: {
- 'wikieditor-toolbar-tool-table-insert': function() {
- var rowsVal = $( '#wikieditor-toolbar-table-dimensions-rows' ).val();
- var colsVal = $( '#wikieditor-toolbar-table-dimensions-columns' ).val();
- var rows = parseInt( rowsVal, 10 );
- var cols = parseInt( colsVal, 10 );
- var header = $( '#wikieditor-toolbar-table-dimensions-header' ).is( ':checked' ) ? 1 : 0;
- if ( isNaN( rows ) || isNaN( cols ) || rows != rowsVal || cols != colsVal ) {
- alert( mediaWiki.msg( 'wikieditor-toolbar-tool-table-invalidnumber' ) );
- return;
- }
- if ( rows + header == 0 || cols == 0 ) {
- alert( mediaWiki.msg( 'wikieditor-toolbar-tool-table-zero' ) );
- return;
- }
- if ( rows * cols > 1000 ) {
- alert( mediaWiki.msg( 'wikieditor-toolbar-tool-table-toomany', 1000 ) );
- return;
+ $( '#wikieditor-toolbar-table-dimensions-header' ).click( function () {
+ // Instead of show/hiding, switch the HTML around
+ // We do this because the sortable tables script styles the first row,
+ // visible or not
+ var headerHTML = $( '.wikieditor-toolbar-table-preview-header' ).html();
+ var hiddenHTML = $( '.wikieditor-toolbar-table-preview-hidden' ).html();
+ $( '.wikieditor-toolbar-table-preview-header' ).html( hiddenHTML );
+ $( '.wikieditor-toolbar-table-preview-hidden' ).html( headerHTML );
+ if ( typeof jQuery.fn.tablesorter == 'function' ) {
+ $( '#wikieditor-toolbar-table-preview, #wikieditor-toolbar-table-preview2' )
+ .filter( '.sortable' )
+ .tablesorter();
}
- var headerText = mediaWiki.msg( 'wikieditor-toolbar-tool-table-example-header' );
- var normalText = mediaWiki.msg( 'wikieditor-toolbar-tool-table-example' );
- var table = "";
- for ( var r = 0; r < rows + header; r++ ) {
- table += "|-\n";
- for ( var c = 0; c < cols; c++ ) {
- var isHeader = ( header && r == 0 );
- var delim = isHeader ? '!' : '|';
- if ( c > 0 ) {
- delim += delim;
- }
- table += delim + ' ' + ( isHeader ? headerText : normalText ) + ' ';
+ });
+ },
+ dialog: {
+ resizable: false,
+ dialogClass: 'wikiEditor-toolbar-dialog',
+ width: 590,
+ buttons: {
+ 'wikieditor-toolbar-tool-table-insert': function () {
+ var rowsVal = $( '#wikieditor-toolbar-table-dimensions-rows' ).val();
+ var colsVal = $( '#wikieditor-toolbar-table-dimensions-columns' ).val();
+ var rows = parseInt( rowsVal, 10 );
+ var cols = parseInt( colsVal, 10 );
+ var header = $( '#wikieditor-toolbar-table-dimensions-header' ).prop( 'checked' ) ? 1 : 0;
+ if ( isNaN( rows ) || isNaN( cols ) || String( rows ) !== rowsVal || String( cols ) !== colsVal || rowsVal < 0 || colsVal < 0 ) {
+ alert( mw.msg( 'wikieditor-toolbar-tool-table-invalidnumber' ) );
+ return;
}
- // Replace trailing space by newline
- // table[table.length - 1] is read-only
- table = table.substr( 0, table.length - 1 ) + "\n";
- }
- var classes = [];
- if ( $( '#wikieditor-toolbar-table-wikitable' ).is( ':checked' ) )
- classes.push( 'wikitable' );
- if ( $( '#wikieditor-toolbar-table-sortable' ).is( ':checked' ) )
- classes.push( 'sortable' );
- var classStr = classes.length > 0 ? ' class="' + classes.join( ' ' ) + '"' : '';
- $(this).dialog( 'close' );
- $.wikiEditor.modules.toolbar.fn.doAction(
- $(this).data( 'context' ),
- {
- type: 'replace',
- options: {
- pre: '{|' + classStr + "\n",
- peri: table,
- post: '|}',
- ownline: true
+ if ( rows + header === 0 || cols === 0 ) {
+ alert( mw.msg( 'wikieditor-toolbar-tool-table-zero' ) );
+ return;
+ }
+ if ( ( rows * cols ) > 1000 ) {
+ alert( mw.msg( 'wikieditor-toolbar-tool-table-toomany', 1000 ) );
+ return;
+ }
+ var headerText = mw.msg( 'wikieditor-toolbar-tool-table-example-header' );
+ var normalText = mw.msg( 'wikieditor-toolbar-tool-table-example' );
+ var table = "";
+ for ( var r = 0; r < rows + header; r++ ) {
+ table += "|-\n";
+ for ( var c = 0; c < cols; c++ ) {
+ var isHeader = ( header && r === 0 );
+ var delim = isHeader ? '!' : '|';
+ if ( c > 0 ) {
+ delim += delim;
+ }
+ table += delim + ' ' + ( isHeader ? headerText : normalText ) + ' ';
}
- },
- $(this)
- );
-
- // Restore form state
- $( '#wikieditor-toolbar-table-dimensions-rows' ).val( 3 );
- $( '#wikieditor-toolbar-table-dimensions-columns' ).val( 3 );
- // Simulate clicks instead of setting values, so the according
- // actions are performed
- if ( !$( '#wikieditor-toolbar-table-dimensions-header' ).is( ':checked' ) )
- $( '#wikieditor-toolbar-table-dimensions-header' ).click();
- if ( !$( '#wikieditor-toolbar-table-wikitable' ).is( ':checked' ) )
- $( '#wikieditor-toolbar-table-wikitable' ).click();
+ // Replace trailing space by newline
+ // table[table.length - 1] is read-only
+ table = table.substr( 0, table.length - 1 ) + "\n";
+ }
+ var classes = [];
+ if ( $( '#wikieditor-toolbar-table-wikitable' ).is( ':checked' ) )
+ classes.push( 'wikitable' );
if ( $( '#wikieditor-toolbar-table-sortable' ).is( ':checked' ) )
- $( '#wikieditor-toolbar-table-sortable' ).click();
+ classes.push( 'sortable' );
+ var classStr = classes.length > 0 ? ' class="' + classes.join( ' ' ) + '"' : '';
+ $(this).dialog( 'close' );
+ $.wikiEditor.modules.toolbar.fn.doAction(
+ $(this).data( 'context' ),
+ {
+ type: 'replace',
+ options: {
+ pre: '{|' + classStr + "\n",
+ peri: table,
+ post: '|}',
+ ownline: true
+ }
+ },
+ $(this)
+ );
+
+ // Restore form state
+ $( '#wikieditor-toolbar-table-dimensions-rows' ).val( 3 );
+ $( '#wikieditor-toolbar-table-dimensions-columns' ).val( 3 );
+ // Simulate clicks instead of setting values, so the according
+ // actions are performed
+ if ( !$( '#wikieditor-toolbar-table-dimensions-header' ).is( ':checked' ) )
+ $( '#wikieditor-toolbar-table-dimensions-header' ).click();
+ if ( !$( '#wikieditor-toolbar-table-wikitable' ).is( ':checked' ) )
+ $( '#wikieditor-toolbar-table-wikitable' ).click();
+ if ( $( '#wikieditor-toolbar-table-sortable' ).is( ':checked' ) )
+ $( '#wikieditor-toolbar-table-sortable' ).click();
+ },
+ 'wikieditor-toolbar-tool-table-cancel': function () {
+ $(this).dialog( 'close' );
+ }
},
- 'wikieditor-toolbar-tool-table-cancel': function() {
- $(this).dialog( 'close' );
- }
- },
- open: function() {
- $( '#wikieditor-toolbar-table-dimensions-rows' ).focus();
- if ( !( $(this).data( 'dialogkeypressset' ) ) ) {
- $(this).data( 'dialogkeypressset', true );
- // Execute the action associated with the first button
- // when the user presses Enter
- $(this).closest( '.ui-dialog' ).keypress( function( e ) {
- if ( ( e.keyCode || e.which ) == 13 ) {
- var button = $(this).data( 'dialogaction' ) || $(this).find( 'button:first' );
- button.click();
- e.preventDefault();
- }
- });
+ open: function () {
+ $( '#wikieditor-toolbar-table-dimensions-rows' ).focus();
+ if ( !( $(this).data( 'dialogkeypressset' ) ) ) {
+ $(this).data( 'dialogkeypressset', true );
+ // Execute the action associated with the first button
+ // when the user presses Enter
+ $(this).closest( '.ui-dialog' ).keypress( function ( e ) {
+ if ( ( e.keyCode || e.which ) == 13 ) {
+ var button = $(this).data( 'dialogaction' ) || $(this).find( 'button:first' );
+ button.click();
+ e.preventDefault();
+ }
+ });
- // Make tabbing to a button and pressing
- // Enter do what people expect
- $(this).closest( '.ui-dialog' ).find( 'button' ).focus( function() {
- $(this).closest( '.ui-dialog' ).data( 'dialogaction', this );
- });
+ // Make tabbing to a button and pressing
+ // Enter do what people expect
+ $(this).closest( '.ui-dialog' ).find( 'button' ).focus( function () {
+ $(this).closest( '.ui-dialog' ).data( 'dialogaction', this );
+ });
+ }
}
}
- }
- },
- 'search-and-replace': {
- 'browsers': {
- // Left-to-right languages
- 'ltr': {
- 'msie': false,
- 'firefox': [['>=', 2]],
- 'opera': false,
- 'safari': [['>=', 3]],
- 'chrome': [['>=', 3]]
- },
- // Right-to-left languages
- 'rtl': {
- 'msie': false,
- 'firefox': [['>=', 2]],
- 'opera': false,
- 'safari': [['>=', 3]],
- 'chrome': [['>=', 3]]
- }
},
- titleMsg: 'wikieditor-toolbar-tool-replace-title',
- id: 'wikieditor-toolbar-replace-dialog',
- html: '\
- <div id="wikieditor-toolbar-replace-message">\
- <div id="wikieditor-toolbar-replace-nomatch" rel="wikieditor-toolbar-tool-replace-nomatch"></div>\
- <div id="wikieditor-toolbar-replace-success"></div>\
- <div id="wikieditor-toolbar-replace-emptysearch" rel="wikieditor-toolbar-tool-replace-emptysearch"></div>\
- <div id="wikieditor-toolbar-replace-invalidregex"></div>\
- </div>\
- <fieldset>\
- <div class="wikieditor-toolbar-field-wrapper">\
- <label for="wikieditor-toolbar-replace-search" rel="wikieditor-toolbar-tool-replace-search"></label>\
- <input type="text" id="wikieditor-toolbar-replace-search" style="width: 100%;" />\
- </div>\
- <div class="wikieditor-toolbar-field-wrapper">\
- <label for="wikieditor-toolbar-replace-replace" rel="wikieditor-toolbar-tool-replace-replace"></label>\
- <input type="text" id="wikieditor-toolbar-replace-replace" style="width: 100%;" />\
- </div>\
- <div class="wikieditor-toolbar-field-wrapper">\
- <input type="checkbox" id="wikieditor-toolbar-replace-case" />\
- <label for="wikieditor-toolbar-replace-case" rel="wikieditor-toolbar-tool-replace-case"></label>\
- </div>\
- <div class="wikieditor-toolbar-field-wrapper">\
- <input type="checkbox" id="wikieditor-toolbar-replace-regex" />\
- <label for="wikieditor-toolbar-replace-regex" rel="wikieditor-toolbar-tool-replace-regex"></label>\
+ 'search-and-replace': {
+ 'browsers': {
+ // Left-to-right languages
+ 'ltr': {
+ 'msie': false,
+ 'firefox': [['>=', 2]],
+ 'opera': false,
+ 'safari': [['>=', 3]],
+ 'chrome': [['>=', 3]]
+ },
+ // Right-to-left languages
+ 'rtl': {
+ 'msie': false,
+ 'firefox': [['>=', 2]],
+ 'opera': false,
+ 'safari': [['>=', 3]],
+ 'chrome': [['>=', 3]]
+ }
+ },
+ titleMsg: 'wikieditor-toolbar-tool-replace-title',
+ id: 'wikieditor-toolbar-replace-dialog',
+ html: '\
+ <div id="wikieditor-toolbar-replace-message">\
+ <div id="wikieditor-toolbar-replace-nomatch" rel="wikieditor-toolbar-tool-replace-nomatch"></div>\
+ <div id="wikieditor-toolbar-replace-success"></div>\
+ <div id="wikieditor-toolbar-replace-emptysearch" rel="wikieditor-toolbar-tool-replace-emptysearch"></div>\
+ <div id="wikieditor-toolbar-replace-invalidregex"></div>\
</div>\
- </fieldset>',
- init: function() {
- $(this).find( '[rel]' ).each( function() {
- $(this).text( mediaWiki.msg( $(this).attr( 'rel' ) ) );
- });
- // Set tabindexes on form fields
- $.wikiEditor.modules.dialogs.fn.setTabindexes( $(this).find( 'input' ).not( '[tabindex]' ) );
+ <fieldset>\
+ <div class="wikieditor-toolbar-field-wrapper">\
+ <label for="wikieditor-toolbar-replace-search" rel="wikieditor-toolbar-tool-replace-search"></label>\
+ <input type="text" id="wikieditor-toolbar-replace-search" style="width: 100%;"/>\
+ </div>\
+ <div class="wikieditor-toolbar-field-wrapper">\
+ <label for="wikieditor-toolbar-replace-replace" rel="wikieditor-toolbar-tool-replace-replace"></label>\
+ <input type="text" id="wikieditor-toolbar-replace-replace" style="width: 100%;"/>\
+ </div>\
+ <div class="wikieditor-toolbar-field-wrapper">\
+ <input type="checkbox" id="wikieditor-toolbar-replace-case"/>\
+ <label for="wikieditor-toolbar-replace-case" rel="wikieditor-toolbar-tool-replace-case"></label>\
+ </div>\
+ <div class="wikieditor-toolbar-field-wrapper">\
+ <input type="checkbox" id="wikieditor-toolbar-replace-regex"/>\
+ <label for="wikieditor-toolbar-replace-regex" rel="wikieditor-toolbar-tool-replace-regex"></label>\
+ </div>\
+ </fieldset>',
+ init: function () {
+ $(this).find( '[rel]' ).each( function () {
+ $(this).text( mw.msg( $(this).attr( 'rel' ) ) );
+ });
+ // Set tabindexes on form fields
+ $.wikiEditor.modules.dialogs.fn.setTabindexes( $(this).find( 'input' ).not( '[tabindex]' ) );
- // TODO: Find a cleaner way to share this function
- $(this).data( 'replaceCallback', function( mode ) {
- $( '#wikieditor-toolbar-replace-nomatch, #wikieditor-toolbar-replace-success, #wikieditor-toolbar-replace-emptysearch, #wikieditor-toolbar-replace-invalidregex' ).hide();
+ // TODO: Find a cleaner way to share this function
+ $(this).data( 'replaceCallback', function ( mode ) {
+ var offset, textRemainder, regex, index, i,
+ start, end;
- // Search string cannot be empty
- var searchStr = $( '#wikieditor-toolbar-replace-search' ).val();
- if ( searchStr == '' ) {
- $( '#wikieditor-toolbar-replace-emptysearch' ).show();
- return;
- }
+ $( '#wikieditor-toolbar-replace-nomatch, #wikieditor-toolbar-replace-success, #wikieditor-toolbar-replace-emptysearch, #wikieditor-toolbar-replace-invalidregex' ).hide();
- // Replace string can be empty
- var replaceStr = $( '#wikieditor-toolbar-replace-replace' ).val();
+ // Search string cannot be empty
+ var searchStr = $( '#wikieditor-toolbar-replace-search' ).val();
+ if ( searchStr === '' ) {
+ $( '#wikieditor-toolbar-replace-emptysearch' ).show();
+ return;
+ }
- // Prepare the regular expression flags
- var flags = 'm';
- var matchCase = $( '#wikieditor-toolbar-replace-case' ).is( ':checked' );
- if ( !matchCase ) {
- flags += 'i';
- }
- var isRegex = $( '#wikieditor-toolbar-replace-regex' ).is( ':checked' );
- if ( !isRegex ) {
- searchStr = $.escapeRE( searchStr );
- }
- if ( mode == 'replaceAll' ) {
- flags += 'g';
- }
+ // Replace string can be empty
+ var replaceStr = $( '#wikieditor-toolbar-replace-replace' ).val();
- try {
- var regex = new RegExp( searchStr, flags );
- } catch( e ) {
- $( '#wikieditor-toolbar-replace-invalidregex' )
- .text( mediaWiki.msg( 'wikieditor-toolbar-tool-replace-invalidregex',
- e.message ) )
- .show();
- return;
- }
+ // Prepare the regular expression flags
+ var flags = 'm';
+ var matchCase = $( '#wikieditor-toolbar-replace-case' ).is( ':checked' );
+ if ( !matchCase ) {
+ flags += 'i';
+ }
+ var isRegex = $( '#wikieditor-toolbar-replace-regex' ).is( ':checked' );
+ if ( !isRegex ) {
+ searchStr = $.escapeRE( searchStr );
+ }
+ if ( mode === 'replaceAll' ) {
+ flags += 'g';
+ }
- var $textarea = $(this).data( 'context' ).$textarea;
- var text = $textarea.textSelection( 'getContents' );
- var match = false;
- var offset, textRemainder;
- if ( mode != 'replaceAll' ) {
- if (mode == 'replace') {
- offset = $(this).data( 'matchIndex' );
- } else {
- offset = $(this).data( 'offset' );
+ try {
+ regex = new RegExp( searchStr, flags );
+ } catch ( e ) {
+ $( '#wikieditor-toolbar-replace-invalidregex' )
+ .text( mw.msg( 'wikieditor-toolbar-tool-replace-invalidregex',
+ e.message ) )
+ .show();
+ return;
}
- textRemainder = text.substr( offset );
- match = textRemainder.match( regex );
- }
- if ( !match ) {
- // Search hit BOTTOM, continuing at TOP
- // TODO: Add a "Wrap around" option.
- offset = 0;
- textRemainder = text;
- match = textRemainder.match( regex );
- }
- if ( !match ) {
- $( '#wikieditor-toolbar-replace-nomatch' ).show();
- } else if ( mode == 'replaceAll' ) {
- // Instead of using repetitive .match() calls, we use one .match() call with /g
- // and indexOf() followed by substr() to find the offsets. This is actually
- // faster because our indexOf+substr loop is faster than a match loop, and the
- // /g match is so ridiculously fast that it's negligible.
- // FIXME: Repetitively calling encapsulateSelection() is probably the best strategy
- // in Firefox/Webkit, but in IE replacing the entire content once is better.
- var index;
- for ( var i = 0; i < match.length; i++ ) {
- index = textRemainder.indexOf( match[i] );
- if ( index == -1 ) {
- // This shouldn't happen
- break;
+ var $textarea = $(this).data( 'context' ).$textarea;
+ var text = $textarea.textSelection( 'getContents' );
+ var match = false;
+ if ( mode !== 'replaceAll' ) {
+ if ( mode === 'replace' ) {
+ offset = $(this).data( 'matchIndex' );
+ } else {
+ offset = $(this).data( 'offset' );
}
- var matchedText = textRemainder.substr( index, match[i].length );
- textRemainder = textRemainder.substr( index + match[i].length );
-
- var start = index + offset;
- var end = start + match[i].length;
- // Make regex placeholder substitution ($1) work
- var replace = isRegex ? matchedText.replace( regex, replaceStr ) : replaceStr;
- var newEnd = start + replace.length;
- $textarea
- .textSelection( 'setSelection', { 'start': start, 'end': end } )
- .textSelection( 'encapsulateSelection', {
- 'peri': replace,
- 'replace': true } )
- .textSelection( 'setSelection', { 'start': start, 'end': newEnd } );
- offset = newEnd;
+ textRemainder = text.substr( offset );
+ match = textRemainder.match( regex );
+ }
+ if ( !match ) {
+ // Search hit BOTTOM, continuing at TOP
+ // TODO: Add a "Wrap around" option.
+ offset = 0;
+ textRemainder = text;
+ match = textRemainder.match( regex );
}
- $( '#wikieditor-toolbar-replace-success' )
- .text( mediaWiki.msg( 'wikieditor-toolbar-tool-replace-success', match.length ) )
- .show();
- $(this).data( 'offset', 0 );
- } else {
- var start, end;
- if ( mode == 'replace' ) {
- var actualReplacement;
+ if ( !match ) {
+ $( '#wikieditor-toolbar-replace-nomatch' ).show();
+ } else if ( mode == 'replaceAll' ) {
+ // Instead of using repetitive .match() calls, we use one .match() call with /g
+ // and indexOf() followed by substr() to find the offsets. This is actually
+ // faster because our indexOf+substr loop is faster than a match loop, and the
+ // /g match is so ridiculously fast that it's negligible.
+ // FIXME: Repetitively calling encapsulateSelection() is probably the best strategy
+ // in Firefox/Webkit, but in IE replacing the entire content once is better.
+ for ( i = 0; i < match.length; i++ ) {
+ index = textRemainder.indexOf( match[i] );
+ if ( index === -1 ) {
+ // This shouldn't happen
+ break;
+ }
+ var matchedText = textRemainder.substr( index, match[i].length );
+ textRemainder = textRemainder.substr( index + match[i].length );
- if (isRegex) {
- // If backreferences (like $1) are used, the actual actual replacement string will be different
- actualReplacement = match[0].replace( regex, replaceStr );
- } else {
- actualReplacement = replaceStr;
+ start = index + offset;
+ end = start + match[i].length;
+ // Make regex placeholder substitution ($1) work
+ var replace = isRegex ? matchedText.replace( regex, replaceStr ) : replaceStr;
+ var newEnd = start + replace.length;
+ $textarea
+ .textSelection( 'setSelection', { 'start': start, 'end': end } )
+ .textSelection( 'encapsulateSelection', {
+ 'peri': replace,
+ 'replace': true } )
+ .textSelection( 'setSelection', { 'start': start, 'end': newEnd } );
+ offset = newEnd;
}
+ $( '#wikieditor-toolbar-replace-success' )
+ .text( mw.msg( 'wikieditor-toolbar-tool-replace-success', match.length ) )
+ .show();
+ $(this).data( 'offset', 0 );
+ } else {
- if (match) {
- // Do the replacement
- $textarea.textSelection( 'encapsulateSelection', {
- 'peri': actualReplacement,
- 'replace': true } );
- // Reload the text after replacement
- text = $textarea.textSelection( 'getContents' );
- }
+ if ( mode == 'replace' ) {
+ var actualReplacement;
- // Find the next instance
- offset = offset + match[0].length + actualReplacement.length;
- textRemainder = text.substr( offset );
- match = textRemainder.match( regex );
+ if (isRegex) {
+ // If backreferences (like $1) are used, the actual actual replacement string will be different
+ actualReplacement = match[0].replace( regex, replaceStr );
+ } else {
+ actualReplacement = replaceStr;
+ }
- if (match) {
- start = offset + match.index;
- end = start + match[0].length;
- } else {
- // If no new string was found, try searching from the beginning.
- // TODO: Add a "Wrap around" option.
- textRemainder = text;
+ if (match) {
+ // Do the replacement
+ $textarea.textSelection( 'encapsulateSelection', {
+ 'peri': actualReplacement,
+ 'replace': true } );
+ // Reload the text after replacement
+ text = $textarea.textSelection( 'getContents' );
+ }
+
+ // Find the next instance
+ offset = offset + match[0].length + actualReplacement.length;
+ textRemainder = text.substr( offset );
match = textRemainder.match( regex );
+
if (match) {
- start = match.index;
+ start = offset + match.index;
end = start + match[0].length;
} else {
- // Give up
- start = 0;
- end = 0;
+ // If no new string was found, try searching from the beginning.
+ // TODO: Add a "Wrap around" option.
+ textRemainder = text;
+ match = textRemainder.match( regex );
+ if (match) {
+ start = match.index;
+ end = start + match[0].length;
+ } else {
+ // Give up
+ start = 0;
+ end = 0;
+ }
}
+ } else {
+ start = offset + match.index;
+ end = start + match[0].length;
}
- } else {
- start = offset + match.index;
- end = start + match[0].length;
- }
- $( this ).data( 'matchIndex', start);
+ $( this ).data( 'matchIndex', start);
- $textarea.textSelection( 'setSelection', {
- 'start': start,
- 'end': end
- } );
- $textarea.textSelection( 'scrollToCaretPosition' );
- $( this ).data( 'offset', end );
- var context = $( this ).data( 'context' );
- var textbox = typeof context.$iframe != 'undefined' ?
- context.$iframe[0].contentWindow : $textarea[0];
- textbox.focus();
- }
- });
- },
- dialog: {
- width: 500,
- dialogClass: 'wikiEditor-toolbar-dialog',
- buttons: {
- 'wikieditor-toolbar-tool-replace-button-findnext': function( e ) {
- $(this).closest( '.ui-dialog' ).data( 'dialogaction', e.target );
- $(this).data( 'replaceCallback' ).call( this, 'find' );
- },
- 'wikieditor-toolbar-tool-replace-button-replace': function( e ) {
- $(this).closest( '.ui-dialog' ).data( 'dialogaction', e.target );
- $(this).data( 'replaceCallback' ).call( this, 'replace' );
- },
- 'wikieditor-toolbar-tool-replace-button-replaceall': function( e ) {
- $(this).closest( '.ui-dialog' ).data( 'dialogaction', e.target );
- $(this).data( 'replaceCallback' ).call( this, 'replaceAll' );
- },
- 'wikieditor-toolbar-tool-replace-close': function() {
- $(this).dialog( 'close' );
- }
+ $textarea.textSelection( 'setSelection', {
+ 'start': start,
+ 'end': end
+ } );
+ $textarea.textSelection( 'scrollToCaretPosition' );
+ $( this ).data( 'offset', end );
+ var context = $( this ).data( 'context' );
+ var textbox = typeof context.$iframe !== 'undefined' ?
+ context.$iframe[0].contentWindow : $textarea[0];
+ textbox.focus();
+ }
+ });
},
- open: function() {
- $(this).data( 'offset', 0 );
- $(this).data( 'matchIndex', 0 );
+ dialog: {
+ width: 500,
+ dialogClass: 'wikiEditor-toolbar-dialog',
+ modal: false,
+ buttons: {
+ 'wikieditor-toolbar-tool-replace-button-findnext': function ( e ) {
+ $(this).closest( '.ui-dialog' ).data( 'dialogaction', e.target );
+ $(this).data( 'replaceCallback' ).call( this, 'find' );
+ },
+ 'wikieditor-toolbar-tool-replace-button-replace': function ( e ) {
+ $(this).closest( '.ui-dialog' ).data( 'dialogaction', e.target );
+ $(this).data( 'replaceCallback' ).call( this, 'replace' );
+ },
+ 'wikieditor-toolbar-tool-replace-button-replaceall': function ( e ) {
+ $(this).closest( '.ui-dialog' ).data( 'dialogaction', e.target );
+ $(this).data( 'replaceCallback' ).call( this, 'replaceAll' );
+ },
+ 'wikieditor-toolbar-tool-replace-close': function () {
+ $(this).dialog( 'close' );
+ }
+ },
+ open: function () {
+ $(this).data( 'offset', 0 );
+ $(this).data( 'matchIndex', 0 );
- $( '#wikieditor-toolbar-replace-search' ).focus();
- $( '#wikieditor-toolbar-replace-nomatch, #wikieditor-toolbar-replace-success, #wikieditor-toolbar-replace-emptysearch, #wikieditor-toolbar-replace-invalidregex' ).hide();
- if ( !( $(this).data( 'onetimeonlystuff' ) ) ) {
- $(this).data( 'onetimeonlystuff', true );
- // Execute the action associated with the first button
- // when the user presses Enter
- $(this).closest( '.ui-dialog' ).keypress( function( e ) {
- if ( ( e.keyCode || e.which ) == 13 ) {
- var button = $(this).data( 'dialogaction' ) || $(this).find( 'button:first' );
- button.click();
- e.preventDefault();
- }
- });
- // Make tabbing to a button and pressing
- // Enter do what people expect
- $(this).closest( '.ui-dialog' ).find( 'button' ).focus( function() {
- $(this).closest( '.ui-dialog' ).data( 'dialogaction', this );
- });
- }
- var dialog = $(this).closest( '.ui-dialog' );
- var that = this;
- var context = $(this).data( 'context' );
- var textbox = typeof context.$iframe != 'undefined' ?
- context.$iframe[0].contentWindow.document : context.$textarea;
+ $( '#wikieditor-toolbar-replace-search' ).focus();
+ $( '#wikieditor-toolbar-replace-nomatch, #wikieditor-toolbar-replace-success, #wikieditor-toolbar-replace-emptysearch, #wikieditor-toolbar-replace-invalidregex' ).hide();
+ if ( !( $(this).data( 'onetimeonlystuff' ) ) ) {
+ $(this).data( 'onetimeonlystuff', true );
+ // Execute the action associated with the first button
+ // when the user presses Enter
+ $(this).closest( '.ui-dialog' ).keypress( function ( e ) {
+ if ( ( e.keyCode || e.which ) == 13 ) {
+ var button = $(this).data( 'dialogaction' ) || $(this).find( 'button:first' );
+ button.click();
+ e.preventDefault();
+ }
+ });
+ // Make tabbing to a button and pressing
+ // Enter do what people expect
+ $(this).closest( '.ui-dialog' ).find( 'button' ).focus( function () {
+ $(this).closest( '.ui-dialog' ).data( 'dialogaction', this );
+ });
+ }
+ var dialog = $(this).closest( '.ui-dialog' );
+ var that = this;
+ var context = $(this).data( 'context' );
+ var textbox = typeof context.$iframe !== 'undefined' ?
+ context.$iframe[0].contentWindow.document : context.$textarea;
- $( textbox )
- .bind( 'keypress.srdialog', function( e ) {
- if ( ( e.keyCode || e.which ) == 13 ) {
- // Enter
- var button = dialog.data( 'dialogaction' ) || dialog.find( 'button:first' );
- button.click();
- e.preventDefault();
- } else if ( ( e.keyCode || e.which ) == 27 ) {
- // Escape
- $(that).dialog( 'close' );
- }
- });
- },
- close: function() {
- var context = $(this).data( 'context' );
- var textbox = typeof context.$iframe != 'undefined' ?
- context.$iframe[0].contentWindow.document : context.$textarea;
- $( textbox ).unbind( 'keypress.srdialog' );
- $(this).closest( '.ui-dialog' ).data( 'dialogaction', false );
+ $( textbox )
+ .bind( 'keypress.srdialog', function ( e ) {
+ if ( e.which == 13 ) {
+ // Enter
+ var button = dialog.data( 'dialogaction' ) || dialog.find( 'button:first' );
+ button.click();
+ e.preventDefault();
+ } else if ( e.which == 27 ) {
+ // Escape
+ $(that).dialog( 'close' );
+ }
+ });
+ },
+ close: function () {
+ var context = $(this).data( 'context' );
+ var textbox = typeof context.$iframe !== 'undefined' ?
+ context.$iframe[0].contentWindow.document : context.$textarea;
+ $( textbox ).unbind( 'keypress.srdialog' );
+ $(this).closest( '.ui-dialog' ).data( 'dialogaction', false );
+ }
}
}
- }
- } };
-}
+ } };
+ }
+
+};
-}; } ) ( jQuery );
+}( jQuery, mediaWiki ) );
diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.css b/extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.css
index 2c3d36a6..b97ce7e3 100644
--- a/extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.css
+++ b/extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.css
@@ -1,56 +1,68 @@
-/*
+/**
* CSS for WikiEditor Dialogs jQuery plugin
*/
.wikiEditor-toolbar-dialog table {
margin-top: 0.75em;
}
+
.wikiEditor-toolbar-dialog table td {
padding: 0.5em;
height: 3em;
overflow: visible;
}
+
/* Put suggestions (default z-index 99) on top of dialogs (z-index 1002) */
div.suggestions {
z-index: 1099;
}
+
.wikiEditor-toolbar-dialog table td {
padding: 0 !important;
}
+
.wikiEditor-toolbar-dialog .ui-dialog-content fieldset {
border: none !important;
margin: 0 !important;
padding: 0 !important;
}
+
.wikiEditor-toolbar-dialog .ui-widget-header {
border-bottom:1px solid #6bc8f3 !important;
}
+
.wikiEditor-toolbar-dialog .ui-dialog-content input[type=text] {
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-webkit-box-sizing: border-box;
-khtml-box-sizing: border-box;
}
+
.wikiEditor-toolbar-dialog .ui-dialog-content input[type="radio"],
.wikiEditor-toolbar-dialog .ui-dialog-content input[type="checkbox"] {
margin-left: 0;
}
+
.wikiEditor-toolbar-dialog .ui-dialog-titlebar-close {
padding: 0;
}
body .wikiEditor-toolbar-dialog .ui-dialog-titlebar-close {
right: 0.9em;
}
+
.wikieditor-toolbar-field-wrapper {
padding: 0 0 25px 0;
}
+
.wikieditor-toolbar-floated-field-wrapper {
float: left;
margin-right: 2em;
}
+
.wikieditor-toolbar-dialog-hint {
color: #999999;
}
+
.wikiEditor-toolbar-dialog {
border: none;
} \ No newline at end of file
diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.js b/extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.js
index 6f5404f5..f6d86d78 100644
--- a/extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.js
+++ b/extensions/WikiEditor/modules/jquery.wikiEditor.dialogs.js
@@ -1,217 +1,234 @@
/**
* Dialog Module for wikiEditor
*/
-( function( $ ) { $.wikiEditor.modules.dialogs = {
+( function ( $, mw ) {
-/**
- * Compatability map
- */
-'browsers': {
- // Left-to-right languages
- 'ltr': {
- 'msie': [['>=', 7]],
- // jQuery UI appears to be broken in FF 2.0 - 2.0.0.4
- 'firefox': [
- ['>=', 2], ['!=', '2.0'], ['!=', '2.0.0.1'], ['!=', '2.0.0.2'], ['!=', '2.0.0.3'], ['!=', '2.0.0.4']
- ],
- 'opera': [['>=', 9.6]],
- 'safari': [['>=', 3]],
- 'chrome': [['>=', 3]]
- },
- // Right-to-left languages
- 'rtl': {
- 'msie': [['>=', 7]],
- // jQuery UI appears to be broken in FF 2.0 - 2.0.0.4
- 'firefox': [
- ['>=', 2], ['!=', '2.0'], ['!=', '2.0.0.1'], ['!=', '2.0.0.2'], ['!=', '2.0.0.3'], ['!=', '2.0.0.4']
- ],
- 'opera': [['>=', 9.6]],
- 'safari': [['>=', 3]],
- 'chrome': [['>=', 3]]
- }
-},
-/**
- * API accessible functions
- */
-api: {
- addDialog: function( context, data ) {
- $.wikiEditor.modules.dialogs.fn.create( context, data )
- },
- openDialog: function( context, module ) {
- if ( module in $.wikiEditor.modules.dialogs.modules ) {
- var mod = $.wikiEditor.modules.dialogs.modules[module];
- var $dialog = $( '#' + mod.id );
- if ( $dialog.length == 0 ) {
- $.wikiEditor.modules.dialogs.fn.reallyCreate( context, mod, module );
- $dialog = $( '#' + mod.id );
- }
-
- // Workaround for bug in jQuery UI: close button in top right retains focus
- $dialog.closest( '.ui-dialog' )
- .find( '.ui-dialog-titlebar-close' )
- .removeClass( 'ui-state-focus' );
+$.wikiEditor.modules.dialogs = {
- $dialog.dialog( 'open' );
+ /**
+ * Compatability map
+ */
+ browsers: {
+ // Left-to-right languages
+ ltr: {
+ msie: [['>=', 7]],
+ // jQuery UI appears to be broken in FF 2.0 - 2.0.0.4
+ firefox: [
+ ['>=', 2], ['!=', '2.0'], ['!=', '2.0.0.1'], ['!=', '2.0.0.2'], ['!=', '2.0.0.3'], ['!=', '2.0.0.4']
+ ],
+ opera: [['>=', 9.6]],
+ safari: [['>=', 3]],
+ chrome: [['>=', 3]]
+ },
+ // Right-to-left languages
+ rtl: {
+ msie: [['>=', 7]],
+ // jQuery UI appears to be broken in FF 2.0 - 2.0.0.4
+ firefox: [
+ ['>=', 2], ['!=', '2.0'], ['!=', '2.0.0.1'], ['!=', '2.0.0.2'], ['!=', '2.0.0.3'], ['!=', '2.0.0.4']
+ ],
+ opera: [['>=', 9.6]],
+ safari: [['>=', 3]],
+ chrome: [['>=', 3]]
}
},
- closeDialog: function( context, module ) {
- if ( module in $.wikiEditor.modules.dialogs.modules ) {
- $( '#' + $.wikiEditor.modules.dialogs.modules[module].id ).dialog( 'close' );
- }
- }
-},
-/**
- * Internally used functions
- */
-fn: {
+
/**
- * Creates a dialog module within a wikiEditor
- *
- * @param {Object} context Context object of editor to create module in
- * @param {Object} config Configuration object to create module from
+ * API accessible functions
*/
- create: function( context, config ) {
- // Defer building of modules, but do check whether they need the iframe rightaway
- for ( var mod in config ) {
- var module = config[mod];
- // Only create the dialog if it's supported, isn't filtered and doesn't exist yet
- var filtered = false;
- if ( typeof module.filters != 'undefined' ) {
- for ( var i = 0; i < module.filters.length; i++ ) {
- if ( $( module.filters[i] ).length == 0 ) {
- filtered = true;
- break;
- }
+ api: {
+ addDialog: function ( context, data ) {
+ $.wikiEditor.modules.dialogs.fn.create( context, data );
+ },
+ openDialog: function ( context, module ) {
+ if ( module in $.wikiEditor.modules.dialogs.modules ) {
+ var mod = $.wikiEditor.modules.dialogs.modules[module];
+ var $dialog = $( '#' + mod.id );
+ if ( $dialog.length === 0 ) {
+ $.wikiEditor.modules.dialogs.fn.reallyCreate( context, mod, module );
+ $dialog = $( '#' + mod.id );
}
+
+ // Workaround for bug in jQuery UI: close button in top right retains focus
+ $dialog.closest( '.ui-dialog' )
+ .find( '.ui-dialog-titlebar-close' )
+ .removeClass( 'ui-state-focus' );
+
+ $dialog.dialog( 'open' );
}
- // If the dialog already exists, but for another textarea, simply remove it
- var $existingDialog = $( '#' + module.id );
- if ( $existingDialog.length > 0 && $existingDialog.data( 'context' ).$textarea != context.$textarea ) {
- $existingDialog.remove();
- }
- // Re-select from the DOM, we might have removed the dialog just now
- $existingDialog = $( '#' + module.id );
- if ( !filtered && $.wikiEditor.isSupported( module ) && $existingDialog.size() === 0 ) {
- $.wikiEditor.modules.dialogs.modules[mod] = module;
- // If this dialog requires the iframe, set it up
- if ( typeof context.$iframe == 'undefined' && $.wikiEditor.isRequired( module, 'iframe' ) ) {
- context.fn.setupIframe();
- }
- context.$textarea.trigger( 'wikiEditor-dialogs-setup-' + mod );
- // If this dialog requires immediate creation, create it now
- if ( typeof module.immediateCreate !== 'undefined' && module.immediateCreate ) {
- $.wikiEditor.modules.dialogs.fn.reallyCreate( context, module, mod );
- }
+ },
+ closeDialog: function ( context, module ) {
+ if ( module in $.wikiEditor.modules.dialogs.modules ) {
+ $( '#' + $.wikiEditor.modules.dialogs.modules[module].id ).dialog( 'close' );
}
}
},
- /**
- * Build the actual dialog. This done on-demand rather than in create()
- * @param {Object} context Context object of editor dialog belongs to
- * @param {Object} module Dialog module object
- * @param {String} name Dialog name (key in $.wikiEditor.modules.dialogs.modules)
- */
- reallyCreate: function( context, module, name ) {
- var configuration = module.dialog;
- // Add some stuff to configuration
- configuration.bgiframe = true;
- configuration.autoOpen = false;
- configuration.modal = true;
- configuration.title = $.wikiEditor.autoMsg( module, 'title' );
- // Transform messages in keys
- // Stupid JS won't let us do stuff like
- // foo = { mediaWiki.msg( 'bar' ): baz }
- configuration.newButtons = {};
- for ( var msg in configuration.buttons )
- configuration.newButtons[mediaWiki.msg( msg )] = configuration.buttons[msg];
- configuration.buttons = configuration.newButtons;
- // Create the dialog <div>
- var dialogDiv = $( '<div />' )
- .attr( 'id', module.id )
- .html( module.html )
- .data( 'context', context )
- .appendTo( $( 'body' ) )
- .each( module.init )
- .dialog( configuration );
- // Set tabindexes on buttons added by .dialog()
- $.wikiEditor.modules.dialogs.fn.setTabindexes( dialogDiv.closest( '.ui-dialog' )
- .find( 'button' ).not( '[tabindex]' ) );
- if ( !( 'resizeme' in module ) || module.resizeme ) {
- dialogDiv
- .bind( 'dialogopen', $.wikiEditor.modules.dialogs.fn.resize )
- .find( '.ui-tabs' ).bind( 'tabsshow', function() {
- $(this).closest( '.ui-dialog-content' ).each(
- $.wikiEditor.modules.dialogs.fn.resize );
- });
- }
- dialogDiv.bind( 'dialogclose', function() {
- context.fn.restoreSelection();
- } );
- // Let the outside world know we set up this dialog
- context.$textarea.trigger( 'wikiEditor-dialogs-loaded-' + name );
- },
/**
- * Resize a dialog so its contents fit
- *
- * Usage: dialog.each( resize ); or dialog.bind( 'blah', resize );
- * NOTE: This function assumes $.ui.dialog has already been loaded
+ * Internally used functions
*/
- resize: function() {
- var wrapper = $(this).closest( '.ui-dialog' );
- var oldWidth = wrapper.width();
- // Make sure elements don't wrapped so we get an accurate idea of whether they really fit. Also temporarily show
- // hidden elements. Work around jQuery bug where <div style="display:inline;" /> inside a dialog is both
- // :visible and :hidden
- var oldHidden = $(this).find( '*' ).not( ':visible' );
- // Save the style attributes of the hidden elements to restore them later. Calling hide() after show() messes up
- // for elements hidden with a class
- oldHidden.each( function() {
- $(this).data( 'oldstyle', $(this).attr( 'style' ) );
- });
- oldHidden.show();
- var oldWS = $(this).css( 'white-space' );
- $(this).css( 'white-space', 'nowrap' );
- if ( wrapper.width() <= $(this).get(0).scrollWidth ) {
- var thisWidth = $(this).data( 'thisWidth' ) ? $(this).data( 'thisWidth' ) : 0;
- thisWidth = Math.max( $(this).get(0).width, thisWidth );
- $(this).width( thisWidth );
- $(this).data( 'thisWidth', thisWidth );
- var wrapperWidth = $(this).data( 'wrapperWidth' ) ? $(this).data( 'wrapperWidth' ) : 0;
- wrapperWidth = Math.max( wrapper.get(0).scrollWidth, wrapperWidth );
- wrapper.width( wrapperWidth );
- $(this).data( 'wrapperWidth', wrapperWidth );
- $(this).dialog( { 'width': wrapper.width() } );
- wrapper.css( 'left', parseInt( wrapper.css( 'left' ) ) - ( wrapper.width() - oldWidth ) / 2 );
+ fn: {
+ /**
+ * Creates a dialog module within a wikiEditor
+ *
+ * @param {Object} context Context object of editor to create module in
+ * @param {Object} config Configuration object to create module from
+ */
+ create: function ( context, config ) {
+ var mod, module, filtered, i, $existingDialog;
+
+ // Defer building of modules, but do check whether they need the iframe rightaway
+ for ( mod in config ) {
+ module = config[mod];
+ // Only create the dialog if it's supported, isn't filtered and doesn't exist yet
+ filtered = false;
+ if ( typeof module.filters != 'undefined' ) {
+ for ( i = 0; i < module.filters.length; i++ ) {
+ if ( $( module.filters[i] ).length === 0 ) {
+ filtered = true;
+ break;
+ }
+ }
+ }
+ // If the dialog already exists, but for another textarea, simply remove it
+ $existingDialog = $( '#' + module.id );
+ if ( $existingDialog.length > 0 && $existingDialog.data( 'context' ).$textarea != context.$textarea ) {
+ $existingDialog.remove();
+ }
+ // Re-select from the DOM, we might have removed the dialog just now
+ $existingDialog = $( '#' + module.id );
+ if ( !filtered && $.wikiEditor.isSupported( module ) && $existingDialog.length === 0 ) {
+ $.wikiEditor.modules.dialogs.modules[mod] = module;
+ // If this dialog requires the iframe, set it up
+ if ( typeof context.$iframe === 'undefined' && $.wikiEditor.isRequired( module, 'iframe' ) ) {
+ context.fn.setupIframe();
+ }
+ context.$textarea.trigger( 'wikiEditor-dialogs-setup-' + mod );
+ // If this dialog requires immediate creation, create it now
+ if ( typeof module.immediateCreate !== 'undefined' && module.immediateCreate ) {
+ $.wikiEditor.modules.dialogs.fn.reallyCreate( context, module, mod );
+ }
+ }
+ }
+ },
+
+ /**
+ * Build the actual dialog. This done on-demand rather than in create()
+ * @param {Object} context Context object of editor dialog belongs to
+ * @param {Object} module Dialog module object
+ * @param {String} name Dialog name (key in $.wikiEditor.modules.dialogs.modules)
+ */
+ reallyCreate: function ( context, module, name ) {
+ var msg,
+ configuration = module.dialog;
+ // Add some stuff to configuration
+ configuration.bgiframe = true;
+ configuration.autoOpen = false;
+ // By default our dialogs are modal, unless explicitely defined in their specific configuration.
+ if( typeof configuration.modal == "undefined" ) {
+ configuration.modal = true;
+ }
+ configuration.title = $.wikiEditor.autoMsg( module, 'title' );
+ // Transform messages in keys
+ // Stupid JS won't let us do stuff like
+ // foo = { mw.msg( 'bar' ): baz }
+ configuration.newButtons = {};
+ for ( msg in configuration.buttons ) {
+ configuration.newButtons[mw.msg( msg )] = configuration.buttons[msg];
+ }
+ configuration.buttons = configuration.newButtons;
+ // Create the dialog <div>
+ var dialogDiv = $( '<div>' )
+ .attr( 'id', module.id )
+ .html( module.html )
+ .data( 'context', context )
+ .appendTo( $( 'body' ) )
+ .each( module.init )
+ .dialog( configuration );
+ // Set tabindexes on buttons added by .dialog()
+ $.wikiEditor.modules.dialogs.fn.setTabindexes( dialogDiv.closest( '.ui-dialog' )
+ .find( 'button' ).not( '[tabindex]' ) );
+ if ( !( 'resizeme' in module ) || module.resizeme ) {
+ dialogDiv
+ .bind( 'dialogopen', $.wikiEditor.modules.dialogs.fn.resize )
+ .find( '.ui-tabs' ).bind( 'tabsshow', function () {
+ $(this).closest( '.ui-dialog-content' ).each(
+ $.wikiEditor.modules.dialogs.fn.resize );
+ });
+ }
+ dialogDiv.bind( 'dialogclose', function () {
+ context.fn.restoreSelection();
+ } );
+
+ // Let the outside world know we set up this dialog
+ context.$textarea.trigger( 'wikiEditor-dialogs-loaded-' + name );
+ },
+
+ /**
+ * Resize a dialog so its contents fit
+ *
+ * Usage: dialog.each( resize ); or dialog.bind( 'blah', resize );
+ * NOTE: This function assumes $.ui.dialog has already been loaded
+ */
+ resize: function () {
+ var wrapper = $(this).closest( '.ui-dialog' );
+ var oldWidth = wrapper.width();
+ // Make sure elements don't wrapped so we get an accurate idea of whether they really fit. Also temporarily show
+ // hidden elements. Work around jQuery bug where <div style="display: inline;"/> inside a dialog is both
+ // :visible and :hidden
+ var oldHidden = $(this).find( '*' ).not( ':visible' );
+ // Save the style attributes of the hidden elements to restore them later. Calling hide() after show() messes up
+ // for elements hidden with a class
+ oldHidden.each( function () {
+ $(this).data( 'oldstyle', $(this).attr( 'style' ) );
+ });
+ oldHidden.show();
+ var oldWS = $(this).css( 'white-space' );
+ $(this).css( 'white-space', 'nowrap' );
+ if ( wrapper.width() <= $(this).get(0).scrollWidth ) {
+ var thisWidth = $(this).data( 'thisWidth' ) ? $(this).data( 'thisWidth' ) : 0;
+ thisWidth = Math.max( $(this).get(0).width, thisWidth );
+ $(this).width( thisWidth );
+ $(this).data( 'thisWidth', thisWidth );
+ var wrapperWidth = $(this).data( 'wrapperWidth' ) ? $(this).data( 'wrapperWidth' ) : 0;
+ wrapperWidth = Math.max( wrapper.get(0).scrollWidth, wrapperWidth );
+ wrapper.width( wrapperWidth );
+ $(this).data( 'wrapperWidth', wrapperWidth );
+ $(this).dialog( { 'width': wrapper.width() } );
+ wrapper.css( 'left', parseInt( wrapper.css( 'left' ), 10 ) - ( wrapper.width() - oldWidth ) / 2 );
+ }
+ $(this).css( 'white-space', oldWS );
+ oldHidden.each( function () {
+ $(this).attr( 'style', $(this).data( 'oldstyle' ) );
+ });
+ },
+ /**
+ * Set the right tabindexes on elements in a dialog
+ * @param $elements Elements to set tabindexes on. If they already have tabindexes, this function can behave a bit weird
+ */
+ setTabindexes: function ( $elements ) {
+ // Get the highest tab index
+ var tabIndex = $( document ).lastTabIndex() + 1;
+ $elements.each( function () {
+ $(this).attr( 'tabindex', tabIndex++ );
+ } );
}
- $(this).css( 'white-space', oldWS );
- oldHidden.each( function() {
- $(this).attr( 'style', $(this).data( 'oldstyle' ) );
- });
},
- /**
- * Set the right tabindexes on elements in a dialog
- * @param $elements Elements to set tabindexes on. If they already have tabindexes, this function can behave a bit weird
- */
- setTabindexes: function( $elements ) {
- // Get the highest tab index
- var tabIndex = $( document ).lastTabIndex() + 1;
- $elements.each( function() {
- $(this).attr( 'tabindex', tabIndex++ );
- } );
+
+ // This stuff is just hanging here, perhaps we could come up with a better home for this stuff
+ modules: {},
+
+ quickDialog: function ( body, settings ) {
+ $( '<div>' )
+ .text( body )
+ .appendTo( $( 'body' ) )
+ .dialog( $.extend( {
+ bgiframe: true,
+ modal: true
+ }, settings ) )
+ .dialog( 'open' );
}
-},
-// This stuff is just hanging here, perhaps we could come up with a better home for this stuff
-modules: {},
-quickDialog: function( body, settings ) {
- $( '<div />' )
- .text( body )
- .appendTo( $( 'body' ) )
- .dialog( $.extend( {
- bgiframe: true,
- modal: true
- }, settings ) )
- .dialog( 'open' );
-}
-}; } ) ( jQuery );
+};
+
+}( jQuery, mediaWiki ) );
diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.highlight.js b/extensions/WikiEditor/modules/jquery.wikiEditor.highlight.js
index 48140206..9d964fa7 100644
--- a/extensions/WikiEditor/modules/jquery.wikiEditor.highlight.js
+++ b/extensions/WikiEditor/modules/jquery.wikiEditor.highlight.js
@@ -1,357 +1,373 @@
/* Highlight module for wikiEditor */
-( function( $ ) { $.wikiEditor.modules.highlight = {
+( function ( $ ) {
+
+$.wikiEditor.modules.highlight = {
+
+ /**
+ * Core Requirements
+ */
+ req: [ 'iframe' ],
-/**
- * Core Requirements
- */
-'req': [ 'iframe' ],
-/**
- * Configuration
- */
-'cfg': {
- 'styleVersion': 3
-},
-/**
- * Internally used event handlers
- */
-'evt': {
- 'delayedChange': function( context, event ) {
- if ( event.data.scope == 'realchange' ) {
- $.wikiEditor.modules.highlight.fn.scan( context );
- $.wikiEditor.modules.highlight.fn.mark( context, event.data.scope );
- }
- },
- 'ready': function( context, event ) {
- $.wikiEditor.modules.highlight.fn.scan( context );
- $.wikiEditor.modules.highlight.fn.mark( context, 'ready' );
- }
-},
-/**
- * Internally used functions
- */
-'fn': {
/**
- * Creates a highlight module within a wikiEditor
- *
- * @param config Configuration object to create module from
+ * Configuration
*/
- 'create': function( context, config ) {
- context.modules.highlight.markersStr = '';
+ cfg: {
+ styleVersion: 3
},
+
/**
- * Scans text division for tokens
- *
- * @param division
+ * Internally used event handlers
*/
- 'scan': function( context, division ) {
- // Remove all existing tokens
- var tokenArray = context.modules.highlight.tokenArray = [];
- // Scan text for new tokens
- var text = context.fn.getContents();
- // Perform a scan for each module which provides any expressions to scan for
- // FIXME: This traverses the entire string once for every regex. Investigate
- // whether |-concatenating regexes then traversing once is faster.
- for ( var module in context.modules ) {
- if ( module in $.wikiEditor.modules && 'exp' in $.wikiEditor.modules[module] ) {
- for ( var exp in $.wikiEditor.modules[module].exp ) {
- // Prepare configuration
- var regex = $.wikiEditor.modules[module].exp[exp].regex;
- var label = $.wikiEditor.modules[module].exp[exp].label;
- var markAfter = $.wikiEditor.modules[module].exp[exp].markAfter || false;
- // Search for tokens
- var offset = 0, left, right, match;
- while ( ( match = text.substr( offset ).match( regex ) ) != null ) {
- right = ( left = offset + match.index ) + match[0].length;
- tokenArray[tokenArray.length] = {
- 'offset': markAfter ? right : left,
- 'label': label,
- 'tokenStart': left,
- 'match': match
- };
- // Move to the right of this match
- offset = right;
- }
- }
+ evt: {
+ delayedChange: function ( context, event ) {
+ if ( event.data.scope == 'realchange' ) {
+ $.wikiEditor.modules.highlight.fn.scan( context );
+ $.wikiEditor.modules.highlight.fn.mark( context, event.data.scope );
}
+ },
+ ready: function ( context, event ) {
+ $.wikiEditor.modules.highlight.fn.scan( context );
+ $.wikiEditor.modules.highlight.fn.mark( context, 'ready' );
}
- // Sort by start
- tokenArray.sort( function( a, b ) { return a.tokenStart - b.tokenStart; } );
- // Let the world know, a scan just happened!
- context.fn.trigger( 'scan' );
},
+
/**
- * Marks up text with HTML
- *
- * @param division
- * @param tokens
+ * Internally used functions
*/
- // FIXME: What do division and tokens do?
- // TODO: Document the scan() and mark() APIs somewhere
- 'mark': function( context, division, tokens ) {
- // Reset markers
- var markers = [];
+ fn: {
+ /**
+ * Creates a highlight module within a wikiEditor
+ *
+ * @param config Configuration object to create module from
+ */
+ create: function ( context, config ) {
+ context.modules.highlight.markersStr = '';
+ },
+ /**
+ * Scans text division for tokens
+ *
+ * @param division
+ */
+ scan: function ( context, division ) {
+ var tokenArray, text, module, exp,
+ left, right, match;
+ /*jshint eqnull: true */
- // Recycle markers that will be skipped in this run
- if ( context.modules.highlight.markers && division != '' ) {
- for ( var i = 0; i < context.modules.highlight.markers.length; i++ ) {
- if ( context.modules.highlight.markers[i].skipDivision == division ) {
- markers.push( context.modules.highlight.markers[i] );
+ // Remove all existing tokens
+ tokenArray = context.modules.highlight.tokenArray = [];
+ // Scan text for new tokens
+ text = context.fn.getContents();
+ // Perform a scan for each module which provides any expressions to scan for
+ // FIXME: This traverses the entire string once for every regex. Investigate
+ // whether |-concatenating regexes then traversing once is faster.
+ for ( module in context.modules ) {
+ if ( module in $.wikiEditor.modules && 'exp' in $.wikiEditor.modules[module] ) {
+ for ( exp in $.wikiEditor.modules[module].exp ) {
+ // Prepare configuration
+ var regex = $.wikiEditor.modules[module].exp[exp].regex;
+ var label = $.wikiEditor.modules[module].exp[exp].label;
+ var markAfter = $.wikiEditor.modules[module].exp[exp].markAfter || false;
+ // Search for tokens
+ var offset = 0;
+ while ( ( match = text.substr( offset ).match( regex ) ) != null ) {
+ right = ( left = offset + match.index ) + match[0].length;
+ tokenArray[tokenArray.length] = {
+ offset: markAfter ? right : left,
+ label: label,
+ tokenStart: left,
+ match: match
+ };
+ // Move to the right of this match
+ offset = right;
+ }
+ }
}
}
- }
- context.modules.highlight.markers = markers;
+ // Sort by start
+ tokenArray.sort( function ( a, b ) {
+ return a.tokenStart - b.tokenStart;
+ } );
+ // Let the world know, a scan just happened!
+ context.fn.trigger( 'scan' );
+ },
- // Get all markers
- context.fn.trigger( 'mark' );
- markers.sort( function( a, b ) { return a.start - b.start || a.end - b.end; } );
+ /**
+ * Marks up text with HTML
+ *
+ * @param division
+ * @param tokens
+ */
+ // FIXME: What do division and tokens do?
+ // TODO: Document the scan() and mark() APIs somewhere
+ mark: function ( context, division, tokens ) {
+ var i, subtracted, oldLength, j, o;
- // Serialize the markers array to a string and compare it with the one stored in the previous run - if they're
- // equal, there's no markers to change
- var markersStr = '';
- for ( var i = 0; i < markers.length; i++ ) {
- markersStr += markers[i].start + ',' + markers[i].end + ',' + markers[i].type + ',';
- }
- if ( context.modules.highlight.markersStr == markersStr ) {
- // No change, bail out
- return;
- }
- context.modules.highlight.markersStr = markersStr;
+ // Reset markers
+ var markers = [];
- // Traverse the iframe DOM, inserting markers where they're needed - store visited markers here so we know which
- // markers should be removed
- var visited = [], v = 0;
- for ( var i = 0; i < markers.length; i++ ) {
- if ( typeof markers[i].skipDivision !== 'undefined' && ( division == markers[i].skipDivision ) ) {
- continue;
+ // Recycle markers that will be skipped in this run
+ if ( context.modules.highlight.markers && division !== '' ) {
+ for ( i = 0; i < context.modules.highlight.markers.length; i++ ) {
+ if ( context.modules.highlight.markers[i].skipDivision == division ) {
+ markers.push( context.modules.highlight.markers[i] );
+ }
+ }
}
+ context.modules.highlight.markers = markers;
- // We want to isolate each marker, so we may need to split textNodes if a marker starts or ends halfway one.
- var start = markers[i].start;
- var s = context.fn.getOffset( start );
- if ( !s ) {
- // This shouldn't happen
- continue;
- }
- var startNode = s.node;
+ // Get all markers
+ context.fn.trigger( 'mark' );
+ markers.sort( function ( a, b ) {
+ return a.start - b.start || a.end - b.end;
+ } );
- // Don't wrap leading BRs, produces undesirable results
- // FIXME: It's also possible that the offset is a bit high because getOffset() has incremented .length to
- // fake the newline caused by startNode being in a P. In this case, prevent the textnode splitting below
- // from making startNode an empty textnode, IE barfs on that
- while ( startNode.nodeName == 'BR' || s.offset == startNode.nodeValue.length ) {
- start++;
- s = context.fn.getOffset( start );
- startNode = s.node;
+ // Serialize the markers array to a string and compare it with the one stored in the previous run - if they're
+ // equal, there's no markers to change
+ var markersStr = '';
+ for ( i = 0; i < markers.length; i++ ) {
+ markersStr += markers[i].start + ',' + markers[i].end + ',' + markers[i].type + ',';
+ }
+ if ( context.modules.highlight.markersStr == markersStr ) {
+ // No change, bail out
+ return;
}
+ context.modules.highlight.markersStr = markersStr;
- // The next marker starts somewhere in this textNode or at this BR
- if ( s.offset > 0 && s.node.nodeName == '#text' ) {
- // Split off the prefix - this leaves the prefix in the current node and puts the rest in a new node
- // which is our start node
- var newStartNode = startNode.splitText( s.offset < s.node.nodeValue.length ?
- s.offset : s.node.nodeValue.length - 1
- );
- var oldStartNode = startNode;
- startNode = newStartNode;
- // Update offset objects. We don't need purgeOffsets(), simply manipulating the existing offset objects
- // will suffice
- // FIXME: This manipulates context.offsets directly, which is ugly, but the performance improvement vs.
- // purgeOffsets() is worth it - this code doesn't set lastTextNode to newStartNode for offset objects
- // with lastTextNode == oldStartNode, but that doesn't really matter
- var subtracted = s.offset;
- var oldLength = s.length;
+ // Traverse the iframe DOM, inserting markers where they're needed - store visited markers here so we know which
+ // markers should be removed
+ var visited = [], v = 0;
+ for ( i = 0; i < markers.length; i++ ) {
+ if ( typeof markers[i].skipDivision !== 'undefined' && ( division == markers[i].skipDivision ) ) {
+ continue;
+ }
- var j, o;
- // Update offset objects referring to oldStartNode
- for ( j = start - subtracted; j < start; j++ ) {
- if ( j in context.offsets ) {
- o = context.offsets[j];
- o.node = oldStartNode;
- o.length = subtracted;
- }
+ // We want to isolate each marker, so we may need to split textNodes if a marker starts or ends halfway one.
+ var start = markers[i].start;
+ var s = context.fn.getOffset( start );
+ if ( !s ) {
+ // This shouldn't happen
+ continue;
}
- // Update offset objects referring to newStartNode
- for ( j = start; j < start - subtracted + oldLength; j++ ) {
- if ( j in context.offsets ) {
- o = context.offsets[j];
- o.node = newStartNode;
- o.offset -= subtracted;
- o.length -= subtracted;
- o.lastTextNode = oldStartNode;
- }
+ var startNode = s.node;
+
+ // Don't wrap leading BRs, produces undesirable results
+ // FIXME: It's also possible that the offset is a bit high because getOffset() has incremented .length to
+ // fake the newline caused by startNode being in a P. In this case, prevent the textnode splitting below
+ // from making startNode an empty textnode, IE barfs on that
+ while ( startNode.nodeName === 'BR' || s.offset === startNode.nodeValue.length ) {
+ start++;
+ s = context.fn.getOffset( start );
+ startNode = s.node;
}
- }
- var end = markers[i].end;
- // To avoid ending up at the first char of the next node, we grab the offset for end - 1 and add one to the
- // offset
- var e = context.fn.getOffset( end - 1 );
- if ( !e ) {
- // This shouldn't happen
- continue;
- }
- var endNode = e.node;
- if ( e.offset + 1 < e.length - 1 && endNode.nodeName == '#text' ) {
- // Split off the suffix. This puts the suffix in a new node and leaves the rest in endNode
- var oldEndNode = endNode;
- var newEndNode = endNode.splitText( e.offset + 1 );
- // Update offset objects
- var subtracted = e.offset + 1;
- var oldLength = e.length;
- var j, o;
- // Update offset objects referring to oldEndNode
- for ( j = end - subtracted; j < end; j++ ) {
- if ( j in context.offsets ) {
- o = context.offsets[j];
- o.node = oldEndNode;
- o.length = subtracted;
+
+ // The next marker starts somewhere in this textNode or at this BR
+ if ( s.offset > 0 && s.node.nodeName == '#text' ) {
+ // Split off the prefix - this leaves the prefix in the current node and puts the rest in a new node
+ // which is our start node
+ var newStartNode = startNode.splitText( s.offset < s.node.nodeValue.length ?
+ s.offset : s.node.nodeValue.length - 1
+ );
+ var oldStartNode = startNode;
+ startNode = newStartNode;
+ // Update offset objects. We don't need purgeOffsets(), simply manipulating the existing offset objects
+ // will suffice
+ // FIXME: This manipulates context.offsets directly, which is ugly, but the performance improvement vs.
+ // purgeOffsets() is worth it - this code doesn't set lastTextNode to newStartNode for offset objects
+ // with lastTextNode == oldStartNode, but that doesn't really matter
+ subtracted = s.offset;
+ oldLength = s.length;
+
+ // Update offset objects referring to oldStartNode
+ for ( j = start - subtracted; j < start; j++ ) {
+ if ( j in context.offsets ) {
+ o = context.offsets[j];
+ o.node = oldStartNode;
+ o.length = subtracted;
+ }
+ }
+ // Update offset objects referring to newStartNode
+ for ( j = start; j < start - subtracted + oldLength; j++ ) {
+ if ( j in context.offsets ) {
+ o = context.offsets[j];
+ o.node = newStartNode;
+ o.offset -= subtracted;
+ o.length -= subtracted;
+ o.lastTextNode = oldStartNode;
+ }
}
}
- // We have to insert this one, as it might not exist: we didn't call getOffset( end )
- context.offsets[end] = {
- 'node': newEndNode,
- 'offset': 0,
- 'length': oldLength - subtracted,
- 'lastTextNode': oldEndNode
- };
- // Update offset objects referring to newEndNode
- for ( j = end + 1; j < end - subtracted + oldLength; j++ ) {
- if ( j in context.offsets ) {
- o = context.offsets[j];
- o.node = newEndNode;
- o.offset -= subtracted;
- o.length -= subtracted;
- o.lastTextNode = oldEndNode;
+ var end = markers[i].end;
+ // To avoid ending up at the first char of the next node, we grab the offset for end - 1 and add one to the
+ // offset
+ var e = context.fn.getOffset( end - 1 );
+ if ( !e ) {
+ // This shouldn't happen
+ continue;
+ }
+ var endNode = e.node;
+ if ( e.offset + 1 < e.length - 1 && endNode.nodeName == '#text' ) {
+ // Split off the suffix. This puts the suffix in a new node and leaves the rest in endNode
+ var oldEndNode = endNode;
+ var newEndNode = endNode.splitText( e.offset + 1 );
+ // Update offset objects
+ subtracted = e.offset + 1;
+ oldLength = e.length;
+
+ // Update offset objects referring to oldEndNode
+ for ( j = end - subtracted; j < end; j++ ) {
+ if ( j in context.offsets ) {
+ o = context.offsets[j];
+ o.node = oldEndNode;
+ o.length = subtracted;
+ }
+ }
+ // We have to insert this one, as it might not exist: we didn't call getOffset( end )
+ context.offsets[end] = {
+ 'node': newEndNode,
+ 'offset': 0,
+ 'length': oldLength - subtracted,
+ 'lastTextNode': oldEndNode
+ };
+ // Update offset objects referring to newEndNode
+ for ( j = end + 1; j < end - subtracted + oldLength; j++ ) {
+ if ( j in context.offsets ) {
+ o = context.offsets[j];
+ o.node = newEndNode;
+ o.offset -= subtracted;
+ o.length -= subtracted;
+ o.lastTextNode = oldEndNode;
+ }
}
}
- }
- // Don't wrap trailing BRs, doing that causes weird issues
- if ( endNode.nodeName == 'BR' ) {
- endNode = e.lastTextNode;
- }
- // If startNode and endNode have different parents, we need to pull endNode and all textnodes in between
- // into startNode's parent and replace </p><p> with <br>
- if ( startNode.parentNode != endNode.parentNode ) {
- var startP = $( startNode ).closest( 'p' ).get( 0 );
- var t = new context.fn.rawTraverser( startNode, startP, context.$content.get( 0 ), false );
- var afterStart = startNode.nextSibling;
- var lastP = startP;
- var nextT = t.next();
- while ( nextT && t.node != endNode ) {
- t = nextT;
- nextT = t.next();
- // If t.node has a different parent, merge t.node.parentNode with startNode.parentNode
- if ( t.node.parentNode != startNode.parentNode ) {
- var oldParent = t.node.parentNode;
- if ( afterStart ) {
- if ( lastP != t.inP ) {
- // We're entering a new <p>, insert a <br>
- startNode.parentNode.insertBefore(
- startNode.ownerDocument.createElement( 'br' ),
- afterStart
- );
- }
- // A <p> with just a <br> in it is an empty line, so let's not bother with unwrapping it
- if ( !( oldParent.childNodes.length == 1 && oldParent.firstChild.nodeName == 'BR' ) ) {
- // Move all children of oldParent into startNode's parent
- while ( oldParent.firstChild ) {
- startNode.parentNode.insertBefore( oldParent.firstChild, afterStart );
+ // Don't wrap trailing BRs, doing that causes weird issues
+ if ( endNode.nodeName == 'BR' ) {
+ endNode = e.lastTextNode;
+ }
+ // If startNode and endNode have different parents, we need to pull endNode and all textnodes in between
+ // into startNode's parent and replace </p><p> with <br>
+ if ( startNode.parentNode !== endNode.parentNode ) {
+ var startP = $( startNode ).closest( 'p' ).get( 0 );
+ var t = new context.fn.rawTraverser( startNode, startP, context.$content.get( 0 ), false );
+ var afterStart = startNode.nextSibling;
+ var lastP = startP;
+ var nextT = t.next();
+ while ( nextT && t.node !== endNode ) {
+ t = nextT;
+ nextT = t.next();
+ // If t.node has a different parent, merge t.node.parentNode with startNode.parentNode
+ if ( t.node.parentNode !== startNode.parentNode ) {
+ var oldParent = t.node.parentNode;
+ if ( afterStart ) {
+ if ( lastP !== t.inP ) {
+ // We're entering a new <p>, insert a <br>
+ startNode.parentNode.insertBefore(
+ startNode.ownerDocument.createElement( 'br' ),
+ afterStart
+ );
}
- }
- } else {
- if ( lastP != t.inP ) {
- // We're entering a new <p>, insert a <br>
- startNode.parentNode.appendChild(
- startNode.ownerDocument.createElement( 'br' )
- );
- }
- // A <p> with just a <br> in it is an empty line, so let's not bother with unwrapping it
- if ( !( oldParent.childNodes.length == 1 && oldParent.firstChild.nodeName == 'BR' ) ) {
- // Move all children of oldParent into startNode's parent
- while ( oldParent.firstChild ) {
- startNode.parentNode.appendChild( oldParent.firstChild );
+ // A <p> with just a <br> in it is an empty line, so let's not bother with unwrapping it
+ if ( !( oldParent.childNodes.length == 1 && oldParent.firstChild.nodeName == 'BR' ) ) {
+ // Move all children of oldParent into startNode's parent
+ while ( oldParent.firstChild ) {
+ startNode.parentNode.insertBefore( oldParent.firstChild, afterStart );
+ }
+ }
+ } else {
+ if ( lastP !== t.inP ) {
+ // We're entering a new <p>, insert a <br>
+ startNode.parentNode.appendChild(
+ startNode.ownerDocument.createElement( 'br' )
+ );
+ }
+ // A <p> with just a <br> in it is an empty line, so let's not bother with unwrapping it
+ if ( !( oldParent.childNodes.length == 1 && oldParent.firstChild.nodeName == 'BR' ) ) {
+ // Move all children of oldParent into startNode's parent
+ while ( oldParent.firstChild ) {
+ startNode.parentNode.appendChild( oldParent.firstChild );
+ }
}
}
+ // Remove oldParent, which is now empty
+ oldParent.parentNode.removeChild( oldParent );
}
- // Remove oldParent, which is now empty
- oldParent.parentNode.removeChild( oldParent );
+ lastP = t.inP;
}
- lastP = t.inP;
+ // Moving nodes around like this invalidates offset objects
+ // TODO: Update offset objects ourselves for performance. Requires rewriting this code block to be
+ // offset-based rather than traverser-based
}
- // Moving nodes around like this invalidates offset objects
- // TODO: Update offset objects ourselves for performance. Requires rewriting this code block to be
- // offset-based rather than traverser-based
- }
- // Now wrap everything between startNode and endNode (may be equal).
- var ca1 = startNode, ca2 = endNode;
- if ( ca1 && ca2 && ca1.parentNode ) {
- var anchor = markers[i].getAnchor( ca1, ca2 );
- if ( !anchor ) {
- var commonAncestor = ca1.parentNode;
- if ( markers[i].anchor == 'wrap') {
- // We have to store things like .parentNode and .nextSibling because appendChild() changes these
- var newNode = ca1.ownerDocument.createElement( 'span' );
- var nextNode = ca2.nextSibling;
- // Append all nodes between ca1 and ca2 (inclusive) to newNode
- var n = ca1;
- while ( n != nextNode ) {
- var ns = n.nextSibling;
- newNode.appendChild( n );
- n = ns;
- }
- // Insert newNode in the right place
- if ( nextNode ) {
- commonAncestor.insertBefore( newNode, nextNode );
- } else {
- commonAncestor.appendChild( newNode );
+ // Now wrap everything between startNode and endNode (may be equal).
+ var ca1 = startNode, ca2 = endNode;
+ if ( ca1 && ca2 && ca1.parentNode ) {
+ var anchor = markers[i].getAnchor( ca1, ca2 );
+ if ( !anchor ) {
+ var commonAncestor = ca1.parentNode;
+ if ( markers[i].anchor == 'wrap') {
+ // We have to store things like .parentNode and .nextSibling because appendChild() changes these
+ var newNode = ca1.ownerDocument.createElement( 'span' );
+ var nextNode = ca2.nextSibling;
+ // Append all nodes between ca1 and ca2 (inclusive) to newNode
+ var n = ca1;
+ while ( n !== nextNode ) {
+ var ns = n.nextSibling;
+ newNode.appendChild( n );
+ n = ns;
+ }
+ // Insert newNode in the right place
+ if ( nextNode ) {
+ commonAncestor.insertBefore( newNode, nextNode );
+ } else {
+ commonAncestor.appendChild( newNode );
+ }
+ anchor = newNode;
+ } else if ( markers[i].anchor == 'tag' ) {
+ anchor = commonAncestor;
}
- anchor = newNode;
- } else if ( markers[i].anchor == 'tag' ) {
- anchor = commonAncestor;
- }
- $( anchor ).data( 'marker', markers[i] ).addClass( 'wikiEditor-highlight' );
- // Allow the module adding this marker to manipulate it
- markers[i].afterWrap( anchor, markers[i] );
+ $( anchor ).data( 'marker', markers[i] ).addClass( 'wikiEditor-highlight' );
+ // Allow the module adding this marker to manipulate it
+ markers[i].afterWrap( anchor, markers[i] );
- } else {
- // Update the marker object
- $( anchor ).data( 'marker', markers[i] );
- if ( typeof markers[i].onSkip == 'function' ) {
- markers[i].onSkip( anchor );
+ } else {
+ // Update the marker object
+ $( anchor ).data( 'marker', markers[i] );
+ if ( typeof markers[i].onSkip == 'function' ) {
+ markers[i].onSkip( anchor );
+ }
}
+ visited[v++] = anchor;
}
- visited[v++] = anchor;
- }
- }
- // Remove markers that were previously inserted but weren't passed to this function - visited[] contains the
- // visited elements in order and find() and each() preserve order
- var j = 0;
- context.$content.find( '.wikiEditor-highlight' ).each( function() {
- if ( visited[j] == this ) {
- // This marker is legit, leave it in
- j++;
- return true;
}
- // Remove this marker
- var marker = $(this).data( 'marker' );
- if ( marker && typeof marker.skipDivision != 'undefined' && ( division == marker.skipDivision ) ) {
- // Don't remove these either
- return true;
- }
- if ( marker && typeof marker.beforeUnwrap == 'function' )
- marker.beforeUnwrap( this );
- if ( ( marker && marker.anchor == 'tag' ) || $(this).is( 'p' ) ) {
- // Remove all classes
- $(this).removeAttr( 'class' );
- } else {
- // Assume anchor == 'wrap'
- $(this).replaceWith( this.childNodes );
- }
- context.fn.purgeOffsets();
- });
+ // Remove markers that were previously inserted but weren't passed to this function - visited[] contains the
+ // visited elements in order and find() and each() preserve order
+ j = 0;
+ context.$content.find( '.wikiEditor-highlight' ).each( function () {
+ if ( visited[j] == this ) {
+ // This marker is legit, leave it in
+ j++;
+ return true;
+ }
+ // Remove this marker
+ var marker = $(this).data( 'marker' );
+ if ( marker && typeof marker.skipDivision !== 'undefined' && ( division === marker.skipDivision ) ) {
+ // Don't remove these either
+ return true;
+ }
+ if ( marker && typeof marker.beforeUnwrap === 'function' )
+ marker.beforeUnwrap( this );
+ if ( ( marker && marker.anchor === 'tag' ) || $(this).is( 'p' ) ) {
+ // Remove all classes
+ $(this).removeAttr( 'class' );
+ } else {
+ // Assume anchor == 'wrap'
+ $(this).replaceWith( this.childNodes );
+ }
+ context.fn.purgeOffsets();
+ });
+ }
}
-}
+};
-}; })( jQuery );
+}( jQuery ) );
diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.js b/extensions/WikiEditor/modules/jquery.wikiEditor.js
index c2fb4094..6e87a45f 100644
--- a/extensions/WikiEditor/modules/jquery.wikiEditor.js
+++ b/extensions/WikiEditor/modules/jquery.wikiEditor.js
@@ -2,13 +2,13 @@
* This plugin provides a way to build a wiki-text editing user interface around a textarea.
*
* @example To intialize without any modules:
- * $( 'div#edittoolbar' ).wikiEditor();
+ * $( 'div#edittoolbar' ).wikiEditor();
*
* @example To initialize with one or more modules, or to add modules after it's already been initialized:
- * $( 'textarea#wpTextbox1' ).wikiEditor( 'addModule', 'toolbar', { ... config ... } );
+ * $( 'textarea#wpTextbox1' ).wikiEditor( 'addModule', 'toolbar', { ... config ... } );
*
*/
-( function( $ ) {
+( function ( $ ) {
/**
* Global static object for wikiEditor that provides generally useful functionality to all modules and contexts.
@@ -19,63 +19,68 @@ $.wikiEditor = {
* module name. The existance of a module in this object only indicates the module is available. To check if a
* module is in use by a specific context check the context.modules object.
*/
- 'modules': {},
+ modules: {},
+
/**
* A context can be extended, such as adding iframe support, on a per-wikiEditor instance basis.
*/
- 'extensions': {},
+ extensions: {},
+
/**
* In some cases like with the iframe's HTML file, it's convienent to have a lookup table of all instances of the
* WikiEditor. Each context contains an instance field which contains a key that corrosponds to a reference to the
* textarea which the WikiEditor was build around. This way, by passing a simple integer you can provide a way back
* to a specific context.
*/
- 'instances': [],
+ instances: [],
+
/**
* For each browser name, an array of conditions that must be met are supplied in [operaton, value]-form where
* operation is a string containing a JavaScript compatible binary operator and value is either a number to be
* compared with $.browser.versionNumber or a string to be compared with $.browser.version. If a browser is not
* specifically mentioned, we just assume things will work.
*/
- 'browsers': {
+ browsers: {
// Left-to-right languages
- 'ltr': {
+ ltr: {
// The toolbar layout is broken in IE6
- 'msie': [['>=', 7]],
+ msie: [['>=', 7]],
// Layout issues in FF < 2
- 'firefox': [['>=', 2]],
+ firefox: [['>=', 2]],
// Text selection bugs galore - this may be a different situation with the new iframe-based solution
- 'opera': [['>=', 9.6]],
+ opera: [['>=', 9.6]],
// jQuery minimums
- 'safari': [['>=', 3]],
- 'chrome': [['>=', 3]],
- 'netscape': [['>=', 9]],
- 'blackberry': false,
- 'ipod': false,
- 'iphone': false
+ safari: [['>=', 3]],
+ chrome: [['>=', 3]],
+ netscape: [['>=', 9]],
+ blackberry: false,
+ ipod: false,
+ iphone: false
},
// Right-to-left languages
- 'rtl': {
+ rtl: {
// The toolbar layout is broken in IE 7 in RTL mode, and IE6 in any mode
- 'msie': [['>=', 8]],
+ msie: [['>=', 8]],
// Layout issues in FF < 2
- 'firefox': [['>=', 2]],
+ firefox: [['>=', 2]],
// Text selection bugs galore - this may be a different situation with the new iframe-based solution
- 'opera': [['>=', 9.6]],
+ opera: [['>=', 9.6]],
// jQuery minimums
- 'safari': [['>=', 3]],
- 'chrome': [['>=', 3]],
- 'netscape': [['>=', 9]],
- 'blackberry': false,
- 'ipod': false,
- 'iphone': false
+ safari: [['>=', 3]],
+ chrome: [['>=', 3]],
+ netscape: [['>=', 9]],
+ blackberry: false,
+ ipod: false,
+ iphone: false
}
},
+
/**
* Path to images - this is a bit messy, and it would need to change if this code (and images) gets moved into the
* core - or anywhere for that matter...
*/
- 'imgPath' : mw.config.get( 'wgExtensionAssetsPath' ) + '/WikiEditor/modules/images/',
+ imgPath : mw.config.get( 'wgExtensionAssetsPath' ) + '/WikiEditor/modules/images/',
+
/**
* Checks the current browser against the browsers object to determine if the browser has been black-listed or not.
* Because these rules are often very complex, the object contains configurable operators and can check against
@@ -88,7 +93,7 @@ $.wikiEditor = {
* "open-web" way to go.
* @param module Module object, defaults to $.wikiEditor
*/
- 'isSupported': function( module ) {
+ isSupported: function ( module ) {
// Fallback to the wikiEditor browser map if no special map is provided in the module
var mod = module && 'browsers' in module ? module : $.wikiEditor;
// Check for and make use of cached value and early opportunities to bail
@@ -99,21 +104,23 @@ $.wikiEditor = {
// Run a browser support test and then cache and return the result
return mod.supported = $.client.test( mod.browsers );
},
+
/**
* Checks if a module has a specific requirement
* @param module Module object
* @param requirement String identifying requirement
*/
- 'isRequired': function( module, requirement ) {
- if ( typeof module['req'] !== 'undefined' ) {
- for ( var req in module['req'] ) {
- if ( module['req'][req] == requirement ) {
+ isRequired: function ( module, requirement ) {
+ if ( typeof module.req !== 'undefined' ) {
+ for ( var req in module.req ) {
+ if ( module.req[req] == requirement ) {
return true;
}
}
}
return false;
},
+
/**
* Provides a way to extract messages from objects. Wraps the mediaWiki.msg() function, which
* may eventually become a wrapper for some kind of core MW functionality.
@@ -124,7 +131,7 @@ $.wikiEditor = {
* would return the raw text 'that', while passing property as 'foo' would return the internationalized message
* with the key 'bar'.
*/
- 'autoMsg': function( object, property ) {
+ autoMsg: function ( object, property ) {
// Accept array of possible properties, of which the first one found will be used
if ( typeof property == 'object' ) {
for ( var i in property ) {
@@ -147,6 +154,7 @@ $.wikiEditor = {
return '';
}
},
+
/**
* Provides a way to extract a property of an object in a certain language, falling back on the property keyed as
* 'default' or 'default-rtl'. If such key doesn't exist, the object itself is considered the actual value, which
@@ -156,10 +164,11 @@ $.wikiEditor = {
* @param object Object to extract property from
* @param lang Language code, defaults to wgUserLanguage
*/
- 'autoLang': function( object, lang ) {
+ autoLang: function ( object, lang ) {
var defaultKey = $( 'body' ).hasClass( 'rtl' ) ? 'default-rtl' : 'default';
return object[lang || mw.config.get( 'wgUserLanguage' )] || object[defaultKey] || object['default'] || object;
},
+
/**
* Provides a way to extract the path of an icon in a certain language, automatically appending a version number for
* caching purposes and prepending an image path when icon paths are relative.
@@ -168,7 +177,7 @@ $.wikiEditor = {
* @param path Default icon path, defaults to $.wikiEditor.imgPath
* @param lang Language code, defaults to wgUserLanguage
*/
- 'autoIcon': function( icon, path, lang ) {
+ autoIcon: function ( icon, path, lang ) {
var src = $.wikiEditor.autoLang( icon, lang );
path = path || $.wikiEditor.imgPath;
// Prepend path if src is not absolute
@@ -177,6 +186,7 @@ $.wikiEditor = {
}
return src + '?' + mw.loader.version( 'jquery.wikiEditor' );
},
+
/**
* Get the sprite offset for a language if available, icon for a language if available, or the default offset or icon,
* in that order of preference.
@@ -185,7 +195,7 @@ $.wikiEditor = {
* @param path Icon path, see autoIcon()
* @param lang Language code, defaults to wgUserLanguage
*/
- 'autoIconOrOffset': function( icon, offset, path, lang ) {
+ autoIconOrOffset: function ( icon, offset, path, lang ) {
lang = lang || mw.config.get( 'wgUserLanguage' );
if ( typeof offset == 'object' && lang in offset ) {
return offset[lang];
@@ -200,7 +210,7 @@ $.wikiEditor = {
/**
* jQuery plugin that provides a way to initialize a wikiEditor instance on a textarea.
*/
-$.fn.wikiEditor = function() {
+$.fn.wikiEditor = function () {
// Skip any further work when running in browsers that are unsupported
if ( !$.wikiEditor.isSupported() ) {
@@ -263,21 +273,22 @@ if ( !context || typeof context == 'undefined' ) {
* @param data Either a string of the name of a module to add without any additional configuration parameters,
* or an object with members keyed with module names and valued with configuration objects.
*/
- 'addModule': function( context, data ) {
- var modules = {};
+ 'addModule': function ( context, data ) {
+ var module, call,
+ modules = {};
if ( typeof data == 'string' ) {
modules[data] = {};
} else if ( typeof data == 'object' ) {
modules = data;
}
- for ( var module in modules ) {
+ for ( module in modules ) {
// Check for the existance of an available / supported module with a matching name and a create function
if ( typeof module == 'string' && typeof $.wikiEditor.modules[module] !== 'undefined' &&
$.wikiEditor.isSupported( $.wikiEditor.modules[module] ) )
{
// Extend the context's core API with this module's own API calls
if ( 'api' in $.wikiEditor.modules[module] ) {
- for ( var call in $.wikiEditor.modules[module].api ) {
+ for ( call in $.wikiEditor.modules[module].api ) {
// Modules may not overwrite existing API functions - first come, first serve
if ( !( call in context.api ) ) {
context.api[call] = $.wikiEditor.modules[module].api[call];
@@ -313,7 +324,7 @@ if ( !context || typeof context == 'undefined' ) {
/**
* Executes core event filters as well as event handlers provided by modules.
*/
- 'trigger': function( name, event ) {
+ trigger: function ( name, event ) {
// Event is an optional argument, but from here on out, at least the type field should be dependable
if ( typeof event == 'undefined' ) {
event = { 'type': 'custom' };
@@ -339,9 +350,9 @@ if ( !context || typeof context == 'undefined' ) {
name in $.wikiEditor.modules[module].evt
) {
var ret = $.wikiEditor.modules[module].evt[name]( context, event );
- if (ret != null) {
+ if (ret !== null) {
//if 1 returns false, the end result is false
- if( returnFromModules == null ) {
+ if( returnFromModules === null ) {
returnFromModules = ret;
} else {
returnFromModules = returnFromModules && ret;
@@ -349,45 +360,47 @@ if ( !context || typeof context == 'undefined' ) {
}
}
}
- if ( returnFromModules != null ) {
+ if ( returnFromModules !== null ) {
return returnFromModules;
} else {
return true;
}
},
+
/**
* Adds a button to the UI
*/
- 'addButton': function( options ) {
+ addButton: function ( options ) {
// Ensure that buttons and tabs are visible
context.$controls.show();
context.$buttons.show();
- return $( '<button />' )
+ return $( '<button>' )
.text( $.wikiEditor.autoMsg( options, 'caption' ) )
.click( options.action )
.appendTo( context.$buttons );
},
+
/**
* Adds a view to the UI, which is accessed using a set of tabs. Views are mutually exclusive and by default a
* wikitext view will be present. Only when more than one view exists will the tabs will be visible.
*/
- 'addView': function( options ) {
+ addView: function ( options ) {
// Adds a tab
function addTab( options ) {
// Ensure that buttons and tabs are visible
context.$controls.show();
context.$tabs.show();
// Return the newly appended tab
- return $( '<div></div>' )
+ return $( '<div>' )
.attr( 'rel', 'wikiEditor-ui-view-' + options.name )
.addClass( context.view == options.name ? 'current' : null )
- .append( $( '<a></a>' )
+ .append( $( '<a>' )
.attr( 'href', '#' )
- .mousedown( function() {
+ .mousedown( function () {
// No dragging!
return false;
} )
- .click( function( event ) {
+ .click( function ( event ) {
context.$ui.find( '.wikiEditor-ui-view' ).hide();
context.$ui.find( '.' + $(this).parent().attr( 'rel' ) ).show();
context.$tabs.find( 'div' ).removeClass( 'current' );
@@ -404,21 +417,22 @@ if ( !context || typeof context == 'undefined' ) {
.appendTo( context.$tabs );
}
// Automatically add the previously not-needed wikitext tab
- if ( !context.$tabs.children().size() ) {
+ if ( !context.$tabs.children().length ) {
addTab( { 'name': 'wikitext', 'titleMsg': 'wikieditor-wikitext-tab' } );
}
// Add the tab for the view we were actually asked to add
addTab( options );
// Return newly appended view
- return $( '<div></div>' )
+ return $( '<div>' )
.addClass( 'wikiEditor-ui-view wikiEditor-ui-view-' + options.name )
.hide()
.appendTo( context.$ui );
},
+
/**
* Save scrollTop and cursor position for IE
*/
- 'saveCursorAndScrollTop': function() {
+ saveCursorAndScrollTop: function () {
if ( $.client.profile().name === 'msie' ) {
var IHateIE = {
'scrollTop' : context.$textarea.scrollTop(),
@@ -427,10 +441,11 @@ if ( !context || typeof context == 'undefined' ) {
context.$textarea.data( 'IHateIE', IHateIE );
}
},
+
/**
* Restore scrollTo and cursor position for IE
*/
- 'restoreCursorAndScrollTop': function() {
+ restoreCursorAndScrollTop: function () {
if ( $.client.profile().name === 'msie' ) {
var IHateIE = context.$textarea.data( 'IHateIE' );
if ( IHateIE ) {
@@ -440,19 +455,21 @@ if ( !context || typeof context == 'undefined' ) {
}
}
},
+
/**
* Save text selection for IE
*/
- 'saveSelection': function() {
+ saveSelection: function () {
if ( $.client.profile().name === 'msie' ) {
context.$textarea.focus();
context.savedSelection = document.selection.createRange();
}
},
+
/**
* Restore text selection for IE
*/
- 'restoreSelection': function() {
+ restoreSelection: function () {
if ( $.client.profile().name === 'msie' && context.savedSelection !== null ) {
context.$textarea.focus();
context.savedSelection.select();
@@ -471,7 +488,7 @@ if ( !context || typeof context == 'undefined' ) {
// Assemble a temporary div to place over the wikiEditor while it's being constructed
/* Disabling our loading div for now
- var $loader = $( '<div></div>' )
+ var $loader = $( '<div>' )
.addClass( 'wikiEditor-ui-loading' )
.append( $( '<span>' + mediaWiki.msg( 'wikieditor-loading' ) + '</span>' )
.css( 'marginTop', context.$textarea.height() / 2 ) );
@@ -482,36 +499,38 @@ if ( !context || typeof context == 'undefined' ) {
.after( $loader )
.add( $loader )
*/
- .wrapAll( $( '<div></div>' ).addClass( 'wikiEditor-ui' ) )
- .wrapAll( $( '<div></div>' ).addClass( 'wikiEditor-ui-view wikiEditor-ui-view-wikitext' ) )
- .wrapAll( $( '<div></div>' ).addClass( 'wikiEditor-ui-left' ) )
- .wrapAll( $( '<div></div>' ).addClass( 'wikiEditor-ui-bottom' ) )
- .wrapAll( $( '<div></div>' ).addClass( 'wikiEditor-ui-text' ) );
+ .wrapAll( $( '<div>' ).addClass( 'wikiEditor-ui' ) )
+ .wrapAll( $( '<div>' ).addClass( 'wikiEditor-ui-view wikiEditor-ui-view-wikitext' ) )
+ .wrapAll( $( '<div>' ).addClass( 'wikiEditor-ui-left' ) )
+ .wrapAll( $( '<div>' ).addClass( 'wikiEditor-ui-bottom' ) )
+ .wrapAll( $( '<div>' ).addClass( 'wikiEditor-ui-text' ) );
// Get references to some of the newly created containers
context.$ui = context.$textarea.parent().parent().parent().parent().parent();
context.$wikitext = context.$textarea.parent().parent().parent().parent();
// Add in tab and button containers
context.$wikitext
.before(
- $( '<div></div>' ).addClass( 'wikiEditor-ui-controls' )
- .append( $( '<div></div>' ).addClass( 'wikiEditor-ui-tabs' ).hide() )
- .append( $( '<div></div>' ).addClass( 'wikiEditor-ui-buttons' ) )
+ $( '<div>' ).addClass( 'wikiEditor-ui-controls' )
+ .append( $( '<div>' ).addClass( 'wikiEditor-ui-tabs' ).hide() )
+ .append( $( '<div>' ).addClass( 'wikiEditor-ui-buttons' ) )
)
- .before( $( '<div style="clear:both;"></div>' ) );
+ .before( $( '<div style="clear: both;"></div>' ) );
// Get references to some of the newly created containers
context.$controls = context.$ui.find( '.wikiEditor-ui-buttons' ).hide();
context.$buttons = context.$ui.find( '.wikiEditor-ui-buttons' );
context.$tabs = context.$ui.find( '.wikiEditor-ui-tabs' );
// Clear all floating after the UI
- context.$ui.after( $( '<div style="clear:both;"></div>' ) );
+ context.$ui.after( $( '<div style="clear: both;"></div>' ) );
// Attach a right container
- context.$wikitext.append( $( '<div></div>' ).addClass( 'wikiEditor-ui-right' ) );
+ context.$wikitext.append( $( '<div>' ).addClass( 'wikiEditor-ui-right' ) );
// Attach a top container to the left pane
- context.$wikitext.find( '.wikiEditor-ui-left' ).prepend( $( '<div></div>' ).addClass( 'wikiEditor-ui-top' ) );
+ context.$wikitext.find( '.wikiEditor-ui-left' ).prepend( $( '<div>' ).addClass( 'wikiEditor-ui-top' ) );
// Setup the intial view
context.view = 'wikitext';
// Trigger the "resize" event anytime the window is resized
- $( window ).resize( function( event ) { context.fn.trigger( 'resize', event ); } );
+ $( window ).resize( function ( event ) {
+ context.fn.trigger( 'resize', event );
+ } );
}
/* API Execution */
@@ -520,9 +539,9 @@ if ( !context || typeof context == 'undefined' ) {
var args = $.makeArray( arguments );
// Dynamically setup core extensions for modules that are required
-if ( args[0] == 'addModule' && typeof args[1] != 'undefined' ) {
+if ( args[0] == 'addModule' && typeof args[1] !== 'undefined' ) {
var modules = args[1];
- if ( typeof modules != "object" ) {
+ if ( typeof modules !== "object" ) {
modules = {};
modules[args[1]] = '';
}
@@ -536,7 +555,7 @@ if ( args[0] == 'addModule' && typeof args[1] != 'undefined' ) {
$.inArray( e, context.extensions ) === -1
) {
context.extensions[context.extensions.length] = e;
- $.wikiEditor.extensions[e]( context );
+ $.wikiEditor.extensions[e]( context );
}
}
break;
@@ -549,11 +568,13 @@ if ( args.length > 0 ) {
// Handle API calls
var call = args.shift();
if ( call in context.api ) {
- context.api[call]( context, typeof args[0] == 'undefined' ? {} : args[0] );
+ context.api[call]( context, typeof args[0] === 'undefined' ? {} : args[0] );
}
}
// Store the context for next time, and support chaining
return $(this).data( 'wikiEditor-context', context );
-}; } )( jQuery );
+};
+
+}( jQuery ) );
diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.preview.css b/extensions/WikiEditor/modules/jquery.wikiEditor.preview.css
index 7eb455b5..6b026a1e 100644
--- a/extensions/WikiEditor/modules/jquery.wikiEditor.preview.css
+++ b/extensions/WikiEditor/modules/jquery.wikiEditor.preview.css
@@ -1,4 +1,4 @@
-/*
+/**
* CSS for WikiEditor Preview jQuery plugin
*/
@@ -6,21 +6,26 @@
padding: 1em;
background-color: white;
}
+
.wikiEditor-preview-loading span {
color: #666666;
}
+
.wikiEditor-preview-spinner {
padding-right: 1em;
}
+
.wikiEditor-preview-contents {
padding: 1em;
background-color: white;
}
+
/* FIXME: This only works for the first wikiEditor on the page! */
#wikiEditor-0-preview-dialog .wikiEditor-ui-loading {
overflow: hidden;
border: none;
}
+
.ui-dialog .ui-dialog-buttonpane {
margin: 0 !important;
-} \ No newline at end of file
+}
diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.preview.js b/extensions/WikiEditor/modules/jquery.wikiEditor.preview.js
index 22c6d89e..39907364 100644
--- a/extensions/WikiEditor/modules/jquery.wikiEditor.preview.js
+++ b/extensions/WikiEditor/modules/jquery.wikiEditor.preview.js
@@ -1,25 +1,28 @@
/* Preview module for wikiEditor */
-( function( $ ) { $.wikiEditor.modules.preview = {
+( function ( $, mw ) {
+
+$.wikiEditor.modules.preview = {
/**
* Compatability map
*/
-'browsers': {
+browsers: {
// Left-to-right languages
- 'ltr': {
- 'msie': [['>=', 7]],
- 'firefox': [['>=', 3]],
- 'opera': [['>=', 9.6]],
- 'safari': [['>=', 4]]
+ ltr: {
+ msie: [['>=', 7]],
+ firefox: [['>=', 3]],
+ opera: [['>=', 9.6]],
+ safari: [['>=', 4]]
},
// Right-to-left languages
- 'rtl': {
- 'msie': [['>=', 8]],
- 'firefox': [['>=', 3]],
- 'opera': [['>=', 9.6]],
- 'safari': [['>=', 4]]
+ rtl: {
+ msie: [['>=', 8]],
+ firefox: [['>=', 3]],
+ opera: [['>=', 9.6]],
+ safari: [['>=', 4]]
}
},
+
/**
* Internally used functions
*/
@@ -29,7 +32,7 @@ fn: {
* @param context Context object of editor to create module in
* @param config Configuration object to create module from
*/
- create: function( context, config ) {
+ create: function ( context, config ) {
if ( 'initialized' in context.modules.preview ) {
return;
}
@@ -41,11 +44,11 @@ fn: {
context.modules.preview.$preview = context.fn.addView( {
'name': 'preview',
'titleMsg': 'wikieditor-preview-tab',
- 'init': function( context ) {
+ 'init': function ( context ) {
// Gets the latest copy of the wikitext
var wikitext = context.$textarea.textSelection( 'getContents' );
// Aborts when nothing has changed since the last preview
- if ( context.modules.preview.previewText == wikitext ) {
+ if ( context.modules.preview.previewText === wikitext ) {
return;
}
context.modules.preview.$preview.find( '.wikiEditor-preview-contents' ).empty();
@@ -53,14 +56,14 @@ fn: {
$.post(
mw.util.wikiScript( 'api' ),
{
- 'action': 'parse',
- 'title': mw.config.get( 'wgPageName' ),
- 'text': wikitext,
- 'prop': 'text',
- 'pst': '',
- 'format': 'json'
+ format: 'json',
+ action: 'parse',
+ title: mw.config.get( 'wgPageName' ),
+ text: wikitext,
+ prop: 'text',
+ pst: ''
},
- function( data ) {
+ function ( data ) {
if (
typeof data.parse == 'undefined' ||
typeof data.parse.text == 'undefined' ||
@@ -72,7 +75,7 @@ fn: {
context.modules.preview.$preview.find( '.wikiEditor-preview-loading' ).hide();
context.modules.preview.$preview.find( '.wikiEditor-preview-contents' )
.html( data.parse.text['*'] )
- .find( 'a:not([href^=#])' ).click( function() { return false; } );
+ .find( 'a:not([href^=#])' ).click( false );
},
'json'
);
@@ -82,7 +85,7 @@ fn: {
context.$changesTab = context.fn.addView( {
'name': 'changes',
'titleMsg': 'wikieditor-preview-changes-tab',
- 'init': function( context ) {
+ 'init': function ( context ) {
// Gets the latest copy of the wikitext
var wikitext = context.$textarea.textSelection( 'getContents' );
// Aborts when nothing has changed since the last time
@@ -94,28 +97,28 @@ fn: {
// Call the API. First PST the input, then diff it
var postdata = {
- 'action': 'parse',
- 'onlypst': '',
- 'text': wikitext,
- 'format': 'json'
+ format: 'json',
+ action: 'parse',
+ onlypst: '',
+ text: wikitext
};
- $.post( mw.util.wikiScript( 'api' ), postdata, function( data ) {
+ $.post( mw.util.wikiScript( 'api' ), postdata, function ( data ) {
try {
var postdata2 = {
- 'action': 'query',
- 'indexpageids': '',
- 'prop': 'revisions',
- 'titles': mw.config.get( 'wgPageName' ),
- 'rvdifftotext': data.parse.text['*'],
- 'rvprop': '',
- 'format': 'json'
+ format: 'json',
+ action: 'query',
+ indexpageids: '',
+ prop: 'revisions',
+ titles: mw.config.get( 'wgPageName' ),
+ rvdifftotext: data.parse.text['*'],
+ rvprop: ''
};
- var section = $( '[name=wpSection]' ).val();
- if ( section != '' )
- postdata2['rvsection'] = section;
+ var section = $( '[name="wpSection"]' ).val();
+ if ( section !== '' )
+ postdata2.rvsection = section;
- $.post( mw.util.wikiScript( 'api' ), postdata2, function( data ) {
+ $.post( mw.util.wikiScript( 'api' ), postdata2, function ( data ) {
// Add diff CSS
mw.loader.load( 'mediawiki.action.history.diff' );
try {
@@ -129,17 +132,17 @@ fn: {
} catch ( e ) { } // "blah is undefined" error, ignore
}, 'json'
);
- } catch( e ) { } // "blah is undefined" error, ignore
+ } catch ( e ) { } // "blah is undefined" error, ignore
}, 'json' );
}
} );
- var loadingMsg = mediaWiki.msg( 'wikieditor-preview-loading' );
+ var loadingMsg = mw.msg( 'wikieditor-preview-loading' );
context.modules.preview.$preview
.add( context.$changesTab )
- .append( $( '<div />' )
+ .append( $( '<div>' )
.addClass( 'wikiEditor-preview-loading' )
- .append( $( '<img />' )
+ .append( $( '<img>' )
.addClass( 'wikiEditor-preview-spinner' )
.attr( {
'src': $.wikiEditor.imgPath + 'dialogs/loading.gif',
@@ -149,16 +152,18 @@ fn: {
} )
)
.append(
- $( '<span></span>' ).text( loadingMsg )
+ $( '<span>' ).text( loadingMsg )
)
)
- .append( $( '<div />' )
+ .append( $( '<div>' )
.addClass( 'wikiEditor-preview-contents' )
);
context.$changesTab.find( '.wikiEditor-preview-contents' )
- .html( '<table class="diff"><col class="diff-marker" /><col class="diff-content" />' +
- '<col class="diff-marker" /><col class="diff-content" /><tbody /></table>' );
+ .html( '<table class="diff"><col class="diff-marker"/><col class="diff-content"/>' +
+ '<col class="diff-marker"/><col class="diff-content"/><tbody/></table>' );
}
}
-}; } )( jQuery );
+};
+
+}( jQuery, mediaWiki ) );
diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.previewDialog.css b/extensions/WikiEditor/modules/jquery.wikiEditor.previewDialog.css
index 7a27f594..f66773b0 100644
--- a/extensions/WikiEditor/modules/jquery.wikiEditor.previewDialog.css
+++ b/extensions/WikiEditor/modules/jquery.wikiEditor.previewDialog.css
@@ -1,4 +1,4 @@
-/*
+/**
* CSS for WikiEditor Preview Dialog jQuery plugin
*/
@@ -14,6 +14,7 @@
overflow: hidden;
border: none;
}
+
/* FIXME: This only works for the first wikiEditor on the page! */
#wikiEditor-0-preview-dialog .wikiEditor-ui-loading span {
display: block;
@@ -24,12 +25,15 @@
text-indent: -9999px;
margin: 50px auto;
}
+
.ui-dialog .ui-dialog-buttonpane {
margin: 0 !important;
}
+
.wikiEditor-preview-dialog-contents {
font-size: 0.9em !important;
}
+
.wikiEditor-preview-dialog-contents #firstHeading {
font-size: 2.1em;
-} \ No newline at end of file
+}
diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.publish.js b/extensions/WikiEditor/modules/jquery.wikiEditor.publish.js
index 5a3b6cd6..bb631cf2 100644
--- a/extensions/WikiEditor/modules/jquery.wikiEditor.publish.js
+++ b/extensions/WikiEditor/modules/jquery.wikiEditor.publish.js
@@ -1,23 +1,25 @@
/* Publish module for wikiEditor */
-( function( $ ) { $.wikiEditor.modules.publish = {
+( function ( $ ) {
+
+$.wikiEditor.modules.publish = {
/**
* Compatability map
*/
-'browsers': {
+browsers: {
// Left-to-right languages
- 'ltr': {
- 'msie': [['>=', 7]],
- 'firefox': [['>=', 3]],
- 'opera': [['>=', 9.6]],
- 'safari': [['>=', 4]]
+ ltr: {
+ msie: [['>=', 7]],
+ firefox: [['>=', 3]],
+ opera: [['>=', 9.6]],
+ safari: [['>=', 4]]
},
// Right-to-left languages
- 'rtl': {
- 'msie': [['>=', 8]],
- 'firefox': [['>=', 3]],
- 'opera': [['>=', 9.6]],
- 'safari': [['>=', 4]]
+ rtl: {
+ msie: [['>=', 8]],
+ firefox: [['>=', 3]],
+ opera: [['>=', 9.6]],
+ safari: [['>=', 4]]
}
},
/**
@@ -29,7 +31,7 @@ fn: {
* @param context Context object of editor to create module in
* @param config Configuration object to create module from
*/
- create: function( context, config ) {
+ create: function ( context, config ) {
// Build the dialog behind the Publish button
var dialogID = 'wikiEditor-' + context.instance + '-dialog';
$.wikiEditor.modules.dialogs.fn.create(
@@ -61,8 +63,10 @@ fn: {
</div>\
</form>\
</div>',
- init: function() {
- $(this).find( '[rel]' ).each( function() {
+ init: function () {
+ var i;
+
+ $(this).find( '[rel]' ).each( function () {
$(this).text( mediaWiki.msg( $(this).attr( 'rel' ) ) );
});
@@ -72,8 +76,8 @@ fn: {
// TODO: internationalize by splitting on other characters that end statements
var copyWarnStatements = copyWarnHTML.split( '. ' );
var newCopyWarnHTML = '<ul>';
- for ( var i = 0; i < copyWarnStatements.length; i++ ) {
- if ( copyWarnStatements[i] != '' ) {
+ for ( i = 0; i < copyWarnStatements.length; i++ ) {
+ if ( copyWarnStatements[i] !== '' ) {
var copyWarnStatement = $.trim( copyWarnStatements[i] ).replace( /\.*$/, '' );
newCopyWarnHTML += '<li>' + copyWarnStatement + '.</li>';
}
@@ -85,42 +89,42 @@ fn: {
);
/* END OF REALLY DIRTY HACK */
- if ( $( '#wpMinoredit' ).size() == 0 )
+ if ( $( '#wpMinoredit' ).length === 0 )
$( '#wikiEditor-' + context.instance + '-dialog-minor' ).hide();
else if ( $( '#wpMinoredit' ).is( ':checked' ) )
$( '#wikiEditor-' + context.instance + '-dialog-minor' )
- .attr( 'checked', 'checked' );
- if ( $( '#wpWatchthis' ).size() == 0 )
+ .prop( 'checked', true );
+ if ( $( '#wpWatchthis' ).length === 0 )
$( '#wikiEditor-' + context.instance + '-dialog-watch' ).hide();
else if ( $( '#wpWatchthis' ).is( ':checked' ) )
$( '#wikiEditor-' + context.instance + '-dialog-watch' )
- .attr( 'checked', 'checked' );
+ .prop( 'checked', true );
- $(this).find( 'form' ).submit( function( e ) {
+ $(this).find( 'form' ).submit( function ( e ) {
$(this).closest( '.ui-dialog' ).find( 'button:first' ).click();
e.preventDefault();
});
},
dialog: {
buttons: {
- 'wikieditor-publish-dialog-publish': function() {
+ 'wikieditor-publish-dialog-publish': function () {
var minorChecked = $( '#wikiEditor-' + context.instance +
'-dialog-minor' ).is( ':checked' ) ?
'checked' : '';
var watchChecked = $( '#wikiEditor-' + context.instance +
'-dialog-watch' ).is( ':checked' ) ?
'checked' : '';
- $( '#wpMinoredit' ).attr( 'checked', minorChecked );
- $( '#wpWatchthis' ).attr( 'checked', watchChecked );
+ $( '#wpMinoredit' ).prop( 'checked', minorChecked );
+ $( '#wpWatchthis' ).prop( 'checked', watchChecked );
$( '#wpSummary' ).val( $( '#wikiEditor-' + context.instance +
'-dialog-summary' ).val() );
$( '#editform' ).submit();
},
- 'wikieditor-publish-dialog-goback': function() {
+ 'wikieditor-publish-dialog-goback': function () {
$(this).dialog( 'close' );
}
},
- open: function() {
+ open: function () {
$( '#wikiEditor-' + context.instance + '-dialog-summary' ).focus();
},
width: 500
@@ -129,18 +133,22 @@ fn: {
}
}
);
+
context.fn.addButton( {
'captionMsg': 'wikieditor-publish-button-publish',
- 'action': function() {
+ 'action': function () {
$( '#' + dialogID ).dialog( 'open' );
return false;
}
} );
+
context.fn.addButton( {
'captionMsg': 'wikieditor-publish-button-cancel',
- 'action': function() { }
+ 'action': function () { }
} );
}
}
-}; } )( jQuery );
+};
+
+}( jQuery ) );
diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.templateEditor.js b/extensions/WikiEditor/modules/jquery.wikiEditor.templateEditor.js
index 9857b9e8..bd00325f 100644
--- a/extensions/WikiEditor/modules/jquery.wikiEditor.templateEditor.js
+++ b/extensions/WikiEditor/modules/jquery.wikiEditor.templateEditor.js
@@ -416,7 +416,7 @@ fn: {
} )
.appendTo( $paramRow );
$paramRow
- .append( '<div style="clear:both"></div>' )
+ .append( '<div style="clear: both;"></div>' )
.appendTo( $fields );
}
}
@@ -566,7 +566,7 @@ fn: {
ranges[params[rangeIndex].valueIndex].newVal = value;
}
return retVal;
- };
+ }
/* Public Functions */
diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.toc.css b/extensions/WikiEditor/modules/jquery.wikiEditor.toc.css
index bb1e8775..d870e3ed 100644
--- a/extensions/WikiEditor/modules/jquery.wikiEditor.toc.css
+++ b/extensions/WikiEditor/modules/jquery.wikiEditor.toc.css
@@ -9,9 +9,11 @@
overflow: auto;
overflow-x: hidden;
}
+
.wikiEditor-ui-toc {
border-left: solid silver 1px;
}
+
.wikiEditor-ui-toc ul {
padding: 0;
margin: 0;
@@ -22,6 +24,7 @@
list-style-type: none;
width: 100%;
}
+
.tab-toc {
/* Should match the toolbar */
/* @embed */
@@ -36,13 +39,16 @@
white-space: nowrap;
overflow: hidden;
}
+
.tab-toc a {
outline: none;
}
+
.wikiEditor-ui-toc li {
padding: 0;
margin: 0;
}
+
.wikiEditor-ui-toc ul ul {
padding: 0;
margin: 0;
@@ -51,35 +57,44 @@
list-style: none;
background-image: none;
}
+
.wikiEditor-ui-toc ul li div {
display: block;
font-size: 0.9em;
cursor: pointer;
color: #0645ad;
}
+
.wikiEditor-ui-toc ul li div {
padding: 0.125em;
padding-left: 1em;
}
+
.wikiEditor-ui-toc ul ul li div {
padding-left: 2em;
}
+
.wikiEditor-ui-toc ul ul ul li div {
padding-left: 3em;
}
+
.wikiEditor-ui-toc ul ul ul ul li div {
padding-left: 4em;
}
+
.wikiEditor-ui-toc ul ul ul ul ul li div {
padding-left: 5em;
}
+
.wikiEditor-ui-toc ul ul ul ul ul ul li div {
padding-left: 6em;
}
+
.wikiEditor-ui-toc ul li div.current {
background-color: #FAFAFA;
color: #333333;
}
+
.wikiEditor-ui-toc ul li div.section-0 {
font-size: 1em;
padding-top: 0.5em;
@@ -91,13 +106,14 @@
overflow-y: hidden;
position: relative;
}
+
.wikiEditor-ui-toc ul {
overflow-y: auto;
overflow-x: hidden;
height: 100%;
margin-bottom: 0 !important;
-
}
+
.wikiEditor-ui-toc ul ul {
float: none;
height: auto;
@@ -109,15 +125,18 @@
top: 0;
left: 0;
}
+
.wikiEditor-ui-toc-collapse-open {
/* @embed */
background: #f3f3f3 url(images/toc/close.png) 4px 50% no-repeat;
border-left: 1px solid #DDDDDD;
}
+
.wikiEditor-ui-toc-collapse-closed {
/* @embed */
background: #f3f3f3 url(images/toc/open.png) 4px 50% no-repeat;
}
+
/* Resizing Changes */
.wikiEditor-ui-toc-resize-vertical,
.ui-resizable-w {
@@ -128,13 +147,16 @@
height: 100%;
cursor: ew-resize;
}
+
.wikiEditor-ui .wikiEditor-ui-right {
overflow: visible;
}
+
.wikiEditor-ui-right .ui-resizable-w {
- left: 0px !important;
+ left: 0 !important;
z-index: 0;
}
+
.wikiEditor-ui-right .wikiEditor-ui-toc-resize-grip {
width: 5px;
height: 12px;
@@ -147,15 +169,17 @@
background: url(images/toc/grip.png) 50% 50% no-repeat;
z-index: 0;
}
+
.wikiEditor-ui-toolbar .tab-toc {
float: right;
margin: 3px 16px 3px 3px;
line-height: 26px;
}
+
.wikiEditor-ui-toc-expandControl {
position: absolute;
z-index: 2;
- top: 0px;
+ top: 0;
right: 10px;
height: 26px;
padding: 3px 0;
@@ -164,14 +188,17 @@
white-space: nowrap;
overflow: hidden;
}
+
.wikiEditor-ui-text textarea {
resize: none;
}
+
.wikiEditor-ui-text textarea:focus {
outline: none;
}
+
/* Self Clearing for the wikiText view */
.wikiEditor-ui-view-wikiText {
overflow: auto;
width: 100%;
-} \ No newline at end of file
+}
diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.toc.js b/extensions/WikiEditor/modules/jquery.wikiEditor.toc.js
index a714d253..5cfa900c 100644
--- a/extensions/WikiEditor/modules/jquery.wikiEditor.toc.js
+++ b/extensions/WikiEditor/modules/jquery.wikiEditor.toc.js
@@ -182,7 +182,7 @@ fn: {
$.wikiEditor.modules.toc.cfg.rtl = $( 'body' ).is( '.rtl' );
$.wikiEditor.modules.toc.cfg.flexProperty = $.wikiEditor.modules.toc.cfg.rtl ? 'marginLeft' : 'marginRight';
var height = context.$ui.find( '.wikiEditor-ui-left' ).height();
- context.modules.toc.$toc = $( '<div />' )
+ context.modules.toc.$toc = $( '<div>' )
.addClass( 'wikiEditor-ui-toc' )
.data( 'context', context )
.data( 'positionMode', 'regular' )
@@ -195,7 +195,7 @@ fn: {
$.wikiEditor.modules.toc.fn.redraw( context, $.wikiEditor.modules.toc.cfg.defaultWidth );
},
redraw: function( context, fixedWidth ) {
- var fixedWidth = parseFloat( fixedWidth );
+ fixedWidth = parseFloat( fixedWidth );
if( context.modules.toc.$toc.data( 'positionMode' ) == 'regular' ) {
context.$ui.find( '.wikiEditor-ui-right' )
.css( 'width', fixedWidth + 'px' );
@@ -214,8 +214,9 @@ fn: {
switchLayout: function( context ) {
var width,
height = context.$ui.find( '.wikiEditor-ui-right' ).height();
- if( context.modules.toc.$toc.data( 'positionMode' ) == 'regular'
- && !context.modules.toc.$toc.data( 'collapsed' ) ) {
+ if ( context.modules.toc.$toc.data( 'positionMode' ) == 'regular'
+ && !context.modules.toc.$toc.data( 'collapsed' )
+ ) {
// store position mode
context.modules.toc.$toc.data( 'positionMode', 'goofy' );
// store the width of the TOC, to ensure we dont allow it to be larger than this when switching back
@@ -423,8 +424,12 @@ fn: {
* @param {Object} outline Array of objects with level fields
*/
function buildStructure( outline, offset, level ) {
- if ( offset == undefined ) offset = 0;
- if ( level == undefined ) level = 1;
+ if ( offset === undefined ) {
+ offset = 0;
+ }
+ if ( level === undefined ) {
+ level = 1;
+ }
var sections = [];
for ( var i = offset; i < outline.length; i++ ) {
if ( outline[i].nLevel == level ) {
@@ -445,9 +450,9 @@ fn: {
* @param {Object} structure Structured outline
*/
function buildList( structure ) {
- var list = $( '<ul />' );
+ var list = $( '<ul>' );
for ( var i = 0; i < structure.length; i++ ) {
- var div = $( '<div />' )
+ var div = $( '<div>' )
.addClass( 'section-' + structure[i].index )
.data( 'index', structure[i].index )
.mousedown( function() {
@@ -457,7 +462,7 @@ fn: {
.click( function( event ) {
var wrapper = context.$content.find(
'.wikiEditor-toc-section-' + $( this ).data( 'index' ) );
- if ( wrapper.size() == 0 )
+ if ( wrapper.length === 0 )
wrapper = context.$content;
context.fn.scrollToTop( wrapper, true );
context.$textarea.textSelection( 'setSelection', {
@@ -471,16 +476,16 @@ fn: {
//$.wikiEditor.modules.toc.fn.unhighlight( context );
$( this ).addClass( 'current' );
//$( this ).removeClass( 'current' );
- setTimeout( function() { $.wikiEditor.modules.toc.fn.unhighlight( context ) }, 1000 );
+ setTimeout( function() { $.wikiEditor.modules.toc.fn.unhighlight( context ); }, 1000 );
if ( typeof $.trackAction != 'undefined' )
$.trackAction( 'ntoc.heading' );
event.preventDefault();
} )
.text( structure[i].text );
- if ( structure[i].text == '' )
+ if ( structure[i].text === '' )
div.html( '&nbsp;' );
- var item = $( '<li />' ).append( div );
+ var item = $( '<li>' ).append( div );
if ( structure[i].sections !== undefined ) {
item.append( buildList( structure[i].sections ) );
}
@@ -493,11 +498,11 @@ fn: {
*
*/
function buildCollapseControls( ) {
- var $collapseControl = $( '<div />' ), $expandControl = $( '<div />' );
+ var $collapseControl = $( '<div>' ), $expandControl = $( '<div>' );
$collapseControl
.addClass( 'tab' )
.addClass( 'tab-toc' )
- .append( '<a href="#" />' )
+ .append( '<a href="#"></a>' )
.mousedown( function( e ) {
// No dragging!
e.preventDefault();
@@ -513,7 +518,7 @@ fn: {
.text( mediaWiki.msg( 'wikieditor-toc-hide' ) );
$expandControl
.addClass( 'wikiEditor-ui-toc-expandControl' )
- .append( '<a href="#" />' )
+ .append( '<a href="#"></a>' )
.mousedown( function( e ) {
// No dragging!
e.preventDefault();
@@ -546,7 +551,7 @@ fn: {
start: function( e, ui ) {
var $this = $( this );
// Toss a transparent cover over our iframe
- $( '<div />' )
+ $( '<div>' )
.addClass( 'wikiEditor-ui-resize-mask' )
.css( {
'position': 'absolute',
@@ -636,8 +641,12 @@ fn: {
// Recursively build the structure and add special item for
// section 0, if needed
var structure = buildStructure( outline );
- if ( $( 'input[name=wpSection]' ).val() == '' ) {
- structure.unshift( { 'text': mw.config.get( 'wgPageName' ).replace( /_/g, ' ' ), 'level': 1, 'index': 0 } );
+ if ( $( 'input[name="wpSection"]' ).val() === '' ) {
+ structure.unshift( {
+ 'text': mw.config.get( 'wgPageName' ).replace( /_/g, ' ' ),
+ 'level': 1,
+ 'index': 0
+ } );
}
context.modules.toc.$toc.html( buildList( structure ) );
@@ -645,18 +654,20 @@ fn: {
buildResizeControls();
buildCollapseControls();
}
- context.modules.toc.$toc.find( 'div' ).autoEllipsis(
- { 'position': 'right', 'tooltip': true, 'restoreText': true }
- );
+ context.modules.toc.$toc.find( 'div' ).autoEllipsis( {
+ 'position': 'right',
+ 'tooltip': true,
+ 'restoreText': true
+ } );
}
},
improveUI: function() {
/*
* Extending resizable to allow west resizing without altering the left position attribute
*/
- $.ui.plugin.add( "resizable", "preventPositionLeftChange", {
+ $.ui.plugin.add( 'resizable', 'preventPositionLeftChange', {
resize: function( event, ui ) {
- $( this ).data( "resizable" ).position.left = 0;
+ $( this ).data( 'resizable' ).position.left = 0;
}
} );
}
diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.config.js b/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.config.js
index e4928b29..52b7498f 100644
--- a/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.config.js
+++ b/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.config.js
@@ -149,7 +149,7 @@ getDefaultConfig: function() {
'options': {
'pre': '[[' + fileNamespace + ':',
'periMsg': 'wikieditor-toolbar-tool-file-example',
- 'post': "]]"
+ 'post': "|" + mw.config.get( 'wgWikiEditorMagicWords' ).img_thumbnail + "]]"
}
}
},
@@ -462,7 +462,7 @@ getDefaultConfig: function() {
'action': {
'type': 'encapsulate',
'options': {
- 'pre': "#REDIRECT [[",
+ 'pre': mw.config.get( 'wgWikiEditorMagicWords' ).redirect + ' [[',
'periMsg': 'wikieditor-toolbar-tool-redirect-example',
'post': "]]",
'ownline': true
@@ -1271,7 +1271,7 @@ getDefaultConfig: function() {
{
'description': { 'htmlMsg': 'wikieditor-toolbar-help-content-file-description' },
'syntax': { 'htmlMsg': [ 'wikieditor-toolbar-help-content-file-syntax', fileNamespace ] },
- 'result': { 'htmlMsg': [ 'wikieditor-toolbar-help-content-file-result', mw.config.get( 'stylepath' ) ] }
+ 'result': { 'htmlMsg': [ 'wikieditor-toolbar-help-content-file-result', mw.config.get( 'stylepath' ), mw.config.get( 'wgExtensionAssetsPath' ) ] }
}
]
},
diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.css b/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.css
index a5903a63..6b3fc625 100644
--- a/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.css
+++ b/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.css
@@ -1,4 +1,4 @@
-/*
+/**
* CSS for WikiEditor Toolbar jQuery plugin
*/
@@ -119,7 +119,7 @@
/* Toolbar */
.wikiEditor-ui-toolbar .group .label {
float: left;
- border: 0px;
+ border: 0;
height: 22px;
line-height: 22px;
margin: 2px;
@@ -130,7 +130,7 @@
}
.wikiEditor-ui-toolbar .group img.tool {
float: left;
- border: 0px;
+ border: 0;
height: 22px;
width: 22px;
padding: 2px;
@@ -237,7 +237,7 @@
.wikiEditor-ui-toolbar .page-table td {
text-align: left;
padding: 5px;
- margin: 0px;
+ margin: 0;
}
.wikiEditor-ui-toolbar .section-help .page-table td.cell-syntax,
.wikiEditor-ui-toolbar .section-help .page-table td.syntax {
@@ -279,7 +279,7 @@
border-color: #a8d7f9;
}
.ui-widget table td.wikieditor-toolbar-table-preview-wrapper span {
- padding: 4px 6px 0px;
+ padding: 4px 6px 0;
display: block;
}
.ui-widget table .wikieditor-toolbar-table-preview-frame {
diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.js b/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.js
index 57dd3240..e7d2213a 100644
--- a/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.js
+++ b/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.js
@@ -157,7 +157,7 @@ api : {
// Save for later checking if empty
group = target;
// Tool
- target += ' span[rel="' + data.tool + '"].tool';
+ target += ' a[rel="' + data.tool + '"].tool';
}
} else if ( typeof data.page == 'string' ) {
// Booklet page
diff --git a/extensions/WikiEditor/tests/selenium/WikiDialogs_Links.php b/extensions/WikiEditor/tests/selenium/WikiDialogs_Links.php
deleted file mode 100644
index 8b0ab5c0..00000000
--- a/extensions/WikiEditor/tests/selenium/WikiDialogs_Links.php
+++ /dev/null
@@ -1,68 +0,0 @@
-<?php
-require_once 'WikiDialogs_Links_Setup.php';
-/**
- * Description of WikiNewPageDialogs
- *
- * @author bhagyag, pdhanda
- *
- * This test case is part of the WikiEditorTestSuite.
- * Configuration for these tests are dosumented as part of extensions/WikiEditor/tests/selenium/WikiEditorTestSuite.php
- *
- */
-class WikiDialogs_Links extends WikiDialogs_Links_Setup {
- // Set up the testing environment
- function setup() {
- parent::setUp();
- parent::doCreateInternalTestPageIfMissing();
- }
-
- function tearDown() {
- parent::doLogout();
- parent::tearDown();
- }
-
- // Create a new page temporary
- function createNewPage() {
- parent::doOpenLink();
- parent::login();
- parent::doCreateNewPageTemporary();
- }
-
- // Add a internal link and verify
- function testInternalLink() {
- $this->createNewPage();
- parent::verifyInternalLink();
- }
-
- // Add a internal link with different display text and verify
- function testInternalLinkWithDisplayText() {
- $this->createNewPage();
- parent::verifyInternalLinkWithDisplayText();
- }
-
- // Add a internal link with blank display text and verify
- function testInternalLinkWithBlankDisplayText() {
- $this->createNewPage();
- parent::verifyInternalLinkWithBlankDisplayText();
- }
-
- // Add external link and verify
- function testExternalLink() {
- $this->createNewPage();
- parent::verifyExternalLink();
- }
-
- // Add external link with different display text and verify
- function testExternalLinkWithDisplayText( ) {
- $this->createNewPage();
- parent::verifyExternalLinkWithDisplayText();
- }
-
- // Add external link with Blank display text and verify
- function testExternalLinkWithBlankDisplayText() {
- $this->createNewPage();
- parent::verifyExternalLinkWithBlankDisplayText();
- }
-
-}
-?>
diff --git a/extensions/WikiEditor/tests/selenium/WikiDialogs_Links_Setup.php b/extensions/WikiEditor/tests/selenium/WikiDialogs_Links_Setup.php
deleted file mode 100644
index d7636a9a..00000000
--- a/extensions/WikiEditor/tests/selenium/WikiDialogs_Links_Setup.php
+++ /dev/null
@@ -1,296 +0,0 @@
-<?php
-include( "WikiEditorConstants.php" );
-/**
- * This test case will be handling the Wiki Tool bar Dialog functions
- * Date : Apr - 2010
- * @author : BhagyaG - Calcey
- */
-class WikiDialogs_Links_Setup extends SeleniumTestCase {
-
- // Open the page.
- function doOpenLink() {
- $this->open( $this->getUrl() . '/index.php' );
- $this->waitForPageToLoad( WIKI_TEST_WAIT_TIME );
- }
-
- // Expand advance tool bar section if its not
- function doExpandAdvanceSection() {
- if ( !$this->isTextPresent( TEXT_HEADING ) ) {
- $this->click( LINK_ADVANCED );
- }
- }
-
- // Log out from the application
- function doLogout() {
- $this->open( $this->getUrl() . '/index.php' );
- if ( $this->isTextPresent( TEXT_LOGOUT ) ) {
- $this->click( LINK_LOGOUT );
- $this->waitForPageToLoad( WIKI_TEST_WAIT_TIME );
- $this->assertEquals( TEXT_LOGOUT_CONFIRM, $this->getText( LINK_LOGIN ) );
- $this->open( $this->getUrl() . '/index.php' );
- $this->waitForPageToLoad( WIKI_TEST_WAIT_TIME );
- }
- }
-
- // Create a temporary fixture page
- function doCreateInternalTestPageIfMissing() {
- $this->type( INPUT_SEARCH_BOX, WIKI_INTERNAL_LINK );
- $this->click( BUTTON_SEARCH );
- $this->waitForPageToLoad( WIKI_TEST_WAIT_TIME );
- $this->click( LINK_START . WIKI_INTERNAL_LINK );
- $this->waitForPageToLoad( WIKI_TEST_WAIT_TIME );
- $location = $this->getLocation() . "\n";
- if ( strpos( $location, '&redlink=1' ) !== false ) {
- $this->type( TEXT_EDITOR, "Test fixture page. No real content here" );
- $this->click( BUTTON_SAVE_WATCH );
- $this->waitForPageToLoad( WIKI_TEST_WAIT_TIME );
- $this->assertTrue( $this->isTextPresent( WIKI_INTERNAL_LINK ),
- $this->getText( TEXT_PAGE_HEADING ) );
- }
- }
-
- // Create a temporary new page
- function doCreateNewPageTemporary() {
- $this->type( INPUT_SEARCH_BOX, WIKI_TEMP_NEWPAGE );
- $this->click( BUTTON_SEARCH );
- $this->waitForPageToLoad( WIKI_TEST_WAIT_TIME );
- $this->click( LINK_START . WIKI_TEMP_NEWPAGE );
- $this->waitForPageToLoad( WIKI_TEST_WAIT_TIME );
- }
-
- // Add a internal link and verify
- function verifyInternalLink() {
- $this->type( TEXT_EDITOR, "" );
- $this->click( LINK_ADDLINK );
- $this->waitForPopup( 'addLink', WIKI_TEST_WAIT_TIME );
- $this->type( TEXT_LINKNAME, ( WIKI_INTERNAL_LINK ) );
- $this->assertTrue( $this->isElementPresent( ICON_PAGEEXISTS ), 'Element ' . ICON_PAGEEXISTS . 'Not found' );
- $this->assertEquals( "on", $this->getValue( OPT_INTERNAL ) );
- $this->click( BUTTON_INSERTLINK );
- $this->click( LINK_PREVIEW );
- $this->waitForPageToLoad( WIKI_TEST_WAIT_TIME );
- $this->assertEquals( ( WIKI_INTERNAL_LINK ), $this->getText( LINK_START . WIKI_INTERNAL_LINK ) );
- $this->click( LINK_START . WIKI_INTERNAL_LINK );
- $this->waitForPageToLoad( WIKI_TEST_WAIT_TIME );
- $this->assertTrue( $this->isTextPresent( WIKI_INTERNAL_LINK ), $this->getText( TEXT_PAGE_HEADING ) );
- }
-
- // Add a internal link with different display text and verify
- function verifyInternalLinkWithDisplayText() {
- $this->type( TEXT_EDITOR, "" );
- $this->click( LINK_ADDLINK );
- $this->waitForPopup( 'addLink', WIKI_TEST_WAIT_TIME );
- $this->type( TEXT_LINKNAME, WIKI_INTERNAL_LINK );
- $this->type ( TEXT_LINKDISPLAYNAME, WIKI_INTERNAL_LINK . TEXT_LINKDISPLAYNAME_APPENDTEXT );
- $this->assertTrue( $this->isElementPresent( ICON_PAGEEXISTS ) );
- $this->assertEquals( "on", $this->getValue( OPT_INTERNAL ) );
- $this->click( BUTTON_INSERTLINK );
- $this->click( LINK_PREVIEW );
- $this->waitForPageToLoad( WIKI_TEST_WAIT_TIME );
- $this->assertEquals( WIKI_INTERNAL_LINK . TEXT_LINKDISPLAYNAME_APPENDTEXT,
- $this->getText( LINK_START . WIKI_INTERNAL_LINK . TEXT_LINKDISPLAYNAME_APPENDTEXT ) );
- $this->click( LINK_START . WIKI_INTERNAL_LINK . TEXT_LINKDISPLAYNAME_APPENDTEXT );
- $this->waitForPageToLoad( WIKI_TEST_WAIT_TIME );
- $this->assertTrue( $this->isTextPresent( WIKI_INTERNAL_LINK ), $this->getText( TEXT_PAGE_HEADING ) );
-
- }
-
- // Add a internal link with blank display text and verify
- function verifyInternalLinkWithBlankDisplayText() {
- $this->type( TEXT_EDITOR, "" );
- $this->click( LINK_ADDLINK );
- $this->waitForPopup( 'addLink', WIKI_TEST_WAIT_TIME );
- $this->type( TEXT_LINKNAME, WIKI_INTERNAL_LINK );
- $this->type( TEXT_LINKDISPLAYNAME, "" );
- $this->assertTrue( $this->isElementPresent( ICON_PAGEEXISTS ) );
- $this->assertEquals( "on", $this->getValue( OPT_INTERNAL ) );
- $this->click( BUTTON_INSERTLINK );
- $this->click( LINK_PREVIEW );
- $this->waitForPageToLoad( WIKI_TEST_WAIT_TIME );
- $this->assertEquals( WIKI_INTERNAL_LINK, $this->getText( LINK_START . WIKI_INTERNAL_LINK ) );
- $this->click( LINK_START . WIKI_INTERNAL_LINK );
- $this->waitForPageToLoad( WIKI_TEST_WAIT_TIME );
- $this->assertEquals( WIKI_INTERNAL_LINK, $this->getText( TEXT_PAGE_HEADING ) );
-
- }
-
- // Add external link and verify
- function verifyExternalLink() {
- $this->type( LINK_PREVIEW, "" );
- $this->click( LINK_ADDLINK );
- $this->type( TEXT_LINKNAME, WIKI_EXTERNAL_LINK );
- $this->assertTrue( $this->isElementPresent( ICON_PAGEEXTERNAL ) );
- $this->assertEquals( "on", $this->getValue( OPT_EXTERNAL ) );
- $this->click( BUTTON_INSERTLINK );
- $this->click( LINK_PREVIEW );
- $this->waitForPageToLoad( WIKI_TEST_WAIT_TIME );
- $this->assertEquals( WIKI_EXTERNAL_LINK, $this->getText( LINK_START . WIKI_EXTERNAL_LINK ) );
-
- $this->click( LINK_START . WIKI_EXTERNAL_LINK );
- $this->waitForPageToLoad( WIKI_TEST_WAIT_TIME );
- $this->assertEquals( WIKI_EXTERNAL_LINK_TITLE, $this->getTitle() );
- }
-
- // Add external link with different display text and verify
- function verifyExternalLinkWithDisplayText() {
- $this->type( TEXT_EDITOR, "" );
- $this->click( LINK_ADDLINK );
- $this->type( TEXT_LINKNAME, WIKI_EXTERNAL_LINK );
- $this->type( TEXT_LINKDISPLAYNAME, WIKI_EXTERNAL_LINK_TITLE );
- $this->assertTrue( $this->isElementPresent( ICON_PAGEEXTERNAL ) );
- $this->assertEquals( "on", $this->getValue( OPT_EXTERNAL ) );
- $this->click( BUTTON_INSERTLINK );
- $this->click( LINK_PREVIEW );
- $this->waitForPageToLoad( WIKI_TEST_WAIT_TIME );
- $this->assertEquals( WIKI_EXTERNAL_LINK_TITLE, $this->getText( LINK_START . WIKI_EXTERNAL_LINK_TITLE ) );
- $this->click( LINK_START . ( WIKI_EXTERNAL_LINK_TITLE ) );
- $this->waitForPageToLoad( WIKI_TEST_WAIT_TIME );
- $this->assertEquals( WIKI_EXTERNAL_LINK_TITLE , $this->getTitle() );
- }
-
- // Add external link with Blank display text and verify
- function verifyExternalLinkWithBlankDisplayText() {
- $this->type( TEXT_EDITOR, "" );
- $this->click( LINK_ADDLINK );
- $this->type( TEXT_LINKNAME, WIKI_EXTERNAL_LINK );
- $this->type( TEXT_LINKDISPLAYNAME, "" );
- $this->assertTrue( $this->isElementPresent( ICON_PAGEEXTERNAL ) );
- $this->assertEquals( "on", $this->getValue( OPT_EXTERNAL ) );
- $this->click( BUTTON_INSERTLINK );
- $this->click( LINK_PREVIEW );
- $this->waitForPageToLoad( WIKI_TEST_WAIT_TIME );
- $this->assertEquals( "[1]", $this->getText( LINK_START . "[1]" ) );
- $this->click( LINK_START . "[1]" );
- $this->waitForPageToLoad( WIKI_TEST_WAIT_TIME );
- $this->assertEquals( WIKI_EXTERNAL_LINK_TITLE, $this->getTitle() );
- }
-
- // Add a table and verify
- function verifyCreateTable() {
- $WIKI_TABLE_ROW = 2;
- $WIKI_TABLE_COL = "5";
- $this->doExpandAdvanceSection();
- $this->type( TEXT_EDITOR, "" );
- $this->click( LINK_ADDTABLE );
- $this->click( CHK_SORT );
- $this->type( TEXT_ROW, $WIKI_TABLE_ROW );
- $this->type( TEXT_COL, $WIKI_TABLE_COL );
- $this->click( BUTTON_INSERTABLE );
- $this->click( CHK_SORT );
- $this->click( LINK_PREVIEW );
- $this->waitForPageToLoad( WIKI_TEST_WAIT_TIME );
- $WIKI_TABLE_ROW = $WIKI_TABLE_ROW + 1;
- $this->assertTrue( $this->isElementPresent( TEXT_TABLEID_OTHER .
- TEXT_VALIDATE_TABLE_PART1 . $WIKI_TABLE_ROW .
- TEXT_VALIDATE_TABLE_PART2 . $WIKI_TABLE_COL .
- TEXT_VALIDATE_TABLE_PART3 ) );
- }
-
- // Add a table and verify only with head row
- function verifyCreateTableWithHeadRow() {
- $WIKI_TABLE_ROW = 3;
- $WIKI_TABLE_COL = "4";
- $this->doExpandAdvanceSection();
- $this->type( TEXT_EDITOR, "" );
- $this->click( LINK_ADDTABLE );
- $this->click( CHK_BOARDER );
- $this->type( TEXT_ROW, $WIKI_TABLE_ROW );
- $this->type( TEXT_COL, $WIKI_TABLE_COL );
- $this->click( BUTTON_INSERTABLE );
- $this->click( LINK_PREVIEW );
- $this->waitForPageToLoad( WIKI_TEST_WAIT_TIME );
- $WIKI_TABLE_ROW = $WIKI_TABLE_ROW + 1;
- $this->assertTrue( $this->isElementPresent( TEXT_TABLEID_OTHER .
- TEXT_VALIDATE_TABLE_PART1 . $WIKI_TABLE_ROW .
- TEXT_VALIDATE_TABLE_PART2 . $WIKI_TABLE_COL .
- TEXT_VALIDATE_TABLE_PART3 ) );
- }
-
- // Add a table and verify only with borders
- function verifyCreateTableWithBorders() {
- $WIKI_TABLE_ROW = "4";
- $WIKI_TABLE_COL = "6";
- $this->type( TEXT_EDITOR, "" );
- $this->click( LINK_ADDTABLE );
- $this->click( CHK_HEADER );
- $this->type( TEXT_ROW, $WIKI_TABLE_ROW );
- $this->type( TEXT_COL, $WIKI_TABLE_COL );
- $this->click( BUTTON_INSERTABLE );
- $this->click( CHK_HEADER );
- $this->click( LINK_PREVIEW );
- $this->waitForPageToLoad( WIKI_TEST_WAIT_TIME );
- $this->assertTrue( $this->isElementPresent( TEXT_TABLEID_OTHER .
- TEXT_VALIDATE_TABLE_PART1 . $WIKI_TABLE_ROW .
- TEXT_VALIDATE_TABLE_PART2 . $WIKI_TABLE_COL .
- TEXT_VALIDATE_TABLE_PART3 ) );
- }
-
- // Add a table and verify only with sort row
- function verifyCreateTableWithSortRow() {
- $WIKI_TABLE_ROW = "2";
- $WIKI_TABLE_COL = "5";
- $this->type( TEXT_EDITOR, "" );
- $this->click( LINK_ADDTABLE );
- $this->click( CHK_HEADER );
- $this->click( CHK_BOARDER );
- $this->click( CHK_SORT );
- $this->type( TEXT_ROW, $WIKI_TABLE_ROW );
- $this->type( TEXT_COL, $WIKI_TABLE_COL );
- $this->click( BUTTON_INSERTABLE );
- $this->click( CHK_HEADER );
- $this->click( CHK_BOARDER );
- $this->click( CHK_SORT );
- $this->click( LINK_PREVIEW );
- $this->waitForPageToLoad( WIKI_TEST_WAIT_TIME );
- $this->assertTrue( $this->isElementPresent( TEXT_TABLEID_WITHALLFEATURES .
- TEXT_VALIDATE_TABLE_PART1 . $WIKI_TABLE_ROW .
- TEXT_VALIDATE_TABLE_PART2 . $WIKI_TABLE_COL .
- TEXT_VALIDATE_TABLE_PART3 ) );
- }
-
- // Add a table without headers,borders and sort rows
- function verifyCreateTableWithNoSpecialEffects() {
- $WIKI_TABLE_ROW = "6";
- $WIKI_TABLE_COL = "2";
- $this->
- $this->doExpandAdvanceSection();
- $this->type( TEXT_EDITOR, "" );
- $this->click( LINK_ADDTABLE );
- $this->click( CHK_BOARDER );
- $this->click( CHK_HEADER );
- $this->type( TEXT_ROW, $WIKI_TABLE_ROW );
- $this->type( TEXT_COL, $WIKI_TABLE_COL );
- $this->click( BUTTON_INSERTABLE );
- $this->click( CHK_BOARDER );
- $this->click( CHK_HEADER );
- $this->click( INK_PREVIEW );
- $this->waitForPageToLoad( WIKI_TEST_WAIT_TIME );
- $this->assertTrue( $this->isElementPresent( TEXT_TABLEID_OTHER .
- TEXT_VALIDATE_TABLE_PART1 . $WIKI_TABLE_ROW .
- TEXT_VALIDATE_TABLE_PART2 . $WIKI_TABLE_COL .
- TEXT_VALIDATE_TABLE_PART3 ) );
- }
-
- // Add a table with headers,borders and sort rows
- function verifyCreateTableWithAllSpecialEffects() {
- $WIKI_TABLE_ROW = 6;
- $WIKI_TABLE_COL = "2";
- $this->doExpandAdvanceSection();
- $this->type( TEXT_EDITOR, "" );
- $this->click( LINK_ADDTABLE );
- $this->click( CHK_SORT );
- $this->type( TEXT_ROW, $WIKI_TABLE_ROW );
- $this->type( TEXT_COL, $WIKI_TABLE_COL );
- $this->click( BUTTON_INSERTABLE );
- $this->click( CHK_SORT );
- $this->click( LINK_PREVIEW );
- $this->waitForPageToLoad( WIKI_TEST_WAIT_TIME );
- $WIKI_TABLE_ROW = $WIKI_TABLE_ROW + 1;
- $this->assertTrue( $this->isElementPresent( TEXT_TABLEID_WITHALLFEATURES .
- TEXT_VALIDATE_TABLE_PART1 . $WIKI_TABLE_ROW .
- TEXT_VALIDATE_TABLE_PART2 . $WIKI_TABLE_COL .
- TEXT_VALIDATE_TABLE_PART3 ) );
- }
-
-}
-?> \ No newline at end of file
diff --git a/extensions/WikiEditor/tests/selenium/WikiEditorConstants.php b/extensions/WikiEditor/tests/selenium/WikiEditorConstants.php
deleted file mode 100644
index 090f96bf..00000000
--- a/extensions/WikiEditor/tests/selenium/WikiEditorConstants.php
+++ /dev/null
@@ -1,84 +0,0 @@
-<?php
-define ( 'WIKI_TEST_WAIT_TIME', "3000" ); // Waiting time
-
-// tool bar, buttons , links
-// commonly using links
-define ( 'LINK_MAIN_PAGE', "link=Main page" );
-define ( 'LINK_RANDOM_PAGE', "link=Random article" );
-define ( 'TEXT_PAGE_HEADING', "firstHeading" );
-define ( 'LINK_START', "link=" );
-define ( 'LINK_EDITPAGE', "//li[@id='ca-edit']/a/span" );
-define ( 'TEXT_EDITOR', "wpTextbox1" );
-define ( 'LINK_PREVIEW', "wpPreview" );
-
-define ( 'WIKI_SEARCH_PAGE', "Hair (musical)" ); // Page name to search
-define ( 'WIKI_TEXT_SEARCH', "TV" ); // Text to search
-define ( 'WIKI_INTERNAL_LINK', "Wikieditor-Fixture-Page" ); // Exisiting page name to add as an internal tag
-define ( 'WIKI_EXTERNAL_LINK', "www.google.com" ); // External web site name
-define ( 'WIKI_EXTERNAL_LINK_TITLE', "Google" ); // Page title of the external web site name
-define ( 'WIKI_CODE_PATH', getcwd() ); // get the current path of the program
-define ( 'WIKI_SCREENSHOTS_PATH', "screenshots" ); // the folder the error screen shots will be saved
-define ( 'WIKI_SCREENSHOTS_TYPE', "png" ); // screen print type
-define ( 'WIKI_TEMP_NEWPAGE', "TestWikiPage" ); // temporary creating new page name
-// for WikiCommonFunction_TC
-
-// for WikiSearch_TC
-define ( 'INPUT_SEARCH_BOX', "searchInput" );
-define ( 'BUTTON_SEARCH', "mw-searchButton" );
-define ( 'TEXT_SEARCH_RESULT_HEADING', " - Search results - Wikipedia, the free encyclopedia" );
-
-// for WikiWatchUnWatch_TC
-define ( 'LINK_WATCH_PAGE', "link=Watch" );
-define ( 'LINK_WATCH_LIST', "link=My watchlist" );
-define ( 'LINK_WATCH_EDIT', "link=View and edit watchlist" );
-define ( 'LINK_UNWATCH', "link=Unwatch" );
-define ( 'BUTTON_WATCH', "wpWatchthis" );
-define ( 'BUTTON_SAVE_WATCH', "wpSave" );
-define ( 'TEXT_WATCH', "Watch" );
-define ( 'TEXT_UNWATCH', "Unwatch" );
-
-// for WikiCommonFunction_TC
-define ( 'TEXT_LOGOUT', "Log out" );
-define ( 'LINK_LOGOUT', "link=Log out" );
-define ( 'LINK_LOGIN', "link=Log in / create account" );
-define ( 'TEXT_LOGOUT_CONFIRM', "Log in / create account" );
-define ( 'INPUT_USER_NAME', "wpName1" );
-define ( 'INPUT_PASSWD', "wpPassword1" );
-define ( 'BUTTON_LOGIN', "wpLoginAttempt" );
-define ( 'TEXT_HEADING', "Heading" );
-define ( 'LINK_ADVANCED', "link=Advanced" );
-
-// for WikiDialogs_TC
-define ( 'LINK_ADDLINK', "//div[@id='wikiEditor-ui-toolbar']/div[1]/div[2]/span[2 ]" );
-define ( 'TEXT_LINKNAME', "wikieditor-toolbar-link-int-target" );
-define ( 'TEXT_LINKDISPLAYNAME', "wikieditor-toolbar-link-int-text" );
-define ( 'TEXT_LINKDISPLAYNAME_APPENDTEXT', " Test" );
-define ( 'ICON_PAGEEXISTS', "wikieditor-toolbar-link-int-target-status-exists" );
-define ( 'ICON_PAGEEXTERNAL', "wikieditor-toolbar-link-int-target-status-external" );
-define ( 'OPT_INTERNAL', "wikieditor-toolbar-link-type-int" );
-define ( 'OPT_EXTERNAL', "wikieditor-toolbar-link-type-ext" );
-define ( 'BUTTON_INSERTLINK', "//div[10]/div[11]/button[1]" );
-define ( 'LINK_ADDTABLE', "//div[@id='wikiEditor-ui-toolbar']/div[3]/div[1]/div[4]/span[2]" );
-define ( 'CHK_HEADER', "wikieditor-toolbar-table-dimensions-header" );
-define ( 'CHK_BOARDER', "wikieditor-toolbar-table-wikitable" );
-define ( 'CHK_SORT', "wikieditor-toolbar-table-sortable" );
-define ( 'TEXT_ROW', "wikieditor-toolbar-table-dimensions-rows" );
-define ( 'TEXT_COL', "wikieditor-toolbar-table-dimensions-columns" );
-define ( 'BUTTON_INSERTABLE', "//div[3]/button[1]" );
-define ( 'TEXT_HEADTABLE_TEXT', "Header text" );
-define ( 'TEXT_TABLEID_WITHALLFEATURES', "//table[@id='sortable_table_id_0']/tbody/" );
-define ( 'TEXT_TABLEID_OTHER', "//div[@id='wikiPreview']/table/tbody/" );
-define ( 'TEXT_VALIDATE_TABLE_PART1', "tr[" );
-define ( 'TEXT_VALIDATE_TABLE_PART2', "]/td[" );
-define ( 'TEXT_VALIDATE_TABLE_PART3', "]" );
-define ( 'LINK_SEARCH', "//div[@id='wikiEditor-ui-toolbar']/div[3]/div[1]/div[5]/span" );
-define ( 'INPUT_SEARCH', "wikieditor-toolbar-replace-search" );
-define ( 'INPUT_REPLACE', "wikieditor-toolbar-replace-replace" );
-define ( 'BUTTON_REPLACEALL', "//button[3]" );
-define ( 'BUTTON_REPLACENEXT', "//button[2]" );
-define ( 'BUTTON_CANCEL', "//button[4]" );
-define ( 'TEXT_PREVIEW_TEXT1', "//div[@id='wikiPreview']/p[1]" );
-define ( 'TEXT_PREVIEW_TEXT2', "//div[@id='wikiPreview']/p[2]" );
-define ( 'TEXT_PREVIEW_TEXT3', "//div[@id='wikiPreview']/p[3]" );
-
-
diff --git a/extensions/WikiEditor/tests/selenium/WikiEditorSeleniumConfig.php b/extensions/WikiEditor/tests/selenium/WikiEditorSeleniumConfig.php
deleted file mode 100644
index ad4be489..00000000
--- a/extensions/WikiEditor/tests/selenium/WikiEditorSeleniumConfig.php
+++ /dev/null
@@ -1,27 +0,0 @@
-<?php
-
-class WikiEditorSeleniumConfig {
-
- public static function getSettings( &$includeFiles, &$globalConfigs ) {
- $includes = array(
- 'extensions/Vector/Vector.php',
- 'extensions/WikiEditor/WikiEditor.php'
- );
- $configs = array(
- 'wgDefaultSkin' => 'vector',
- 'wgWikiEditorFeatures' => array(
- 'toolbar' => array( 'global' => true, 'user' => true ),
- 'toc' => array( 'global' => false, 'user' => false ),
- 'highlight' => array( 'global' => false, 'user' => false ),
- 'templateEditor' => array( 'global' => false, 'user' => false ),
- 'dialogs' => array( 'global' => true, 'user' => true )
- ),
- 'wgVectorFeatures' => array(
- 'editwarning' => array( 'global' => false, 'user' => false )
- )
- );
- $includeFiles = array_merge( $includeFiles, $includes );
- $globalConfigs = array_merge( $globalConfigs, $configs );
- return true;
- }
-} \ No newline at end of file
diff --git a/extensions/WikiEditor/tests/selenium/WikiEditorTestSuite.php b/extensions/WikiEditor/tests/selenium/WikiEditorTestSuite.php
deleted file mode 100644
index b4029d3a..00000000
--- a/extensions/WikiEditor/tests/selenium/WikiEditorTestSuite.php
+++ /dev/null
@@ -1,35 +0,0 @@
-<?php
-
-/**
- * To configure MW for these tests
- * 1) If you are running multiple test suites, add the following in LocalSettings.php
- * require_once("extensions/WikiEditor/tests/selenium/WikiEditorSeleniumConfig.php");
- * $wgSeleniumTestConfigs['WikiEditorTestSuite'] = 'WikiEditorSeleniumConfig::getSettings';
- * OR
- * 2) Add the following to your Localsettings.php
- * require_once( "$IP/extensions/Vector/Vector.php" );
- * require_once( "$IP/extensions/WikiEditor/WikiEditor.php" );
- * $wgDefaultSkin = 'vector';
- * $wgVectorFeatures['editwarning'] = array( 'global' => false, 'user' => false );
- * $wgWikiEditorFeatures['templateEditor'] = array( 'global' => false, 'user' => false );
- * $wgWikiEditorFeatures['toolbar'] = array( 'global' => true, 'user' => true );
- * $wgWikiEditorFeatures['toc'] = array( 'global' => false, 'user' => false );
- * $wgWikiEditorFeatures['highlight'] = array( 'global' => false, 'user' => false );
- * $wgWikiEditorFeatures['dialogs'] = array( 'global' => true, 'user' => true );
- *
- */
-class WikiEditorTestSuite extends SeleniumTestSuite
-{
- public function setUp() {
- $this->setLoginBeforeTests( false );
- parent::setUp();
- }
- public function addTests() {
- $testFiles = array(
- 'extensions/WikiEditor/tests/selenium/WikiDialogs_Links.php'
- );
- parent::addTestFiles( $testFiles );
- }
-
-
-}