Index: trunk/extensions/WikiEditor/modules/ext.wikiEditor.toolbar.js |
— | — | @@ -11,6 +11,7 @@ |
12 | 12 | // Add toolbar module |
13 | 13 | // FIXME: Make config object retrievable for reusers |
14 | 14 | // TODO: Implement .wikiEditor( 'remove' ) |
| 15 | + var fileNamespace = mediaWiki.config.get( 'wgFormattedNamespaces' )[6]; |
15 | 16 | $( '#wpTextbox1' ).wikiEditor( 'addModule', { 'toolbar': { |
16 | 17 | // Main section |
17 | 18 | 'main': { |
— | — | @@ -153,7 +154,7 @@ |
154 | 155 | 'action': { |
155 | 156 | 'type': 'encapsulate', |
156 | 157 | 'options': { |
157 | | - 'pre': '[[' + mediaWiki.config.get( 'wgFormattedNamespaces' )[6] + ':', |
| 158 | + 'pre': '[[' + fileNamespace + ':', |
158 | 159 | 'periMsg': 'wikieditor-toolbar-tool-file-example', |
159 | 160 | 'post': "]]" |
160 | 161 | } |
— | — | @@ -411,7 +412,9 @@ |
412 | 413 | 'type': 'encapsulate', |
413 | 414 | 'options': { |
414 | 415 | 'pre': "<gallery>\n", |
415 | | - 'periMsg': 'wikieditor-toolbar-tool-gallery-example', |
| 416 | + 'periMsg': [ |
| 417 | + 'wikieditor-toolbar-tool-gallery-example', fileNamespace |
| 418 | + ], |
416 | 419 | 'post': "\n</gallery>", |
417 | 420 | 'ownline': true |
418 | 421 | } |
— | — | @@ -910,7 +913,7 @@ |
911 | 914 | 'rows': [ |
912 | 915 | { |
913 | 916 | 'description': { 'htmlMsg': 'wikieditor-toolbar-help-content-file-description' }, |
914 | | - 'syntax': { 'htmlMsg': 'wikieditor-toolbar-help-content-file-syntax' }, |
| 917 | + 'syntax': { 'htmlMsg': [ 'wikieditor-toolbar-help-content-file-syntax', fileNamespace ] }, |
915 | 918 | 'result': { 'htmlMsg': [ 'wikieditor-toolbar-help-content-file-result', stylepath ] } |
916 | 919 | } |
917 | 920 | ] |
Index: trunk/extensions/WikiEditor/WikiEditor.i18n.php |
— | — | @@ -129,8 +129,8 @@ |
130 | 130 | 'wikieditor-toolbar-tool-subscript-example' => 'Subscript text', |
131 | 131 | 'wikieditor-toolbar-group-insert' => 'Insert', |
132 | 132 | 'wikieditor-toolbar-tool-gallery' => 'Picture gallery', |
133 | | - 'wikieditor-toolbar-tool-gallery-example' => "{{ns:file}}:Example.jpg|Caption1 |
134 | | -{{ns:file}}:Example.jpg|Caption2", |
| 133 | + 'wikieditor-toolbar-tool-gallery-example' => "$1:Example.jpg|Caption1 |
| 134 | +$1:Example.jpg|Caption2", |
135 | 135 | 'wikieditor-toolbar-tool-newline' => 'New line', |
136 | 136 | 'wikieditor-toolbar-tool-table' => 'Table', |
137 | 137 | 'wikieditor-toolbar-tool-table-example-old' => "- |
— | — | @@ -239,7 +239,7 @@ |
240 | 240 | 'wikieditor-toolbar-help-content-olist-syntax' => '# List item<br /># List item', |
241 | 241 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>List item</li><li>List item</li></ol>', |
242 | 242 | 'wikieditor-toolbar-help-content-file-description' => 'Embedded file', |
243 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Caption text]]', |
| 243 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Caption text]]', |
244 | 244 | '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>", |
245 | 245 | 'wikieditor-toolbar-help-content-reference-description' => 'Reference', |
246 | 246 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Page text.<ref name="test">[http://www.example.org Link text], additional text.</ref>', |
— | — | @@ -574,8 +574,8 @@ |
575 | 575 | 'wikieditor-toolbar-tool-subscript-example' => 'Teks in onderskrif', |
576 | 576 | 'wikieditor-toolbar-group-insert' => 'Invoeg', |
577 | 577 | 'wikieditor-toolbar-tool-gallery' => 'Fotogalery', |
578 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Voorbeeld1|Byskrif1 |
579 | | -{{ns:file}}:Voorbeeld2|Byskrif2', |
| 578 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Voorbeeld1|Byskrif1 |
| 579 | +$1:Voorbeeld2|Byskrif2', |
580 | 580 | 'wikieditor-toolbar-tool-newline' => 'Nuwe lyn', |
581 | 581 | 'wikieditor-toolbar-tool-table' => 'Tabel', |
582 | 582 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -681,7 +681,7 @@ |
682 | 682 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Lyn in genommerde lys<br /># Lyn in genommerde lys', |
683 | 683 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Lyn in genommerde lys</li><li>Lyn in genommerde lys</li></ol>', |
684 | 684 | 'wikieditor-toolbar-help-content-file-description' => 'Ingebedde lêer', |
685 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Voorbeeld.png|thumb|Byskrif]]', |
| 685 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Voorbeeld.png|thumb|Byskrif]]', |
686 | 686 | '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>", |
687 | 687 | 'wikieditor-toolbar-help-content-reference-description' => 'Verwysing', |
688 | 688 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Bladsyteks.<ref name="test">[http://www.voorbeeld.org Skakel se teks], addisionele teks.</ref>', |
— | — | @@ -807,8 +807,8 @@ |
808 | 808 | 'wikieditor-toolbar-tool-subscript-example' => 'tekstit Subscript', |
809 | 809 | 'wikieditor-toolbar-group-insert' => 'Kall', |
810 | 810 | 'wikieditor-toolbar-tool-gallery' => 'galeri artesh', |
811 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}: Example.jpg|Caption1 |
812 | | -{{ns:file}}: Example.jpg|Caption2', |
| 811 | + 'wikieditor-toolbar-tool-gallery-example' => '$1: Example.jpg|Caption1 |
| 812 | +$1: Example.jpg|Caption2', |
813 | 813 | 'wikieditor-toolbar-tool-newline' => 'Linjë e re', |
814 | 814 | 'wikieditor-toolbar-tool-table' => 'Tryezë', |
815 | 815 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -910,7 +910,7 @@ |
911 | 911 | 'wikieditor-toolbar-help-content-olist-syntax' => 'pika # Lista <br /> pika # Lista', |
912 | 912 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li> pika Lista </li><li> pika Lista </li></ol>', |
913 | 913 | 'wikieditor-toolbar-help-content-file-description' => 'Embedded file', |
914 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Caption teksti]]', |
| 914 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Caption teksti]]', |
915 | 915 | '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>", |
916 | 916 | 'wikieditor-toolbar-help-content-reference-description' => 'Referim', |
917 | 917 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Tekst faqesh. name="test"> <ref [http://www.example.org] teksti Link, teksti shtesë. </> ref', |
— | — | @@ -1036,8 +1036,8 @@ |
1037 | 1037 | 'wikieditor-toolbar-tool-subscript-example' => 'Texto en subéndiz', |
1038 | 1038 | 'wikieditor-toolbar-group-insert' => 'Insertar', |
1039 | 1039 | 'wikieditor-toolbar-tool-gallery' => "Galería d'imachens", |
1040 | | - 'wikieditor-toolbar-tool-gallery-example' => '↓ {{ns:file}}:Eixemplo.jpg|Piet_de_foto_1 |
1041 | | -{{ns:file}}:Eixemplo.jpg|Piet_de_foto_2', |
| 1040 | + 'wikieditor-toolbar-tool-gallery-example' => '↓ $1:Eixemplo.jpg|Piet_de_foto_1 |
| 1041 | +$1:Eixemplo.jpg|Piet_de_foto_2', |
1042 | 1042 | 'wikieditor-toolbar-tool-newline' => 'Nueva linia', |
1043 | 1043 | 'wikieditor-toolbar-tool-table' => 'Tabla', |
1044 | 1044 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -1143,7 +1143,7 @@ |
1144 | 1144 | 'wikieditor-toolbar-help-content-olist-syntax' => "# Elemento d'a lista<br /># Elemento d'a lista", |
1145 | 1145 | 'wikieditor-toolbar-help-content-olist-result' => "<ol><li>Elemento d'a lista</li><li>Elemento d'a lista</li></ol>", |
1146 | 1146 | 'wikieditor-toolbar-help-content-file-description' => 'Fichero incorporato', |
1147 | | - 'wikieditor-toolbar-help-content-file-syntax' => "[[{{ns:file}}:Eixemplo.png|thumb|Texto descriptivo d'a imachen]]", |
| 1147 | + 'wikieditor-toolbar-help-content-file-syntax' => "[[$1:Eixemplo.png|thumb|Texto descriptivo d'a imachen]]", |
1148 | 1148 | '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>", |
1149 | 1149 | 'wikieditor-toolbar-help-content-reference-description' => 'Referencia', |
1150 | 1150 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Texto d\'a pachina.<ref name="test">[http://www.example.org Texto d\'o vinclo], texto adicional.</ref>', |
— | — | @@ -1325,8 +1325,8 @@ |
1326 | 1326 | 'wikieditor-toolbar-tool-subscript-example' => 'نص الحرف السفلي', |
1327 | 1327 | 'wikieditor-toolbar-group-insert' => 'أدرج', |
1328 | 1328 | 'wikieditor-toolbar-tool-gallery' => 'معرض صور', |
1329 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|تعليق1 |
1330 | | -{{ns:file}}:Example.jpg|تعليق2', |
| 1329 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|تعليق1 |
| 1330 | +$1:Example.jpg|تعليق2', |
1331 | 1331 | 'wikieditor-toolbar-tool-newline' => 'سطر جديد', |
1332 | 1332 | 'wikieditor-toolbar-tool-table' => 'جدولًا', |
1333 | 1333 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -1432,7 +1432,7 @@ |
1433 | 1433 | 'wikieditor-toolbar-help-content-olist-syntax' => '# عنصر قائمة<br /># عنصر قائمة', |
1434 | 1434 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>عنصر قائمة</li><li>عنصر قائمة</li></ol>', |
1435 | 1435 | 'wikieditor-toolbar-help-content-file-description' => 'ملف مضمّن', |
1436 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|تصغير|نص الشرح]]', |
| 1436 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|تصغير|نص الشرح]]', |
1437 | 1437 | '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>", |
1438 | 1438 | 'wikieditor-toolbar-help-content-reference-description' => 'مرجع', |
1439 | 1439 | 'wikieditor-toolbar-help-content-reference-syntax' => 'نص الصفحة.<ref name="test">[http://www.example.org نص الوصلة]، نص إضافي.</ref>', |
— | — | @@ -1592,8 +1592,8 @@ |
1593 | 1593 | 'wikieditor-toolbar-tool-subscript-example' => 'Subscript text', |
1594 | 1594 | 'wikieditor-toolbar-group-insert' => 'حط', |
1595 | 1595 | 'wikieditor-toolbar-tool-gallery' => 'جاليرى الصور', |
1596 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Caption1 |
1597 | | -{{ns:file}}:Example.jpg|Caption2', |
| 1596 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Caption1 |
| 1597 | +$1:Example.jpg|Caption2', |
1598 | 1598 | 'wikieditor-toolbar-tool-newline' => 'سطر جديد', |
1599 | 1599 | 'wikieditor-toolbar-tool-table' => 'جدول', |
1600 | 1600 | 'wikieditor-toolbar-tool-table-example-old' => '! header 1 |
— | — | @@ -1690,7 +1690,7 @@ |
1691 | 1691 | 'wikieditor-toolbar-help-content-olist-syntax' => '# List item<br /># List item', |
1692 | 1692 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>List item</li><li>List item</li></ol>', |
1693 | 1693 | 'wikieditor-toolbar-help-content-file-description' => 'Embedded file', |
1694 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Caption text]]', |
| 1694 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Caption text]]', |
1695 | 1695 | '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>", |
1696 | 1696 | 'wikieditor-toolbar-help-content-reference-description' => 'مرجع', |
1697 | 1697 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Page text.<ref name="test">[http://www.example.org Link text], additional text.</ref>', |
— | — | @@ -1824,8 +1824,8 @@ |
1825 | 1825 | 'wikieditor-toolbar-tool-subscript-example' => 'Юлдан аҫтағы текст', |
1826 | 1826 | 'wikieditor-toolbar-group-insert' => 'Өҫтәү', |
1827 | 1827 | 'wikieditor-toolbar-tool-gallery' => 'Рәсемдәр йыйынтығы', |
1828 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Миҫал.jpg|Тасуирлама1 |
1829 | | -{{ns:file}}:Миҫал.jpg|Тасуирлама2', |
| 1828 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Миҫал.jpg|Тасуирлама1 |
| 1829 | +$1:Миҫал.jpg|Тасуирлама2', |
1830 | 1830 | 'wikieditor-toolbar-tool-newline' => 'Яңы юл', |
1831 | 1831 | 'wikieditor-toolbar-tool-table' => 'Таблица', |
1832 | 1832 | 'wikieditor-toolbar-tool-table-example-old' => '! башлыҡ 1 |
— | — | @@ -1930,7 +1930,7 @@ |
1931 | 1931 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Исемлектең бер юлы<br /># Исемлектең бер юлы', |
1932 | 1932 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Исемлектең бер юлы</li><li>Исемлектең бер юлы</li></ol>', |
1933 | 1933 | 'wikieditor-toolbar-help-content-file-description' => 'Индерелгән файл', |
1934 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Миҫал.png|thumb|Аңлатма]]', |
| 1934 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Миҫал.png|thumb|Аңлатма]]', |
1935 | 1935 | '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>", |
1936 | 1936 | 'wikieditor-toolbar-help-content-reference-description' => 'Төшөрмә', |
1937 | 1937 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Биттәге текст.<ref name="test">[http://www.example.org Һылтанма тексты], өҫтәмә текст.</ref>', |
— | — | @@ -2064,8 +2064,8 @@ |
2065 | 2065 | 'wikieditor-toolbar-tool-subscript-example' => 'Падрадковы тэкст', |
2066 | 2066 | 'wikieditor-toolbar-group-insert' => 'Уставіць', |
2067 | 2067 | 'wikieditor-toolbar-tool-gallery' => 'Галерэя выяў', |
2068 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Апісанне1 |
2069 | | -{{ns:file}}:Example.jpg|Апісанне2', |
| 2068 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Апісанне1 |
| 2069 | +$1:Example.jpg|Апісанне2', |
2070 | 2070 | 'wikieditor-toolbar-tool-newline' => 'Новы радок', |
2071 | 2071 | 'wikieditor-toolbar-tool-table' => 'Табліца', |
2072 | 2072 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -2171,7 +2171,7 @@ |
2172 | 2172 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Элемент пераліка<br /># Элемент пераліка', |
2173 | 2173 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Элемент пераліка</li><li>Элемент пераліка</li></ol>', |
2174 | 2174 | 'wikieditor-toolbar-help-content-file-description' => 'Файл у тэксце', |
2175 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Апісанне файла]]', |
| 2175 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Апісанне файла]]', |
2176 | 2176 | '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>", |
2177 | 2177 | 'wikieditor-toolbar-help-content-reference-description' => 'Зноска', |
2178 | 2178 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Тэкст на старонцы.<ref name="test">[http://www.example.org Тэкст спасылкі], астатні тэкст зноскі.</ref>', |
— | — | @@ -2301,8 +2301,8 @@ |
2302 | 2302 | 'wikieditor-toolbar-tool-subscript-example' => 'Падрадковы тэкст', |
2303 | 2303 | 'wikieditor-toolbar-group-insert' => 'Уставіць', |
2304 | 2304 | 'wikieditor-toolbar-tool-gallery' => 'Галерэя выяваў', |
2305 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Прыклад.jpg|Подпіс1 |
2306 | | -{{ns:file}}:Прыклад.jpg|Подпіс2', |
| 2305 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Прыклад.jpg|Подпіс1 |
| 2306 | +$1:Прыклад.jpg|Подпіс2', |
2307 | 2307 | 'wikieditor-toolbar-tool-newline' => 'Новы радок', |
2308 | 2308 | 'wikieditor-toolbar-tool-table' => 'Табліца', |
2309 | 2309 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -2408,7 +2408,7 @@ |
2409 | 2409 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Элемэнт сьпісу<br /># Элемэнт сьпісу', |
2410 | 2410 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Элемэнт сьпісу</li><li>Элемэнт сьпісу</li></ol>', |
2411 | 2411 | 'wikieditor-toolbar-help-content-file-description' => 'Укладзены файл', |
2412 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Прыклад.png|thumb|Тэкст подпісу]]', |
| 2412 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Прыклад.png|thumb|Тэкст подпісу]]', |
2413 | 2413 | '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>", |
2414 | 2414 | 'wikieditor-toolbar-help-content-reference-description' => 'Зноска', |
2415 | 2415 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Тэкст старонкі.<ref name="test">[http://www.example.org Тэкст спасылкі], дадатковы тэкст.</ref>', |
— | — | @@ -2533,8 +2533,8 @@ |
2534 | 2534 | 'wikieditor-toolbar-tool-subscript-example' => 'Текст в долен индекс', |
2535 | 2535 | 'wikieditor-toolbar-group-insert' => 'Вмъкване', |
2536 | 2536 | 'wikieditor-toolbar-tool-gallery' => 'Галерия', |
2537 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Описание1 |
2538 | | -{{ns:file}}:Example.jpg|Описание2', |
| 2537 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Описание1 |
| 2538 | +$1:Example.jpg|Описание2', |
2539 | 2539 | 'wikieditor-toolbar-tool-newline' => 'Нов ред', |
2540 | 2540 | 'wikieditor-toolbar-tool-table' => 'Таблица', |
2541 | 2541 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -2639,7 +2639,7 @@ |
2640 | 2640 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Елемент от списъка<br /># Елемент от списъка', |
2641 | 2641 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Елемент от списъка</li><li>Елемент от списъка</li></ol>', |
2642 | 2642 | 'wikieditor-toolbar-help-content-file-description' => 'Вграден файл', |
2643 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|мини|Текст под картинката]]', |
| 2643 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|мини|Текст под картинката]]', |
2644 | 2644 | '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>", |
2645 | 2645 | 'wikieditor-toolbar-help-content-reference-description' => 'Източник', |
2646 | 2646 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Текст на страницата.<ref name="test">[http://www.example.org Текст на външната препратка], допълнителен текст.</ref>', |
— | — | @@ -2750,8 +2750,8 @@ |
2751 | 2751 | 'wikieditor-toolbar-tool-subscript-example' => 'Naskah subscript', |
2752 | 2752 | 'wikieditor-toolbar-group-insert' => 'Masukakan', |
2753 | 2753 | 'wikieditor-toolbar-tool-gallery' => 'Ruang gambar', |
2754 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Cuntuh.jpg|Judul1 |
2755 | | -{{ns:file}}:Cuntuh.jpg|Judul2', |
| 2754 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Cuntuh.jpg|Judul1 |
| 2755 | +$1:Cuntuh.jpg|Judul2', |
2756 | 2756 | 'wikieditor-toolbar-tool-newline' => 'Baris hanyar', |
2757 | 2757 | 'wikieditor-toolbar-tool-table' => 'Tabel', |
2758 | 2758 | 'wikieditor-toolbar-tool-table-example-old' => ' - |
— | — | @@ -2850,7 +2850,7 @@ |
2851 | 2851 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Isi daptar<br /># Isi daptar', |
2852 | 2852 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Isi daptar</li><li>Isi daptar</li></ol>', |
2853 | 2853 | 'wikieditor-toolbar-help-content-file-description' => 'Maktub-akan barakas', |
2854 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Cuntuh.png|thumb|Naskah judul gambar]]', |
| 2854 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Cuntuh.png|thumb|Naskah judul gambar]]', |
2855 | 2855 | 'wikieditor-toolbar-help-content-reference-description' => 'Rujukan', |
2856 | 2856 | 'wikieditor-toolbar-help-content-reference-result' => "Naskah tungkaran.<sup><a href='#'>[1]</a></sup>", |
2857 | 2857 | 'wikieditor-toolbar-help-content-rereference-result' => "Naskah tungkaran.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -2969,8 +2969,8 @@ |
2970 | 2970 | 'wikieditor-toolbar-tool-subscript-example' => 'সাবস্ক্রিপ্ট লেখা', |
2971 | 2971 | 'wikieditor-toolbar-group-insert' => 'যোগ করো', |
2972 | 2972 | 'wikieditor-toolbar-tool-gallery' => 'ছবির গ্যালারী', |
2973 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|ক্যাপশন১ |
2974 | | -{{ns:file}}:Example.jpg|ক্যাপশন২', |
| 2973 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|ক্যাপশন১ |
| 2974 | +$1:Example.jpg|ক্যাপশন২', |
2975 | 2975 | 'wikieditor-toolbar-tool-newline' => 'নতুন লাইন', |
2976 | 2976 | 'wikieditor-toolbar-tool-table' => 'ছক', |
2977 | 2977 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -3076,7 +3076,7 @@ |
3077 | 3077 | 'wikieditor-toolbar-help-content-olist-syntax' => '# তালিকা আইটেম <br /># তালিকা আইটেম', |
3078 | 3078 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>তালিকা আইটেম</li><li>তালিকা আইটেম</li></ol>', |
3079 | 3079 | 'wikieditor-toolbar-help-content-file-description' => 'এম্বেডেড ফাইল', |
3080 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|ক্যাপশন লেখ]]', |
| 3080 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|ক্যাপশন লেখ]]', |
3081 | 3081 | 'wikieditor-toolbar-help-content-reference-description' => 'তথ্যসূত্র', |
3082 | 3082 | 'wikieditor-toolbar-help-content-reference-result' => "পাতার লেখা।<sup><a href='#'>[1]</a></sup>", |
3083 | 3083 | 'wikieditor-toolbar-help-content-rereference-description' => 'একই তথ্যসূত্রের একাধিক ব্যবহার', |
— | — | @@ -3208,8 +3208,8 @@ |
3209 | 3209 | 'wikieditor-toolbar-tool-subscript-example' => 'সাবস্ক্রিপ্ট মেয়েক', |
3210 | 3210 | 'wikieditor-toolbar-group-insert' => 'বরা', |
3211 | 3211 | 'wikieditor-toolbar-tool-gallery' => 'ফটকর গ্যালারী', |
3212 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|ক্যাপশন১ |
3213 | | -{{ns:file}}:Example.jpg|ক্যাপশন২', |
| 3212 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|ক্যাপশন১ |
| 3213 | +$1:Example.jpg|ক্যাপশন২', |
3214 | 3214 | 'wikieditor-toolbar-tool-newline' => 'নুৱা পারেঙ', |
3215 | 3215 | 'wikieditor-toolbar-tool-table' => 'ছক', |
3216 | 3216 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -3315,7 +3315,7 @@ |
3316 | 3316 | 'wikieditor-toolbar-help-content-olist-syntax' => '# পারেঙর মেথেল<br /># পারেঙর মেথেল', |
3317 | 3317 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>পারেঙর মেথেল</li><li>পারেঙর মেথেল</li></ol>', |
3318 | 3318 | 'wikieditor-toolbar-help-content-file-description' => 'এম্বেডেড ফাইলগ', |
3319 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|ক্যাপশনর মেয়ক]]', |
| 3319 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|ক্যাপশনর মেয়ক]]', |
3320 | 3320 | '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>", |
3321 | 3321 | 'wikieditor-toolbar-help-content-reference-description' => 'রেফারেন্সহানি', |
3322 | 3322 | 'wikieditor-toolbar-help-content-reference-syntax' => 'পাতার ইকাহানি।<ref name="test">[http://www.example.org মিলাপর মেয়েকগি], আরতাউ মেয়েক।</ref>', |
— | — | @@ -3445,8 +3445,8 @@ |
3446 | 3446 | 'wikieditor-toolbar-tool-subscript-example' => 'Testenn e feur', |
3447 | 3447 | 'wikieditor-toolbar-group-insert' => "Ensoc'hañ", |
3448 | 3448 | 'wikieditor-toolbar-tool-gallery' => 'Skeudennaoueg', |
3449 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Skouer.jpg|Deskrivadur1 |
3450 | | -{{ns:file}}:Skouer.jpg|Deskrivadur2', |
| 3449 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Skouer.jpg|Deskrivadur1 |
| 3450 | +$1:Skouer.jpg|Deskrivadur2', |
3451 | 3451 | 'wikieditor-toolbar-tool-newline' => 'Linenn nevez', |
3452 | 3452 | 'wikieditor-toolbar-tool-table' => 'Taolenn', |
3453 | 3453 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -3552,7 +3552,7 @@ |
3553 | 3553 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Elfenn eus ar roll<br /># Elfenn eus ar roll', |
3554 | 3554 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Elfenn eus ar roll</li><li>Elfenn eus ar roll</li></ol>', |
3555 | 3555 | 'wikieditor-toolbar-help-content-file-description' => 'Restr enframmet', |
3556 | | - 'wikieditor-toolbar-help-content-file-syntax' => "[[{{ns:file}}:Example.png|thumb|Alc'hwez ar skeudenn]]", |
| 3556 | + 'wikieditor-toolbar-help-content-file-syntax' => "[[$1:Example.png|thumb|Alc'hwez ar skeudenn]]", |
3557 | 3557 | '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>", |
3558 | 3558 | 'wikieditor-toolbar-help-content-reference-description' => 'Daveenn', |
3559 | 3559 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Testenn ar bajenn.<ref name="test">[http://www.example.org testenn al liamm], testenn ouzhpenn.</ref>', |
— | — | @@ -3680,8 +3680,8 @@ |
3681 | 3681 | 'wikieditor-toolbar-tool-subscript-example' => 'Tekst indeksa', |
3682 | 3682 | 'wikieditor-toolbar-group-insert' => 'Ubaci', |
3683 | 3683 | 'wikieditor-toolbar-tool-gallery' => 'Galerija slika', |
3684 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Opis1 |
3685 | | -{{ns:file}}:Example.jpg|Opis2', |
| 3684 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Opis1 |
| 3685 | +$1:Example.jpg|Opis2', |
3686 | 3686 | 'wikieditor-toolbar-tool-newline' => 'Nova linija', |
3687 | 3687 | 'wikieditor-toolbar-tool-table' => 'Tabela', |
3688 | 3688 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -3787,7 +3787,7 @@ |
3788 | 3788 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Stavka spiska<br /># Stavka spiska', |
3789 | 3789 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Stavka spiska</li><li>Stavka spiska</li></ol>', |
3790 | 3790 | 'wikieditor-toolbar-help-content-file-description' => 'Uklopljena datoteka', |
3791 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Opis slike]]', |
| 3791 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Opis slike]]', |
3792 | 3792 | '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>", |
3793 | 3793 | 'wikieditor-toolbar-help-content-reference-description' => 'Reference', |
3794 | 3794 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Tekst stranice.<ref name="test">[http://www.example.org Tekst linka], dodatni tekst.</ref>', |
— | — | @@ -3918,8 +3918,8 @@ |
3919 | 3919 | 'wikieditor-toolbar-tool-subscript-example' => 'Text en subíndex', |
3920 | 3920 | 'wikieditor-toolbar-group-insert' => 'Insereix', |
3921 | 3921 | 'wikieditor-toolbar-tool-gallery' => "Galeria d'imatges", |
3922 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Peu1 |
3923 | | -{{ns:file}}:Example.jpg|Peu2', |
| 3922 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Peu1 |
| 3923 | +$1:Example.jpg|Peu2', |
3924 | 3924 | 'wikieditor-toolbar-tool-newline' => 'Nova línia', |
3925 | 3925 | 'wikieditor-toolbar-tool-table' => 'Taula', |
3926 | 3926 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -4025,7 +4025,7 @@ |
4026 | 4026 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Element de la llista<br /># Element de la llista', |
4027 | 4027 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Element de la llista</li><li>Element de la llista</li></ol>', |
4028 | 4028 | 'wikieditor-toolbar-help-content-file-description' => 'Fitxer incrustat', |
4029 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Text descriptiu de la imatge]]', |
| 4029 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Text descriptiu de la imatge]]', |
4030 | 4030 | '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>", |
4031 | 4031 | 'wikieditor-toolbar-help-content-reference-description' => 'Referències', |
4032 | 4032 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Text de la pàgina.<ref name="test">[http://www.exemple.cat Nom de l\'enllaç], text addicional.</ref>', |
— | — | @@ -4181,8 +4181,8 @@ |
4182 | 4182 | 'wikieditor-toolbar-tool-subscript-example' => 'دەقی ژێرنووس', |
4183 | 4183 | 'wikieditor-toolbar-group-insert' => 'تێخستن', |
4184 | 4184 | 'wikieditor-toolbar-tool-gallery' => 'گالێری وێنە', |
4185 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:نموونە.jpg|شرۆڤەی ١ |
4186 | | -{{ns:file}}:نموونە.jpg|شرۆڤەی ٢', |
| 4185 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:نموونە.jpg|شرۆڤەی ١ |
| 4186 | +$1:نموونە.jpg|شرۆڤەی ٢', |
4187 | 4187 | 'wikieditor-toolbar-tool-newline' => 'ھێڵی نوێ', |
4188 | 4188 | 'wikieditor-toolbar-tool-table' => 'خشتە', |
4189 | 4189 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -4285,7 +4285,7 @@ |
4286 | 4286 | 'wikieditor-toolbar-help-content-olist-syntax' => '# ئەندامی لیست<br /># ئەندامی لیست', |
4287 | 4287 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>ئەندامی لیست</li><li>ئەندامی لیست</li></ol>', |
4288 | 4288 | 'wikieditor-toolbar-help-content-file-description' => 'پەڕگەی نێودەق', |
4289 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:نموونە.png|وێنۆک|دەقی شرۆڤە]]', |
| 4289 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:نموونە.png|وێنۆک|دەقی شرۆڤە]]', |
4290 | 4290 | '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>", |
4291 | 4291 | 'wikieditor-toolbar-help-content-reference-description' => 'سەرچاوە', |
4292 | 4292 | 'wikieditor-toolbar-help-content-reference-syntax' => 'دەقی پەڕە.<ref name="test">[http://www.example.org دەقی بەستەر], دەقی زیادی.</ref>', |
— | — | @@ -4422,8 +4422,8 @@ |
4423 | 4423 | 'wikieditor-toolbar-tool-subscript-example' => 'Text v dolním indexu', |
4424 | 4424 | 'wikieditor-toolbar-group-insert' => 'Vložit', |
4425 | 4425 | 'wikieditor-toolbar-tool-gallery' => 'Galerie obrázků', |
4426 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Příklad.jpg|Titulek 1 |
4427 | | -{{ns:file}}:Příklad.jpg|Titulek 2', |
| 4426 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Příklad.jpg|Titulek 1 |
| 4427 | +$1:Příklad.jpg|Titulek 2', |
4428 | 4428 | 'wikieditor-toolbar-tool-newline' => 'Nový řádek', |
4429 | 4429 | 'wikieditor-toolbar-tool-table' => 'Tabulka', |
4430 | 4430 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -4529,7 +4529,7 @@ |
4530 | 4530 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Položka seznamu<br /># Položka seznamu', |
4531 | 4531 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Položka seznamu</li><li>Položka seznamu</li></ol>', |
4532 | 4532 | 'wikieditor-toolbar-help-content-file-description' => 'Vložení souboru', |
4533 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Příklad.png|thumb|Text titulku]]', |
| 4533 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Příklad.png|thumb|Text titulku]]', |
4534 | 4534 | '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>", |
4535 | 4535 | 'wikieditor-toolbar-help-content-reference-description' => 'Poznámka', |
4536 | 4536 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Text stránky.<ref name="test">[http://www.example.org Text odkazu], další text.</ref>', |
— | — | @@ -4759,8 +4759,8 @@ |
4760 | 4760 | 'wikieditor-toolbar-tool-subscript-example' => 'Ysgrifennwch isysgrif fan hyn', |
4761 | 4761 | 'wikieditor-toolbar-group-insert' => 'Mewnosod', |
4762 | 4762 | 'wikieditor-toolbar-tool-gallery' => 'Oriel lluniau', |
4763 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Enghraifft.jpg|Disgrifiad1 |
4764 | | -{{ns:file}}:Enghraifft.jpg|Disgrifiad2', |
| 4763 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Enghraifft.jpg|Disgrifiad1 |
| 4764 | +$1:Enghraifft.jpg|Disgrifiad2', |
4765 | 4765 | 'wikieditor-toolbar-tool-newline' => 'Llinell newydd', |
4766 | 4766 | 'wikieditor-toolbar-tool-table' => 'Tabl', |
4767 | 4767 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -4866,7 +4866,7 @@ |
4867 | 4867 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Eitem ar y rhestr<br /># Eitem ar y rhestr', |
4868 | 4868 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Eitem ar y rhestr</li><li>Eitem ar y rhestr</li></ol>', |
4869 | 4869 | 'wikieditor-toolbar-help-content-file-description' => 'Ffeil mewnosodol', |
4870 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Enghraifft.png|thumb|Disgrifiad]]', |
| 4870 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Enghraifft.png|thumb|Disgrifiad]]', |
4871 | 4871 | '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>", |
4872 | 4872 | 'wikieditor-toolbar-help-content-reference-description' => 'Troednodyn', |
4873 | 4873 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Testun y dudalen.<ref name="test">[http://www.enghraifft.org ysgrifen y cyswllt], ysgrifen ychwanegol.</ref>', |
— | — | @@ -4995,8 +4995,8 @@ |
4996 | 4996 | 'wikieditor-toolbar-tool-subscript-example' => 'Sænket skrift', |
4997 | 4997 | 'wikieditor-toolbar-group-insert' => 'Indsæt', |
4998 | 4998 | 'wikieditor-toolbar-tool-gallery' => 'Billedgalleri', |
4999 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Eksempel.jpg|Billedtekst1 |
5000 | | -{{ns:file}}:Eksempel.jpg|Billedtekst2', |
| 4999 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Eksempel.jpg|Billedtekst1 |
| 5000 | +$1:Eksempel.jpg|Billedtekst2', |
5001 | 5001 | 'wikieditor-toolbar-tool-newline' => 'Ny linje', |
5002 | 5002 | 'wikieditor-toolbar-tool-table' => 'Tabel', |
5003 | 5003 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -5100,7 +5100,7 @@ |
5101 | 5101 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Listeelement<br /># Listeelement', |
5102 | 5102 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Listeelement</li><li>Listeelement</li></ol>', |
5103 | 5103 | 'wikieditor-toolbar-help-content-file-description' => 'Indlejret fil', |
5104 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Billedtekst]]', |
| 5104 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Billedtekst]]', |
5105 | 5105 | '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>", |
5106 | 5106 | 'wikieditor-toolbar-help-content-reference-description' => 'Fodnote', |
5107 | 5107 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Sidetekst.<ref name="test">[http://www.example.org Henvisningstekst], yderligere tekst.</ref>', |
— | — | @@ -5235,8 +5235,8 @@ |
5236 | 5236 | 'wikieditor-toolbar-tool-subscript-example' => 'Tiefgestellter Text', |
5237 | 5237 | 'wikieditor-toolbar-group-insert' => 'Einfügen', |
5238 | 5238 | 'wikieditor-toolbar-tool-gallery' => 'Bildergalerie', |
5239 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Beispiel.jpg|Beschreibung1 |
5240 | | -{{ns:file}}:Beispiel.jpg|Beschreibung2', |
| 5239 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Beispiel.jpg|Beschreibung1 |
| 5240 | +$1:Beispiel.jpg|Beschreibung2', |
5241 | 5241 | 'wikieditor-toolbar-tool-newline' => 'Neue Zeile', |
5242 | 5242 | 'wikieditor-toolbar-tool-table' => 'Tabelle', |
5243 | 5243 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -5342,7 +5342,7 @@ |
5343 | 5343 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Listeneintrag<br /># Listeneintrag', |
5344 | 5344 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Listeneintrag</li><li>Listeneintrag</li></ol>', |
5345 | 5345 | 'wikieditor-toolbar-help-content-file-description' => 'Eingebettete Datei', |
5346 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Beispiel.png|thumb|Beschreibung]]', |
| 5346 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Beispiel.png|thumb|Beschreibung]]', |
5347 | 5347 | '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>", |
5348 | 5348 | 'wikieditor-toolbar-help-content-reference-description' => 'Beleg', |
5349 | 5349 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Seitentext.<ref name="test">[http://www.beispiel.org Linktext], zusätzlicher Text.</ref>', |
— | — | @@ -5485,8 +5485,8 @@ |
5486 | 5486 | 'wikieditor-toolbar-tool-subscript-example' => 'metnê simgeya cêrıni', |
5487 | 5487 | 'wikieditor-toolbar-group-insert' => 'têare ker', |
5488 | 5488 | 'wikieditor-toolbar-tool-gallery' => 'galeriya resmi', |
5489 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:misal.jpg|nuşteyê resmi1 |
5490 | | -{{ns:file}}:misal.jpg|nuşteyê resmi2', |
| 5489 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:misal.jpg|nuşteyê resmi1 |
| 5490 | +$1:misal.jpg|nuşteyê resmi2', |
5491 | 5491 | 'wikieditor-toolbar-tool-newline' => 'satıro newe', |
5492 | 5492 | 'wikieditor-toolbar-tool-table' => 'Tablo', |
5493 | 5493 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -5589,7 +5589,7 @@ |
5590 | 5590 | 'wikieditor-toolbar-help-content-olist-syntax' => '# unsurê listeyi<br /># unsurê listeyi', |
5591 | 5591 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>unsurê listeyi</li><li>unsurê listeyi</li></ol>', |
5592 | 5592 | 'wikieditor-toolbar-help-content-file-description' => 'dosyaya weradaye/nımıte', |
5593 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Nuşteyê resîmî]]', |
| 5593 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Nuşteyê resîmî]]', |
5594 | 5594 | '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>", |
5595 | 5595 | 'wikieditor-toolbar-help-content-reference-description' => 'çıme/referans', |
5596 | 5596 | 'wikieditor-toolbar-help-content-reference-syntax' => 'metnê peli.<ref name="tesel kerdış/cerebnayiş">[http://www.misal.org metnê gıreyi], zeylê metni.</ref>', |
— | — | @@ -5716,8 +5716,8 @@ |
5717 | 5717 | 'wikieditor-toolbar-tool-subscript-example' => 'Dłymoko stajony tekst', |
5718 | 5718 | 'wikieditor-toolbar-group-insert' => 'Zasunuś', |
5719 | 5719 | 'wikieditor-toolbar-tool-gallery' => 'Wobrazowa galerija', |
5720 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Pśikład.jpg|Pópisanje1 |
5721 | | -{{ns:file}}:Pśikład.jpg|Pópisanje2', |
| 5720 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Pśikład.jpg|Pópisanje1 |
| 5721 | +$1:Pśikład.jpg|Pópisanje2', |
5722 | 5722 | 'wikieditor-toolbar-tool-newline' => 'Nowa smužka', |
5723 | 5723 | 'wikieditor-toolbar-tool-table' => 'Tabela', |
5724 | 5724 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -5823,7 +5823,7 @@ |
5824 | 5824 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Lisćinowy zapisk<br /># Lisćinowy zapisk', |
5825 | 5825 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Lisćinowy zapisk</li><li>Lisćinowy zapisk</li></ol>', |
5826 | 5826 | 'wikieditor-toolbar-help-content-file-description' => 'Zasajźona dataja', |
5827 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Wobrazowe pópisanje]]', |
| 5827 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Wobrazowe pópisanje]]', |
5828 | 5828 | '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>", |
5829 | 5829 | 'wikieditor-toolbar-help-content-reference-description' => 'Referenca', |
5830 | 5830 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Tekst boka.<ref name="test">[http://www.example.org Tekst wótkaza], pśidatny tekst.</ref>', |
— | — | @@ -5956,8 +5956,8 @@ |
5957 | 5957 | 'wikieditor-toolbar-tool-subscript-example' => 'Κείμενο-δείκτης', |
5958 | 5958 | 'wikieditor-toolbar-group-insert' => 'Εισαγωγή', |
5959 | 5959 | 'wikieditor-toolbar-tool-gallery' => 'Συλλογή εικόνων', |
5960 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Λεζάντα1 |
5961 | | -{{ns:file}}:Example.jpg|Λεζάντα2', |
| 5960 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Λεζάντα1 |
| 5961 | +$1:Example.jpg|Λεζάντα2', |
5962 | 5962 | 'wikieditor-toolbar-tool-newline' => 'Νέα γραμμή', |
5963 | 5963 | 'wikieditor-toolbar-tool-table' => 'Πίνακας', |
5964 | 5964 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -6063,7 +6063,7 @@ |
6064 | 6064 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Αντικείμενο της λίστας<br /># Αντικείμενο της λίστας', |
6065 | 6065 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Στοιχείο λίστας</li><li>Στοιχείο λίστας</li></ol>', |
6066 | 6066 | 'wikieditor-toolbar-help-content-file-description' => 'Ενσωματωμένο αρχείο', |
6067 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Κείμενο περιγραφής]]', |
| 6067 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Κείμενο περιγραφής]]', |
6068 | 6068 | '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>", |
6069 | 6069 | 'wikieditor-toolbar-help-content-reference-description' => 'Παραπομπή', |
6070 | 6070 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Κείμενο σελίδας.<ref name="test">[http://www.example.org Κείμενο συνδέσμου], επιπλέον κείμενο.</ref>', |
— | — | @@ -6195,8 +6195,8 @@ |
6196 | 6196 | 'wikieditor-toolbar-tool-subscript-example' => 'Malalta skribo', |
6197 | 6197 | 'wikieditor-toolbar-group-insert' => 'Enmeti', |
6198 | 6198 | 'wikieditor-toolbar-tool-gallery' => 'Bilda galerio', |
6199 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Ekzemplo.jpg|Teksto1 pri dosiero |
6200 | | -{{ns:file}}:Ekzemplo.jpg|Teksto2 pri dosiero', |
| 6199 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Ekzemplo.jpg|Teksto1 pri dosiero |
| 6200 | +$1:Ekzemplo.jpg|Teksto2 pri dosiero', |
6201 | 6201 | 'wikieditor-toolbar-tool-newline' => 'Nova linio', |
6202 | 6202 | 'wikieditor-toolbar-tool-table' => 'Tabelo', |
6203 | 6203 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -6302,7 +6302,7 @@ |
6303 | 6303 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Listero<br /># Listero', |
6304 | 6304 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Listero</li><li>Listero</li></ol>', |
6305 | 6305 | 'wikieditor-toolbar-help-content-file-description' => 'Enmetita dosiero', |
6306 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Teksto pri dosiero]]', |
| 6306 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Teksto pri dosiero]]', |
6307 | 6307 | '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>", |
6308 | 6308 | 'wikieditor-toolbar-help-content-reference-description' => 'Piednoto', |
6309 | 6309 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Paĝa teksto.<ref name="test">[http://www.ekzemplo.org Ligila teksto], aldona teksto.</ref>', |
— | — | @@ -6437,8 +6437,8 @@ |
6438 | 6438 | 'wikieditor-toolbar-tool-subscript-example' => 'Texto suscrito', |
6439 | 6439 | 'wikieditor-toolbar-group-insert' => 'Insertar', |
6440 | 6440 | 'wikieditor-toolbar-tool-gallery' => 'Galería de fotos', |
6441 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Ejemplo.jpg|Descripción1 |
6442 | | -{{ns:file}}:Ejemplo.jpg|Descripción2', |
| 6441 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Ejemplo.jpg|Descripción1 |
| 6442 | +$1:Ejemplo.jpg|Descripción2', |
6443 | 6443 | 'wikieditor-toolbar-tool-newline' => 'Nueva línea', |
6444 | 6444 | 'wikieditor-toolbar-tool-table' => 'Tabla', |
6445 | 6445 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -6544,7 +6544,7 @@ |
6545 | 6545 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Listar item<br /># Listar item', |
6546 | 6546 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Listar item</li><li>Listar item</li></ol>', |
6547 | 6547 | 'wikieditor-toolbar-help-content-file-description' => 'Archivo empotrado', |
6548 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Ejemplo.png|thumb|Leyenda de texto]]', |
| 6548 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Ejemplo.png|thumb|Leyenda de texto]]', |
6549 | 6549 | '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>", |
6550 | 6550 | 'wikieditor-toolbar-help-content-reference-description' => 'Referencia', |
6551 | 6551 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Texto de página.<ref name="test">[http://www.example.org Texto de vínculo], texto adicional.</ref>', |
— | — | @@ -6668,8 +6668,8 @@ |
6669 | 6669 | 'wikieditor-toolbar-tool-subscript-example' => 'Tekst allindeksina', |
6670 | 6670 | 'wikieditor-toolbar-group-insert' => 'Lisa', |
6671 | 6671 | 'wikieditor-toolbar-tool-gallery' => 'Pildigalerii', |
6672 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Näide.jpg|Pildiallkiri1 |
6673 | | -{{ns:file}}:Näide.jpg|Pildiallkiri2', |
| 6672 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Näide.jpg|Pildiallkiri1 |
| 6673 | +$1:Näide.jpg|Pildiallkiri2', |
6674 | 6674 | 'wikieditor-toolbar-tool-newline' => 'Uus rida', |
6675 | 6675 | 'wikieditor-toolbar-tool-table' => 'Tabel', |
6676 | 6676 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -6773,7 +6773,7 @@ |
6774 | 6774 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Loendi liige<br /># Loendi liige', |
6775 | 6775 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Loendi liige</li><li>Loendi liige</li></ol>', |
6776 | 6776 | 'wikieditor-toolbar-help-content-file-description' => 'Manusfail', |
6777 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Näide.png|thumb|Pildiallkiri.]]', |
| 6777 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Näide.png|thumb|Pildiallkiri.]]', |
6778 | 6778 | '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>", |
6779 | 6779 | 'wikieditor-toolbar-help-content-reference-description' => 'Viide', |
6780 | 6780 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Lehekülje tekst.<ref name="test">[http://www.näide.ee Lingi tekst], täiendav tekst.</ref>', |
— | — | @@ -6903,8 +6903,8 @@ |
6904 | 6904 | 'wikieditor-toolbar-tool-subscript-example' => 'Azpiindizearen testua', |
6905 | 6905 | 'wikieditor-toolbar-group-insert' => 'Txertatu', |
6906 | 6906 | 'wikieditor-toolbar-tool-gallery' => 'Irudi galeria', |
6907 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Adibidea.jpg|Oina1 |
6908 | | -{{ns:file}}:Adibidea.jpg|Oina2', |
| 6907 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Adibidea.jpg|Oina1 |
| 6908 | +$1:Adibidea.jpg|Oina2', |
6909 | 6909 | 'wikieditor-toolbar-tool-newline' => 'Lerro berria', |
6910 | 6910 | 'wikieditor-toolbar-tool-table' => 'Taula', |
6911 | 6911 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -7010,7 +7010,7 @@ |
7011 | 7011 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Zerrendako elementua<br /># Zerrendako elementua', |
7012 | 7012 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Zerrendako elementua</li><li>Zerrendako elementua</li></ol>', |
7013 | 7013 | 'wikieditor-toolbar-help-content-file-description' => 'Fitxategia txertatu', |
7014 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Adibidea.png|thumb|Irudi oina]]', |
| 7014 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Adibidea.png|thumb|Irudi oina]]', |
7015 | 7015 | '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>", |
7016 | 7016 | 'wikieditor-toolbar-help-content-reference-description' => 'Erreferentzia', |
7017 | 7017 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Orrialdearen testua.<ref name="proba">[http://www.adibidea.org Loturaren testua], testu gehigarria.</ref>', |
— | — | @@ -7138,8 +7138,8 @@ |
7139 | 7139 | 'wikieditor-toolbar-tool-subscript-example' => 'متن زیرنویس', |
7140 | 7140 | 'wikieditor-toolbar-group-insert' => 'اضافه کردن', |
7141 | 7141 | 'wikieditor-toolbar-tool-gallery' => 'نگارخانهٔ تصویر', |
7142 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:مثال.jpg|عنوان ۱ |
7143 | | -{{ns:file}}:مثال.jpg|عنوان ۲', |
| 7142 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:مثال.jpg|عنوان ۱ |
| 7143 | +$1:مثال.jpg|عنوان ۲', |
7144 | 7144 | 'wikieditor-toolbar-tool-newline' => 'خط جدید', |
7145 | 7145 | 'wikieditor-toolbar-tool-table' => 'جدول', |
7146 | 7146 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -7245,7 +7245,7 @@ |
7246 | 7246 | 'wikieditor-toolbar-help-content-olist-syntax' => '# مورد فهرست<br /># مورد فهرست', |
7247 | 7247 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>مورد فهرست</li><li>مورد فهرست</li></ol>', |
7248 | 7248 | 'wikieditor-toolbar-help-content-file-description' => 'پرونده جاسازیشده', |
7249 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:مثال.png|thumb|متن عنوان]]', |
| 7249 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:مثال.png|thumb|متن عنوان]]', |
7250 | 7250 | '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>", |
7251 | 7251 | 'wikieditor-toolbar-help-content-reference-description' => 'منبع', |
7252 | 7252 | 'wikieditor-toolbar-help-content-reference-syntax' => 'متن صفحه.<ref name="test">[http://www.example.org متن پیوند]، متن اضافی.</ref>', |
— | — | @@ -7376,8 +7376,8 @@ |
7377 | 7377 | 'wikieditor-toolbar-tool-subscript-example' => 'Alaindeksin teksti', |
7378 | 7378 | 'wikieditor-toolbar-group-insert' => 'Lisää', |
7379 | 7379 | 'wikieditor-toolbar-tool-gallery' => 'Kuvagalleria', |
7380 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Esimerkki.jpg|Kuvateksti1 |
7381 | | -{{ns:file}}:Esimerkki.jpg|Kuvateksti2', |
| 7380 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Esimerkki.jpg|Kuvateksti1 |
| 7381 | +$1:Esimerkki.jpg|Kuvateksti2', |
7382 | 7382 | 'wikieditor-toolbar-tool-newline' => 'Uusi rivi', |
7383 | 7383 | 'wikieditor-toolbar-tool-table' => 'Taulukko', |
7384 | 7384 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -7483,7 +7483,7 @@ |
7484 | 7484 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Luettelon kohta<br /># Luettelon kohta', |
7485 | 7485 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Luettelon kohta</li><li>Luettelon kohta</li></ol>', |
7486 | 7486 | 'wikieditor-toolbar-help-content-file-description' => 'Tallennettu tiedosto', |
7487 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Esimerkki.png|thumb|Kuvateksti]]', |
| 7487 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Esimerkki.png|thumb|Kuvateksti]]', |
7488 | 7488 | '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>", |
7489 | 7489 | 'wikieditor-toolbar-help-content-reference-description' => 'Viite', |
7490 | 7490 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Sivun teksti.<ref name="testi">[http://www.example.org Linkin teksti], lisäteksti.</ref>', |
— | — | @@ -7616,8 +7616,8 @@ |
7617 | 7617 | 'wikieditor-toolbar-tool-subscript-example' => 'Texte en indice', |
7618 | 7618 | 'wikieditor-toolbar-group-insert' => 'Insérer', |
7619 | 7619 | 'wikieditor-toolbar-tool-gallery' => 'Galerie de fichiers', |
7620 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Exemple.jpg|Description 1 |
7621 | | -{{ns:file}}:Exemple.jpg|Description 2', |
| 7620 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Exemple.jpg|Description 1 |
| 7621 | +$1:Exemple.jpg|Description 2', |
7622 | 7622 | 'wikieditor-toolbar-tool-newline' => 'Saut de ligne', |
7623 | 7623 | 'wikieditor-toolbar-tool-table' => 'Tableau', |
7624 | 7624 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -7723,7 +7723,7 @@ |
7724 | 7724 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Élément de la liste<br /># Élément de la liste', |
7725 | 7725 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Élément de la liste</li><li>Élément de la liste</li></ol>', |
7726 | 7726 | 'wikieditor-toolbar-help-content-file-description' => 'Fichier inséré', |
7727 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Exemple.png|thumb|Texte affiché]]', |
| 7727 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Exemple.png|thumb|Texte affiché]]', |
7728 | 7728 | '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>", |
7729 | 7729 | 'wikieditor-toolbar-help-content-reference-description' => 'Référence', |
7730 | 7730 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Texte de la page<ref name="test">[http://www.example.org texte du lien], texte additionnel.</ref>', |
— | — | @@ -7850,8 +7850,8 @@ |
7851 | 7851 | 'wikieditor-toolbar-tool-subscript-example' => 'Tèxto en segno', |
7852 | 7852 | 'wikieditor-toolbar-group-insert' => 'Entrebetar', |
7853 | 7853 | 'wikieditor-toolbar-tool-gallery' => 'Galerie d’émâges', |
7854 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Ègzemplo.jpg|Dèscripcion 1 |
7855 | | -{{ns:file}}:Ègzemplo.jpg|Dèscripcion 2', |
| 7854 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Ègzemplo.jpg|Dèscripcion 1 |
| 7855 | +$1:Ègzemplo.jpg|Dèscripcion 2', |
7856 | 7856 | 'wikieditor-toolbar-tool-newline' => 'Sôt de legne', |
7857 | 7857 | 'wikieditor-toolbar-tool-table' => 'Tablô', |
7858 | 7858 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -7957,7 +7957,7 @@ |
7958 | 7958 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Èlèment de la lista<br /># Èlèment de la lista', |
7959 | 7959 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Èlèment de la lista</li><li>Èlèment de la lista</li></ol>', |
7960 | 7960 | 'wikieditor-toolbar-help-content-file-description' => 'Fichiér entrebetâ', |
7961 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Ègzemplo.png|thumb|Tèxto montrâ]]', |
| 7961 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Ègzemplo.png|thumb|Tèxto montrâ]]', |
7962 | 7962 | '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>", |
7963 | 7963 | 'wikieditor-toolbar-help-content-reference-description' => 'Refèrence', |
7964 | 7964 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Tèxto de la pâge.<ref name="test">[http://www.example.org tèxto du lim], tèxto de ples.</ref>', |
— | — | @@ -8111,8 +8111,8 @@ |
8112 | 8112 | 'wikieditor-toolbar-tool-subscript-example' => 'Teacsa fo-sgrìobhte', |
8113 | 8113 | 'wikieditor-toolbar-group-insert' => 'Cuir a-steach', |
8114 | 8114 | 'wikieditor-toolbar-tool-gallery' => 'Gailearaidh nan dealbh', |
8115 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Ballsampaill.jpg|Mìneachadh an deilbh1 |
8116 | | -{{ns:file}}:Ballsampaill.jpg|Mìneachadh an deilbh2', |
| 8115 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Ballsampaill.jpg|Mìneachadh an deilbh1 |
| 8116 | +$1:Ballsampaill.jpg|Mìneachadh an deilbh2', |
8117 | 8117 | 'wikieditor-toolbar-tool-newline' => 'Loidhne ùr', |
8118 | 8118 | 'wikieditor-toolbar-tool-table' => 'Clàr', |
8119 | 8119 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -8215,7 +8215,7 @@ |
8216 | 8216 | 'wikieditor-toolbar-help-content-olist-syntax' => '* Ball na liosta<br />* Ball na liosta', |
8217 | 8217 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Ball na liosta</li><li>Ball na liosta</li></ol>', |
8218 | 8218 | 'wikieditor-toolbar-help-content-file-description' => 'Embedded file', |
8219 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Ballsampaill.png|thumb|Mìneachadh an deilbh]]', |
| 8219 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Ballsampaill.png|thumb|Mìneachadh an deilbh]]', |
8220 | 8220 | '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>", |
8221 | 8221 | 'wikieditor-toolbar-help-content-reference-description' => 'Iomradh', |
8222 | 8222 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Teacsa na duilleige.<ref name="test">[http://www.ballsampaill.org Teacsa a\' cheangail], teacsa eile.</ref>', |
— | — | @@ -8342,8 +8342,8 @@ |
8343 | 8343 | 'wikieditor-toolbar-tool-subscript-example' => 'Texto de subíndice', |
8344 | 8344 | 'wikieditor-toolbar-group-insert' => 'Inserir', |
8345 | 8345 | 'wikieditor-toolbar-tool-gallery' => 'Galería de imaxes', |
8346 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Pé_de_foto_1 |
8347 | | -{{ns:file}}:Example.jpg|Pé_de_foto_2', |
| 8346 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Pé_de_foto_1 |
| 8347 | +$1:Example.jpg|Pé_de_foto_2', |
8348 | 8348 | 'wikieditor-toolbar-tool-newline' => 'Nova liña', |
8349 | 8349 | 'wikieditor-toolbar-tool-table' => 'Táboa', |
8350 | 8350 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -8449,7 +8449,7 @@ |
8450 | 8450 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Elemento da lista<br /># Elemento da lista', |
8451 | 8451 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Elemento da lista</li><li>Elemento da lista</li></ol>', |
8452 | 8452 | 'wikieditor-toolbar-help-content-file-description' => 'Ficheiro embelecido', |
8453 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Pé de foto.]]', |
| 8453 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Pé de foto.]]', |
8454 | 8454 | '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>", |
8455 | 8455 | 'wikieditor-toolbar-help-content-reference-description' => 'Referencia', |
8456 | 8456 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Texto da páxina<ref name="test">[http://www.example.org Texto da ligazón], texto adicional.</ref>.', |
— | — | @@ -8667,8 +8667,8 @@ |
8668 | 8668 | 'wikieditor-toolbar-tool-subscript-example' => 'Untergsetzte Tekscht', |
8669 | 8669 | 'wikieditor-toolbar-group-insert' => 'Yyfiege', |
8670 | 8670 | 'wikieditor-toolbar-tool-gallery' => 'Bildergallerii', |
8671 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Byschpil.jpg|Bschriftig1 |
8672 | | -{{ns:file}}:Byschpil.jpg|Bschriftig2', |
| 8671 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Byschpil.jpg|Bschriftig1 |
| 8672 | +$1:Byschpil.jpg|Bschriftig2', |
8673 | 8673 | 'wikieditor-toolbar-tool-newline' => 'Neji Zeile', |
8674 | 8674 | 'wikieditor-toolbar-tool-table' => 'Tabälle', |
8675 | 8675 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -8774,7 +8774,7 @@ |
8775 | 8775 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Lischtepunkt<br /># Lischtepunkt', |
8776 | 8776 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Lischtepunkt</li><li>Lischtepunkt</li></ol>', |
8777 | 8777 | 'wikieditor-toolbar-help-content-file-description' => 'Yygfiegti Datei', |
8778 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Bildbschriftig]]', |
| 8778 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Bildbschriftig]]', |
8779 | 8779 | '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>", |
8780 | 8780 | 'wikieditor-toolbar-help-content-reference-description' => 'Quälle', |
8781 | 8781 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Sytetekscht.<ref name="test">[http://www.byschpil.org Gleichtekscht], zuesätzlige Tekscht.</ref>', |
— | — | @@ -8897,8 +8897,8 @@ |
8898 | 8898 | 'wikieditor-toolbar-tool-subscript-example' => 'Teks fo-screeuit', |
8899 | 8899 | 'wikieditor-toolbar-group-insert' => 'Cur stiagh', |
8900 | 8900 | 'wikieditor-toolbar-tool-gallery' => 'Galleree jallooyn', |
8901 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Fo-heidyl1 |
8902 | | -{{ns:file}}:Example.jpg|Fo-heidyl2', |
| 8901 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Fo-heidyl1 |
| 8902 | +$1:Example.jpg|Fo-heidyl2', |
8903 | 8903 | 'wikieditor-toolbar-tool-newline' => 'Linney noa', |
8904 | 8904 | 'wikieditor-toolbar-tool-table' => 'Taabyl', |
8905 | 8905 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -9004,7 +9004,7 @@ |
9005 | 9005 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Meer rolley<br /># Meer rolley', |
9006 | 9006 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Meer rolley</li><li>Meer rolley</li></ol>', |
9007 | 9007 | 'wikieditor-toolbar-help-content-file-description' => 'Coadan jingit', |
9008 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Teks fo-heidyl]]', |
| 9008 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Teks fo-heidyl]]', |
9009 | 9009 | '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>", |
9010 | 9010 | 'wikieditor-toolbar-help-content-reference-description' => 'Imraa', |
9011 | 9011 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Teks duillag.<ref name="test">[http://www.example.org Teks kiangley], tooilley teks.</ref>', |
— | — | @@ -9147,8 +9147,8 @@ |
9148 | 9148 | 'wikieditor-toolbar-tool-subscript-example' => 'טקסט מונמך', |
9149 | 9149 | 'wikieditor-toolbar-group-insert' => 'הוספה', |
9150 | 9150 | 'wikieditor-toolbar-tool-gallery' => 'גלריית תמונות', |
9151 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:דוגמה.jpg|כותרת 1 |
9152 | | -{{ns:file}}:דוגמה.jpg|כותרת 2', |
| 9151 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:דוגמה.jpg|כותרת 1 |
| 9152 | +$1:דוגמה.jpg|כותרת 2', |
9153 | 9153 | 'wikieditor-toolbar-tool-newline' => 'שורה חדשה', |
9154 | 9154 | 'wikieditor-toolbar-tool-table' => 'טבלה', |
9155 | 9155 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -9254,7 +9254,7 @@ |
9255 | 9255 | 'wikieditor-toolbar-help-content-olist-syntax' => '# פריט רשימה<br /># פריט רשימה', |
9256 | 9256 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>פריט רשימה</li><li>פריט רשימה</li></ol>', |
9257 | 9257 | 'wikieditor-toolbar-help-content-file-description' => 'קובץ המוצג בדף', |
9258 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|טקסט הכותרת]]', |
| 9258 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|טקסט הכותרת]]', |
9259 | 9259 | '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>", |
9260 | 9260 | 'wikieditor-toolbar-help-content-reference-description' => 'הערת שוליים', |
9261 | 9261 | 'wikieditor-toolbar-help-content-reference-syntax' => 'טקסט הדף.<ref name="test">[http://www.example.org טקסט הקישור], טקסט נוסף.</ref>', |
— | — | @@ -9390,8 +9390,8 @@ |
9391 | 9391 | 'wikieditor-toolbar-tool-subscript-example' => 'Tekst indeksa', |
9392 | 9392 | 'wikieditor-toolbar-group-insert' => 'Uloži', |
9393 | 9393 | 'wikieditor-toolbar-tool-gallery' => 'Galerija slika', |
9394 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Primjer.jpg|Opis1 |
9395 | | -{{ns:file}}:Primjer.jpg|Opis2', |
| 9394 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Primjer.jpg|Opis1 |
| 9395 | +$1:Primjer.jpg|Opis2', |
9396 | 9396 | 'wikieditor-toolbar-tool-newline' => 'Novi redak', |
9397 | 9397 | 'wikieditor-toolbar-tool-table' => 'Tablica', |
9398 | 9398 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -9497,7 +9497,7 @@ |
9498 | 9498 | 'wikieditor-toolbar-help-content-olist-syntax' => '# stavka popisa<br /># stavka popisa', |
9499 | 9499 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>stavka popisa</li><li>stavka popisa</li></ol>', |
9500 | 9500 | 'wikieditor-toolbar-help-content-file-description' => 'Uložena datoteka', |
9501 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Tekst opisa]]', |
| 9501 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Tekst opisa]]', |
9502 | 9502 | '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>", |
9503 | 9503 | 'wikieditor-toolbar-help-content-reference-description' => 'Bilješke', |
9504 | 9504 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Tekst stranice.<ref name="test">[http://www.primjer.org Tekst poveznice], dodatni tekst.</ref>', |
— | — | @@ -9624,8 +9624,8 @@ |
9625 | 9625 | 'wikieditor-toolbar-tool-subscript-example' => 'Hłuboko stajeny tekst', |
9626 | 9626 | 'wikieditor-toolbar-group-insert' => 'Zasunyć', |
9627 | 9627 | 'wikieditor-toolbar-tool-gallery' => 'Wobrazowa galerija', |
9628 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Popis1 |
9629 | | -{{ns:file}}:Example.jpg|Popis2', |
| 9628 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Popis1 |
| 9629 | +$1:Example.jpg|Popis2', |
9630 | 9630 | 'wikieditor-toolbar-tool-newline' => 'Nowa linka', |
9631 | 9631 | 'wikieditor-toolbar-tool-table' => 'Tabela', |
9632 | 9632 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -9731,7 +9731,7 @@ |
9732 | 9732 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Lisćinowy zapisk<br /># Lisćinowy zapisk', |
9733 | 9733 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Lisćinowy zapisk</li><li>Lisćinowy zapisk</li></ol>', |
9734 | 9734 | 'wikieditor-toolbar-help-content-file-description' => 'Zasadźena dataja', |
9735 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Tekst wobrazoweho popisa]]', |
| 9735 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Tekst wobrazoweho popisa]]', |
9736 | 9736 | '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>", |
9737 | 9737 | 'wikieditor-toolbar-help-content-reference-description' => 'Referenca', |
9738 | 9738 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Tekst strony.<ref name="test">[http://www.example.org tekst wotkaza], přidatny tekst.</ref>', |
— | — | @@ -9862,8 +9862,8 @@ |
9863 | 9863 | 'wikieditor-toolbar-tool-subscript-example' => 'Alsó index szövege', |
9864 | 9864 | 'wikieditor-toolbar-group-insert' => 'Beszúrás', |
9865 | 9865 | 'wikieditor-toolbar-tool-gallery' => 'Képgaléria', |
9866 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Példa.jpg|képaláírás1 |
9867 | | -{{ns:file}}:Példa.jpg|képaláírás2', |
| 9866 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Példa.jpg|képaláírás1 |
| 9867 | +$1:Példa.jpg|képaláírás2', |
9868 | 9868 | 'wikieditor-toolbar-tool-newline' => 'Új sor', |
9869 | 9869 | 'wikieditor-toolbar-tool-table' => 'Táblázat', |
9870 | 9870 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -9969,7 +9969,7 @@ |
9970 | 9970 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Listaelem<br /># Listaelem', |
9971 | 9971 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Listaelem</li><li>Listaelem</li></ol>', |
9972 | 9972 | 'wikieditor-toolbar-help-content-file-description' => 'Beszúrt fájl', |
9973 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|bélyegkép|Képaláírás]]', |
| 9973 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|bélyegkép|Képaláírás]]', |
9974 | 9974 | '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>", |
9975 | 9975 | 'wikieditor-toolbar-help-content-reference-description' => 'Forráshivatkozás', |
9976 | 9976 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Lap szövege.<ref name="test">[http://www.példaoldal.hu Hivatkozás szövege], további szöveg.</ref>', |
— | — | @@ -10082,8 +10082,8 @@ |
10083 | 10083 | 'wikieditor-toolbar-tool-subscript-example' => 'Ենթատողային տեքստ', |
10084 | 10084 | 'wikieditor-toolbar-group-insert' => 'Ավելացնել', |
10085 | 10085 | 'wikieditor-toolbar-tool-gallery' => 'Պատկերասրահ', |
10086 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Նկարագրություն1 |
10087 | | -{{ns:file}}:Example.jpg|Նկարագրություն2', |
| 10086 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Նկարագրություն1 |
| 10087 | +$1:Example.jpg|Նկարագրություն2', |
10088 | 10088 | 'wikieditor-toolbar-tool-newline' => 'Նոր տող', |
10089 | 10089 | 'wikieditor-toolbar-tool-table' => 'Աղյուսակ', |
10090 | 10090 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -10185,7 +10185,7 @@ |
10186 | 10186 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Ցանկի տարր<br /># Ցանկի տարր', |
10187 | 10187 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Ցանկի տարր</li><li>Ցանկի տարր</li></ol>', |
10188 | 10188 | 'wikieditor-toolbar-help-content-file-description' => 'Ներդրված ֆայլ', |
10189 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Նկարագրություն]]', |
| 10189 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Նկարագրություն]]', |
10190 | 10190 | '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>", |
10191 | 10191 | 'wikieditor-toolbar-help-content-reference-description' => 'Ծանոթագրություն', |
10192 | 10192 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Տեքստ էջում<ref name="test">[http://www.example.org Հղման տեքստ], հավելյալ տեքստ։</ref>։', |
— | — | @@ -10312,8 +10312,8 @@ |
10313 | 10313 | 'wikieditor-toolbar-tool-subscript-example' => 'Texto in subscripto', |
10314 | 10314 | 'wikieditor-toolbar-group-insert' => 'Inserer', |
10315 | 10315 | 'wikieditor-toolbar-tool-gallery' => 'Galeria de imagines', |
10316 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Exemplo.jpg|Legenda1 |
10317 | | -{{ns:file}}:Exemplo.jpg|Legenda2', |
| 10316 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Exemplo.jpg|Legenda1 |
| 10317 | +$1:Exemplo.jpg|Legenda2', |
10318 | 10318 | 'wikieditor-toolbar-tool-newline' => 'Nove linea', |
10319 | 10319 | 'wikieditor-toolbar-tool-table' => 'Tabella', |
10320 | 10320 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -10419,7 +10419,7 @@ |
10420 | 10420 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Elemento del lista<br /># Elemento del lista', |
10421 | 10421 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Elemento del lista</li><li>Elemento del lista</li></ol>', |
10422 | 10422 | 'wikieditor-toolbar-help-content-file-description' => 'File incastrate', |
10423 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Exemplo.png|thumb|Texto del legenda]]', |
| 10423 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Exemplo.png|thumb|Texto del legenda]]', |
10424 | 10424 | '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>", |
10425 | 10425 | 'wikieditor-toolbar-help-content-reference-description' => 'Referentia', |
10426 | 10426 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Texto del pagina.<ref name="test">[http://www.example.org Texto del ligamine], texto additional.</ref>', |
— | — | @@ -10550,8 +10550,8 @@ |
10551 | 10551 | 'wikieditor-toolbar-tool-subscript-example' => 'Teks subscript', |
10552 | 10552 | 'wikieditor-toolbar-group-insert' => 'Masukkan', |
10553 | 10553 | 'wikieditor-toolbar-tool-gallery' => 'Galeri gambar', |
10554 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Contoh.jpg|Judul1 |
10555 | | -{{ns:file}}:Contoh.jpg|Judul2', |
| 10554 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Contoh.jpg|Judul1 |
| 10555 | +$1:Contoh.jpg|Judul2', |
10556 | 10556 | 'wikieditor-toolbar-tool-newline' => 'Baris baru', |
10557 | 10557 | 'wikieditor-toolbar-tool-table' => 'Tabel', |
10558 | 10558 | 'wikieditor-toolbar-tool-table-example-old' => ' - |
— | — | @@ -10657,7 +10657,7 @@ |
10658 | 10658 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Isi daftar<br /># Isi daftar', |
10659 | 10659 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Isi daftar</li><li>Isi daftar</li></ol>', |
10660 | 10660 | 'wikieditor-toolbar-help-content-file-description' => 'Menyisipkan berkas', |
10661 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Contoh.png|thumb|Teks judul gambar]]', |
| 10661 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Contoh.png|thumb|Teks judul gambar]]', |
10662 | 10662 | '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>", |
10663 | 10663 | 'wikieditor-toolbar-help-content-reference-description' => 'Referensi', |
10664 | 10664 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Teks halaman.<ref name="test">[http://www.contoh.org Teks pranala], teks tambahan.</ref>', |
— | — | @@ -11060,8 +11060,8 @@ |
11061 | 11061 | 'wikieditor-toolbar-tool-subscript-example' => 'Testo in pedice', |
11062 | 11062 | 'wikieditor-toolbar-group-insert' => 'Inserisci', |
11063 | 11063 | 'wikieditor-toolbar-tool-gallery' => 'Galleria di immagini', |
11064 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Esempio.jpg|Didascalia1 |
11065 | | -{{ns:file}}:Esempio.jpg|Didascalia2', |
| 11064 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Esempio.jpg|Didascalia1 |
| 11065 | +$1:Esempio.jpg|Didascalia2', |
11066 | 11066 | 'wikieditor-toolbar-tool-newline' => 'Nuova riga', |
11067 | 11067 | 'wikieditor-toolbar-tool-table' => 'Tabella', |
11068 | 11068 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -11167,7 +11167,7 @@ |
11168 | 11168 | 'wikieditor-toolbar-help-content-olist-syntax' => "# Elemento dell'elenco<br /># Elemento dell'elenco", |
11169 | 11169 | 'wikieditor-toolbar-help-content-olist-result' => "<ol><li>Elemento dell'elenco</li><li>Elemento dell'elenco</li></ol>", |
11170 | 11170 | 'wikieditor-toolbar-help-content-file-description' => 'File incorporato', |
11171 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Esempio.png|thumb|Testo della didascalia]]', |
| 11171 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Esempio.png|thumb|Testo della didascalia]]', |
11172 | 11172 | '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>", |
11173 | 11173 | 'wikieditor-toolbar-help-content-reference-description' => 'Nota', |
11174 | 11174 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Testo della pagina.<ref name="test">[http://www.example.org Testo del collegamento], testo aggiuntivo.</ref>', |
— | — | @@ -11297,8 +11297,8 @@ |
11298 | 11298 | 'wikieditor-toolbar-tool-subscript-example' => '下付き文字', |
11299 | 11299 | 'wikieditor-toolbar-group-insert' => '挿入', |
11300 | 11300 | 'wikieditor-toolbar-tool-gallery' => '画像ギャラリー', |
11301 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|キャプション1 |
11302 | | -{{ns:file}}:Example.jpg|キャプション2', |
| 11301 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|キャプション1 |
| 11302 | +$1:Example.jpg|キャプション2', |
11303 | 11303 | 'wikieditor-toolbar-tool-newline' => '改行', |
11304 | 11304 | 'wikieditor-toolbar-tool-table' => '表', |
11305 | 11305 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -11404,7 +11404,7 @@ |
11405 | 11405 | 'wikieditor-toolbar-help-content-olist-syntax' => '# 箇条書き項目<br /># 箇条書き項目', |
11406 | 11406 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>箇条書き項目</li><li>箇条書き項目</li></ol>', |
11407 | 11407 | 'wikieditor-toolbar-help-content-file-description' => '埋め込みファイル', |
11408 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|キャプション]]', |
| 11408 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|キャプション]]', |
11409 | 11409 | '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>", |
11410 | 11410 | 'wikieditor-toolbar-help-content-reference-description' => '注釈', |
11411 | 11411 | 'wikieditor-toolbar-help-content-reference-syntax' => 'ページ本文<ref name="test">[http://www.example.org リンクタイトル]、追加テキスト</ref>。', |
— | — | @@ -11550,8 +11550,8 @@ |
11551 | 11551 | 'wikieditor-toolbar-tool-subscript-example' => 'ქვეხაზური ტექსტი', |
11552 | 11552 | 'wikieditor-toolbar-group-insert' => 'ჩასმა', |
11553 | 11553 | 'wikieditor-toolbar-tool-gallery' => 'გამოსახულებათა გალერეა', |
11554 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|აღწერა1 |
11555 | | -{{ns:file}}:Example.jpg|აღწერა2', |
| 11554 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|აღწერა1 |
| 11555 | +$1:Example.jpg|აღწერა2', |
11556 | 11556 | 'wikieditor-toolbar-tool-newline' => 'ახალი ხაზი', |
11557 | 11557 | 'wikieditor-toolbar-tool-table' => 'ტაბულა', |
11558 | 11558 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -11657,7 +11657,7 @@ |
11658 | 11658 | 'wikieditor-toolbar-help-content-olist-syntax' => '#სიის ელემენტი<br /># სიის ელემენტი', |
11659 | 11659 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>სიის ელემენტი</li><li>სიის ელემენტი</li></ol>', |
11660 | 11660 | 'wikieditor-toolbar-help-content-file-description' => 'ჩასმული ფაილი', |
11661 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|წარწერის ტექსტი]]', |
| 11661 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|წარწერის ტექსტი]]', |
11662 | 11662 | '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>", |
11663 | 11663 | 'wikieditor-toolbar-help-content-reference-description' => 'მინიშნება', |
11664 | 11664 | 'wikieditor-toolbar-help-content-reference-syntax' => 'გვერდის ტექსტი<ref name="test">[http://www.example.org ბმულის ტექსტი], დამატებითი ტექსტი.</ref>.', |
— | — | @@ -11780,9 +11780,9 @@ |
11781 | 11781 | 'wikieditor-toolbar-tool-subscript-example' => 'ឃ្លាជាសន្ទស្សន៍', |
11782 | 11782 | 'wikieditor-toolbar-group-insert' => 'បញ្ជូល', |
11783 | 11783 | 'wikieditor-toolbar-tool-gallery' => 'វិចិត្រសាលរូបភាព', |
11784 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:ឧទាហរណ៍.jpg|ចំនងជើងក្រោមរូបភាព១ |
| 11784 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:ឧទាហរណ៍.jpg|ចំនងជើងក្រោមរូបភាព១ |
11785 | 11785 | |
11786 | | -{{ns:file}}:ឧទាហរណ៍.jpg|ចំនងជើងក្រោមរូបភាព២', |
| 11786 | +$1:ឧទាហរណ៍.jpg|ចំនងជើងក្រោមរូបភាព២', |
11787 | 11787 | 'wikieditor-toolbar-tool-newline' => 'ចុះបន្ទាត់', |
11788 | 11788 | 'wikieditor-toolbar-tool-table' => 'តារាង', |
11789 | 11789 | 'wikieditor-toolbar-tool-table-example-old' => '↓ - |
— | — | @@ -11881,7 +11881,7 @@ |
11882 | 11882 | 'wikieditor-toolbar-help-content-olist-syntax' => '# ធាតុរបស់បញ្ជី<br /># ធាតុរបស់បញ្ចី', |
11883 | 11883 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>ធាតុរបស់បញ្ជី</li><li>ធាតុរបស់បញ្ជី</li></ol>', |
11884 | 11884 | 'wikieditor-toolbar-help-content-file-description' => 'រូបភាពបង្កប់', |
11885 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:ឧទាហរណ៍.png|thumb|កូនចំនងជើងក្រោមរូបភាព]]', |
| 11885 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:ឧទាហរណ៍.png|thumb|កូនចំនងជើងក្រោមរូបភាព]]', |
11886 | 11886 | '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>", |
11887 | 11887 | 'wikieditor-toolbar-help-content-reference-description' => 'ឯកសារយោង', |
11888 | 11888 | 'wikieditor-toolbar-help-content-reference-syntax' => 'អត្ថបទទំព័រ.<ref name="test">[http://www.example.org តំណភ្ជាប់], អក្សរបន្ថែម.</ref>', |
— | — | @@ -12035,8 +12035,8 @@ |
12036 | 12036 | 'wikieditor-toolbar-tool-subscript-example' => '아래 첨자', |
12037 | 12037 | 'wikieditor-toolbar-group-insert' => '추가', |
12038 | 12038 | 'wikieditor-toolbar-tool-gallery' => '화랑', |
12039 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|설명1 |
12040 | | -{{ns:file}}:Example.jpg|설명2', |
| 12039 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|설명1 |
| 12040 | +$1:Example.jpg|설명2', |
12041 | 12041 | 'wikieditor-toolbar-tool-newline' => '새 줄', |
12042 | 12042 | 'wikieditor-toolbar-tool-table' => '표', |
12043 | 12043 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -12143,7 +12143,7 @@ |
12144 | 12144 | 'wikieditor-toolbar-help-content-olist-syntax' => '# 목록 항목<br /># 목록 항목', |
12145 | 12145 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>목록 항목</li><li>목록 항목</li></ol>', |
12146 | 12146 | 'wikieditor-toolbar-help-content-file-description' => '파일 넣기', |
12147 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|그림 설명]]', |
| 12147 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|그림 설명]]', |
12148 | 12148 | '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>", |
12149 | 12149 | 'wikieditor-toolbar-help-content-reference-description' => '출처', |
12150 | 12150 | 'wikieditor-toolbar-help-content-reference-syntax' => '문서 내용.<ref name="test">[http://www.example.org 링크 제목], 기타 설명.</ref>', |
— | — | @@ -12267,8 +12267,8 @@ |
12268 | 12268 | 'wikieditor-toolbar-tool-subscript-example' => 'Тизгин тюбю текст', |
12269 | 12269 | 'wikieditor-toolbar-group-insert' => 'Къош', |
12270 | 12270 | 'wikieditor-toolbar-tool-gallery' => 'Суратланы галереясы', |
12271 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Юлгю.jpg|Ангылатыу1 |
12272 | | -{{ns:file}}:Юлгю.jpg|Ангылатыу2', |
| 12271 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Юлгю.jpg|Ангылатыу1 |
| 12272 | +$1:Юлгю.jpg|Ангылатыу2', |
12273 | 12273 | 'wikieditor-toolbar-tool-newline' => 'Джангы тизгин', |
12274 | 12274 | 'wikieditor-toolbar-tool-table' => 'Таблица', |
12275 | 12275 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -12374,7 +12374,7 @@ |
12375 | 12375 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Списокну элементи<br /># Списокну элементи', |
12376 | 12376 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Списокну элементи</li><li>Списокну элементи</li></ol>', |
12377 | 12377 | 'wikieditor-toolbar-help-content-file-description' => 'Эндирилген файл', |
12378 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Ачыкълау текст]]', |
| 12378 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Ачыкълау текст]]', |
12379 | 12379 | 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title=' |
12380 | 12380 | Ачыкълау текст' 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> |
12381 | 12381 | Ачыкълау текст</div></div>", |
— | — | @@ -12489,8 +12489,8 @@ |
12490 | 12490 | 'wikieditor-toolbar-tool-subscript-example' => 'En deef, noh unge, jeschtallte Schreff jeschrevve', |
12491 | 12491 | 'wikieditor-toolbar-group-insert' => 'Erin donn:', |
12492 | 12492 | 'wikieditor-toolbar-tool-gallery' => 'Jallerih met Belldscher', |
12493 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Beishpell.jpg|eezte Beld-Täx |
12494 | | -{{ns:file}}:Beishpell.jpg|zweijte Beld-Täx', |
| 12493 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Beishpell.jpg|eezte Beld-Täx |
| 12494 | +$1:Beishpell.jpg|zweijte Beld-Täx', |
12495 | 12495 | 'wikieditor-toolbar-tool-newline' => 'Neu Reih', |
12496 | 12496 | 'wikieditor-toolbar-tool-table' => 'Tabäll', |
12497 | 12497 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -12591,7 +12591,7 @@ |
12592 | 12592 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Enndraach en de Leß<br /># Enndraach en de Leß', |
12593 | 12593 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Enndraach en de Leß</li><li>Enndraach en de Leß</li></ol>', |
12594 | 12594 | 'wikieditor-toolbar-help-content-file-description' => 'Enjeföösch Dattei', |
12595 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Beld_Ungerschreff]]', |
| 12595 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Beld_Ungerschreff]]', |
12596 | 12596 | 'wikieditor-toolbar-help-content-file-result' => '<div style="width:104px;" class="thumbinner"><a title="Schreff unger dä Beld" class="image" href="https://www.mediawiki.org/wiki/File: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="Enlarge" class="internal" href="https://www.mediawiki.org/wiki/File:Wiki.png"><img height="11" width="15" alt="" src="$1/common/images/magnify-clip.png"/></a></div>Schreff unger dä Beld</div></div>', |
12597 | 12597 | 'wikieditor-toolbar-help-content-reference-description' => 'Fohßnoht', |
12598 | 12598 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Tex en dä Sigg. <ref name="versoht">[http://www.example.org Täx för dä Lengk], un noch jät mieh Täx.</ref>', |
— | — | @@ -12797,8 +12797,8 @@ |
12798 | 12798 | 'wikieditor-toolbar-tool-subscript-example' => 'Textus subscriptus', |
12799 | 12799 | 'wikieditor-toolbar-group-insert' => 'Inserere', |
12800 | 12800 | 'wikieditor-toolbar-tool-gallery' => 'Pinacotheca', |
12801 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Exemplum.jpg|Descriptio 1 |
12802 | | -{{ns:file}}:Exemplum.jpg|Descriptio 2', |
| 12801 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Exemplum.jpg|Descriptio 1 |
| 12802 | +$1:Exemplum.jpg|Descriptio 2', |
12803 | 12803 | 'wikieditor-toolbar-tool-newline' => 'Nova linea', |
12804 | 12804 | 'wikieditor-toolbar-tool-table' => 'Tabula', |
12805 | 12805 | 'wikieditor-toolbar-section-characters' => 'Characteres speciales', |
— | — | @@ -12834,7 +12834,7 @@ |
12835 | 12835 | 'wikieditor-toolbar-help-content-xlink-syntax' => '[http://www.example.org Titulus nexus]<br />[http://www.example.org]<br />http://www.example.org', |
12836 | 12836 | '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>", |
12837 | 12837 | 'wikieditor-toolbar-help-content-file-description' => 'Fasciculus in pagina impositus', |
12838 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Exemplum.png|thumb|Descriptio fasciculi]]', |
| 12838 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Exemplum.png|thumb|Descriptio fasciculi]]', |
12839 | 12839 | '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>", |
12840 | 12840 | 'wikieditor-toolbar-help-content-reference-description' => 'Referentia bibliographica', |
12841 | 12841 | 'wikieditor-toolbar-help-content-showreferences-description' => 'Referentias bibliographicas monstrare', |
— | — | @@ -12952,8 +12952,8 @@ |
12953 | 12953 | 'wikieditor-toolbar-tool-subscript-example' => 'Text den am Indice steet', |
12954 | 12954 | 'wikieditor-toolbar-group-insert' => 'Drasetzen', |
12955 | 12955 | 'wikieditor-toolbar-tool-gallery' => 'Billergallerie', |
12956 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Beschreiwung1 |
12957 | | -{{ns:file}}:Example.jpg|Beschreiwung2', |
| 12956 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Beschreiwung1 |
| 12957 | +$1:Example.jpg|Beschreiwung2', |
12958 | 12958 | 'wikieditor-toolbar-tool-newline' => 'Nei Linn', |
12959 | 12959 | 'wikieditor-toolbar-tool-table' => 'Tabell', |
12960 | 12960 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -13067,7 +13067,7 @@ |
13068 | 13068 | <li>Element vun der Lëscht</li> |
13069 | 13069 | </ol>', |
13070 | 13070 | 'wikieditor-toolbar-help-content-file-description' => 'Agebonnene Fichier', |
13071 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Ugewisenen Text]]', |
| 13071 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Ugewisenen Text]]', |
13072 | 13072 | '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>", |
13073 | 13073 | 'wikieditor-toolbar-help-content-reference-description' => 'Referenz', |
13074 | 13074 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Text vun der Säit.<ref name="test">[http://www.example.org Text vum Link], zousätzlechen Text.</ref>', |
— | — | @@ -13205,8 +13205,8 @@ |
13206 | 13206 | 'wikieditor-toolbar-tool-subscript-example' => 'Óngersjrifteks', |
13207 | 13207 | 'wikieditor-toolbar-group-insert' => 'Voog in', |
13208 | 13208 | 'wikieditor-toolbar-tool-gallery' => 'Beeljegalerie', |
13209 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Veurbeildj1|Biesjrif1 |
13210 | | -{{ns:file}}:Veurbeildj2|Biesjrif2', |
| 13209 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Veurbeildj1|Biesjrif1 |
| 13210 | +$1:Veurbeildj2|Biesjrif2', |
13211 | 13211 | 'wikieditor-toolbar-tool-newline' => 'Nuuje regel', |
13212 | 13212 | 'wikieditor-toolbar-tool-table' => 'Tabel', |
13213 | 13213 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -13312,7 +13312,7 @@ |
13313 | 13313 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Regel in genummerde lies<br /># Regel in genummerde lies', |
13314 | 13314 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Regel in genummerde lies</li><li>Regel in genummerde lies</li></ol>', |
13315 | 13315 | 'wikieditor-toolbar-help-content-file-description' => 'Mediabesjtandj', |
13316 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Biesjrif]]', |
| 13316 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Biesjrif]]', |
13317 | 13317 | '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>", |
13318 | 13318 | 'wikieditor-toolbar-help-content-reference-description' => 'Verwiezing', |
13319 | 13319 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Paginateks.<ref name="test">[http://www.example.org Verwiezingsteks], biekómmendje teks.</ref>', |
— | — | @@ -13440,8 +13440,8 @@ |
13441 | 13441 | 'wikieditor-toolbar-tool-subscript-example' => 'Tekstas apačioje', |
13442 | 13442 | 'wikieditor-toolbar-group-insert' => 'Įterpti', |
13443 | 13443 | 'wikieditor-toolbar-tool-gallery' => 'Paveikslėlių galerija', |
13444 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Pavyzdys.jpg|Aprašymas1 |
13445 | | -{{ns:file}}:Pavyzdys.jpg|Aprašymas2', |
| 13444 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Pavyzdys.jpg|Aprašymas1 |
| 13445 | +$1:Pavyzdys.jpg|Aprašymas2', |
13446 | 13446 | 'wikieditor-toolbar-tool-newline' => 'Nauja linija', |
13447 | 13447 | 'wikieditor-toolbar-tool-table' => 'Lentelė', |
13448 | 13448 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -13547,7 +13547,7 @@ |
13548 | 13548 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Sąrašo elementas<br /># Sąrašo elementas', |
13549 | 13549 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Sąrašo elementas</li><li>Sąrašo elementas</li></ol>', |
13550 | 13550 | 'wikieditor-toolbar-help-content-file-description' => 'Įterpti failą', |
13551 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Aprašymas]]', |
| 13551 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Aprašymas]]', |
13552 | 13552 | '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>", |
13553 | 13553 | 'wikieditor-toolbar-help-content-reference-description' => 'Išnaša', |
13554 | 13554 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Puslapio tekstas.<ref name="test">[http://www.example.org Nuorodos tekstas], papildomas tekstas.</ref>', |
— | — | @@ -13662,8 +13662,8 @@ |
13663 | 13663 | 'wikieditor-toolbar-tool-subscript-example' => 'Apakšējā indeksa teksts', |
13664 | 13664 | 'wikieditor-toolbar-group-insert' => 'Ievietot', |
13665 | 13665 | 'wikieditor-toolbar-tool-gallery' => 'Attēlu galerija', |
13666 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Apraksts1 |
13667 | | -{{ns:file}}:Example.jpg|Apraksts2', |
| 13666 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Apraksts1 |
| 13667 | +$1:Example.jpg|Apraksts2', |
13668 | 13668 | 'wikieditor-toolbar-tool-newline' => 'Jauna rinda', |
13669 | 13669 | 'wikieditor-toolbar-tool-table' => 'Tabula', |
13670 | 13670 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -13766,7 +13766,7 @@ |
13767 | 13767 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Saraksta elements<br /># Saraksta elements', |
13768 | 13768 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Saraksta elements</li><li>Saraksta elements</li></ol>', |
13769 | 13769 | 'wikieditor-toolbar-help-content-file-description' => 'Iekļauts fails', |
13770 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Apraksts]]', |
| 13770 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Apraksts]]', |
13771 | 13771 | '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>", |
13772 | 13772 | 'wikieditor-toolbar-help-content-reference-description' => 'Atsauce', |
13773 | 13773 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Lapas teksts.<ref name="test">[http://www.example.org Saites teksts], papildus teksts.</ref>', |
— | — | @@ -13901,8 +13901,8 @@ |
13902 | 13902 | 'wikieditor-toolbar-tool-subscript-example' => 'Teks ditulis di bawah', |
13903 | 13903 | 'wikieditor-toolbar-group-insert' => 'Masuakkan', |
13904 | 13904 | 'wikieditor-toolbar-tool-gallery' => 'Galeri gambar', |
13905 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Contoh.jpg|Judul1 |
13906 | | -{{ns:file}}:Contoh.jpg|Judul2', |
| 13905 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Contoh.jpg|Judul1 |
| 13906 | +$1:Contoh.jpg|Judul2', |
13907 | 13907 | 'wikieditor-toolbar-tool-newline' => 'Barih baru', |
13908 | 13908 | 'wikieditor-toolbar-tool-table' => 'Tabel', |
13909 | 13909 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -14008,7 +14008,7 @@ |
14009 | 14009 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Senarai hal<br /># Senarai hal', |
14010 | 14010 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Senarai hal</li><li>Senarai hal</li></ol>', |
14011 | 14011 | 'wikieditor-toolbar-help-content-file-description' => 'Cantumkan berkas', |
14012 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Contoh.png|thumb|Teks gambar]]', |
| 14012 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Contoh.png|thumb|Teks gambar]]', |
14013 | 14013 | '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>", |
14014 | 14014 | 'wikieditor-toolbar-help-content-reference-description' => 'Rujukan', |
14015 | 14015 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Teks laman.<ref name="test">[http://www.example.org Teks tautan], teks tambahan.</ref>', |
— | — | @@ -14135,8 +14135,8 @@ |
14136 | 14136 | 'wikieditor-toolbar-tool-subscript-example' => 'Текст на долниот индекс', |
14137 | 14137 | 'wikieditor-toolbar-group-insert' => 'Вметни', |
14138 | 14138 | 'wikieditor-toolbar-tool-gallery' => 'Галерија', |
14139 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Пример.jpg|Опис1 |
14140 | | -{{ns:file}}:Пример.jpg|Опис2', |
| 14139 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Пример.jpg|Опис1 |
| 14140 | +$1:Пример.jpg|Опис2', |
14141 | 14141 | 'wikieditor-toolbar-tool-newline' => 'Нов ред', |
14142 | 14142 | 'wikieditor-toolbar-tool-table' => 'Табела', |
14143 | 14143 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -14242,7 +14242,7 @@ |
14243 | 14243 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Ставка<br /># Ставка', |
14244 | 14244 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Ставка</li><li>Ставка</li></ol>', |
14245 | 14245 | 'wikieditor-toolbar-help-content-file-description' => 'Вметната податотека', |
14246 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Описен текст]]', |
| 14246 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Описен текст]]', |
14247 | 14247 | '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>", |
14248 | 14248 | 'wikieditor-toolbar-help-content-reference-description' => 'Навод', |
14249 | 14249 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Текст во страницата.<ref name="test">[http://www.пример.org Текст на врската], дополнителен текст.</ref>', |
— | — | @@ -14369,8 +14369,8 @@ |
14370 | 14370 | 'wikieditor-toolbar-tool-subscript-example' => 'സബ്സ്ക്രിപ്റ്റ് എഴുത്ത്', |
14371 | 14371 | 'wikieditor-toolbar-group-insert' => 'ഉൾപ്പെടുത്തുക', |
14372 | 14372 | 'wikieditor-toolbar-tool-gallery' => 'ചിത്രശാല', |
14373 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|കുറിപ്പ്1 |
14374 | | -{{ns:file}}:Example.jpg|കുറിപ്പ്2', |
| 14373 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|കുറിപ്പ്1 |
| 14374 | +$1:Example.jpg|കുറിപ്പ്2', |
14375 | 14375 | 'wikieditor-toolbar-tool-newline' => 'പുതിയ വരി', |
14376 | 14376 | 'wikieditor-toolbar-tool-table' => 'പട്ടിക', |
14377 | 14377 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -14476,7 +14476,7 @@ |
14477 | 14477 | 'wikieditor-toolbar-help-content-olist-syntax' => '#ലിസ്റ്റിലെ അംഗം<br />#ലിസ്റ്റിലെ അംഗം', |
14478 | 14478 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>ലിസ്റ്റിലെ അംഗം</li><li>ലിസ്റ്റിലെ അംഗം</li></ol>', |
14479 | 14479 | 'wikieditor-toolbar-help-content-file-description' => 'പ്രമാണം ചേർക്കൽ', |
14480 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|ലഘു|വിവരണ കുറിപ്പ്]]', |
| 14480 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|ലഘു|വിവരണ കുറിപ്പ്]]', |
14481 | 14481 | '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>", |
14482 | 14482 | 'wikieditor-toolbar-help-content-reference-description' => 'അവലംബം', |
14483 | 14483 | 'wikieditor-toolbar-help-content-reference-syntax' => 'താളിലെ എഴുത്ത്.<ref name="test">[http://www.example.org കണ്ണിയായുള്ള എഴുത്ത്], കൂടുതൽ എഴുത്ത്.</ref>', |
— | — | @@ -14614,8 +14614,8 @@ |
14615 | 14615 | 'wikieditor-toolbar-tool-subscript-example' => 'अधोलेखन मजकूर', |
14616 | 14616 | 'wikieditor-toolbar-group-insert' => 'समाविष्टकरा', |
14617 | 14617 | 'wikieditor-toolbar-tool-gallery' => 'चित्रदिर्घा', |
14618 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|चित्रपरिचय १ |
14619 | | -{{ns:file}}:Example.jpg|चित्रपरिचय २', |
| 14618 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|चित्रपरिचय १ |
| 14619 | +$1:Example.jpg|चित्रपरिचय २', |
14620 | 14620 | 'wikieditor-toolbar-tool-newline' => 'नवी ओळ', |
14621 | 14621 | 'wikieditor-toolbar-tool-table' => 'सारणी', |
14622 | 14622 | 'wikieditor-toolbar-tool-table-example-old' => '! मथळा १ |
— | — | @@ -14720,7 +14720,7 @@ |
14721 | 14721 | 'wikieditor-toolbar-help-content-olist-syntax' => '# यादी घटक<br /># यादी घटक', |
14722 | 14722 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>यादी घटक</li><li>यादी घटक</li></ol>', |
14723 | 14723 | 'wikieditor-toolbar-help-content-file-description' => 'संलग्न संचिका', |
14724 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|ईवलेसे|मथळा मजकूर]]', |
| 14724 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|ईवलेसे|मथळा मजकूर]]', |
14725 | 14725 | '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> |
14726 | 14726 | <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>", |
14727 | 14727 | 'wikieditor-toolbar-help-content-reference-description' => 'संदर्भ', |
— | — | @@ -14851,8 +14851,8 @@ |
14852 | 14852 | 'wikieditor-toolbar-tool-subscript-example' => 'Teks subskrip', |
14853 | 14853 | 'wikieditor-toolbar-group-insert' => 'Sisip', |
14854 | 14854 | 'wikieditor-toolbar-tool-gallery' => 'Galeri gambar', |
14855 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Contoh.jpg|Sari kata 1 |
14856 | | -{{ns:file}}:Contoh.jpg|Sari kata 2', |
| 14855 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Contoh.jpg|Sari kata 1 |
| 14856 | +$1:Contoh.jpg|Sari kata 2', |
14857 | 14857 | 'wikieditor-toolbar-tool-newline' => 'Baris baru', |
14858 | 14858 | 'wikieditor-toolbar-tool-table' => 'Jadual', |
14859 | 14859 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -14960,7 +14960,7 @@ |
14961 | 14961 | # Perkara senarai', |
14962 | 14962 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Perkara senarai</li><li>Perkara senarai</li></ol>', |
14963 | 14963 | 'wikieditor-toolbar-help-content-file-description' => 'Fail terbenam', |
14964 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Contoh.png|thumb|Teks judul pendek]]', |
| 14964 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Contoh.png|thumb|Teks judul pendek]]', |
14965 | 14965 | '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>", |
14966 | 14966 | 'wikieditor-toolbar-help-content-reference-description' => 'Rujukan', |
14967 | 14967 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Teks laman.<ref nama="cubaan">[http://www.contoh.org Teks pautan], teks tambahan.</ref>', |
— | — | @@ -15085,8 +15085,8 @@ |
15086 | 15086 | 'wikieditor-toolbar-tool-subscript-example' => "Test ta' indiċi ta' taħt", |
15087 | 15087 | 'wikieditor-toolbar-group-insert' => 'Daħħal', |
15088 | 15088 | 'wikieditor-toolbar-tool-gallery' => 'Gallerija tal-istampi', |
15089 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Eżempju.jpg|Deskrizzjoni1 |
15090 | | -{{ns:file}}:Eżempju.jpg|Deskrizzjoni2', |
| 15089 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Eżempju.jpg|Deskrizzjoni1 |
| 15090 | +$1:Eżempju.jpg|Deskrizzjoni2', |
15091 | 15091 | 'wikieditor-toolbar-tool-newline' => 'Linja ġdida', |
15092 | 15092 | 'wikieditor-toolbar-tool-table' => 'Tabella', |
15093 | 15093 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -15189,7 +15189,7 @@ |
15190 | 15190 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Element tal-lista<br /># Element tal-lista', |
15191 | 15191 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Element tal-lista</li><li>Element tal-lista</li></ol>', |
15192 | 15192 | 'wikieditor-toolbar-help-content-file-description' => 'Fajl inkorporat', |
15193 | | - 'wikieditor-toolbar-help-content-file-syntax' => "[[{{ns:file}}:Eżempju.png|thumb|Test ta' deskrizzjoni]]", |
| 15193 | + 'wikieditor-toolbar-help-content-file-syntax' => "[[$1:Eżempju.png|thumb|Test ta' deskrizzjoni]]", |
15194 | 15194 | '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>", |
15195 | 15195 | 'wikieditor-toolbar-help-content-reference-description' => 'Referenza', |
15196 | 15196 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Test tal-paġna.<ref name="test">[http://www.example.org Test tal-ħolqa], test addizzjonali.</ref>', |
— | — | @@ -15442,8 +15442,8 @@ |
15443 | 15443 | 'wikieditor-toolbar-tool-subscript-example' => 'Subscript tekse', |
15444 | 15444 | 'wikieditor-toolbar-group-insert' => 'Derbie doon', |
15445 | 15445 | 'wikieditor-toolbar-tool-gallery' => 'Foto-uutstalling', |
15446 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Veurbeeld1|Bieschrifte1 |
15447 | | -{{ns:file}}:Veurbeeld2|Bieschrifte2', |
| 15446 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Veurbeeld1|Bieschrifte1 |
| 15447 | +$1:Veurbeeld2|Bieschrifte2', |
15448 | 15448 | 'wikieditor-toolbar-tool-newline' => 'Nieje regel', |
15449 | 15449 | 'wikieditor-toolbar-tool-table' => 'Tebel', |
15450 | 15450 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -15546,7 +15546,7 @@ |
15547 | 15547 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Regel in een lieste mit nummers<br /># Regel in een lieste mit nummers', |
15548 | 15548 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Regel in een lieste mit nummers</li><li>Regel in een lieste mit nummers</li></ol>', |
15549 | 15549 | 'wikieditor-toolbar-help-content-file-description' => 'Bestaand derbie doon', |
15550 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Veurbeeld.png|thumb|Beschrieving]]', |
| 15550 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Veurbeeld.png|thumb|Beschrieving]]', |
15551 | 15551 | 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Bieschrifte' 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>Bieschrifte</div></div>", |
15552 | 15552 | 'wikieditor-toolbar-help-content-reference-description' => 'Rifferentie', |
15553 | 15553 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Paginatekse.<ref name="test">[http://www.example.org Beschrieving], eventuele tekse.</ref>', |
— | — | @@ -15676,8 +15676,8 @@ |
15677 | 15677 | 'wikieditor-toolbar-tool-subscript-example' => 'Tekst in subscript', |
15678 | 15678 | 'wikieditor-toolbar-group-insert' => 'Invoegen', |
15679 | 15679 | 'wikieditor-toolbar-tool-gallery' => 'Beeldengalerij', |
15680 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Voorbeeld.jpg|Bijschrift1 |
15681 | | -{{ns:file}}:Voorbeeld.jpg|Bijschrift2', |
| 15680 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Voorbeeld.jpg|Bijschrift1 |
| 15681 | +$1:Voorbeeld.jpg|Bijschrift2', |
15682 | 15682 | 'wikieditor-toolbar-tool-newline' => 'Nieuwe regel', |
15683 | 15683 | 'wikieditor-toolbar-tool-table' => 'Tabel', |
15684 | 15684 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -15783,7 +15783,7 @@ |
15784 | 15784 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Regel in genummerde lijst<br /># Regel in genummerde lijst', |
15785 | 15785 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Regel in genummerde lijst</li><li>Regel in genummerde lijst</li></ol>', |
15786 | 15786 | 'wikieditor-toolbar-help-content-file-description' => 'Ingebed bestand', |
15787 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Voorbeeld.png|thumb|Bijschrift]]', |
| 15787 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Voorbeeld.png|thumb|Bijschrift]]', |
15788 | 15788 | '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>", |
15789 | 15789 | 'wikieditor-toolbar-help-content-reference-description' => 'Referentie', |
15790 | 15790 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Paginatekst.<ref name="test">[http://www.example.org Verwijzingstekst], bijkomende tekst.</ref>', |
— | — | @@ -15909,8 +15909,8 @@ |
15910 | 15910 | 'wikieditor-toolbar-tool-subscript-example' => 'Senka skrift', |
15911 | 15911 | 'wikieditor-toolbar-group-insert' => 'Set inn', |
15912 | 15912 | 'wikieditor-toolbar-tool-gallery' => 'Biletgalleri', |
15913 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Døme.jpg|Bilettekst1 |
15914 | | -{{ns:file}}:Døme.jpg|Bilettekst2', |
| 15913 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Døme.jpg|Bilettekst1 |
| 15914 | +$1:Døme.jpg|Bilettekst2', |
15915 | 15915 | 'wikieditor-toolbar-tool-newline' => 'Ny lina', |
15916 | 15916 | 'wikieditor-toolbar-tool-table' => 'Tabell', |
15917 | 15917 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -16012,7 +16012,7 @@ |
16013 | 16013 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Listeelement<br /># Listeelement', |
16014 | 16014 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Listeelement</li><li>Listeelement</li></ol>', |
16015 | 16015 | 'wikieditor-toolbar-help-content-file-description' => 'Fil', |
16016 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Bilettekst]]', |
| 16016 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Bilettekst]]', |
16017 | 16017 | '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>", |
16018 | 16018 | 'wikieditor-toolbar-help-content-reference-description' => 'Referanse', |
16019 | 16019 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Sidetekst.<ref name="test">[http://www.døme.org Lenkjetekst], ekstra lenkjetekst.</ref>', |
— | — | @@ -16140,8 +16140,8 @@ |
16141 | 16141 | 'wikieditor-toolbar-tool-subscript-example' => 'Senket tekst', |
16142 | 16142 | 'wikieditor-toolbar-group-insert' => 'Sett inn', |
16143 | 16143 | 'wikieditor-toolbar-tool-gallery' => 'Bildegalleri', |
16144 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Bildetekst1 |
16145 | | -{{ns:file}}:Example.jpg|Bildetekst2', |
| 16144 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Bildetekst1 |
| 16145 | +$1:Example.jpg|Bildetekst2', |
16146 | 16146 | 'wikieditor-toolbar-tool-newline' => 'Linjeskift', |
16147 | 16147 | 'wikieditor-toolbar-tool-table' => 'Tabell', |
16148 | 16148 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -16249,7 +16249,7 @@ |
16250 | 16250 | # Listeelement', |
16251 | 16251 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Listeelement</li><li>Listeelement</li></ol>', |
16252 | 16252 | 'wikieditor-toolbar-help-content-file-description' => 'Fil', |
16253 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Bildetekst]]', |
| 16253 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Bildetekst]]', |
16254 | 16254 | '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>", |
16255 | 16255 | 'wikieditor-toolbar-help-content-reference-description' => 'Referanse', |
16256 | 16256 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Tekst.<ref name="test">[http://www.example.org Lenketekst], ytterligere tekst.</ref>', |
— | — | @@ -16401,8 +16401,8 @@ |
16402 | 16402 | 'wikieditor-toolbar-tool-subscript-example' => 'Tèxte en indici', |
16403 | 16403 | 'wikieditor-toolbar-group-insert' => 'Inserir', |
16404 | 16404 | 'wikieditor-toolbar-tool-gallery' => 'Galariá de fichièrs', |
16405 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Exemple.jpg|Descripcion 1 |
16406 | | -{{ns:file}}:Exemple.jpg|Descripcion 2', |
| 16405 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Exemple.jpg|Descripcion 1 |
| 16406 | +$1:Exemple.jpg|Descripcion 2', |
16407 | 16407 | 'wikieditor-toolbar-tool-newline' => 'Saut de linha', |
16408 | 16408 | 'wikieditor-toolbar-tool-table' => 'Tablèu', |
16409 | 16409 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -16503,7 +16503,7 @@ |
16504 | 16504 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Element de la lista<br /># Element de la lista', |
16505 | 16505 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Element de la lista</li><li>Element de la lista</li></ol>', |
16506 | 16506 | 'wikieditor-toolbar-help-content-file-description' => 'Fichièr inserit', |
16507 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Tèxte afichat]]', |
| 16507 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Tèxte afichat]]', |
16508 | 16508 | '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>", |
16509 | 16509 | 'wikieditor-toolbar-help-content-reference-description' => 'Referéncia', |
16510 | 16510 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Tèxte de la pagina.<ref name="test">[http://www.example.org tèxte del ligam], tèxte adicional.</ref>', |
— | — | @@ -16703,8 +16703,8 @@ |
16704 | 16704 | 'wikieditor-toolbar-tool-subscript-example' => 'Tekst indeksu dolnego', |
16705 | 16705 | 'wikieditor-toolbar-group-insert' => 'Wstaw', |
16706 | 16706 | 'wikieditor-toolbar-tool-gallery' => 'Galeria obrazków', |
16707 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Podpis1 |
16708 | | -{{ns:file}}:Example.jpg|Podpis2', |
| 16707 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Podpis1 |
| 16708 | +$1:Example.jpg|Podpis2', |
16709 | 16709 | 'wikieditor-toolbar-tool-newline' => 'Nowy wiersz', |
16710 | 16710 | 'wikieditor-toolbar-tool-table' => 'Tabela', |
16711 | 16711 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -16810,7 +16810,7 @@ |
16811 | 16811 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Pozycja listy<br /># Pozycja listy', |
16812 | 16812 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Pozycja listy</li><li>Pozycja listy</li></ol>', |
16813 | 16813 | 'wikieditor-toolbar-help-content-file-description' => 'Plik osadzony', |
16814 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Przykład.png|thumb|Podpis pod plikiem]]', |
| 16814 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Przykład.png|thumb|Podpis pod plikiem]]', |
16815 | 16815 | '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>", |
16816 | 16816 | 'wikieditor-toolbar-help-content-reference-description' => 'Przypis', |
16817 | 16817 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Treść strony<ref name="test"> [http://www.przyklad.org Opis linku], dodatkowy tekst. </ref>.', |
— | — | @@ -16937,8 +16937,8 @@ |
16938 | 16938 | 'wikieditor-toolbar-tool-subscript-example' => 'Test a ìndes an bass', |
16939 | 16939 | 'wikieditor-toolbar-group-insert' => 'Anserì', |
16940 | 16940 | 'wikieditor-toolbar-tool-gallery' => 'Galarìa ëd plance', |
16941 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Esempi.jpg|Descrission1 |
16942 | | -{{ns:file}}:Esempi.jpg|Descrission2', |
| 16941 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Esempi.jpg|Descrission1 |
| 16942 | +$1:Esempi.jpg|Descrission2', |
16943 | 16943 | 'wikieditor-toolbar-tool-newline' => 'A cap', |
16944 | 16944 | 'wikieditor-toolbar-tool-table' => 'Tàula', |
16945 | 16945 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -17044,7 +17044,7 @@ |
17045 | 17045 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Element ëd la lista<br /># Element ëd la lista', |
17046 | 17046 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Element ëd la lista</li><li>Element ëd la lista</li></ol>', |
17047 | 17047 | 'wikieditor-toolbar-help-content-file-description' => 'Archivi anserì', |
17048 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Esempi.png|thumb|Test mostrà]]', |
| 17048 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Esempi.png|thumb|Test mostrà]]', |
17049 | 17049 | '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>", |
17050 | 17050 | 'wikieditor-toolbar-help-content-reference-description' => 'Arferiment', |
17051 | 17051 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Test ëd dla pàgina.<ref name="test">[http://www.example.org Test dël colegament], test adissional.</ref>', |
— | — | @@ -17239,7 +17239,7 @@ |
17240 | 17240 | 'wikieditor-toolbar-help-content-olist-syntax' => '# د لړليک توکی<br /># د لړليک توکی', |
17241 | 17241 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>د لړليک توکی</li><li>د لړليک توکی</li></ol>', |
17242 | 17242 | 'wikieditor-toolbar-help-content-file-description' => 'خښه شوې دوتنه', |
17243 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|د څرګندولو متن]]', |
| 17243 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|د څرګندولو متن]]', |
17244 | 17244 | 'wikieditor-toolbar-help-content-reference-description' => 'سرچينه', |
17245 | 17245 | 'wikieditor-toolbar-help-content-reference-syntax' => 'د مخ متن.<ref name="test">[http://www.example.org د تړنې متن], اضافي متن.</ref>', |
17246 | 17246 | 'wikieditor-toolbar-help-content-reference-result' => "د مخ متن.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -17368,8 +17368,8 @@ |
17369 | 17369 | 'wikieditor-toolbar-tool-subscript-example' => 'Texto em subscrito', |
17370 | 17370 | 'wikieditor-toolbar-group-insert' => 'Inserir', |
17371 | 17371 | 'wikieditor-toolbar-tool-gallery' => 'Galeria de imagens', |
17372 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Exemplo1.jpg|Legenda1 |
17373 | | -{{ns:file}}:Exemplo2.jpg|Legenda2', |
| 17372 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Exemplo1.jpg|Legenda1 |
| 17373 | +$1:Exemplo2.jpg|Legenda2', |
17374 | 17374 | 'wikieditor-toolbar-tool-newline' => 'Nova linha', |
17375 | 17375 | 'wikieditor-toolbar-tool-table' => 'Tabela', |
17376 | 17376 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -17475,7 +17475,7 @@ |
17476 | 17476 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Elemento de lista<br /># Elemento de lista', |
17477 | 17477 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Elemento de lista</li><li>Elemento de lista</li></ol>', |
17478 | 17478 | 'wikieditor-toolbar-help-content-file-description' => 'Ficheiro incorporado', |
17479 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Exemplo.png|thumb|Legenda]]', |
| 17479 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Exemplo.png|thumb|Legenda]]', |
17480 | 17480 | '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>", |
17481 | 17481 | 'wikieditor-toolbar-help-content-reference-description' => 'Referência', |
17482 | 17482 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Texto da página.<ref name="teste">[http://www.exemplo.org Texto do link], texto adicional.</ref>', |
— | — | @@ -17609,8 +17609,8 @@ |
17610 | 17610 | 'wikieditor-toolbar-tool-subscript-example' => 'Texto em subscrito', |
17611 | 17611 | 'wikieditor-toolbar-group-insert' => 'Inserir', |
17612 | 17612 | 'wikieditor-toolbar-tool-gallery' => 'Galeria de imagens', |
17613 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Exemplo.jpg|Legenda1 |
17614 | | -{{ns:file}}:Exemplo.jpg|Legenda2', |
| 17613 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Exemplo.jpg|Legenda1 |
| 17614 | +$1:Exemplo.jpg|Legenda2', |
17615 | 17615 | 'wikieditor-toolbar-tool-newline' => 'Nova linha', |
17616 | 17616 | 'wikieditor-toolbar-tool-table' => 'Tabela', |
17617 | 17617 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -17716,7 +17716,7 @@ |
17717 | 17717 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Item de lista<br /># Item de lista', |
17718 | 17718 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Item de lista</li><li>Item de lista</li></ol>', |
17719 | 17719 | 'wikieditor-toolbar-help-content-file-description' => 'Arquivo embutido', |
17720 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Exemplo.png|thumb|Legenda]]', |
| 17720 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Exemplo.png|thumb|Legenda]]', |
17721 | 17721 | '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>", |
17722 | 17722 | 'wikieditor-toolbar-help-content-reference-description' => 'Referência', |
17723 | 17723 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Texto da página.<ref name="teste">[http://www.exemplo.org Texto do link], texto adicional.</ref>', |
— | — | @@ -17842,8 +17842,8 @@ |
17843 | 17843 | 'wikieditor-toolbar-tool-subscript-example' => 'Uraychasqa qillqa', |
17844 | 17844 | 'wikieditor-toolbar-group-insert' => "Sat'iy", |
17845 | 17845 | 'wikieditor-toolbar-tool-gallery' => 'Suyu-suyu', |
17846 | | - 'wikieditor-toolbar-tool-gallery-example' => "{{ns:file}}:Qhawarichiy.jpg|Ch'uyanchay1 |
17847 | | -{{ns:file}}:Qhawarichiy.jpg|Ch'uyanchay2", |
| 17846 | + 'wikieditor-toolbar-tool-gallery-example' => "$1:Qhawarichiy.jpg|Ch'uyanchay1 |
| 17847 | +$1:Qhawarichiy.jpg|Ch'uyanchay2", |
17848 | 17848 | 'wikieditor-toolbar-tool-newline' => "Musuq siq'i", |
17849 | 17849 | 'wikieditor-toolbar-tool-table' => 'Wachuchasqa', |
17850 | 17850 | 'wikieditor-toolbar-tool-table-example-old' => "- |
— | — | @@ -17949,7 +17949,7 @@ |
17950 | 17950 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Sutisuyup qallawan<br /># Sutisuyup qallawan', |
17951 | 17951 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Sutisuyup qallawan</li><li>Sutisuyup qallawan</li></ol>', |
17952 | 17952 | 'wikieditor-toolbar-help-content-file-description' => "Ch'aqtasqa rikcha", |
17953 | | - 'wikieditor-toolbar-help-content-file-syntax' => "[[{{ns:file}}:Qhawarichiy.png|thumb|Ch'uyanchay qillqa]]", |
| 17953 | + 'wikieditor-toolbar-help-content-file-syntax' => "[[$1:Qhawarichiy.png|thumb|Ch'uyanchay qillqa]]", |
17954 | 17954 | '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>", |
17955 | 17955 | 'wikieditor-toolbar-help-content-reference-description' => 'Pukyumanta willay', |
17956 | 17956 | 'wikieditor-toolbar-help-content-reference-syntax' => 'P\'anqa qillqa.<ref name="test">[http://www.example.org T\'inki qillqa], yapasqa qillqa.</ref>', |
— | — | @@ -18078,8 +18078,8 @@ |
18079 | 18079 | 'wikieditor-toolbar-tool-subscript-example' => 'Text la indice', |
18080 | 18080 | 'wikieditor-toolbar-group-insert' => 'Inserare', |
18081 | 18081 | 'wikieditor-toolbar-tool-gallery' => 'Galerie de imagini', |
18082 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Exemplu.jpg|Descriere 1 |
18083 | | -{{ns:file}}:Exemplu.jpg|Descriere 2', |
| 18082 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Exemplu.jpg|Descriere 1 |
| 18083 | +$1:Exemplu.jpg|Descriere 2', |
18084 | 18084 | 'wikieditor-toolbar-tool-newline' => 'Linie nouă', |
18085 | 18085 | 'wikieditor-toolbar-tool-table' => 'Tabel', |
18086 | 18086 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -18185,7 +18185,7 @@ |
18186 | 18186 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Element<br /># Element', |
18187 | 18187 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Element</li><li>Element</li></ol>', |
18188 | 18188 | 'wikieditor-toolbar-help-content-file-description' => 'Fișier inserat', |
18189 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Exemplu.png|thumb|Descrierea imaginii]]', |
| 18189 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Exemplu.png|thumb|Descrierea imaginii]]', |
18190 | 18190 | '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>", |
18191 | 18191 | 'wikieditor-toolbar-help-content-reference-description' => 'Referință', |
18192 | 18192 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Textul paginii.<ref name="test">[http://www.exemplu.org Textul legăturii], text suplimentar.</ref>', |
— | — | @@ -18312,8 +18312,8 @@ |
18313 | 18313 | 'wikieditor-toolbar-tool-subscript-example' => 'Teste sottoscritte', |
18314 | 18314 | 'wikieditor-toolbar-group-insert' => "'Nzerisce", |
18315 | 18315 | 'wikieditor-toolbar-tool-gallery' => 'Gallerìe fotografeche', |
18316 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Titele1 |
18317 | | -{{ns:file}}:Example.jpg|Titele2', |
| 18316 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Titele1 |
| 18317 | +$1:Example.jpg|Titele2', |
18318 | 18318 | 'wikieditor-toolbar-tool-newline' => 'Linèa nove', |
18319 | 18319 | 'wikieditor-toolbar-tool-table' => 'Tabbelle', |
18320 | 18320 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -18419,7 +18419,7 @@ |
18420 | 18420 | 'wikieditor-toolbar-help-content-olist-syntax' => "# Elemende de l'elenghe numerate<br /># Elemende de l'elenghe numerate", |
18421 | 18421 | 'wikieditor-toolbar-help-content-olist-result' => "<ol><li>Elemende de l'elenghe</li><li>Elemende de l'elenghe</li></ol>", |
18422 | 18422 | 'wikieditor-toolbar-help-content-file-description' => "File 'ngorporate", |
18423 | | - 'wikieditor-toolbar-help-content-file-syntax' => "[[{{ns:file}}:Esembie.png|thumb|Teste d'u titele]]", |
| 18423 | + 'wikieditor-toolbar-help-content-file-syntax' => "[[$1:Esembie.png|thumb|Teste d'u titele]]", |
18424 | 18424 | '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>", |
18425 | 18425 | 'wikieditor-toolbar-help-content-reference-description' => 'Riferimende', |
18426 | 18426 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Teste d\'a pàgene.<ref name="test">[http://www.example.org Teste d\'u collegamende], teste addizionale.</ref>', |
— | — | @@ -18550,8 +18550,8 @@ |
18551 | 18551 | 'wikieditor-toolbar-tool-subscript-example' => 'Подстрочный текст', |
18552 | 18552 | 'wikieditor-toolbar-group-insert' => 'Вставка', |
18553 | 18553 | 'wikieditor-toolbar-tool-gallery' => 'Галерея картинок', |
18554 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Описание1 |
18555 | | -{{ns:file}}:Example.jpg|Описание2', |
| 18554 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Описание1 |
| 18555 | +$1:Example.jpg|Описание2', |
18556 | 18556 | 'wikieditor-toolbar-tool-newline' => 'Новая строка', |
18557 | 18557 | 'wikieditor-toolbar-tool-table' => 'Таблица', |
18558 | 18558 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -18657,7 +18657,7 @@ |
18658 | 18658 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Элемент списка<br /># Элемент списка', |
18659 | 18659 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Элемент списка</li><li>Элемент списка</li></ol>', |
18660 | 18660 | 'wikieditor-toolbar-help-content-file-description' => 'Встроенный файл', |
18661 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Пояснительный текст]]', |
| 18661 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Пояснительный текст]]', |
18662 | 18662 | 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title=' |
18663 | 18663 | Пояснительный текст' 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> |
18664 | 18664 | Пояснительный текст</div></div>", |
— | — | @@ -18785,8 +18785,8 @@ |
18786 | 18786 | 'wikieditor-toolbar-tool-subscript-example' => 'Підрядковый текст', |
18787 | 18787 | 'wikieditor-toolbar-group-insert' => 'Вложыти', |
18788 | 18788 | 'wikieditor-toolbar-tool-gallery' => 'Ґалерія', |
18789 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Опис1 |
18790 | | -{{ns:file}}:Example.jpg|Опис2', |
| 18789 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Опис1 |
| 18790 | +$1:Example.jpg|Опис2', |
18791 | 18791 | 'wikieditor-toolbar-tool-newline' => 'Новый рядок', |
18792 | 18792 | 'wikieditor-toolbar-tool-table' => 'Таблиця', |
18793 | 18793 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -18892,7 +18892,7 @@ |
18893 | 18893 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Положка списку<br /># Положка списку', |
18894 | 18894 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Положка списку</li><li>Положка списку</li></ol>', |
18895 | 18895 | 'wikieditor-toolbar-help-content-file-description' => 'Вложіня файлу', |
18896 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Пояснюючій текст]]', |
| 18896 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Пояснюючій текст]]', |
18897 | 18897 | '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>", |
18898 | 18898 | 'wikieditor-toolbar-help-content-reference-description' => 'Позначка', |
18899 | 18899 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Текст сторінкы<ref name="test">[http://www.example.org Текст одказу], додатковый текст.</ref>.', |
— | — | @@ -19018,8 +19018,8 @@ |
19019 | 19019 | 'wikieditor-toolbar-tool-subscript-example' => 'Устуруока аннынааҕы бичик', |
19020 | 19020 | 'wikieditor-toolbar-group-insert' => 'Угуу', |
19021 | 19021 | 'wikieditor-toolbar-tool-gallery' => 'Ойуулар галереялара', |
19022 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Сурук1 |
19023 | | -{{ns:file}}:Example.jpg|Сурук2', |
| 19022 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Сурук1 |
| 19023 | +$1:Example.jpg|Сурук2', |
19024 | 19024 | 'wikieditor-toolbar-tool-newline' => 'Кыһыл устуруока', |
19025 | 19025 | 'wikieditor-toolbar-tool-table' => 'Таабыл', |
19026 | 19026 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -19125,7 +19125,7 @@ |
19126 | 19126 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Тиһик бэлиэтэ<br /># Тиһик бэлиэтэ', |
19127 | 19127 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Тиһик бэлиэтэ</li><li>Тиһик бэлиэтэ</li></ol>', |
19128 | 19128 | 'wikieditor-toolbar-help-content-file-description' => 'Иһинээҕи билэ', |
19129 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Быһаарыыта]]', |
| 19129 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Быһаарыыта]]', |
19130 | 19130 | 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title=' |
19131 | 19131 | Быһаарыы сурук' 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> |
19132 | 19132 | Быһаарыы сурук</div></div>", |
— | — | @@ -19232,8 +19232,8 @@ |
19233 | 19233 | 'wikieditor-toolbar-tool-subscript-example' => 'Testu subscritu', |
19234 | 19234 | 'wikieditor-toolbar-group-insert' => 'Inserta', |
19235 | 19235 | 'wikieditor-toolbar-tool-gallery' => 'Galleria de immàgines', |
19236 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Esèmpiu.jpg|Didascalia1 |
19237 | | -{{ns:file}}:Esèmpiu.jpg|Didascalia2', |
| 19236 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Esèmpiu.jpg|Didascalia1 |
| 19237 | +$1:Esèmpiu.jpg|Didascalia2', |
19238 | 19238 | 'wikieditor-toolbar-tool-newline' => 'Lìnia noa', |
19239 | 19239 | 'wikieditor-toolbar-tool-table' => 'Tabella', |
19240 | 19240 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -19339,7 +19339,7 @@ |
19340 | 19340 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Elementu de sa lista<br /># Elementu de sa lista', |
19341 | 19341 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Elementu de sa lista</li><li>Elementu de sa lista</li></ol>', |
19342 | 19342 | 'wikieditor-toolbar-help-content-file-description' => 'File incorporadu', |
19343 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Esempru.png|thumb|Testu de sa didascalia]]', |
| 19343 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Esempru.png|thumb|Testu de sa didascalia]]', |
19344 | 19344 | '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>", |
19345 | 19345 | 'wikieditor-toolbar-help-content-reference-description' => 'Referèntzia', |
19346 | 19346 | 'wikieditor-toolbar-help-content-reference-result' => "Testu de sa pàgina.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -19459,8 +19459,8 @@ |
19460 | 19460 | 'wikieditor-toolbar-tool-subscript-example' => 'testu n pèdici', |
19461 | 19461 | 'wikieditor-toolbar-group-insert' => 'Nsirìsci', |
19462 | 19462 | 'wikieditor-toolbar-tool-gallery' => 'Gallirìa di mmàggini', |
19463 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Didascalia1 |
19464 | | -{{ns:file}}:Example.jpg|Didascalia2', |
| 19463 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Didascalia1 |
| 19464 | +$1:Example.jpg|Didascalia2', |
19465 | 19465 | 'wikieditor-toolbar-tool-newline' => 'Ligna nova', |
19466 | 19466 | 'wikieditor-toolbar-tool-table' => 'Tabbella', |
19467 | 19467 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -19579,7 +19579,7 @@ |
19580 | 19580 | 'wikieditor-toolbar-help-content-olist-syntax' => "* Elementu di l'elencu<br />* Elementu di l'elencu", |
19581 | 19581 | 'wikieditor-toolbar-help-content-olist-result' => "<ol><li>Elementu di l'elencu</li><li>Elementu di l'elencu</li></ol>", |
19582 | 19582 | 'wikieditor-toolbar-help-content-file-description' => 'File ncurpuratu', |
19583 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Testu dâ didascalia]]', |
| 19583 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Testu dâ didascalia]]', |
19584 | 19584 | '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>", |
19585 | 19585 | 'wikieditor-toolbar-help-content-reference-description' => 'Rifirenza', |
19586 | 19586 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Testu dâ pàggina.<ref name="test">[http://www.example.org Testu dû culligamentu], testu ca si pò junciri.</ref>', |
— | — | @@ -19716,8 +19716,8 @@ |
19717 | 19717 | 'wikieditor-toolbar-tool-subscript-example' => 'යටි ලකුණු පෙළ', |
19718 | 19718 | 'wikieditor-toolbar-group-insert' => 'ඇතුල් කරන්න', |
19719 | 19719 | 'wikieditor-toolbar-tool-gallery' => 'පිංතූර ගැලරිය', |
19720 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:උදාහරණ.jpg| 1 යටි ලියමන |
19721 | | -{{ns:file}}:උදාහරණ.jpg| 2 යටි ලියමන', |
| 19720 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:උදාහරණ.jpg| 1 යටි ලියමන |
| 19721 | +$1:උදාහරණ.jpg| 2 යටි ලියමන', |
19722 | 19722 | 'wikieditor-toolbar-tool-newline' => 'නව පේළිය', |
19723 | 19723 | 'wikieditor-toolbar-tool-table' => 'වගුව', |
19724 | 19724 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -19823,7 +19823,7 @@ |
19824 | 19824 | 'wikieditor-toolbar-help-content-olist-syntax' => '# ලැයිස්තු අයිතමය<br /># ලැයිස්තු අයිතමය', |
19825 | 19825 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>ලැයිස්තු අයිතමය</li><li>ලැයිස්තු අයිතමය</li></ol>', |
19826 | 19826 | 'wikieditor-toolbar-help-content-file-description' => 'කා වැද්දූ ගොනුව', |
19827 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|යටි ලියමන් පෙළ]]', |
| 19827 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|යටි ලියමන් පෙළ]]', |
19828 | 19828 | '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>", |
19829 | 19829 | 'wikieditor-toolbar-help-content-reference-description' => 'යොමුව', |
19830 | 19830 | 'wikieditor-toolbar-help-content-reference-syntax' => 'පිටු පෙළ.<ref name="test">[http://www.example.org සබැඳුම් පෙළ], අමතර පෙළ.</ref>', |
— | — | @@ -19950,8 +19950,8 @@ |
19951 | 19951 | 'wikieditor-toolbar-tool-subscript-example' => 'Dolný index', |
19952 | 19952 | 'wikieditor-toolbar-group-insert' => 'Vložiť', |
19953 | 19953 | 'wikieditor-toolbar-tool-gallery' => 'Galéria obrázkov', |
19954 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Príklad.jpg|Popis1 |
19955 | | -{{ns:file}}:Príklad.jpg|Popis2', |
| 19954 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Príklad.jpg|Popis1 |
| 19955 | +$1:Príklad.jpg|Popis2', |
19956 | 19956 | 'wikieditor-toolbar-tool-newline' => 'Nový riadok', |
19957 | 19957 | 'wikieditor-toolbar-tool-table' => 'Tabuľka', |
19958 | 19958 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -20057,7 +20057,7 @@ |
20058 | 20058 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Položka zoznamu<br /># Položka zoznamu', |
20059 | 20059 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Položka zoznamu</li><li>Položka zoznamu</li></ol>', |
20060 | 20060 | 'wikieditor-toolbar-help-content-file-description' => 'Vložený súbor', |
20061 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Príklad.png|náhľad|Text nadpisu]]', |
| 20061 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Príklad.png|náhľad|Text nadpisu]]', |
20062 | 20062 | '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>", |
20063 | 20063 | 'wikieditor-toolbar-help-content-reference-description' => 'Referencie', |
20064 | 20064 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Text stránky.<ref name="test">[http://www.example.org Text odkazu], ďalší text.</ref>', |
— | — | @@ -20183,8 +20183,8 @@ |
20184 | 20184 | 'wikieditor-toolbar-tool-subscript-example' => 'Podpisano besedilo', |
20185 | 20185 | 'wikieditor-toolbar-group-insert' => 'Vstavi', |
20186 | 20186 | 'wikieditor-toolbar-tool-gallery' => 'Galerija slik', |
20187 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Primer 1.jpg|Napis 1 |
20188 | | -{{ns:file}}:Primer 2.jpg|Napis 2', |
| 20187 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Primer 1.jpg|Napis 1 |
| 20188 | +$1:Primer 2.jpg|Napis 2', |
20189 | 20189 | 'wikieditor-toolbar-tool-newline' => 'Nova vrstica', |
20190 | 20190 | 'wikieditor-toolbar-tool-table' => 'Tabela', |
20191 | 20191 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -20290,7 +20290,7 @@ |
20291 | 20291 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Vnos a <br /> # Vnos b', |
20292 | 20292 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li> Vnos a </li><li> Vnos b </li></ol>', |
20293 | 20293 | 'wikieditor-toolbar-help-content-file-description' => 'Vgradnja slike', |
20294 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Primer.jpg|thumb|Napis pod sliko]]', |
| 20294 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Primer.jpg|thumb|Napis pod sliko]]', |
20295 | 20295 | '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>", |
20296 | 20296 | 'wikieditor-toolbar-help-content-reference-description' => 'Sprotna opomba', |
20297 | 20297 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Besedilo strani. <ref name="test"> [http://www.example.org Oznaka povezave], dodatno besedilo. </ref>', |
— | — | @@ -20464,7 +20464,7 @@ |
20465 | 20465 | 'wikieditor-toolbar-help-content-heading5-result' => '<h5>Mbishkrimi</h5>', |
20466 | 20466 | 'wikieditor-toolbar-help-content-ulist-description' => 'Lista e të numruara', |
20467 | 20467 | 'wikieditor-toolbar-help-content-olist-description' => 'Lista e numëruar', |
20468 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:shembull.jpg|thumb|Përshkrimi]]', |
| 20468 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:shembull.jpg|thumb|Përshkrimi]]', |
20469 | 20469 | '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>", |
20470 | 20470 | 'wikieditor-toolbar-help-content-reference-description' => 'Burimi', |
20471 | 20471 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Teksti i Faqës.<ref name="test">[http://www.shembull.org Teksti i lidhjes], Tekst shtues.</ref>', |
— | — | @@ -20580,8 +20580,8 @@ |
20581 | 20581 | 'wikieditor-toolbar-tool-subscript-example' => 'Текст натписа', |
20582 | 20582 | 'wikieditor-toolbar-group-insert' => 'Убаци', |
20583 | 20583 | 'wikieditor-toolbar-tool-gallery' => 'Галерија слика', |
20584 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:пример1.jpg|Наслов1 |
20585 | | -{{ns:file}}:пример2.jpg|Наслов2', |
| 20584 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:пример1.jpg|Наслов1 |
| 20585 | +$1:пример2.jpg|Наслов2', |
20586 | 20586 | 'wikieditor-toolbar-tool-newline' => 'Нова линија', |
20587 | 20587 | 'wikieditor-toolbar-tool-table' => 'Табела', |
20588 | 20588 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -20680,7 +20680,7 @@ |
20681 | 20681 | 'wikieditor-toolbar-help-content-ulist-description' => 'Попис с ознакама', |
20682 | 20682 | 'wikieditor-toolbar-help-content-olist-description' => 'Нумерисана листа', |
20683 | 20683 | 'wikieditor-toolbar-help-content-file-description' => 'Слика', |
20684 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Примјер.png|мини|Назив слике]]', |
| 20684 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Примјер.png|мини|Назив слике]]', |
20685 | 20685 | 'wikieditor-toolbar-help-content-reference-description' => 'Референце', |
20686 | 20686 | 'wikieditor-toolbar-help-content-reference-result' => "Текст странице.<sup><a href='#'>[1]</a></sup>", |
20687 | 20687 | 'wikieditor-toolbar-help-content-rereference-description' => 'Додатна употреба исте референце', |
— | — | @@ -20769,8 +20769,8 @@ |
20770 | 20770 | 'wikieditor-toolbar-tool-small-example' => 'Mali tekst', |
20771 | 20771 | 'wikieditor-toolbar-group-insert' => 'Ubaci', |
20772 | 20772 | 'wikieditor-toolbar-tool-gallery' => 'Galerija slika', |
20773 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:primer1.jpg|Naslov1 |
20774 | | -{{ns:file}}:primer2.jpg|Naslov2', |
| 20773 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:primer1.jpg|Naslov1 |
| 20774 | +$1:primer2.jpg|Naslov2', |
20775 | 20775 | 'wikieditor-toolbar-tool-newline' => 'Nova linija', |
20776 | 20776 | 'wikieditor-toolbar-tool-table' => 'Tabela', |
20777 | 20777 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -20857,7 +20857,7 @@ |
20858 | 20858 | 'wikieditor-toolbar-help-content-heading5-syntax' => '===== Naslov odeljka =====', |
20859 | 20859 | 'wikieditor-toolbar-help-content-heading5-result' => '<h5>Naslov odeljka</h5>', |
20860 | 20860 | 'wikieditor-toolbar-help-content-olist-description' => 'Numerisana lista', |
20861 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Primjer.png|mini|Naziv slike]]', |
| 20861 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Primjer.png|mini|Naziv slike]]', |
20862 | 20862 | 'wikieditor-toolbar-help-content-reference-description' => 'Reference', |
20863 | 20863 | 'wikieditor-toolbar-help-content-showreferences-description' => 'Prikaži reference', |
20864 | 20864 | '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)", |
— | — | @@ -20962,8 +20962,8 @@ |
20963 | 20963 | 'wikieditor-toolbar-tool-subscript-example' => 'Téks subskrip', |
20964 | 20964 | 'wikieditor-toolbar-group-insert' => 'Asupkeun', |
20965 | 20965 | 'wikieditor-toolbar-tool-gallery' => 'Galeri gambar', |
20966 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Conto.jpg|Pedaran1 |
20967 | | -{{ns:file}}:Conto.jpg|Pedaran2', |
| 20966 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Conto.jpg|Pedaran1 |
| 20967 | +$1:Conto.jpg|Pedaran2', |
20968 | 20968 | 'wikieditor-toolbar-tool-newline' => 'Baris anyar', |
20969 | 20969 | 'wikieditor-toolbar-tool-table' => 'Tabél', |
20970 | 20970 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -21059,7 +21059,7 @@ |
21060 | 21060 | 'wikieditor-toolbar-help-content-heading5-result' => '<h5>Téks subjudul</h5>', |
21061 | 21061 | 'wikieditor-toolbar-help-content-ulist-description' => 'Béréndélan pélor', |
21062 | 21062 | 'wikieditor-toolbar-help-content-olist-description' => 'Béréndélan nomer', |
21063 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Conto.png|thumb|Téks gambar]]', |
| 21063 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Conto.png|thumb|Téks gambar]]', |
21064 | 21064 | '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>", |
21065 | 21065 | 'wikieditor-toolbar-help-content-reference-description' => 'Rujukan', |
21066 | 21066 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Téks kaca.<ref name="test">[http://www.conto.org Téks tutumbu], téks panambih.</ref>', |
— | — | @@ -21189,8 +21189,8 @@ |
21190 | 21190 | 'wikieditor-toolbar-tool-subscript-example' => 'Nedsänkt text', |
21191 | 21191 | 'wikieditor-toolbar-group-insert' => 'Sätt in', |
21192 | 21192 | 'wikieditor-toolbar-tool-gallery' => 'Bildgalleri', |
21193 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Exempel.jpg|Bildtext1 |
21194 | | -{{ns:file}}:Exempel.jpg|Bildtext2', |
| 21193 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Exempel.jpg|Bildtext1 |
| 21194 | +$1:Exempel.jpg|Bildtext2', |
21195 | 21195 | 'wikieditor-toolbar-tool-newline' => 'Ny rad', |
21196 | 21196 | 'wikieditor-toolbar-tool-table' => 'Tabell', |
21197 | 21197 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -21296,7 +21296,7 @@ |
21297 | 21297 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Listelement<br /># Listelement', |
21298 | 21298 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Listelement</li><li>Listelement</li></ol>', |
21299 | 21299 | 'wikieditor-toolbar-help-content-file-description' => 'Inbäddad fil', |
21300 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|miniatyr|Bildtext]]', |
| 21300 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|miniatyr|Bildtext]]', |
21301 | 21301 | '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>", |
21302 | 21302 | 'wikieditor-toolbar-help-content-reference-description' => 'Referens', |
21303 | 21303 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Brödtext.<ref name="test">[http://www.example.org Länktext], ytterligare text.</ref>', |
— | — | @@ -21421,8 +21421,8 @@ |
21422 | 21422 | 'wikieditor-toolbar-tool-subscript-example' => 'Maandishi ya chini', |
21423 | 21423 | 'wikieditor-toolbar-group-insert' => 'Kuweka', |
21424 | 21424 | 'wikieditor-toolbar-tool-gallery' => 'Mkusanyiko wa picha', |
21425 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Maelezo mafupi 1 |
21426 | | -{{ns:file}}:Example.jpg|Maelezo mafupi 2', |
| 21425 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Maelezo mafupi 1 |
| 21426 | +$1:Example.jpg|Maelezo mafupi 2', |
21427 | 21427 | 'wikieditor-toolbar-tool-newline' => 'Mstari mpya', |
21428 | 21428 | 'wikieditor-toolbar-tool-table' => 'Jedwali', |
21429 | 21429 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -21529,7 +21529,7 @@ |
21530 | 21530 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Aya<br /># Aya', |
21531 | 21531 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Aya</li><li>Aya</li></ol>', |
21532 | 21532 | 'wikieditor-toolbar-help-content-file-description' => 'Faili futike', |
21533 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Maelezo mafupi]]', |
| 21533 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Maelezo mafupi]]', |
21534 | 21534 | '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>", |
21535 | 21535 | 'wikieditor-toolbar-help-content-reference-description' => 'Tiniwayo', |
21536 | 21536 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Maandishi ya ukurasa.<ref name="mfano">[http://www.example.org Maandishi ya kiungo], maandishi mengine.</ref>', |
— | — | @@ -21825,8 +21825,8 @@ |
21826 | 21826 | 'wikieditor-toolbar-tool-subscript-example' => 'పాదాక్షర పాఠ్యం', |
21827 | 21827 | 'wikieditor-toolbar-group-insert' => 'చేర్చు', |
21828 | 21828 | 'wikieditor-toolbar-tool-gallery' => 'చిత్రమాలిక', |
21829 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|ఉపశీర్షిక1 |
21830 | | -{{ns:file}}:Example.jpg|ఉపశీర్షిక2', |
| 21829 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|ఉపశీర్షిక1 |
| 21830 | +$1:Example.jpg|ఉపశీర్షిక2', |
21831 | 21831 | 'wikieditor-toolbar-tool-newline' => 'కొత్త లైను', |
21832 | 21832 | 'wikieditor-toolbar-tool-table' => 'పట్టిక', |
21833 | 21833 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -21919,7 +21919,7 @@ |
21920 | 21920 | 'wikieditor-toolbar-help-content-olist-description' => 'సంఖ్యానుగుణ జాబితా', |
21921 | 21921 | 'wikieditor-toolbar-help-content-olist-syntax' => '# జాబితా అంశం<br /># జాబితా అంశం', |
21922 | 21922 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>జాబితా అంశం</li><li>జాబితా అంశం</li></ol>', |
21923 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|వివరణ పాఠ్యం]]', |
| 21923 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|వివరణ పాఠ్యం]]', |
21924 | 21924 | '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>", |
21925 | 21925 | 'wikieditor-toolbar-help-content-reference-description' => 'సాక్ష్యాలు', |
21926 | 21926 | 'wikieditor-toolbar-help-content-reference-syntax' => 'పేజీ పాఠ్యం.<ref name="test">[http://www.example.org లింకు పాఠ్యం], అదనపు పాఠ్యం.</ref>', |
— | — | @@ -22052,8 +22052,8 @@ |
22053 | 22053 | 'wikieditor-toolbar-tool-subscript-example' => 'ตัวหนังสือที่เป็นตัวห้อย', |
22054 | 22054 | 'wikieditor-toolbar-group-insert' => 'แทรก', |
22055 | 22055 | 'wikieditor-toolbar-tool-gallery' => 'จัดแสดงภาพ', |
22056 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|คำอธิบายภาพ1 |
22057 | | -{{ns:file}}:Example.jpg|คำอธิบายภาพ2', |
| 22056 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|คำอธิบายภาพ1 |
| 22057 | +$1:Example.jpg|คำอธิบายภาพ2', |
22058 | 22058 | 'wikieditor-toolbar-tool-newline' => 'ขึ้นบรรทัดใหม่', |
22059 | 22059 | 'wikieditor-toolbar-tool-table' => 'ตาราง', |
22060 | 22060 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -22155,7 +22155,7 @@ |
22156 | 22156 | 'wikieditor-toolbar-help-content-olist-syntax' => '# เนื้อหารายการ<br /># เนื้อหารายการ', |
22157 | 22157 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>เนื้อหารายการ</li><li>เนื้อหารายการ</li></ol>', |
22158 | 22158 | 'wikieditor-toolbar-help-content-file-description' => 'แทรกไฟล์', |
22159 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|คำอธิบายภาพ]]', |
| 22159 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|คำอธิบายภาพ]]', |
22160 | 22160 | '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>", |
22161 | 22161 | 'wikieditor-toolbar-help-content-reference-description' => 'อ้างอิง', |
22162 | 22162 | 'wikieditor-toolbar-help-content-reference-syntax' => 'ชื่อหน้า.<ref name="test">[http://www.example.org ชื่อลิงก์], คำอธิบายเพิ่มเติม.</ref>', |
— | — | @@ -22279,8 +22279,8 @@ |
22280 | 22280 | 'wikieditor-toolbar-tool-subscript-example' => 'Setirasty tekst', |
22281 | 22281 | 'wikieditor-toolbar-group-insert' => 'Giriz', |
22282 | 22282 | 'wikieditor-toolbar-tool-gallery' => 'Surat galereýasy', |
22283 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Titr1 |
22284 | | -{{ns:file}}:Example.jpg|Titr2', |
| 22283 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Titr1 |
| 22284 | +$1:Example.jpg|Titr2', |
22285 | 22285 | 'wikieditor-toolbar-tool-newline' => 'Täze setir', |
22286 | 22286 | 'wikieditor-toolbar-tool-table' => 'Tablisa', |
22287 | 22287 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -22386,7 +22386,7 @@ |
22387 | 22387 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Sanaw elementi<br /># Sanaw elementi', |
22388 | 22388 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Sanaw elementi</li><li>Sanaw elementi</li></ol>', |
22389 | 22389 | 'wikieditor-toolbar-help-content-file-description' => 'Salnan faýl', |
22390 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Titriň teksti]]', |
| 22390 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Titriň teksti]]', |
22391 | 22391 | '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>", |
22392 | 22392 | 'wikieditor-toolbar-help-content-reference-description' => 'Salgylanma', |
22393 | 22393 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Sahypanyň teksti.<ref name="test">[http://www.example.org Çykgydyň teksti], goşmaça tekst.</ref>', |
— | — | @@ -22512,8 +22512,8 @@ |
22513 | 22513 | 'wikieditor-toolbar-tool-subscript-example' => 'Teksto ng nakababang panitik', |
22514 | 22514 | 'wikieditor-toolbar-group-insert' => 'Isingit', |
22515 | 22515 | 'wikieditor-toolbar-tool-gallery' => 'Tipunan ng larawan', |
22516 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Halimbawa.jpg|Kapsyon1 |
22517 | | -{{ns:file}}:Halimbawa.jpg|Kapsyon2', |
| 22516 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Halimbawa.jpg|Kapsyon1 |
| 22517 | +$1:Halimbawa.jpg|Kapsyon2', |
22518 | 22518 | 'wikieditor-toolbar-tool-newline' => 'Bagong guhit', |
22519 | 22519 | 'wikieditor-toolbar-tool-table' => 'Talahanayan', |
22520 | 22520 | 'wikieditor-toolbar-tool-table-example-old' => ' |
— | — | @@ -22619,7 +22619,7 @@ |
22620 | 22620 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Bagay sa talaan<br /># Bagay sa talaan', |
22621 | 22621 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Bagay sa talaan</li><li>Bagay sa talaan</li></ol>', |
22622 | 22622 | 'wikieditor-toolbar-help-content-file-description' => 'Talaksang nakabaon', |
22623 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Halimbawa.png|kagyat|Teksto ng kapsyon]]', |
| 22623 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Halimbawa.png|kagyat|Teksto ng kapsyon]]', |
22624 | 22624 | '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>", |
22625 | 22625 | 'wikieditor-toolbar-help-content-reference-description' => 'Sanggunian', |
22626 | 22626 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Taksto ng pahina.<ref name="test">[http://www.halimbawa.org Teksto ng kawing], karagdagang teksto.</ref>', |
— | — | @@ -22755,8 +22755,8 @@ |
22756 | 22756 | 'wikieditor-toolbar-tool-subscript-example' => 'Alt simge metni', |
22757 | 22757 | 'wikieditor-toolbar-group-insert' => 'Ekle', |
22758 | 22758 | 'wikieditor-toolbar-tool-gallery' => 'Resim galerisi', |
22759 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Örnek.jpg|Resimyazısı1 |
22760 | | -{{ns:file}}:Örnek.jpg|Resimyazısı2', |
| 22759 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Örnek.jpg|Resimyazısı1 |
| 22760 | +$1:Örnek.jpg|Resimyazısı2', |
22761 | 22761 | 'wikieditor-toolbar-tool-newline' => 'Yeni satır', |
22762 | 22762 | 'wikieditor-toolbar-tool-table' => 'Tablo', |
22763 | 22763 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -22861,7 +22861,7 @@ |
22862 | 22862 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Liste öğesi<br /># Liste öğesi', |
22863 | 22863 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Liste öğesi</li><li>Liste öğesi</li></ol>', |
22864 | 22864 | 'wikieditor-toolbar-help-content-file-description' => 'Gömülü dosya', |
22865 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Ornek.png|thumb|Resim yazısı]]', |
| 22865 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Ornek.png|thumb|Resim yazısı]]', |
22866 | 22866 | '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>Resim yazısı</div></div>", |
22867 | 22867 | 'wikieditor-toolbar-help-content-reference-description' => 'Kaynak', |
22868 | 22868 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Sayfa metni.<ref name="deneme">[http://www.ornek.org Bağlanı metni], ek metin.</ref>', |
— | — | @@ -22988,8 +22988,8 @@ |
22989 | 22989 | 'wikieditor-toolbar-tool-subscript-example' => 'Индекслы юл тексты', |
22990 | 22990 | 'wikieditor-toolbar-group-insert' => 'Өстәү', |
22991 | 22991 | 'wikieditor-toolbar-tool-gallery' => 'Рәсемнәр җыентыгы', |
22992 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Мисал.jpg|Тасвирлама1 |
22993 | | -{{ns:file}}:Мисал.jpg|Тасвирлама2', |
| 22992 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Мисал.jpg|Тасвирлама1 |
| 22993 | +$1:Мисал.jpg|Тасвирлама2', |
22994 | 22994 | 'wikieditor-toolbar-tool-newline' => 'Яңа юл', |
22995 | 22995 | 'wikieditor-toolbar-tool-table' => 'Табын', |
22996 | 22996 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -23095,7 +23095,7 @@ |
23096 | 23096 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Исемлекнең тәртибе<br /># Исемлекнең тәртибе', |
23097 | 23097 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Исемлекнең тәртибе</li><li>Исемлекнең тәртибе</li></ol>', |
23098 | 23098 | 'wikieditor-toolbar-help-content-file-description' => 'Куелган файл', |
23099 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Аңлатмалы текст]]', |
| 23099 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Аңлатмалы текст]]', |
23100 | 23100 | 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title=' |
23101 | 23101 | Аңлатмалы текст' 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> |
23102 | 23102 | Пояснительный текст</div></div>", |
— | — | @@ -23227,8 +23227,8 @@ |
23228 | 23228 | 'wikieditor-toolbar-tool-subscript-example' => 'Текст нижнього індексу', |
23229 | 23229 | 'wikieditor-toolbar-group-insert' => 'Вставити', |
23230 | 23230 | 'wikieditor-toolbar-tool-gallery' => 'Галерея', |
23231 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Опис1 |
23232 | | -{{ns:file}}:Example.jpg|Опис2', |
| 23231 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Опис1 |
| 23232 | +$1:Example.jpg|Опис2', |
23233 | 23233 | 'wikieditor-toolbar-tool-newline' => 'Новий рядок', |
23234 | 23234 | 'wikieditor-toolbar-tool-table' => 'Таблиця', |
23235 | 23235 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -23334,7 +23334,7 @@ |
23335 | 23335 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Елемент списку<br /># Елемент списку', |
23336 | 23336 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Елемент списку</li><li>Елемент списку</li></ol>', |
23337 | 23337 | 'wikieditor-toolbar-help-content-file-description' => 'Вбудований файл', |
23338 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Пояснювальний текст]]', |
| 23338 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Пояснювальний текст]]', |
23339 | 23339 | '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>", |
23340 | 23340 | 'wikieditor-toolbar-help-content-reference-description' => 'Виноска', |
23341 | 23341 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Текст сторінки<ref name="test">[http://www.example.org Текст посилання], додатковий текст.</ref>.', |
— | — | @@ -23467,8 +23467,8 @@ |
23468 | 23468 | 'wikieditor-toolbar-tool-subscript-example' => 'Testo in pèdice', |
23469 | 23469 | 'wikieditor-toolbar-group-insert' => 'Inserissi', |
23470 | 23470 | 'wikieditor-toolbar-tool-gallery' => 'Galerìa fotografica', |
23471 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Esenpio.jpg|Didascalia1 |
23472 | | -{{ns:file}}:Esenpio.jpg|Didascalia2', |
| 23471 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Esenpio.jpg|Didascalia1 |
| 23472 | +$1:Esenpio.jpg|Didascalia2', |
23473 | 23473 | 'wikieditor-toolbar-tool-newline' => 'Riga nova', |
23474 | 23474 | 'wikieditor-toolbar-tool-table' => 'Tabèla', |
23475 | 23475 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -23574,7 +23574,7 @@ |
23575 | 23575 | 'wikieditor-toolbar-help-content-olist-syntax' => "# Elemento de l'elenco<br /># Elemento de l'elenco", |
23576 | 23576 | 'wikieditor-toolbar-help-content-olist-result' => "<ol><li>Elemento de l'elenco</li><li>Elemento de l'elenco</li></ol>", |
23577 | 23577 | 'wikieditor-toolbar-help-content-file-description' => 'File incorporado', |
23578 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Testo de la didascalia]]', |
| 23578 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Testo de la didascalia]]', |
23579 | 23579 | '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>", |
23580 | 23580 | 'wikieditor-toolbar-help-content-reference-description' => 'Nota', |
23581 | 23581 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Testo de la pagina.<ref name="test">[http://www.esenpio.org Testo del colegamento], altro testo in più.</ref>', |
— | — | @@ -23754,8 +23754,8 @@ |
23755 | 23755 | 'wikieditor-toolbar-tool-subscript-example' => 'Chữ được viết xuống dưới', |
23756 | 23756 | 'wikieditor-toolbar-group-insert' => 'Chèn', |
23757 | 23757 | 'wikieditor-toolbar-tool-gallery' => 'Album hình ảnh', |
23758 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Ví dụ.jpg|Chú thích 1 |
23759 | | -{{ns:file}}:Ví dụ.jpg|Chú thích 2', |
| 23758 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Ví dụ.jpg|Chú thích 1 |
| 23759 | +$1:Ví dụ.jpg|Chú thích 2', |
23760 | 23760 | 'wikieditor-toolbar-tool-newline' => 'Dòng mới', |
23761 | 23761 | 'wikieditor-toolbar-tool-table' => 'Bảng', |
23762 | 23762 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -23861,7 +23861,7 @@ |
23862 | 23862 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Mục danh sách<br /># Mục danh sách', |
23863 | 23863 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Mục danh sách</li><li>Mục danh sách</li></ol>', |
23864 | 23864 | 'wikieditor-toolbar-help-content-file-description' => 'Chèn tập tin', |
23865 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Ví dụ.png|thumb|Văn bản chú thích]]', |
| 23865 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Ví dụ.png|thumb|Văn bản chú thích]]', |
23866 | 23866 | '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>", |
23867 | 23867 | 'wikieditor-toolbar-help-content-reference-description' => 'Tham khảo', |
23868 | 23868 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Nội dung trang<ref name="thử">[http://www.example.org Văn bản liên kết], văn bản bổ sung.</ref>.', |
— | — | @@ -23970,8 +23970,8 @@ |
23971 | 23971 | 'wikieditor-toolbar-tool-subscript-example' => 'Mbind ci suufaan', |
23972 | 23972 | 'wikieditor-toolbar-group-insert' => 'Roof', |
23973 | 23973 | 'wikieditor-toolbar-tool-gallery' => 'Gaaraluwaayu nataal', |
23974 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Misaal.jpg|Faramfacce1 |
23975 | | -{{ns:file}}:Misaal.jpg|Faramfacce2', |
| 23974 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Misaal.jpg|Faramfacce1 |
| 23975 | +$1:Misaal.jpg|Faramfacce2', |
23976 | 23976 | 'wikieditor-toolbar-tool-newline' => 'Rëdd wu bees', |
23977 | 23977 | 'wikieditor-toolbar-tool-table' => 'Xaatim', |
23978 | 23978 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -24126,8 +24126,8 @@ |
24127 | 24127 | 'wikieditor-toolbar-tool-subscript-example' => 'גענידערטער טעקסט', |
24128 | 24128 | 'wikieditor-toolbar-group-insert' => 'צולייגן', |
24129 | 24129 | 'wikieditor-toolbar-tool-gallery' => 'בילדער גאַלעריע', |
24130 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:בײַשפיל.jpg|קעפל1 |
24131 | | -{{ns:file}}:בײַשפיל.jpg|קעפל2', |
| 24130 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:בײַשפיל.jpg|קעפל1 |
| 24131 | +$1:בײַשפיל.jpg|קעפל2', |
24132 | 24132 | 'wikieditor-toolbar-tool-newline' => 'נײַע שורה', |
24133 | 24133 | 'wikieditor-toolbar-tool-table' => 'טאַבעלע', |
24134 | 24134 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -24230,7 +24230,7 @@ |
24231 | 24231 | 'wikieditor-toolbar-help-content-olist-syntax' => '# ליסטע איינצל<br /># ליסטע איינצל', |
24232 | 24232 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>ליסטע איינצל</li><li>ליסטע איינצל</li></ol>', |
24233 | 24233 | 'wikieditor-toolbar-help-content-file-description' => 'אײַנגעבעטעטע טעקע', |
24234 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|באשרייבונג]]', |
| 24234 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|באשרייבונג]]', |
24235 | 24235 | '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>", |
24236 | 24236 | 'wikieditor-toolbar-help-content-reference-description' => 'רעפערענץ', |
24237 | 24237 | 'wikieditor-toolbar-help-content-reference-syntax' => 'בלאַט טעקסט.<ref name="test">[http://www.example.org לינק טעקסט], צוגעגעבענער טעקסט.</ref>', |
— | — | @@ -24352,8 +24352,8 @@ |
24353 | 24353 | 'wikieditor-toolbar-tool-subscript-example' => 'Ìkọ àfìkọṣábẹ́', |
24354 | 24354 | 'wikieditor-toolbar-group-insert' => 'Ìkìbọ̀', |
24355 | 24355 | 'wikieditor-toolbar-tool-gallery' => 'Ìkójọ àwòrán', |
24356 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Àkọlé1 |
24357 | | -{{ns:file}}:Example.jpg|Àkọlé2', |
| 24356 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Àkọlé1 |
| 24357 | +$1:Example.jpg|Àkọlé2', |
24358 | 24358 | 'wikieditor-toolbar-tool-newline' => 'Ìlà tuntun', |
24359 | 24359 | 'wikieditor-toolbar-tool-table' => 'Tábìlì', |
24360 | 24360 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -24459,7 +24459,7 @@ |
24460 | 24460 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Ohun àkójọ<br /># Ohun àkójọ', |
24461 | 24461 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Ohun àkójọ</li><li>Ohun àkójọ</li></ol>', |
24462 | 24462 | 'wikieditor-toolbar-help-content-file-description' => 'Fáìlì alákòósínú', |
24463 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Àkọlé]]', |
| 24463 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Àkọlé]]', |
24464 | 24464 | '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>", |
24465 | 24465 | 'wikieditor-toolbar-help-content-reference-description' => 'Ìtọ́kasí', |
24466 | 24466 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Íkọ ojúewé.<ref name="test">[http://www.example.org Ìkọ ìjápọ̀], ìkọ mìràn.</ref>', |
— | — | @@ -24582,8 +24582,8 @@ |
24583 | 24583 | 'wikieditor-toolbar-tool-subscript-example' => '下標字', |
24584 | 24584 | 'wikieditor-toolbar-group-insert' => '插入', |
24585 | 24585 | 'wikieditor-toolbar-tool-gallery' => '畫廊', |
24586 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|標題1 |
24587 | | -{{ns:file}}:Example.jpg|標題2', |
| 24586 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|標題1 |
| 24587 | +$1:Example.jpg|標題2', |
24588 | 24588 | 'wikieditor-toolbar-tool-newline' => '新行', |
24589 | 24589 | 'wikieditor-toolbar-tool-table' => '表', |
24590 | 24590 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -24708,7 +24708,7 @@ |
24709 | 24709 | 'wikieditor-toolbar-help-content-olist-syntax' => '# 一覽項目<br /># 一覽項目', |
24710 | 24710 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>一覽項目</li><li>一覽項目</li></ol>', |
24711 | 24711 | 'wikieditor-toolbar-help-content-file-description' => '結合檔', |
24712 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|標題字]]', |
| 24712 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|標題字]]', |
24713 | 24713 | '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>", |
24714 | 24714 | 'wikieditor-toolbar-help-content-reference-description' => '參考', |
24715 | 24715 | 'wikieditor-toolbar-help-content-reference-syntax' => '頁字。<ref name="test">[http://www.example.org 連字],附加字。</ref>', |
— | — | @@ -24842,8 +24842,8 @@ |
24843 | 24843 | 'wikieditor-toolbar-tool-subscript-example' => '下标文字', |
24844 | 24844 | 'wikieditor-toolbar-group-insert' => '插入', |
24845 | 24845 | 'wikieditor-toolbar-tool-gallery' => '画廊', |
24846 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|标题1 |
24847 | | -{{ns:file}}:Example.jpg|标题2', |
| 24846 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|标题1 |
| 24847 | +$1:Example.jpg|标题2', |
24848 | 24848 | 'wikieditor-toolbar-tool-newline' => '换行', |
24849 | 24849 | 'wikieditor-toolbar-tool-table' => '表格', |
24850 | 24850 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -24949,7 +24949,7 @@ |
24950 | 24950 | 'wikieditor-toolbar-help-content-olist-syntax' => '# 列表项<br /># 列表项', |
24951 | 24951 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>列表项</li><li>列表项</li></ol>', |
24952 | 24952 | 'wikieditor-toolbar-help-content-file-description' => '嵌入文件', |
24953 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|标题文本]]', |
| 24953 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|标题文本]]', |
24954 | 24954 | '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>", |
24955 | 24955 | 'wikieditor-toolbar-help-content-reference-description' => '注释', |
24956 | 24956 | 'wikieditor-toolbar-help-content-reference-syntax' => '页面文本。<ref name="测试">[http://www.example.org 链接文本],附加文本。</ref>', |
— | — | @@ -25081,8 +25081,8 @@ |
25082 | 25082 | 'wikieditor-toolbar-tool-subscript-example' => '下標文字', |
25083 | 25083 | 'wikieditor-toolbar-group-insert' => '插入', |
25084 | 25084 | 'wikieditor-toolbar-tool-gallery' => '畫廊', |
25085 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|標題1 |
25086 | | -{{ns:file}}:Example.jpg|標題2', |
| 25085 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|標題1 |
| 25086 | +$1:Example.jpg|標題2', |
25087 | 25087 | 'wikieditor-toolbar-tool-newline' => '換行', |
25088 | 25088 | 'wikieditor-toolbar-tool-table' => '表格', |
25089 | 25089 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -25210,7 +25210,7 @@ |
25211 | 25211 | 'wikieditor-toolbar-help-content-olist-syntax' => '# 列表項目<br /># 列表項目', |
25212 | 25212 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>列表項目</li><li>列表項目</li></ol>', |
25213 | 25213 | 'wikieditor-toolbar-help-content-file-description' => '結合檔', |
25214 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|標題文字]]', |
| 25214 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|標題文字]]', |
25215 | 25215 | '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>", |
25216 | 25216 | 'wikieditor-toolbar-help-content-reference-description' => '參考', |
25217 | 25217 | 'wikieditor-toolbar-help-content-reference-syntax' => '頁面文字。<ref name="測試">[http://www.example.org 連結文字],附加文字。</ref>', |