Index: branches/REL1_17/extensions/LiquidThreads/lqt.js |
— | — | @@ -227,7 +227,8 @@ |
228 | 228 | function() { |
229 | 229 | if ( typeof mediaWiki.loader != 'undefined' && mediaWiki.loader ) { |
230 | 230 | mediaWiki.loader.using( |
231 | | - [ 'ext.wikiEditor', 'jquery.wikiEditor.toolbar', |
| 231 | + [ 'ext.wikiEditor', 'ext.wikiEditor.toolbar.i18n', |
| 232 | + 'jquery.wikiEditor.toolbar', |
232 | 233 | 'jquery.async', 'jquery.cookie' ], |
233 | 234 | finishSetup ); |
234 | 235 | } else { |
Index: branches/REL1_17/extensions/WikiEditor/WikiEditor.php |
— | — | @@ -275,10 +275,13 @@ |
276 | 276 | 'scripts' => 'ext.wikiEditor.toolbar.js', |
277 | 277 | 'dependencies' => array( |
278 | 278 | 'ext.wikiEditor', |
| 279 | + 'ext.wikiEditor.toolbar.i18n', |
279 | 280 | 'jquery.wikiEditor.toolbar', |
280 | 281 | 'jquery.cookie', |
281 | 282 | 'jquery.async', |
282 | | - ), |
| 283 | + ) |
| 284 | + ), |
| 285 | + 'ext.wikiEditor.toolbar.i18n' => $wikiEditorTpl + array( |
283 | 286 | 'messages' => array( |
284 | 287 | // This is a mixed bunch that needs to be separated between dialog and toolbar messages, but since the |
285 | 288 | // dialog module depends on the toolbar module, it's not an urgent matter |
— | — | @@ -315,7 +318,6 @@ |
316 | 319 | 'wikieditor-toolbar-tool-link-lookslikeinternal-ext', |
317 | 320 | 'wikieditor-toolbar-tool-link-empty', |
318 | 321 | 'wikieditor-toolbar-tool-file', |
319 | | - 'wikieditor-toolbar-tool-file-pre', |
320 | 322 | 'wikieditor-toolbar-tool-file-example', |
321 | 323 | 'wikieditor-toolbar-tool-reference', |
322 | 324 | 'wikieditor-toolbar-tool-reference-title', |
Index: branches/REL1_17/extensions/WikiEditor/modules/jquery.wikiEditor.css |
— | — | @@ -13,9 +13,6 @@ |
14 | 14 | .wikiEditor-ui textarea:focus { |
15 | 15 | outline: none; |
16 | 16 | } |
17 | | -body.rtl .wikiEditor-ui { |
18 | | - float: right; |
19 | | -} |
20 | 17 | .wikiEditor-ui .wikiEditor-ui-bottom { |
21 | 18 | |
22 | 19 | } |
— | — | @@ -30,17 +27,11 @@ |
31 | 28 | float: left; |
32 | 29 | width: 100%; |
33 | 30 | } |
34 | | -body.rtl .wikiEditor-ui .wikiEditor-ui-left { |
35 | | - float: right; |
36 | | -} |
37 | 31 | .wikiEditor-ui .wikiEditor-ui-right { |
38 | 32 | float: right; |
39 | 33 | background: #F3F3F3; |
40 | 34 | overflow: hidden; |
41 | 35 | } |
42 | | -body.rtl .wikiEditor-ui .wikiEditor-ui-right { |
43 | | - float: left; |
44 | | -} |
45 | 36 | .wikiEditor-wikitext { |
46 | 37 | float: left; |
47 | 38 | width: 100%; |
Index: branches/REL1_17/extensions/WikiEditor/modules/jquery.wikiEditor.toc.css |
— | — | @@ -1,7 +1,7 @@ |
2 | 2 | /* |
3 | 3 | * CSS for WikiEditor Table of Contents jQuery plugin |
4 | 4 | */ |
5 | | - |
| 5 | + |
6 | 6 | .wikiEditor-ui-toc { |
7 | 7 | /* height and width are set dynamically */ |
8 | 8 | /*float: right;*/ |
— | — | @@ -12,10 +12,6 @@ |
13 | 13 | .wikiEditor-ui-toc { |
14 | 14 | border-left: solid silver 1px; |
15 | 15 | } |
16 | | -body.rtl .wikiEditor-ui-toc { |
17 | | - border-right: solid silver 1px; |
18 | | - border-left: none; |
19 | | -} |
20 | 16 | .wikiEditor-ui-toc ul { |
21 | 17 | padding: 0; |
22 | 18 | margin: 0; |
— | — | @@ -40,10 +36,6 @@ |
41 | 37 | white-space: nowrap; |
42 | 38 | overflow: hidden; |
43 | 39 | } |
44 | | -body.rtl .tab-toc { |
45 | | - background-position: right top; |
46 | | - padding-right: 2em; |
47 | | -} |
48 | 40 | .tab-toc a { |
49 | 41 | outline: none; |
50 | 42 | } |
— | — | @@ -69,45 +61,21 @@ |
70 | 62 | padding: 0.125em; |
71 | 63 | padding-left: 1em; |
72 | 64 | } |
73 | | -body.rtl .wikiEditor-ui-toc ul li div { |
74 | | - padding-right: 1em; |
75 | | - padding-left: 0; |
76 | | -} |
77 | 65 | .wikiEditor-ui-toc ul ul li div { |
78 | 66 | padding-left: 2em; |
79 | 67 | } |
80 | | -body.rtl .wikiEditor-ui-toc ul ul li div { |
81 | | - padding-right: 2em; |
82 | | - padding-left: 0; |
83 | | -} |
84 | 68 | .wikiEditor-ui-toc ul ul ul li div { |
85 | 69 | padding-left: 3em; |
86 | 70 | } |
87 | | -body.rtl .wikiEditor-ui-toc ul ul ul li div { |
88 | | - padding-right: 3em; |
89 | | - padding-left: 0; |
90 | | -} |
91 | 71 | .wikiEditor-ui-toc ul ul ul ul li div { |
92 | 72 | padding-left: 4em; |
93 | 73 | } |
94 | | -body.rtl .wikiEditor-ui-toc ul ul ul ul li div { |
95 | | - padding-right: 4em; |
96 | | - padding-left: 0; |
97 | | -} |
98 | 74 | .wikiEditor-ui-toc ul ul ul ul ul li div { |
99 | 75 | padding-left: 5em; |
100 | 76 | } |
101 | | -body.rtl .wikiEditor-ui-toc ul ul ul ul ul li div { |
102 | | - padding-right: 5em; |
103 | | - padding-left: 0; |
104 | | -} |
105 | 77 | .wikiEditor-ui-toc ul ul ul ul ul ul li div { |
106 | 78 | padding-left: 6em; |
107 | 79 | } |
108 | | -body.rtl wikiEditor-ui-toc ul ul ul ul ul ul li div { |
109 | | - padding-right: 6em; |
110 | | - padding-left: 0; |
111 | | -} |
112 | 80 | .wikiEditor-ui-toc ul li div.current { |
113 | 81 | background-color: #FAFAFA; |
114 | 82 | color: #333333; |
— | — | @@ -179,9 +147,6 @@ |
180 | 148 | background: url(images/toc/grip.png) 50% 50% no-repeat; |
181 | 149 | z-index: 0; |
182 | 150 | } |
183 | | -body.rtl .wikiEditor-ui-right .wikiEditor-ui-toc-resize-grip { |
184 | | - right: 2px !important; |
185 | | -} |
186 | 151 | .wikiEditor-ui-toolbar .tab-toc { |
187 | 152 | float: right; |
188 | 153 | margin: 3px 16px 3px 3px; |
— | — | @@ -199,12 +164,6 @@ |
200 | 165 | white-space: nowrap; |
201 | 166 | overflow: hidden; |
202 | 167 | } |
203 | | -body.rtl .wikiEditor-ui-toc-expandControl { |
204 | | - padding-left: 1em; |
205 | | - padding-right: 0; |
206 | | - left: 10px; |
207 | | - right: auto; |
208 | | -} |
209 | 168 | .wikiEditor-ui-text textarea { |
210 | 169 | resize: none; |
211 | 170 | } |
Index: branches/REL1_17/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.js |
— | — | @@ -701,7 +701,8 @@ |
702 | 702 | } |
703 | 703 | var $selectedIndex = $index.find( '*[rel=' + selected + ']' ); |
704 | 704 | if ( $selectedIndex.size() == 0 ) { |
705 | | - selected = $index.children().eq( 0 ).attr( 'rel' ); |
| 705 | + $selectedIndex = $index.children().eq( 0 ); |
| 706 | + selected = $selectedIndex.attr( 'rel' ); |
706 | 707 | $.cookie( cookie, selected, { expires: 30, path: '/' } ); |
707 | 708 | } |
708 | 709 | $pages.children().hide(); |
Index: branches/REL1_17/extensions/WikiEditor/modules/images/toolbar/arrow-right.png |
Cannot display: file marked as a binary type. |
svn:mime-type = image/png |
Index: branches/REL1_17/extensions/WikiEditor/modules/images/toolbar/arrow-left.png |
Cannot display: file marked as a binary type. |
svn:mime-type = image/png |
Index: branches/REL1_17/extensions/WikiEditor/modules/images/toolbar/arrow-rtl.png |
Cannot display: file marked as a binary type. |
svn:mime-type = image/png |
Property changes on: branches/REL1_17/extensions/WikiEditor/modules/images/toolbar/arrow-rtl.png |
___________________________________________________________________ |
Added: svn:mime-type |
709 | 710 | + image/png |
Index: branches/REL1_17/extensions/WikiEditor/modules/images/toolbar/arrow-ltr.png |
Cannot display: file marked as a binary type. |
svn:mime-type = image/png |
Property changes on: branches/REL1_17/extensions/WikiEditor/modules/images/toolbar/arrow-ltr.png |
___________________________________________________________________ |
Added: svn:mime-type |
710 | 711 | + image/png |
Index: branches/REL1_17/extensions/WikiEditor/modules/ext.wikiEditor.dialogs.js |
— | — | @@ -30,6 +30,7 @@ |
31 | 31 | }, |
32 | 32 | 'reference': { |
33 | 33 | 'labelMsg': 'wikieditor-toolbar-tool-reference', |
| 34 | + 'filters': [ 'body.ns-subject' ], |
34 | 35 | 'type': 'button', |
35 | 36 | 'icon': 'insert-reference.png', |
36 | 37 | 'offset': [2, -1798], |
Index: branches/REL1_17/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.css |
— | — | @@ -13,9 +13,6 @@ |
14 | 14 | clear: both; |
15 | 15 | height: 0; |
16 | 16 | } |
17 | | -body.rtl .wikiEditor-ui-toolbar .sections { |
18 | | - float: right; |
19 | | -} |
20 | 17 | .wikiEditor-ui-toolbar .sections .section { |
21 | 18 | display: none; |
22 | 19 | float: left; |
— | — | @@ -29,15 +26,13 @@ |
30 | 27 | background-position: left top; |
31 | 28 | background-repeat: repeat-x; |
32 | 29 | } |
33 | | -body.rtl .wikiEditor-ui-toolbar .sections .section { |
34 | | - float: right; |
35 | | -} |
36 | 30 | /* Gets overridden when the section div is in class loading - see below */ |
37 | 31 | .wikiEditor-ui-toolbar .sections div .spinner { |
38 | 32 | display: none; |
39 | 33 | } |
40 | 34 | .wikiEditor-ui-toolbar .sections .loading .spinner { |
41 | 35 | display: block; |
| 36 | + float: left; |
42 | 37 | /* @embed */ |
43 | 38 | background-image: url(images/toolbar/loading.gif); |
44 | 39 | background-position: left center; |
— | — | @@ -45,17 +40,8 @@ |
46 | 41 | padding-left: 32px; |
47 | 42 | margin-left: 0.5em; |
48 | 43 | height: 32px; |
49 | | - float: left; |
50 | 44 | color: #666666; |
51 | 45 | } |
52 | | -body.rtl .wikiEditor-ui-toolbar .sections .loading .spinner { |
53 | | - background-position: right center; |
54 | | - padding-left: 0; |
55 | | - padding-right: 32px; |
56 | | - margin-left: 0; |
57 | | - margin-right: 0.5em; |
58 | | - float: right; |
59 | | -} |
60 | 46 | /* Top Level Containers */ |
61 | 47 | .wikiEditor-ui-toolbar .tabs, |
62 | 48 | .wikiEditor-ui-toolbar .section-main { |
— | — | @@ -63,10 +49,6 @@ |
64 | 50 | float: left; |
65 | 51 | height: 26px; |
66 | 52 | } |
67 | | -body.rtl .wikiEditor-ui-toolbar .tabs, |
68 | | -body.rtl .wikiEditor-ui-toolbar .section-main { |
69 | | - float: right; |
70 | | -} |
71 | 53 | /* Groups */ |
72 | 54 | .wikiEditor-ui-toolbar .group { |
73 | 55 | float: left; |
— | — | @@ -75,13 +57,6 @@ |
76 | 58 | border-right: solid 1px #DDDDDD; |
77 | 59 | margin: 3px; |
78 | 60 | } |
79 | | -body.rtl .wikiEditor-ui-toolbar .group { |
80 | | - float: right; |
81 | | - padding-right: 0; |
82 | | - padding-left: 6px; |
83 | | - border-right: none; |
84 | | - border-left: solid 1px #DDDDDD; |
85 | | -} |
86 | 61 | .wikiEditor-ui-toolbar .group-search { |
87 | 62 | float: right; |
88 | 63 | padding: 0 0 0 6px; |
— | — | @@ -91,15 +66,6 @@ |
92 | 67 | .wikiEditor-ui-toolbar .group-insert { |
93 | 68 | border-right: none; |
94 | 69 | } |
95 | | -body.rtl .wikiEditor-ui-toolbar .group-search { |
96 | | - float: left; |
97 | | - padding: 0 6px 0 0; |
98 | | - border-left: none; |
99 | | - border-right: 1px solid #DDDDDD; |
100 | | -} |
101 | | -body.rtl .wikiEditor-ui-toolbar .group-insert { |
102 | | - border-left: none; |
103 | | -} |
104 | 70 | /* Sprited Buttons */ |
105 | 71 | .wikiEditor-toolbar-spritedButton { |
106 | 72 | /* @embed */ |
— | — | @@ -119,18 +85,10 @@ |
120 | 86 | margin: 3px; |
121 | 87 | } |
122 | 88 | .wikiEditor-ui-toolbar .tabs span.tab { |
123 | | - display: inline-block; |
| 89 | + display: block; |
124 | 90 | float: left; |
125 | 91 | line-height: 26px; |
126 | 92 | } |
127 | | -/* IGNORED BY IE6 */ |
128 | | -.wikiEditor-ui-toolbar .tabs > span.tab { |
129 | | - display: block; |
130 | | -} |
131 | | -/* IGNORED BY IE6 */ |
132 | | -body.rtl .wikiEditor-ui-toolbar .tabs > span.tab { |
133 | | - float: right; |
134 | | -} |
135 | 93 | .wikiEditor-ui-toolbar .tabs span.tab a, |
136 | 94 | .wikiEditor-ui-toolbar .tabs span.tab a:visited { |
137 | 95 | display: inline-block; |
— | — | @@ -141,40 +99,22 @@ |
142 | 100 | cursor: pointer; |
143 | 101 | color: #0645ad; |
144 | 102 | /* @embed */ |
145 | | - background-image: url(images/toolbar/arrow-right.png); |
| 103 | + background-image: url(images/toolbar/arrow-ltr.png); |
146 | 104 | background-position: left center; |
147 | 105 | background-repeat: no-repeat; |
148 | 106 | } |
149 | | -body.rtl .wikiEditor-ui-toolbar .tabs span.tab a, |
150 | | -body.rtl .wikiEditor-ui-toolbar .tabs span.tab a:visited { |
151 | | - padding-left: 12px; |
152 | | - padding-right: 18px; |
153 | | - /* @embed */ |
154 | | - background-image: url(images/toolbar/arrow-left.png); |
155 | | - background-position: right center; |
156 | | -} |
157 | | -/* IGNORED BY IE6 */ |
158 | | -body.rtl .wikiEditor-ui-toolbar .tabs > span.tab > a, |
159 | | -body.rtl .wikiEditor-ui-toolbar .tabs > pan.tab > a:visited { |
160 | | - float: right; |
161 | | -} |
162 | 107 | .wikiEditor-ui-toolbar .tabs span.tab a.current, |
163 | 108 | .wikiEditor-ui-toolbar .tabs span.tab a.current:visited { |
164 | 109 | color: #333333; |
165 | 110 | /* @embed */ |
166 | 111 | background-image: url(images/toolbar/arrow-down.png); |
167 | 112 | } |
168 | | -body.rtl .wikiEditor-ui-toolbar .tabs span.tab a.current, |
169 | | -body.rtl .wikiEditor-ui-toolbar .tabs span.tab a.current:visited { |
170 | | - /* @embed */ |
171 | | - background-image: url(images/toolbar/arrow-down.png); |
172 | | -} |
173 | 113 | .wikiEditor-ui-toolbar .tabs span.tab a.current:hover { |
174 | 114 | text-decoration: none; |
175 | 115 | } |
176 | 116 | .wikiEditor-ui-toolbar .tabs span.tab a.loading { |
177 | 117 | /* @embed */ |
178 | | - background-image: url(images/toolbar/loading-small.gif) !important; |
| 118 | + background-image: url(images/toolbar/loading-small.gif); |
179 | 119 | } |
180 | 120 | /* Toolbar */ |
181 | 121 | .wikiEditor-ui-toolbar .group .label { |
— | — | @@ -188,12 +128,6 @@ |
189 | 129 | color: #777777; |
190 | 130 | cursor: default; |
191 | 131 | } |
192 | | -/* IGNORED BY IE6 */ |
193 | | -body.rtl .wikiEditor-ui-toolbar .group > .label { |
194 | | - float: right; |
195 | | - margin-left: 8px; |
196 | | - margin-right: 5px; |
197 | | -} |
198 | 132 | .wikiEditor-ui-toolbar .group img.tool { |
199 | 133 | float: left; |
200 | 134 | border: 0px; |
— | — | @@ -202,10 +136,6 @@ |
203 | 137 | padding: 2px; |
204 | 138 | cursor: pointer; |
205 | 139 | } |
206 | | -/* IGNORED BY IE6 */ |
207 | | -body.rtl .wikiEditor-ui-toolbar .group > img.tool { |
208 | | - float: right; |
209 | | -} |
210 | 140 | .wikiEditor-ui-toolbar .group .tool-select { |
211 | 141 | float: left; |
212 | 142 | margin: 2px; |
— | — | @@ -217,10 +147,6 @@ |
218 | 148 | cursor: pointer; |
219 | 149 | background-color: #ffffff; |
220 | 150 | } |
221 | | -/* IGNORED BY IE6 */ |
222 | | -body.rtl .wikiEditor-ui-toolbar .group > .tool-select { |
223 | | - float: right; |
224 | | -} |
225 | 151 | .wikiEditor-ui-toolbar .group .tool-select .label { |
226 | 152 | /* @embed */ |
227 | 153 | background-image: url(images/toolbar/arrow-down.png); |
— | — | @@ -235,31 +161,14 @@ |
236 | 162 | text-decoration: none; |
237 | 163 | color: #333333; |
238 | 164 | } |
239 | | -body.rtl .wikiEditor-ui-toolbar .group .tool-select .label { |
240 | | - background-position: center left; |
241 | | - padding-right: 4px; |
242 | | - padding-left: 22px; |
243 | | - margin-left: 4px; |
244 | | - margin-right: 0; |
245 | | -} |
246 | | -body.rtl .wikiEditor-ui-toolbar .group .tool-select .menu { |
247 | | - clear: both; |
248 | | -} |
249 | 165 | .wikiEditor-ui-toolbar .group .tool-select .menu .options { |
250 | 166 | position: absolute; |
251 | 167 | display: none; |
252 | 168 | margin-left: -1px; |
| 169 | + margin-top: 22px; |
253 | 170 | border: solid 1px silver; |
254 | 171 | background-color: #ffffff; |
255 | 172 | } |
256 | | -body.rtl .wikiEditor-ui-toolbar .group .tool-select .menu { |
257 | | - margin-left: -1px; |
258 | | - margin-right: -1px; |
259 | | -} |
260 | | -/* IGNORED BY IE6 */ |
261 | | -.wikiEditor-ui-toolbar .group .tool-select .options { |
262 | | - margin-top: 22px; |
263 | | -} |
264 | 173 | .wikiEditor-ui-toolbar .group .tool-select .options .option { |
265 | 174 | display: block; |
266 | 175 | padding: 0.5em; |
— | — | @@ -293,19 +202,12 @@ |
294 | 203 | height: 125px; |
295 | 204 | overflow: auto; |
296 | 205 | } |
297 | | -body.rtl .wikiEditor-ui-toolbar .booklet .index { |
298 | | - float: right; |
299 | | -} |
300 | 206 | .wikiEditor-ui-toolbar .booklet .index div { |
301 | 207 | padding: 4px; |
302 | 208 | padding-left: 6px; |
303 | 209 | cursor: pointer; |
304 | 210 | color: #0645ad; |
305 | 211 | } |
306 | | -body.rtl .wikiEditor-ui-toolbar .booklet .index div { |
307 | | - padding-left: 4px; |
308 | | - padding-right: 6px; |
309 | | -} |
310 | 212 | .wikiEditor-ui-toolbar .booklet .index .current { |
311 | 213 | background-color: #FAFAFA; |
312 | 214 | color: #333333; |
— | — | @@ -318,9 +220,6 @@ |
319 | 221 | overflow: auto; |
320 | 222 | background-color: #FAFAFA; |
321 | 223 | } |
322 | | -body.rtl .wikiEditor-ui-toolbar .booklet .pages { |
323 | | - float: left; |
324 | | -} |
325 | 224 | /* Help Pages */ |
326 | 225 | .wikiEditor-ui-toolbar .page-table table { |
327 | 226 | padding-left: 5px; |
— | — | @@ -340,10 +239,6 @@ |
341 | 240 | padding: 5px; |
342 | 241 | margin: 0px; |
343 | 242 | } |
344 | | -body.rtl .wikiEditor-ui-toolbar .page-table th, |
345 | | -body.rtl .wikiEditor-ui-toolbar .page-table td { |
346 | | - text-align: right; |
347 | | -} |
348 | 243 | .wikiEditor-ui-toolbar .section-help .page-table td.cell-syntax, |
349 | 244 | .wikiEditor-ui-toolbar .section-help .page-table td.syntax { |
350 | 245 | font-family: monospace; |
— | — | @@ -375,12 +270,8 @@ |
376 | 271 | font-family: monospace; |
377 | 272 | font-size: 1.25em; |
378 | 273 | } |
379 | | -body.rtl .wikiEditor-ui-toolbar .page-characters > div > span, |
380 | 274 | .wikiEditor-ui-toolbar .page-characters div[dir=rtl] span { |
381 | 275 | direction: rtl; |
382 | | - float: right; |
383 | | - margin-left: 0; |
384 | | - margin-right: 5px; |
385 | 276 | } |
386 | 277 | .wikiEditor-ui-toolbar .page-characters div span:hover { |
387 | 278 | background-color: white; |
Index: branches/REL1_17/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,8 +154,7 @@ |
154 | 155 | 'action': { |
155 | 156 | 'type': 'encapsulate', |
156 | 157 | 'options': { |
157 | | - // FIXME: Why the hell was this done this way? |
158 | | - 'preMsg': [ 'wikieditor-toolbar-tool-file-pre', '[[' ], |
| 158 | + 'pre': '[[' + fileNamespace + ':', |
159 | 159 | 'periMsg': 'wikieditor-toolbar-tool-file-example', |
160 | 160 | 'post': "]]" |
161 | 161 | } |
— | — | @@ -162,6 +162,7 @@ |
163 | 163 | }, |
164 | 164 | 'reference': { |
165 | 165 | 'labelMsg': 'wikieditor-toolbar-tool-reference', |
| 166 | + 'filters': [ 'body.ns-subject' ], |
166 | 167 | 'type': 'button', |
167 | 168 | 'offset': [2, -1798], |
168 | 169 | 'icon': 'insert-reference.png', |
— | — | @@ -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: branches/REL1_17/extensions/WikiEditor/WikiEditor.i18n.php |
— | — | @@ -91,7 +91,6 @@ |
92 | 92 | 'wikieditor-toolbar-tool-link-lookslikeinternal-ext' => 'External link', |
93 | 93 | 'wikieditor-toolbar-tool-link-empty' => "You did not enter anything to link to.", |
94 | 94 | 'wikieditor-toolbar-tool-file' => 'Embedded file', |
95 | | - 'wikieditor-toolbar-tool-file-pre' => '$1{{ns:file}}:', |
96 | 95 | 'wikieditor-toolbar-tool-file-example' => 'Example.jpg', |
97 | 96 | 'wikieditor-toolbar-tool-reference' => 'Reference', |
98 | 97 | 'wikieditor-toolbar-tool-reference-example' => 'Insert footnote text here', |
— | — | @@ -130,8 +129,8 @@ |
131 | 130 | 'wikieditor-toolbar-tool-subscript-example' => 'Subscript text', |
132 | 131 | 'wikieditor-toolbar-group-insert' => 'Insert', |
133 | 132 | 'wikieditor-toolbar-tool-gallery' => 'Picture gallery', |
134 | | - 'wikieditor-toolbar-tool-gallery-example' => "{{ns:file}}:Example.jpg|Caption1 |
135 | | -{{ns:file}}:Example.jpg|Caption2", |
| 133 | + 'wikieditor-toolbar-tool-gallery-example' => "$1:Example.jpg|Caption1 |
| 134 | +$1:Example.jpg|Caption2", |
136 | 135 | 'wikieditor-toolbar-tool-newline' => 'New line', |
137 | 136 | 'wikieditor-toolbar-tool-table' => 'Table', |
138 | 137 | 'wikieditor-toolbar-tool-table-example-old' => "- |
— | — | @@ -240,8 +239,8 @@ |
241 | 240 | 'wikieditor-toolbar-help-content-olist-syntax' => '# List item<br /># List item', |
242 | 241 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>List item</li><li>List item</li></ol>', |
243 | 242 | 'wikieditor-toolbar-help-content-file-description' => 'Embedded file', |
244 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Caption text]]', |
245 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 243 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Caption text]]', |
| 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>", |
246 | 245 | 'wikieditor-toolbar-help-content-reference-description' => 'Reference', |
247 | 246 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Page text.<ref name="test">[http://www.example.org Link text], additional text.</ref>', |
248 | 247 | 'wikieditor-toolbar-help-content-reference-result' => "Page text.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -575,8 +574,8 @@ |
576 | 575 | 'wikieditor-toolbar-tool-subscript-example' => 'Teks in onderskrif', |
577 | 576 | 'wikieditor-toolbar-group-insert' => 'Invoeg', |
578 | 577 | 'wikieditor-toolbar-tool-gallery' => 'Fotogalery', |
579 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Voorbeeld1|Byskrif1 |
580 | | -{{ns:file}}:Voorbeeld2|Byskrif2', |
| 578 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Voorbeeld1|Byskrif1 |
| 579 | +$1:Voorbeeld2|Byskrif2', |
581 | 580 | 'wikieditor-toolbar-tool-newline' => 'Nuwe lyn', |
582 | 581 | 'wikieditor-toolbar-tool-table' => 'Tabel', |
583 | 582 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -682,8 +681,8 @@ |
683 | 682 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Lyn in genommerde lys<br /># Lyn in genommerde lys', |
684 | 683 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Lyn in genommerde lys</li><li>Lyn in genommerde lys</li></ol>', |
685 | 684 | 'wikieditor-toolbar-help-content-file-description' => 'Ingebedde lêer', |
686 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Voorbeeld.png|thumb|Byskrif]]', |
687 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 685 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Voorbeeld.png|thumb|Byskrif]]', |
| 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>", |
688 | 687 | 'wikieditor-toolbar-help-content-reference-description' => 'Verwysing', |
689 | 688 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Bladsyteks.<ref name="test">[http://www.voorbeeld.org Skakel se teks], addisionele teks.</ref>', |
690 | 689 | 'wikieditor-toolbar-help-content-reference-result' => "Bladsyteks <sup><a href='#'>[1]</a></sup>", |
— | — | @@ -808,8 +807,8 @@ |
809 | 808 | 'wikieditor-toolbar-tool-subscript-example' => 'tekstit Subscript', |
810 | 809 | 'wikieditor-toolbar-group-insert' => 'Kall', |
811 | 810 | 'wikieditor-toolbar-tool-gallery' => 'galeri artesh', |
812 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}: Example.jpg|Caption1 |
813 | | -{{ns:file}}: Example.jpg|Caption2', |
| 811 | + 'wikieditor-toolbar-tool-gallery-example' => '$1: Example.jpg|Caption1 |
| 812 | +$1: Example.jpg|Caption2', |
814 | 813 | 'wikieditor-toolbar-tool-newline' => 'Linjë e re', |
815 | 814 | 'wikieditor-toolbar-tool-table' => 'Tryezë', |
816 | 815 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -911,8 +910,8 @@ |
912 | 911 | 'wikieditor-toolbar-help-content-olist-syntax' => 'pika # Lista <br /> pika # Lista', |
913 | 912 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li> pika Lista </li><li> pika Lista </li></ol>', |
914 | 913 | 'wikieditor-toolbar-help-content-file-description' => 'Embedded file', |
915 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Caption teksti]]', |
916 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 914 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Caption teksti]]', |
| 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>", |
917 | 916 | 'wikieditor-toolbar-help-content-reference-description' => 'Referim', |
918 | 917 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Tekst faqesh. name="test"> <ref [http://www.example.org] teksti Link, teksti shtesë. </> ref', |
919 | 918 | 'wikieditor-toolbar-help-content-reference-result' => "Tekst faqesh. <a href='#'><sup>[1]</sup></a>", |
— | — | @@ -1037,8 +1036,8 @@ |
1038 | 1037 | 'wikieditor-toolbar-tool-subscript-example' => 'Texto en subéndiz', |
1039 | 1038 | 'wikieditor-toolbar-group-insert' => 'Insertar', |
1040 | 1039 | 'wikieditor-toolbar-tool-gallery' => "Galería d'imachens", |
1041 | | - 'wikieditor-toolbar-tool-gallery-example' => '↓ {{ns:file}}:Eixemplo.jpg|Piet_de_foto_1 |
1042 | | -{{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', |
1043 | 1042 | 'wikieditor-toolbar-tool-newline' => 'Nueva linia', |
1044 | 1043 | 'wikieditor-toolbar-tool-table' => 'Tabla', |
1045 | 1044 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -1144,8 +1143,8 @@ |
1145 | 1144 | 'wikieditor-toolbar-help-content-olist-syntax' => "# Elemento d'a lista<br /># Elemento d'a lista", |
1146 | 1145 | 'wikieditor-toolbar-help-content-olist-result' => "<ol><li>Elemento d'a lista</li><li>Elemento d'a lista</li></ol>", |
1147 | 1146 | 'wikieditor-toolbar-help-content-file-description' => 'Fichero incorporato', |
1148 | | - 'wikieditor-toolbar-help-content-file-syntax' => "[[{{ns:file}}:Eixemplo.png|thumb|Texto descriptivo d'a imachen]]", |
1149 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 1147 | + 'wikieditor-toolbar-help-content-file-syntax' => "[[$1:Eixemplo.png|thumb|Texto descriptivo d'a imachen]]", |
| 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>", |
1150 | 1149 | 'wikieditor-toolbar-help-content-reference-description' => 'Referencia', |
1151 | 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>', |
1152 | 1151 | 'wikieditor-toolbar-help-content-reference-result' => "Texto d'a pachina.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -1326,8 +1325,8 @@ |
1327 | 1326 | 'wikieditor-toolbar-tool-subscript-example' => 'نص الحرف السفلي', |
1328 | 1327 | 'wikieditor-toolbar-group-insert' => 'أدرج', |
1329 | 1328 | 'wikieditor-toolbar-tool-gallery' => 'معرض صور', |
1330 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|تعليق1 |
1331 | | -{{ns:file}}:Example.jpg|تعليق2', |
| 1329 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|تعليق1 |
| 1330 | +$1:Example.jpg|تعليق2', |
1332 | 1331 | 'wikieditor-toolbar-tool-newline' => 'سطر جديد', |
1333 | 1332 | 'wikieditor-toolbar-tool-table' => 'جدولًا', |
1334 | 1333 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -1433,8 +1432,8 @@ |
1434 | 1433 | 'wikieditor-toolbar-help-content-olist-syntax' => '# عنصر قائمة<br /># عنصر قائمة', |
1435 | 1434 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>عنصر قائمة</li><li>عنصر قائمة</li></ol>', |
1436 | 1435 | 'wikieditor-toolbar-help-content-file-description' => 'ملف مضمّن', |
1437 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|تصغير|نص الشرح]]', |
1438 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 1436 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|تصغير|نص الشرح]]', |
| 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>", |
1439 | 1438 | 'wikieditor-toolbar-help-content-reference-description' => 'مرجع', |
1440 | 1439 | 'wikieditor-toolbar-help-content-reference-syntax' => 'نص الصفحة.<ref name="test">[http://www.example.org نص الوصلة]، نص إضافي.</ref>', |
1441 | 1440 | 'wikieditor-toolbar-help-content-reference-result' => "نص الصفحة.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -1593,8 +1592,8 @@ |
1594 | 1593 | 'wikieditor-toolbar-tool-subscript-example' => 'Subscript text', |
1595 | 1594 | 'wikieditor-toolbar-group-insert' => 'حط', |
1596 | 1595 | 'wikieditor-toolbar-tool-gallery' => 'جاليرى الصور', |
1597 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Caption1 |
1598 | | -{{ns:file}}:Example.jpg|Caption2', |
| 1596 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Caption1 |
| 1597 | +$1:Example.jpg|Caption2', |
1599 | 1598 | 'wikieditor-toolbar-tool-newline' => 'سطر جديد', |
1600 | 1599 | 'wikieditor-toolbar-tool-table' => 'جدول', |
1601 | 1600 | 'wikieditor-toolbar-tool-table-example-old' => '! header 1 |
— | — | @@ -1691,8 +1690,8 @@ |
1692 | 1691 | 'wikieditor-toolbar-help-content-olist-syntax' => '# List item<br /># List item', |
1693 | 1692 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>List item</li><li>List item</li></ol>', |
1694 | 1693 | 'wikieditor-toolbar-help-content-file-description' => 'Embedded file', |
1695 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Caption text]]', |
1696 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 1694 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Caption text]]', |
| 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>", |
1697 | 1696 | 'wikieditor-toolbar-help-content-reference-description' => 'مرجع', |
1698 | 1697 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Page text.<ref name="test">[http://www.example.org Link text], additional text.</ref>', |
1699 | 1698 | 'wikieditor-toolbar-help-content-reference-result' => "Page text.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -1825,8 +1824,8 @@ |
1826 | 1825 | 'wikieditor-toolbar-tool-subscript-example' => 'Юлдан аҫтағы текст', |
1827 | 1826 | 'wikieditor-toolbar-group-insert' => 'Өҫтәү', |
1828 | 1827 | 'wikieditor-toolbar-tool-gallery' => 'Рәсемдәр йыйынтығы', |
1829 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Миҫал.jpg|Тасуирлама1 |
1830 | | -{{ns:file}}:Миҫал.jpg|Тасуирлама2', |
| 1828 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Миҫал.jpg|Тасуирлама1 |
| 1829 | +$1:Миҫал.jpg|Тасуирлама2', |
1831 | 1830 | 'wikieditor-toolbar-tool-newline' => 'Яңы юл', |
1832 | 1831 | 'wikieditor-toolbar-tool-table' => 'Таблица', |
1833 | 1832 | 'wikieditor-toolbar-tool-table-example-old' => '! башлыҡ 1 |
— | — | @@ -1931,8 +1930,8 @@ |
1932 | 1931 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Исемлектең бер юлы<br /># Исемлектең бер юлы', |
1933 | 1932 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Исемлектең бер юлы</li><li>Исемлектең бер юлы</li></ol>', |
1934 | 1933 | 'wikieditor-toolbar-help-content-file-description' => 'Индерелгән файл', |
1935 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Миҫал.png|thumb|Аңлатма]]', |
1936 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 1934 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Миҫал.png|thumb|Аңлатма]]', |
| 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>", |
1937 | 1936 | 'wikieditor-toolbar-help-content-reference-description' => 'Төшөрмә', |
1938 | 1937 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Биттәге текст.<ref name="test">[http://www.example.org Һылтанма тексты], өҫтәмә текст.</ref>', |
1939 | 1938 | 'wikieditor-toolbar-help-content-reference-result' => "Биттәге текст.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -2065,8 +2064,8 @@ |
2066 | 2065 | 'wikieditor-toolbar-tool-subscript-example' => 'Падрадковы тэкст', |
2067 | 2066 | 'wikieditor-toolbar-group-insert' => 'Уставіць', |
2068 | 2067 | 'wikieditor-toolbar-tool-gallery' => 'Галерэя выяў', |
2069 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Апісанне1 |
2070 | | -{{ns:file}}:Example.jpg|Апісанне2', |
| 2068 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Апісанне1 |
| 2069 | +$1:Example.jpg|Апісанне2', |
2071 | 2070 | 'wikieditor-toolbar-tool-newline' => 'Новы радок', |
2072 | 2071 | 'wikieditor-toolbar-tool-table' => 'Табліца', |
2073 | 2072 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -2172,8 +2171,8 @@ |
2173 | 2172 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Элемент пераліка<br /># Элемент пераліка', |
2174 | 2173 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Элемент пераліка</li><li>Элемент пераліка</li></ol>', |
2175 | 2174 | 'wikieditor-toolbar-help-content-file-description' => 'Файл у тэксце', |
2176 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Апісанне файла]]', |
2177 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 2175 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Апісанне файла]]', |
| 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>", |
2178 | 2177 | 'wikieditor-toolbar-help-content-reference-description' => 'Зноска', |
2179 | 2178 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Тэкст на старонцы.<ref name="test">[http://www.example.org Тэкст спасылкі], астатні тэкст зноскі.</ref>', |
2180 | 2179 | 'wikieditor-toolbar-help-content-reference-result' => "Тэкст на старонцы.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -2302,8 +2301,8 @@ |
2303 | 2302 | 'wikieditor-toolbar-tool-subscript-example' => 'Падрадковы тэкст', |
2304 | 2303 | 'wikieditor-toolbar-group-insert' => 'Уставіць', |
2305 | 2304 | 'wikieditor-toolbar-tool-gallery' => 'Галерэя выяваў', |
2306 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Прыклад.jpg|Подпіс1 |
2307 | | -{{ns:file}}:Прыклад.jpg|Подпіс2', |
| 2305 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Прыклад.jpg|Подпіс1 |
| 2306 | +$1:Прыклад.jpg|Подпіс2', |
2308 | 2307 | 'wikieditor-toolbar-tool-newline' => 'Новы радок', |
2309 | 2308 | 'wikieditor-toolbar-tool-table' => 'Табліца', |
2310 | 2309 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -2409,8 +2408,8 @@ |
2410 | 2409 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Элемэнт сьпісу<br /># Элемэнт сьпісу', |
2411 | 2410 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Элемэнт сьпісу</li><li>Элемэнт сьпісу</li></ol>', |
2412 | 2411 | 'wikieditor-toolbar-help-content-file-description' => 'Укладзены файл', |
2413 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Прыклад.png|thumb|Тэкст подпісу]]', |
2414 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 2412 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Прыклад.png|thumb|Тэкст подпісу]]', |
| 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>", |
2415 | 2414 | 'wikieditor-toolbar-help-content-reference-description' => 'Зноска', |
2416 | 2415 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Тэкст старонкі.<ref name="test">[http://www.example.org Тэкст спасылкі], дадатковы тэкст.</ref>', |
2417 | 2416 | 'wikieditor-toolbar-help-content-reference-result' => "Тэкст старонкі.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -2534,8 +2533,8 @@ |
2535 | 2534 | 'wikieditor-toolbar-tool-subscript-example' => 'Текст в долен индекс', |
2536 | 2535 | 'wikieditor-toolbar-group-insert' => 'Вмъкване', |
2537 | 2536 | 'wikieditor-toolbar-tool-gallery' => 'Галерия', |
2538 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Описание1 |
2539 | | -{{ns:file}}:Example.jpg|Описание2', |
| 2537 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Описание1 |
| 2538 | +$1:Example.jpg|Описание2', |
2540 | 2539 | 'wikieditor-toolbar-tool-newline' => 'Нов ред', |
2541 | 2540 | 'wikieditor-toolbar-tool-table' => 'Таблица', |
2542 | 2541 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -2640,8 +2639,8 @@ |
2641 | 2640 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Елемент от списъка<br /># Елемент от списъка', |
2642 | 2641 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Елемент от списъка</li><li>Елемент от списъка</li></ol>', |
2643 | 2642 | 'wikieditor-toolbar-help-content-file-description' => 'Вграден файл', |
2644 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|мини|Текст под картинката]]', |
2645 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 2643 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|мини|Текст под картинката]]', |
| 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>", |
2646 | 2645 | 'wikieditor-toolbar-help-content-reference-description' => 'Източник', |
2647 | 2646 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Текст на страницата.<ref name="test">[http://www.example.org Текст на външната препратка], допълнителен текст.</ref>', |
2648 | 2647 | 'wikieditor-toolbar-help-content-reference-result' => "Текст на страницата.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -2751,8 +2750,8 @@ |
2752 | 2751 | 'wikieditor-toolbar-tool-subscript-example' => 'Naskah subscript', |
2753 | 2752 | 'wikieditor-toolbar-group-insert' => 'Masukakan', |
2754 | 2753 | 'wikieditor-toolbar-tool-gallery' => 'Ruang gambar', |
2755 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Cuntuh.jpg|Judul1 |
2756 | | -{{ns:file}}:Cuntuh.jpg|Judul2', |
| 2754 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Cuntuh.jpg|Judul1 |
| 2755 | +$1:Cuntuh.jpg|Judul2', |
2757 | 2756 | 'wikieditor-toolbar-tool-newline' => 'Baris hanyar', |
2758 | 2757 | 'wikieditor-toolbar-tool-table' => 'Tabel', |
2759 | 2758 | 'wikieditor-toolbar-tool-table-example-old' => ' - |
— | — | @@ -2851,7 +2850,7 @@ |
2852 | 2851 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Isi daptar<br /># Isi daptar', |
2853 | 2852 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Isi daptar</li><li>Isi daptar</li></ol>', |
2854 | 2853 | 'wikieditor-toolbar-help-content-file-description' => 'Maktub-akan barakas', |
2855 | | - '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]]', |
2856 | 2855 | 'wikieditor-toolbar-help-content-reference-description' => 'Rujukan', |
2857 | 2856 | 'wikieditor-toolbar-help-content-reference-result' => "Naskah tungkaran.<sup><a href='#'>[1]</a></sup>", |
2858 | 2857 | 'wikieditor-toolbar-help-content-rereference-result' => "Naskah tungkaran.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -2970,8 +2969,8 @@ |
2971 | 2970 | 'wikieditor-toolbar-tool-subscript-example' => 'সাবস্ক্রিপ্ট লেখা', |
2972 | 2971 | 'wikieditor-toolbar-group-insert' => 'যোগ করো', |
2973 | 2972 | 'wikieditor-toolbar-tool-gallery' => 'ছবির গ্যালারী', |
2974 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|ক্যাপশন১ |
2975 | | -{{ns:file}}:Example.jpg|ক্যাপশন২', |
| 2973 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|ক্যাপশন১ |
| 2974 | +$1:Example.jpg|ক্যাপশন২', |
2976 | 2975 | 'wikieditor-toolbar-tool-newline' => 'নতুন লাইন', |
2977 | 2976 | 'wikieditor-toolbar-tool-table' => 'ছক', |
2978 | 2977 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -3077,7 +3076,7 @@ |
3078 | 3077 | 'wikieditor-toolbar-help-content-olist-syntax' => '# তালিকা আইটেম <br /># তালিকা আইটেম', |
3079 | 3078 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>তালিকা আইটেম</li><li>তালিকা আইটেম</li></ol>', |
3080 | 3079 | 'wikieditor-toolbar-help-content-file-description' => 'এম্বেডেড ফাইল', |
3081 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|ক্যাপশন লেখ]]', |
| 3080 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|ক্যাপশন লেখ]]', |
3082 | 3081 | 'wikieditor-toolbar-help-content-reference-description' => 'তথ্যসূত্র', |
3083 | 3082 | 'wikieditor-toolbar-help-content-reference-result' => "পাতার লেখা।<sup><a href='#'>[1]</a></sup>", |
3084 | 3083 | 'wikieditor-toolbar-help-content-rereference-description' => 'একই তথ্যসূত্রের একাধিক ব্যবহার', |
— | — | @@ -3198,8 +3197,8 @@ |
3199 | 3198 | 'wikieditor-toolbar-tool-subscript-example' => 'সাবস্ক্রিপ্ট মেয়েক', |
3200 | 3199 | 'wikieditor-toolbar-group-insert' => 'বরা', |
3201 | 3200 | 'wikieditor-toolbar-tool-gallery' => 'ফটকর গ্যালারী', |
3202 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|ক্যাপশন১ |
3203 | | -{{ns:file}}:Example.jpg|ক্যাপশন২', |
| 3201 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|ক্যাপশন১ |
| 3202 | +$1:Example.jpg|ক্যাপশন২', |
3204 | 3203 | 'wikieditor-toolbar-tool-newline' => 'নুৱা পারেঙ', |
3205 | 3204 | 'wikieditor-toolbar-tool-table' => 'ছক', |
3206 | 3205 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -3305,8 +3304,8 @@ |
3306 | 3305 | 'wikieditor-toolbar-help-content-olist-syntax' => '# পারেঙর মেথেল<br /># পারেঙর মেথেল', |
3307 | 3306 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>পারেঙর মেথেল</li><li>পারেঙর মেথেল</li></ol>', |
3308 | 3307 | 'wikieditor-toolbar-help-content-file-description' => 'এম্বেডেড ফাইলগ', |
3309 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|ক্যাপশনর মেয়ক]]', |
3310 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 3308 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|ক্যাপশনর মেয়ক]]', |
| 3309 | + '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>", |
3311 | 3310 | 'wikieditor-toolbar-help-content-reference-description' => 'রেফারেন্সহানি', |
3312 | 3311 | 'wikieditor-toolbar-help-content-reference-syntax' => 'পাতার ইকাহানি।<ref name="test">[http://www.example.org মিলাপর মেয়েকগি], আরতাউ মেয়েক।</ref>', |
3313 | 3312 | 'wikieditor-toolbar-help-content-reference-result' => "পাতার ইকা।<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -3435,8 +3434,8 @@ |
3436 | 3435 | 'wikieditor-toolbar-tool-subscript-example' => 'Testenn e feur', |
3437 | 3436 | 'wikieditor-toolbar-group-insert' => "Ensoc'hañ", |
3438 | 3437 | 'wikieditor-toolbar-tool-gallery' => 'Skeudennaoueg', |
3439 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Skouer.jpg|Deskrivadur1 |
3440 | | -{{ns:file}}:Skouer.jpg|Deskrivadur2', |
| 3438 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Skouer.jpg|Deskrivadur1 |
| 3439 | +$1:Skouer.jpg|Deskrivadur2', |
3441 | 3440 | 'wikieditor-toolbar-tool-newline' => 'Linenn nevez', |
3442 | 3441 | 'wikieditor-toolbar-tool-table' => 'Taolenn', |
3443 | 3442 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -3542,8 +3541,8 @@ |
3543 | 3542 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Elfenn eus ar roll<br /># Elfenn eus ar roll', |
3544 | 3543 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Elfenn eus ar roll</li><li>Elfenn eus ar roll</li></ol>', |
3545 | 3544 | 'wikieditor-toolbar-help-content-file-description' => 'Restr enframmet', |
3546 | | - 'wikieditor-toolbar-help-content-file-syntax' => "[[{{ns:file}}:Example.png|thumb|Alc'hwez ar skeudenn]]", |
3547 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 3545 | + 'wikieditor-toolbar-help-content-file-syntax' => "[[$1:Example.png|thumb|Alc'hwez ar skeudenn]]", |
| 3546 | + '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>", |
3548 | 3547 | 'wikieditor-toolbar-help-content-reference-description' => 'Daveenn', |
3549 | 3548 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Testenn ar bajenn.<ref name="test">[http://www.example.org testenn al liamm], testenn ouzhpenn.</ref>', |
3550 | 3549 | 'wikieditor-toolbar-help-content-reference-result' => "Testenn ar bajenn.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -3670,8 +3669,8 @@ |
3671 | 3670 | 'wikieditor-toolbar-tool-subscript-example' => 'Tekst indeksa', |
3672 | 3671 | 'wikieditor-toolbar-group-insert' => 'Ubaci', |
3673 | 3672 | 'wikieditor-toolbar-tool-gallery' => 'Galerija slika', |
3674 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Opis1 |
3675 | | -{{ns:file}}:Example.jpg|Opis2', |
| 3673 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Opis1 |
| 3674 | +$1:Example.jpg|Opis2', |
3676 | 3675 | 'wikieditor-toolbar-tool-newline' => 'Nova linija', |
3677 | 3676 | 'wikieditor-toolbar-tool-table' => 'Tabela', |
3678 | 3677 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -3777,8 +3776,8 @@ |
3778 | 3777 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Stavka spiska<br /># Stavka spiska', |
3779 | 3778 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Stavka spiska</li><li>Stavka spiska</li></ol>', |
3780 | 3779 | 'wikieditor-toolbar-help-content-file-description' => 'Uklopljena datoteka', |
3781 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Opis slike]]', |
3782 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 3780 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Opis slike]]', |
| 3781 | + '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>", |
3783 | 3782 | 'wikieditor-toolbar-help-content-reference-description' => 'Reference', |
3784 | 3783 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Tekst stranice.<ref name="test">[http://www.example.org Tekst linka], dodatni tekst.</ref>', |
3785 | 3784 | 'wikieditor-toolbar-help-content-reference-result' => "Tekst stranice.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -3908,8 +3907,8 @@ |
3909 | 3908 | 'wikieditor-toolbar-tool-subscript-example' => 'Text en subíndex', |
3910 | 3909 | 'wikieditor-toolbar-group-insert' => 'Insereix', |
3911 | 3910 | 'wikieditor-toolbar-tool-gallery' => "Galeria d'imatges", |
3912 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Peu1 |
3913 | | -{{ns:file}}:Example.jpg|Peu2', |
| 3911 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Peu1 |
| 3912 | +$1:Example.jpg|Peu2', |
3914 | 3913 | 'wikieditor-toolbar-tool-newline' => 'Nova línia', |
3915 | 3914 | 'wikieditor-toolbar-tool-table' => 'Taula', |
3916 | 3915 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -4015,8 +4014,8 @@ |
4016 | 4015 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Element de la llista<br /># Element de la llista', |
4017 | 4016 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Element de la llista</li><li>Element de la llista</li></ol>', |
4018 | 4017 | 'wikieditor-toolbar-help-content-file-description' => 'Fitxer incrustat', |
4019 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Text descriptiu de la imatge]]', |
4020 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 4018 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Text descriptiu de la imatge]]', |
| 4019 | + '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>", |
4021 | 4020 | 'wikieditor-toolbar-help-content-reference-description' => 'Referències', |
4022 | 4021 | '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>', |
4023 | 4022 | 'wikieditor-toolbar-help-content-reference-result' => "Text de la pàgina.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -4171,8 +4170,8 @@ |
4172 | 4171 | 'wikieditor-toolbar-tool-subscript-example' => 'دەقی ژێرنووس', |
4173 | 4172 | 'wikieditor-toolbar-group-insert' => 'تێخستن', |
4174 | 4173 | 'wikieditor-toolbar-tool-gallery' => 'گالێری وێنە', |
4175 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:نموونە.jpg|شرۆڤەی ١ |
4176 | | -{{ns:file}}:نموونە.jpg|شرۆڤەی ٢', |
| 4174 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:نموونە.jpg|شرۆڤەی ١ |
| 4175 | +$1:نموونە.jpg|شرۆڤەی ٢', |
4177 | 4176 | 'wikieditor-toolbar-tool-newline' => 'ھێڵی نوێ', |
4178 | 4177 | 'wikieditor-toolbar-tool-table' => 'خشتە', |
4179 | 4178 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -4275,8 +4274,8 @@ |
4276 | 4275 | 'wikieditor-toolbar-help-content-olist-syntax' => '# ئەندامی لیست<br /># ئەندامی لیست', |
4277 | 4276 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>ئەندامی لیست</li><li>ئەندامی لیست</li></ol>', |
4278 | 4277 | 'wikieditor-toolbar-help-content-file-description' => 'پەڕگەی نێودەق', |
4279 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:نموونە.png|وێنۆک|دەقی شرۆڤە]]', |
4280 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 4278 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:نموونە.png|وێنۆک|دەقی شرۆڤە]]', |
| 4279 | + '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>", |
4281 | 4280 | 'wikieditor-toolbar-help-content-reference-description' => 'سەرچاوە', |
4282 | 4281 | 'wikieditor-toolbar-help-content-reference-syntax' => 'دەقی پەڕە.<ref name="test">[http://www.example.org دەقی بەستەر], دەقی زیادی.</ref>', |
4283 | 4282 | 'wikieditor-toolbar-help-content-reference-result' => "دەقی پەڕە.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -4412,8 +4411,8 @@ |
4413 | 4412 | 'wikieditor-toolbar-tool-subscript-example' => 'Text v dolním indexu', |
4414 | 4413 | 'wikieditor-toolbar-group-insert' => 'Vložit', |
4415 | 4414 | 'wikieditor-toolbar-tool-gallery' => 'Galerie obrázků', |
4416 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Příklad.jpg|Titulek 1 |
4417 | | -{{ns:file}}:Příklad.jpg|Titulek 2', |
| 4415 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Příklad.jpg|Titulek 1 |
| 4416 | +$1:Příklad.jpg|Titulek 2', |
4418 | 4417 | 'wikieditor-toolbar-tool-newline' => 'Nový řádek', |
4419 | 4418 | 'wikieditor-toolbar-tool-table' => 'Tabulka', |
4420 | 4419 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -4519,8 +4518,8 @@ |
4520 | 4519 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Položka seznamu<br /># Položka seznamu', |
4521 | 4520 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Položka seznamu</li><li>Položka seznamu</li></ol>', |
4522 | 4521 | 'wikieditor-toolbar-help-content-file-description' => 'Vložení souboru', |
4523 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Příklad.png|thumb|Text titulku]]', |
4524 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 4522 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Příklad.png|thumb|Text titulku]]', |
| 4523 | + '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>", |
4525 | 4524 | 'wikieditor-toolbar-help-content-reference-description' => 'Poznámka', |
4526 | 4525 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Text stránky.<ref name="test">[http://www.example.org Text odkazu], další text.</ref>', |
4527 | 4526 | 'wikieditor-toolbar-help-content-reference-result' => "Text stránky.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -4749,8 +4748,8 @@ |
4750 | 4749 | 'wikieditor-toolbar-tool-subscript-example' => 'Ysgrifennwch isysgrif fan hyn', |
4751 | 4750 | 'wikieditor-toolbar-group-insert' => 'Mewnosod', |
4752 | 4751 | 'wikieditor-toolbar-tool-gallery' => 'Oriel lluniau', |
4753 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Enghraifft.jpg|Disgrifiad1 |
4754 | | -{{ns:file}}:Enghraifft.jpg|Disgrifiad2', |
| 4752 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Enghraifft.jpg|Disgrifiad1 |
| 4753 | +$1:Enghraifft.jpg|Disgrifiad2', |
4755 | 4754 | 'wikieditor-toolbar-tool-newline' => 'Llinell newydd', |
4756 | 4755 | 'wikieditor-toolbar-tool-table' => 'Tabl', |
4757 | 4756 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -4856,8 +4855,8 @@ |
4857 | 4856 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Eitem ar y rhestr<br /># Eitem ar y rhestr', |
4858 | 4857 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Eitem ar y rhestr</li><li>Eitem ar y rhestr</li></ol>', |
4859 | 4858 | 'wikieditor-toolbar-help-content-file-description' => 'Ffeil mewnosodol', |
4860 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Enghraifft.png|thumb|Disgrifiad]]', |
4861 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 4859 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Enghraifft.png|thumb|Disgrifiad]]', |
| 4860 | + '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>", |
4862 | 4861 | 'wikieditor-toolbar-help-content-reference-description' => 'Troednodyn', |
4863 | 4862 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Testun y dudalen.<ref name="test">[http://www.enghraifft.org ysgrifen y cyswllt], ysgrifen ychwanegol.</ref>', |
4864 | 4863 | 'wikieditor-toolbar-help-content-reference-result' => 'Testun y dudalen.', |
— | — | @@ -4985,8 +4984,8 @@ |
4986 | 4985 | 'wikieditor-toolbar-tool-subscript-example' => 'Sænket skrift', |
4987 | 4986 | 'wikieditor-toolbar-group-insert' => 'Indsæt', |
4988 | 4987 | 'wikieditor-toolbar-tool-gallery' => 'Billedgalleri', |
4989 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Eksempel.jpg|Billedtekst1 |
4990 | | -{{ns:file}}:Eksempel.jpg|Billedtekst2', |
| 4988 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Eksempel.jpg|Billedtekst1 |
| 4989 | +$1:Eksempel.jpg|Billedtekst2', |
4991 | 4990 | 'wikieditor-toolbar-tool-newline' => 'Ny linje', |
4992 | 4991 | 'wikieditor-toolbar-tool-table' => 'Tabel', |
4993 | 4992 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -5090,8 +5089,8 @@ |
5091 | 5090 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Listeelement<br /># Listeelement', |
5092 | 5091 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Listeelement</li><li>Listeelement</li></ol>', |
5093 | 5092 | 'wikieditor-toolbar-help-content-file-description' => 'Indlejret fil', |
5094 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Billedtekst]]', |
5095 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 5093 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Billedtekst]]', |
| 5094 | + '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>", |
5096 | 5095 | 'wikieditor-toolbar-help-content-reference-description' => 'Fodnote', |
5097 | 5096 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Sidetekst.<ref name="test">[http://www.example.org Henvisningstekst], yderligere tekst.</ref>', |
5098 | 5097 | 'wikieditor-toolbar-help-content-reference-result' => "Sidetekst.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -5225,8 +5224,8 @@ |
5226 | 5225 | 'wikieditor-toolbar-tool-subscript-example' => 'Tiefgestellter Text', |
5227 | 5226 | 'wikieditor-toolbar-group-insert' => 'Einfügen', |
5228 | 5227 | 'wikieditor-toolbar-tool-gallery' => 'Bildergalerie', |
5229 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Beispiel.jpg|Beschreibung1 |
5230 | | -{{ns:file}}:Beispiel.jpg|Beschreibung2', |
| 5228 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Beispiel.jpg|Beschreibung1 |
| 5229 | +$1:Beispiel.jpg|Beschreibung2', |
5231 | 5230 | 'wikieditor-toolbar-tool-newline' => 'Neue Zeile', |
5232 | 5231 | 'wikieditor-toolbar-tool-table' => 'Tabelle', |
5233 | 5232 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -5332,8 +5331,8 @@ |
5333 | 5332 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Listeneintrag<br /># Listeneintrag', |
5334 | 5333 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Listeneintrag</li><li>Listeneintrag</li></ol>', |
5335 | 5334 | 'wikieditor-toolbar-help-content-file-description' => 'Eingebettete Datei', |
5336 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Beispiel.png|thumb|Beschreibung]]', |
5337 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 5335 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Beispiel.png|thumb|Beschreibung]]', |
| 5336 | + '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>", |
5338 | 5337 | 'wikieditor-toolbar-help-content-reference-description' => 'Beleg', |
5339 | 5338 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Seitentext.<ref name="test">[http://www.beispiel.org Linktext], zusätzlicher Text.</ref>', |
5340 | 5339 | 'wikieditor-toolbar-help-content-reference-result' => "Seitentext.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -5475,8 +5474,8 @@ |
5476 | 5475 | 'wikieditor-toolbar-tool-subscript-example' => 'metnê simgeya cêrıni', |
5477 | 5476 | 'wikieditor-toolbar-group-insert' => 'têare ker', |
5478 | 5477 | 'wikieditor-toolbar-tool-gallery' => 'galeriya resmi', |
5479 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:misal.jpg|nuşteyê resmi1 |
5480 | | -{{ns:file}}:misal.jpg|nuşteyê resmi2', |
| 5478 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:misal.jpg|nuşteyê resmi1 |
| 5479 | +$1:misal.jpg|nuşteyê resmi2', |
5481 | 5480 | 'wikieditor-toolbar-tool-newline' => 'satıro newe', |
5482 | 5481 | 'wikieditor-toolbar-tool-table' => 'Tablo', |
5483 | 5482 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -5579,8 +5578,8 @@ |
5580 | 5579 | 'wikieditor-toolbar-help-content-olist-syntax' => '# unsurê listeyi<br /># unsurê listeyi', |
5581 | 5580 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>unsurê listeyi</li><li>unsurê listeyi</li></ol>', |
5582 | 5581 | 'wikieditor-toolbar-help-content-file-description' => 'dosyaya weradaye/nımıte', |
5583 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Nuşteyê resîmî]]', |
5584 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 5582 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Nuşteyê resîmî]]', |
| 5583 | + '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>", |
5585 | 5584 | 'wikieditor-toolbar-help-content-reference-description' => 'çıme/referans', |
5586 | 5585 | 'wikieditor-toolbar-help-content-reference-syntax' => 'metnê peli.<ref name="tesel kerdış/cerebnayiş">[http://www.misal.org metnê gıreyi], zeylê metni.</ref>', |
5587 | 5586 | 'wikieditor-toolbar-help-content-reference-result' => "metnê peli.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -5706,8 +5705,8 @@ |
5707 | 5706 | 'wikieditor-toolbar-tool-subscript-example' => 'Dłymoko stajony tekst', |
5708 | 5707 | 'wikieditor-toolbar-group-insert' => 'Zasunuś', |
5709 | 5708 | 'wikieditor-toolbar-tool-gallery' => 'Wobrazowa galerija', |
5710 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Pśikład.jpg|Pópisanje1 |
5711 | | -{{ns:file}}:Pśikład.jpg|Pópisanje2', |
| 5709 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Pśikład.jpg|Pópisanje1 |
| 5710 | +$1:Pśikład.jpg|Pópisanje2', |
5712 | 5711 | 'wikieditor-toolbar-tool-newline' => 'Nowa smužka', |
5713 | 5712 | 'wikieditor-toolbar-tool-table' => 'Tabela', |
5714 | 5713 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -5813,8 +5812,8 @@ |
5814 | 5813 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Lisćinowy zapisk<br /># Lisćinowy zapisk', |
5815 | 5814 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Lisćinowy zapisk</li><li>Lisćinowy zapisk</li></ol>', |
5816 | 5815 | 'wikieditor-toolbar-help-content-file-description' => 'Zasajźona dataja', |
5817 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Wobrazowe pópisanje]]', |
5818 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 5816 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Wobrazowe pópisanje]]', |
| 5817 | + '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>", |
5819 | 5818 | 'wikieditor-toolbar-help-content-reference-description' => 'Referenca', |
5820 | 5819 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Tekst boka.<ref name="test">[http://www.example.org Tekst wótkaza], pśidatny tekst.</ref>', |
5821 | 5820 | 'wikieditor-toolbar-help-content-reference-result' => "Tekst boka.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -5946,8 +5945,8 @@ |
5947 | 5946 | 'wikieditor-toolbar-tool-subscript-example' => 'Κείμενο-δείκτης', |
5948 | 5947 | 'wikieditor-toolbar-group-insert' => 'Εισαγωγή', |
5949 | 5948 | 'wikieditor-toolbar-tool-gallery' => 'Συλλογή εικόνων', |
5950 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Λεζάντα1 |
5951 | | -{{ns:file}}:Example.jpg|Λεζάντα2', |
| 5949 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Λεζάντα1 |
| 5950 | +$1:Example.jpg|Λεζάντα2', |
5952 | 5951 | 'wikieditor-toolbar-tool-newline' => 'Νέα γραμμή', |
5953 | 5952 | 'wikieditor-toolbar-tool-table' => 'Πίνακας', |
5954 | 5953 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -6053,8 +6052,8 @@ |
6054 | 6053 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Αντικείμενο της λίστας<br /># Αντικείμενο της λίστας', |
6055 | 6054 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Στοιχείο λίστας</li><li>Στοιχείο λίστας</li></ol>', |
6056 | 6055 | 'wikieditor-toolbar-help-content-file-description' => 'Ενσωματωμένο αρχείο', |
6057 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Κείμενο περιγραφής]]', |
6058 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 6056 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Κείμενο περιγραφής]]', |
| 6057 | + '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>", |
6059 | 6058 | 'wikieditor-toolbar-help-content-reference-description' => 'Παραπομπή', |
6060 | 6059 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Κείμενο σελίδας.<ref name="test">[http://www.example.org Κείμενο συνδέσμου], επιπλέον κείμενο.</ref>', |
6061 | 6060 | 'wikieditor-toolbar-help-content-reference-result' => "Κείμενο σελίδας.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -6185,8 +6184,8 @@ |
6186 | 6185 | 'wikieditor-toolbar-tool-subscript-example' => 'Malalta skribo', |
6187 | 6186 | 'wikieditor-toolbar-group-insert' => 'Enmeti', |
6188 | 6187 | 'wikieditor-toolbar-tool-gallery' => 'Bilda galerio', |
6189 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Ekzemplo.jpg|Teksto1 pri dosiero |
6190 | | -{{ns:file}}:Ekzemplo.jpg|Teksto2 pri dosiero', |
| 6188 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Ekzemplo.jpg|Teksto1 pri dosiero |
| 6189 | +$1:Ekzemplo.jpg|Teksto2 pri dosiero', |
6191 | 6190 | 'wikieditor-toolbar-tool-newline' => 'Nova linio', |
6192 | 6191 | 'wikieditor-toolbar-tool-table' => 'Tabelo', |
6193 | 6192 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -6292,8 +6291,8 @@ |
6293 | 6292 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Listero<br /># Listero', |
6294 | 6293 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Listero</li><li>Listero</li></ol>', |
6295 | 6294 | 'wikieditor-toolbar-help-content-file-description' => 'Enmetita dosiero', |
6296 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Teksto pri dosiero]]', |
6297 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 6295 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Teksto pri dosiero]]', |
| 6296 | + '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>", |
6298 | 6297 | 'wikieditor-toolbar-help-content-reference-description' => 'Piednoto', |
6299 | 6298 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Paĝa teksto.<ref name="test">[http://www.ekzemplo.org Ligila teksto], aldona teksto.</ref>', |
6300 | 6299 | 'wikieditor-toolbar-help-content-reference-result' => "Paĝa teksto.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -6427,8 +6426,8 @@ |
6428 | 6427 | 'wikieditor-toolbar-tool-subscript-example' => 'Texto suscrito', |
6429 | 6428 | 'wikieditor-toolbar-group-insert' => 'Insertar', |
6430 | 6429 | 'wikieditor-toolbar-tool-gallery' => 'Galería de fotos', |
6431 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Ejemplo.jpg|Descripción1 |
6432 | | -{{ns:file}}:Ejemplo.jpg|Descripción2', |
| 6430 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Ejemplo.jpg|Descripción1 |
| 6431 | +$1:Ejemplo.jpg|Descripción2', |
6433 | 6432 | 'wikieditor-toolbar-tool-newline' => 'Nueva línea', |
6434 | 6433 | 'wikieditor-toolbar-tool-table' => 'Tabla', |
6435 | 6434 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -6534,8 +6533,8 @@ |
6535 | 6534 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Listar item<br /># Listar item', |
6536 | 6535 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Listar item</li><li>Listar item</li></ol>', |
6537 | 6536 | 'wikieditor-toolbar-help-content-file-description' => 'Archivo empotrado', |
6538 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Ejemplo.png|thumb|Leyenda de texto]]', |
6539 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 6537 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Ejemplo.png|thumb|Leyenda de texto]]', |
| 6538 | + '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>", |
6540 | 6539 | 'wikieditor-toolbar-help-content-reference-description' => 'Referencia', |
6541 | 6540 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Texto de página.<ref name="test">[http://www.example.org Texto de vínculo], texto adicional.</ref>', |
6542 | 6541 | 'wikieditor-toolbar-help-content-reference-result' => "Texto de página.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -6658,8 +6657,8 @@ |
6659 | 6658 | 'wikieditor-toolbar-tool-subscript-example' => 'Tekst allindeksina', |
6660 | 6659 | 'wikieditor-toolbar-group-insert' => 'Lisa', |
6661 | 6660 | 'wikieditor-toolbar-tool-gallery' => 'Pildigalerii', |
6662 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Näide.jpg|Pildiallkiri1 |
6663 | | -{{ns:file}}:Näide.jpg|Pildiallkiri2', |
| 6661 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Näide.jpg|Pildiallkiri1 |
| 6662 | +$1:Näide.jpg|Pildiallkiri2', |
6664 | 6663 | 'wikieditor-toolbar-tool-newline' => 'Uus rida', |
6665 | 6664 | 'wikieditor-toolbar-tool-table' => 'Tabel', |
6666 | 6665 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -6763,8 +6762,8 @@ |
6764 | 6763 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Loendi liige<br /># Loendi liige', |
6765 | 6764 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Loendi liige</li><li>Loendi liige</li></ol>', |
6766 | 6765 | 'wikieditor-toolbar-help-content-file-description' => 'Manusfail', |
6767 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Näide.png|thumb|Pildiallkiri.]]', |
6768 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 6766 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Näide.png|thumb|Pildiallkiri.]]', |
| 6767 | + '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>", |
6769 | 6768 | 'wikieditor-toolbar-help-content-reference-description' => 'Viide', |
6770 | 6769 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Lehekülje tekst.<ref name="test">[http://www.näide.ee Lingi tekst], täiendav tekst.</ref>', |
6771 | 6770 | 'wikieditor-toolbar-help-content-reference-result' => "Lehekülje tekst.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -6893,8 +6892,8 @@ |
6894 | 6893 | 'wikieditor-toolbar-tool-subscript-example' => 'Azpiindizearen testua', |
6895 | 6894 | 'wikieditor-toolbar-group-insert' => 'Txertatu', |
6896 | 6895 | 'wikieditor-toolbar-tool-gallery' => 'Irudi galeria', |
6897 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Adibidea.jpg|Oina1 |
6898 | | -{{ns:file}}:Adibidea.jpg|Oina2', |
| 6896 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Adibidea.jpg|Oina1 |
| 6897 | +$1:Adibidea.jpg|Oina2', |
6899 | 6898 | 'wikieditor-toolbar-tool-newline' => 'Lerro berria', |
6900 | 6899 | 'wikieditor-toolbar-tool-table' => 'Taula', |
6901 | 6900 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -7000,8 +6999,8 @@ |
7001 | 7000 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Zerrendako elementua<br /># Zerrendako elementua', |
7002 | 7001 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Zerrendako elementua</li><li>Zerrendako elementua</li></ol>', |
7003 | 7002 | 'wikieditor-toolbar-help-content-file-description' => 'Fitxategia txertatu', |
7004 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Adibidea.png|thumb|Irudi oina]]', |
7005 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 7003 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Adibidea.png|thumb|Irudi oina]]', |
| 7004 | + '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>", |
7006 | 7005 | 'wikieditor-toolbar-help-content-reference-description' => 'Erreferentzia', |
7007 | 7006 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Orrialdearen testua.<ref name="proba">[http://www.adibidea.org Loturaren testua], testu gehigarria.</ref>', |
7008 | 7007 | 'wikieditor-toolbar-help-content-reference-result' => "Orrialdearen testua.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -7128,8 +7127,8 @@ |
7129 | 7128 | 'wikieditor-toolbar-tool-subscript-example' => 'متن زیرنویس', |
7130 | 7129 | 'wikieditor-toolbar-group-insert' => 'اضافه کردن', |
7131 | 7130 | 'wikieditor-toolbar-tool-gallery' => 'نگارخانهٔ تصویر', |
7132 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:مثال.jpg|عنوان ۱ |
7133 | | -{{ns:file}}:مثال.jpg|عنوان ۲', |
| 7131 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:مثال.jpg|عنوان ۱ |
| 7132 | +$1:مثال.jpg|عنوان ۲', |
7134 | 7133 | 'wikieditor-toolbar-tool-newline' => 'خط جدید', |
7135 | 7134 | 'wikieditor-toolbar-tool-table' => 'جدول', |
7136 | 7135 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -7235,8 +7234,8 @@ |
7236 | 7235 | 'wikieditor-toolbar-help-content-olist-syntax' => '# مورد فهرست<br /># مورد فهرست', |
7237 | 7236 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>مورد فهرست</li><li>مورد فهرست</li></ol>', |
7238 | 7237 | 'wikieditor-toolbar-help-content-file-description' => 'پرونده جاسازیشده', |
7239 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:مثال.png|thumb|متن عنوان]]', |
7240 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 7238 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:مثال.png|thumb|متن عنوان]]', |
| 7239 | + '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>", |
7241 | 7240 | 'wikieditor-toolbar-help-content-reference-description' => 'منبع', |
7242 | 7241 | 'wikieditor-toolbar-help-content-reference-syntax' => 'متن صفحه.<ref name="test">[http://www.example.org متن پیوند]، متن اضافی.</ref>', |
7243 | 7242 | 'wikieditor-toolbar-help-content-reference-result' => "متن صفحه.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -7366,8 +7365,8 @@ |
7367 | 7366 | 'wikieditor-toolbar-tool-subscript-example' => 'Alaindeksin teksti', |
7368 | 7367 | 'wikieditor-toolbar-group-insert' => 'Lisää', |
7369 | 7368 | 'wikieditor-toolbar-tool-gallery' => 'Kuvagalleria', |
7370 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Esimerkki.jpg|Kuvateksti1 |
7371 | | -{{ns:file}}:Esimerkki.jpg|Kuvateksti2', |
| 7369 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Esimerkki.jpg|Kuvateksti1 |
| 7370 | +$1:Esimerkki.jpg|Kuvateksti2', |
7372 | 7371 | 'wikieditor-toolbar-tool-newline' => 'Uusi rivi', |
7373 | 7372 | 'wikieditor-toolbar-tool-table' => 'Taulukko', |
7374 | 7373 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -7473,8 +7472,8 @@ |
7474 | 7473 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Luettelon kohta<br /># Luettelon kohta', |
7475 | 7474 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Luettelon kohta</li><li>Luettelon kohta</li></ol>', |
7476 | 7475 | 'wikieditor-toolbar-help-content-file-description' => 'Tallennettu tiedosto', |
7477 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Esimerkki.png|thumb|Kuvateksti]]', |
7478 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 7476 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Esimerkki.png|thumb|Kuvateksti]]', |
| 7477 | + '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>", |
7479 | 7478 | 'wikieditor-toolbar-help-content-reference-description' => 'Viite', |
7480 | 7479 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Sivun teksti.<ref name="testi">[http://www.example.org Linkin teksti], lisäteksti.</ref>', |
7481 | 7480 | 'wikieditor-toolbar-help-content-reference-result' => "Sivun teksti.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -7605,8 +7604,8 @@ |
7606 | 7605 | 'wikieditor-toolbar-tool-subscript-example' => 'Texte en indice', |
7607 | 7606 | 'wikieditor-toolbar-group-insert' => 'Insérer', |
7608 | 7607 | 'wikieditor-toolbar-tool-gallery' => 'Galerie de fichiers', |
7609 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Exemple.jpg|Description 1 |
7610 | | -{{ns:file}}:Exemple.jpg|Description 2', |
| 7608 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Exemple.jpg|Description 1 |
| 7609 | +$1:Exemple.jpg|Description 2', |
7611 | 7610 | 'wikieditor-toolbar-tool-newline' => 'Saut de ligne', |
7612 | 7611 | 'wikieditor-toolbar-tool-table' => 'Tableau', |
7613 | 7612 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -7712,8 +7711,8 @@ |
7713 | 7712 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Élément de la liste<br /># Élément de la liste', |
7714 | 7713 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Élément de la liste</li><li>Élément de la liste</li></ol>', |
7715 | 7714 | 'wikieditor-toolbar-help-content-file-description' => 'Fichier inséré', |
7716 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Exemple.png|thumb|Texte affiché]]', |
7717 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 7715 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Exemple.png|thumb|Texte affiché]]', |
| 7716 | + '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>", |
7718 | 7717 | 'wikieditor-toolbar-help-content-reference-description' => 'Référence', |
7719 | 7718 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Texte de la page.<ref name="test">[http://www.example.org texte du lien], texte additionnel.</ref>', |
7720 | 7719 | 'wikieditor-toolbar-help-content-reference-result' => "Texte de la page <sup><a href='#'>[1]</a></sup>", |
— | — | @@ -7839,8 +7838,8 @@ |
7840 | 7839 | 'wikieditor-toolbar-tool-subscript-example' => 'Tèxto en segno', |
7841 | 7840 | 'wikieditor-toolbar-group-insert' => 'Entrebetar', |
7842 | 7841 | 'wikieditor-toolbar-tool-gallery' => 'Galerie d’émâges', |
7843 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Ègzemplo.jpg|Dèscripcion 1 |
7844 | | -{{ns:file}}:Ègzemplo.jpg|Dèscripcion 2', |
| 7842 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Ègzemplo.jpg|Dèscripcion 1 |
| 7843 | +$1:Ègzemplo.jpg|Dèscripcion 2', |
7845 | 7844 | 'wikieditor-toolbar-tool-newline' => 'Sôt de legne', |
7846 | 7845 | 'wikieditor-toolbar-tool-table' => 'Tablô', |
7847 | 7846 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -7946,8 +7945,8 @@ |
7947 | 7946 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Èlèment de la lista<br /># Èlèment de la lista', |
7948 | 7947 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Èlèment de la lista</li><li>Èlèment de la lista</li></ol>', |
7949 | 7948 | 'wikieditor-toolbar-help-content-file-description' => 'Fichiér entrebetâ', |
7950 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Ègzemplo.png|thumb|Tèxto montrâ]]', |
7951 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 7949 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Ègzemplo.png|thumb|Tèxto montrâ]]', |
| 7950 | + '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>", |
7952 | 7951 | 'wikieditor-toolbar-help-content-reference-description' => 'Refèrence', |
7953 | 7952 | '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>', |
7954 | 7953 | 'wikieditor-toolbar-help-content-reference-result' => "Tèxto de la pâge.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -8100,8 +8099,8 @@ |
8101 | 8100 | 'wikieditor-toolbar-tool-subscript-example' => 'Teacsa fo-sgrìobhte', |
8102 | 8101 | 'wikieditor-toolbar-group-insert' => 'Cuir a-steach', |
8103 | 8102 | 'wikieditor-toolbar-tool-gallery' => 'Gailearaidh nan dealbh', |
8104 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Ballsampaill.jpg|Mìneachadh an deilbh1 |
8105 | | -{{ns:file}}:Ballsampaill.jpg|Mìneachadh an deilbh2', |
| 8103 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Ballsampaill.jpg|Mìneachadh an deilbh1 |
| 8104 | +$1:Ballsampaill.jpg|Mìneachadh an deilbh2', |
8106 | 8105 | 'wikieditor-toolbar-tool-newline' => 'Loidhne ùr', |
8107 | 8106 | 'wikieditor-toolbar-tool-table' => 'Clàr', |
8108 | 8107 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -8204,8 +8203,8 @@ |
8205 | 8204 | 'wikieditor-toolbar-help-content-olist-syntax' => '* Ball na liosta<br />* Ball na liosta', |
8206 | 8205 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Ball na liosta</li><li>Ball na liosta</li></ol>', |
8207 | 8206 | 'wikieditor-toolbar-help-content-file-description' => 'Embedded file', |
8208 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Ballsampaill.png|thumb|Mìneachadh an deilbh]]', |
8209 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 8207 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Ballsampaill.png|thumb|Mìneachadh an deilbh]]', |
| 8208 | + '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>", |
8210 | 8209 | 'wikieditor-toolbar-help-content-reference-description' => 'Iomradh', |
8211 | 8210 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Teacsa na duilleige.<ref name="test">[http://www.ballsampaill.org Teacsa a\' cheangail], teacsa eile.</ref>', |
8212 | 8211 | 'wikieditor-toolbar-help-content-reference-result' => "Teacsa na duilleige.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -8331,8 +8330,8 @@ |
8332 | 8331 | 'wikieditor-toolbar-tool-subscript-example' => 'Texto de subíndice', |
8333 | 8332 | 'wikieditor-toolbar-group-insert' => 'Inserir', |
8334 | 8333 | 'wikieditor-toolbar-tool-gallery' => 'Galería de imaxes', |
8335 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Pé_de_foto_1 |
8336 | | -{{ns:file}}:Example.jpg|Pé_de_foto_2', |
| 8334 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Pé_de_foto_1 |
| 8335 | +$1:Example.jpg|Pé_de_foto_2', |
8337 | 8336 | 'wikieditor-toolbar-tool-newline' => 'Nova liña', |
8338 | 8337 | 'wikieditor-toolbar-tool-table' => 'Táboa', |
8339 | 8338 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -8438,8 +8437,8 @@ |
8439 | 8438 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Elemento da lista<br /># Elemento da lista', |
8440 | 8439 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Elemento da lista</li><li>Elemento da lista</li></ol>', |
8441 | 8440 | 'wikieditor-toolbar-help-content-file-description' => 'Ficheiro embelecido', |
8442 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Pé de foto.]]', |
8443 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 8441 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Pé de foto.]]', |
| 8442 | + '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>", |
8444 | 8443 | 'wikieditor-toolbar-help-content-reference-description' => 'Referencia', |
8445 | 8444 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Texto da páxina<ref name="test">[http://www.example.org Texto da ligazón], texto adicional.</ref>.', |
8446 | 8445 | 'wikieditor-toolbar-help-content-reference-result' => "Texto da páxina<sup><a href='#'>[1]</a></sup>.", |
— | — | @@ -8656,8 +8655,8 @@ |
8657 | 8656 | 'wikieditor-toolbar-tool-subscript-example' => 'Untergsetzte Tekscht', |
8658 | 8657 | 'wikieditor-toolbar-group-insert' => 'Yyfiege', |
8659 | 8658 | 'wikieditor-toolbar-tool-gallery' => 'Bildergallerii', |
8660 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Byschpil.jpg|Bschriftig1 |
8661 | | -{{ns:file}}:Byschpil.jpg|Bschriftig2', |
| 8659 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Byschpil.jpg|Bschriftig1 |
| 8660 | +$1:Byschpil.jpg|Bschriftig2', |
8662 | 8661 | 'wikieditor-toolbar-tool-newline' => 'Neji Zeile', |
8663 | 8662 | 'wikieditor-toolbar-tool-table' => 'Tabälle', |
8664 | 8663 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -8763,8 +8762,8 @@ |
8764 | 8763 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Lischtepunkt<br /># Lischtepunkt', |
8765 | 8764 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Lischtepunkt</li><li>Lischtepunkt</li></ol>', |
8766 | 8765 | 'wikieditor-toolbar-help-content-file-description' => 'Yygfiegti Datei', |
8767 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Bildbschriftig]]', |
8768 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 8766 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Bildbschriftig]]', |
| 8767 | + '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>", |
8769 | 8768 | 'wikieditor-toolbar-help-content-reference-description' => 'Quälle', |
8770 | 8769 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Sytetekscht.<ref name="test">[http://www.byschpil.org Gleichtekscht], zuesätzlige Tekscht.</ref>', |
8771 | 8770 | 'wikieditor-toolbar-help-content-reference-result' => "Sytetekscht.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -8886,8 +8885,8 @@ |
8887 | 8886 | 'wikieditor-toolbar-tool-subscript-example' => 'Teks fo-screeuit', |
8888 | 8887 | 'wikieditor-toolbar-group-insert' => 'Cur stiagh', |
8889 | 8888 | 'wikieditor-toolbar-tool-gallery' => 'Galleree jallooyn', |
8890 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Fo-heidyl1 |
8891 | | -{{ns:file}}:Example.jpg|Fo-heidyl2', |
| 8889 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Fo-heidyl1 |
| 8890 | +$1:Example.jpg|Fo-heidyl2', |
8892 | 8891 | 'wikieditor-toolbar-tool-newline' => 'Linney noa', |
8893 | 8892 | 'wikieditor-toolbar-tool-table' => 'Taabyl', |
8894 | 8893 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -8993,8 +8992,8 @@ |
8994 | 8993 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Meer rolley<br /># Meer rolley', |
8995 | 8994 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Meer rolley</li><li>Meer rolley</li></ol>', |
8996 | 8995 | 'wikieditor-toolbar-help-content-file-description' => 'Coadan jingit', |
8997 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Teks fo-heidyl]]', |
8998 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 8996 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Teks fo-heidyl]]', |
| 8997 | + '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>", |
8999 | 8998 | 'wikieditor-toolbar-help-content-reference-description' => 'Imraa', |
9000 | 8999 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Teks duillag.<ref name="test">[http://www.example.org Teks kiangley], tooilley teks.</ref>', |
9001 | 9000 | 'wikieditor-toolbar-help-content-reference-result' => "Teks duillag.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -9136,8 +9135,8 @@ |
9137 | 9136 | 'wikieditor-toolbar-tool-subscript-example' => 'טקסט מונמך', |
9138 | 9137 | 'wikieditor-toolbar-group-insert' => 'הוספה', |
9139 | 9138 | 'wikieditor-toolbar-tool-gallery' => 'גלריית תמונות', |
9140 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:דוגמה.jpg|כותרת 1 |
9141 | | -{{ns:file}}:דוגמה.jpg|כותרת 2', |
| 9139 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:דוגמה.jpg|כותרת 1 |
| 9140 | +$1:דוגמה.jpg|כותרת 2', |
9142 | 9141 | 'wikieditor-toolbar-tool-newline' => 'שורה חדשה', |
9143 | 9142 | 'wikieditor-toolbar-tool-table' => 'טבלה', |
9144 | 9143 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -9243,8 +9242,8 @@ |
9244 | 9243 | 'wikieditor-toolbar-help-content-olist-syntax' => '# פריט רשימה<br /># פריט רשימה', |
9245 | 9244 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>פריט רשימה</li><li>פריט רשימה</li></ol>', |
9246 | 9245 | 'wikieditor-toolbar-help-content-file-description' => 'קובץ המוצג בדף', |
9247 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|טקסט הכותרת]]', |
9248 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 9246 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|טקסט הכותרת]]', |
| 9247 | + '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>", |
9249 | 9248 | 'wikieditor-toolbar-help-content-reference-description' => 'הערת שוליים', |
9250 | 9249 | 'wikieditor-toolbar-help-content-reference-syntax' => 'טקסט הדף.<ref name="test">[http://www.example.org טקסט הקישור], טקסט נוסף.</ref>', |
9251 | 9250 | 'wikieditor-toolbar-help-content-reference-result' => "טקסט הדף.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -9379,8 +9378,8 @@ |
9380 | 9379 | 'wikieditor-toolbar-tool-subscript-example' => 'Tekst indeksa', |
9381 | 9380 | 'wikieditor-toolbar-group-insert' => 'Uloži', |
9382 | 9381 | 'wikieditor-toolbar-tool-gallery' => 'Galerija slika', |
9383 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Primjer.jpg|Opis1 |
9384 | | -{{ns:file}}:Primjer.jpg|Opis2', |
| 9382 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Primjer.jpg|Opis1 |
| 9383 | +$1:Primjer.jpg|Opis2', |
9385 | 9384 | 'wikieditor-toolbar-tool-newline' => 'Novi redak', |
9386 | 9385 | 'wikieditor-toolbar-tool-table' => 'Tablica', |
9387 | 9386 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -9486,8 +9485,8 @@ |
9487 | 9486 | 'wikieditor-toolbar-help-content-olist-syntax' => '# stavka popisa<br /># stavka popisa', |
9488 | 9487 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>stavka popisa</li><li>stavka popisa</li></ol>', |
9489 | 9488 | 'wikieditor-toolbar-help-content-file-description' => 'Uložena datoteka', |
9490 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Tekst opisa]]', |
9491 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 9489 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Tekst opisa]]', |
| 9490 | + '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>", |
9492 | 9491 | 'wikieditor-toolbar-help-content-reference-description' => 'Bilješke', |
9493 | 9492 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Tekst stranice.<ref name="test">[http://www.primjer.org Tekst poveznice], dodatni tekst.</ref>', |
9494 | 9493 | 'wikieditor-toolbar-help-content-reference-result' => "Tekst stranice.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -9613,8 +9612,8 @@ |
9614 | 9613 | 'wikieditor-toolbar-tool-subscript-example' => 'Hłuboko stajeny tekst', |
9615 | 9614 | 'wikieditor-toolbar-group-insert' => 'Zasunyć', |
9616 | 9615 | 'wikieditor-toolbar-tool-gallery' => 'Wobrazowa galerija', |
9617 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Popis1 |
9618 | | -{{ns:file}}:Example.jpg|Popis2', |
| 9616 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Popis1 |
| 9617 | +$1:Example.jpg|Popis2', |
9619 | 9618 | 'wikieditor-toolbar-tool-newline' => 'Nowa linka', |
9620 | 9619 | 'wikieditor-toolbar-tool-table' => 'Tabela', |
9621 | 9620 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -9720,8 +9719,8 @@ |
9721 | 9720 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Lisćinowy zapisk<br /># Lisćinowy zapisk', |
9722 | 9721 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Lisćinowy zapisk</li><li>Lisćinowy zapisk</li></ol>', |
9723 | 9722 | 'wikieditor-toolbar-help-content-file-description' => 'Zasadźena dataja', |
9724 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Tekst wobrazoweho popisa]]', |
9725 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 9723 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Tekst wobrazoweho popisa]]', |
| 9724 | + '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>", |
9726 | 9725 | 'wikieditor-toolbar-help-content-reference-description' => 'Referenca', |
9727 | 9726 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Tekst strony.<ref name="test">[http://www.example.org tekst wotkaza], přidatny tekst.</ref>', |
9728 | 9727 | 'wikieditor-toolbar-help-content-reference-result' => "Tekst strony.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -9851,8 +9850,8 @@ |
9852 | 9851 | 'wikieditor-toolbar-tool-subscript-example' => 'Alsó index szövege', |
9853 | 9852 | 'wikieditor-toolbar-group-insert' => 'Beszúrás', |
9854 | 9853 | 'wikieditor-toolbar-tool-gallery' => 'Képgaléria', |
9855 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Példa.jpg|képaláírás1 |
9856 | | -{{ns:file}}:Példa.jpg|képaláírás2', |
| 9854 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Példa.jpg|képaláírás1 |
| 9855 | +$1:Példa.jpg|képaláírás2', |
9857 | 9856 | 'wikieditor-toolbar-tool-newline' => 'Új sor', |
9858 | 9857 | 'wikieditor-toolbar-tool-table' => 'Táblázat', |
9859 | 9858 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -9958,8 +9957,8 @@ |
9959 | 9958 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Listaelem<br /># Listaelem', |
9960 | 9959 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Listaelem</li><li>Listaelem</li></ol>', |
9961 | 9960 | 'wikieditor-toolbar-help-content-file-description' => 'Beszúrt fájl', |
9962 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|bélyegkép|Képaláírás]]', |
9963 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 9961 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|bélyegkép|Képaláírás]]', |
| 9962 | + '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>", |
9964 | 9963 | 'wikieditor-toolbar-help-content-reference-description' => 'Forráshivatkozás', |
9965 | 9964 | '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>', |
9966 | 9965 | 'wikieditor-toolbar-help-content-reference-result' => "Lap szövege.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -10071,8 +10070,8 @@ |
10072 | 10071 | 'wikieditor-toolbar-tool-subscript-example' => 'Ենթատողային տեքստ', |
10073 | 10072 | 'wikieditor-toolbar-group-insert' => 'Ավելացնել', |
10074 | 10073 | 'wikieditor-toolbar-tool-gallery' => 'Պատկերասրահ', |
10075 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Նկարագրություն1 |
10076 | | -{{ns:file}}:Example.jpg|Նկարագրություն2', |
| 10074 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Նկարագրություն1 |
| 10075 | +$1:Example.jpg|Նկարագրություն2', |
10077 | 10076 | 'wikieditor-toolbar-tool-newline' => 'Նոր տող', |
10078 | 10077 | 'wikieditor-toolbar-tool-table' => 'Աղյուսակ', |
10079 | 10078 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -10174,8 +10173,8 @@ |
10175 | 10174 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Ցանկի տարր<br /># Ցանկի տարր', |
10176 | 10175 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Ցանկի տարր</li><li>Ցանկի տարր</li></ol>', |
10177 | 10176 | 'wikieditor-toolbar-help-content-file-description' => 'Ներդրված ֆայլ', |
10178 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Նկարագրություն]]', |
10179 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 10177 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Նկարագրություն]]', |
| 10178 | + '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>", |
10180 | 10179 | 'wikieditor-toolbar-help-content-reference-description' => 'Ծանոթագրություն', |
10181 | 10180 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Տեքստ էջում<ref name="test">[http://www.example.org Հղման տեքստ], հավելյալ տեքստ։</ref>։', |
10182 | 10181 | 'wikieditor-toolbar-help-content-reference-result' => "Տեքստ էջում<sup><a href='#'>[1]</a></sup>։", |
— | — | @@ -10301,8 +10300,8 @@ |
10302 | 10301 | 'wikieditor-toolbar-tool-subscript-example' => 'Texto in subscripto', |
10303 | 10302 | 'wikieditor-toolbar-group-insert' => 'Inserer', |
10304 | 10303 | 'wikieditor-toolbar-tool-gallery' => 'Galeria de imagines', |
10305 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Exemplo.jpg|Legenda1 |
10306 | | -{{ns:file}}:Exemplo.jpg|Legenda2', |
| 10304 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Exemplo.jpg|Legenda1 |
| 10305 | +$1:Exemplo.jpg|Legenda2', |
10307 | 10306 | 'wikieditor-toolbar-tool-newline' => 'Nove linea', |
10308 | 10307 | 'wikieditor-toolbar-tool-table' => 'Tabella', |
10309 | 10308 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -10408,8 +10407,8 @@ |
10409 | 10408 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Elemento del lista<br /># Elemento del lista', |
10410 | 10409 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Elemento del lista</li><li>Elemento del lista</li></ol>', |
10411 | 10410 | 'wikieditor-toolbar-help-content-file-description' => 'File incastrate', |
10412 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Exemplo.png|thumb|Texto del legenda]]', |
10413 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 10411 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Exemplo.png|thumb|Texto del legenda]]', |
| 10412 | + '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>", |
10414 | 10413 | 'wikieditor-toolbar-help-content-reference-description' => 'Referentia', |
10415 | 10414 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Texto del pagina.<ref name="test">[http://www.example.org Texto del ligamine], texto additional.</ref>', |
10416 | 10415 | 'wikieditor-toolbar-help-content-reference-result' => "Texto del pagina.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -10539,8 +10538,8 @@ |
10540 | 10539 | 'wikieditor-toolbar-tool-subscript-example' => 'Teks subscript', |
10541 | 10540 | 'wikieditor-toolbar-group-insert' => 'Masukkan', |
10542 | 10541 | 'wikieditor-toolbar-tool-gallery' => 'Galeri gambar', |
10543 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Contoh.jpg|Judul1 |
10544 | | -{{ns:file}}:Contoh.jpg|Judul2', |
| 10542 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Contoh.jpg|Judul1 |
| 10543 | +$1:Contoh.jpg|Judul2', |
10545 | 10544 | 'wikieditor-toolbar-tool-newline' => 'Baris baru', |
10546 | 10545 | 'wikieditor-toolbar-tool-table' => 'Tabel', |
10547 | 10546 | 'wikieditor-toolbar-tool-table-example-old' => ' - |
— | — | @@ -10646,8 +10645,8 @@ |
10647 | 10646 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Isi daftar<br /># Isi daftar', |
10648 | 10647 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Isi daftar</li><li>Isi daftar</li></ol>', |
10649 | 10648 | 'wikieditor-toolbar-help-content-file-description' => 'Menyisipkan berkas', |
10650 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Contoh.png|thumb|Teks judul gambar]]', |
10651 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 10649 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Contoh.png|thumb|Teks judul gambar]]', |
| 10650 | + '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>", |
10652 | 10651 | 'wikieditor-toolbar-help-content-reference-description' => 'Referensi', |
10653 | 10652 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Teks halaman.<ref name="test">[http://www.contoh.org Teks pranala], teks tambahan.</ref>', |
10654 | 10653 | 'wikieditor-toolbar-help-content-reference-result' => "Teks halaman.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -11049,8 +11048,8 @@ |
11050 | 11049 | 'wikieditor-toolbar-tool-subscript-example' => 'Testo in pedice', |
11051 | 11050 | 'wikieditor-toolbar-group-insert' => 'Inserisci', |
11052 | 11051 | 'wikieditor-toolbar-tool-gallery' => 'Galleria di immagini', |
11053 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Esempio.jpg|Didascalia1 |
11054 | | -{{ns:file}}:Esempio.jpg|Didascalia2', |
| 11052 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Esempio.jpg|Didascalia1 |
| 11053 | +$1:Esempio.jpg|Didascalia2', |
11055 | 11054 | 'wikieditor-toolbar-tool-newline' => 'Nuova riga', |
11056 | 11055 | 'wikieditor-toolbar-tool-table' => 'Tabella', |
11057 | 11056 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -11156,8 +11155,8 @@ |
11157 | 11156 | 'wikieditor-toolbar-help-content-olist-syntax' => "# Elemento dell'elenco<br /># Elemento dell'elenco", |
11158 | 11157 | 'wikieditor-toolbar-help-content-olist-result' => "<ol><li>Elemento dell'elenco</li><li>Elemento dell'elenco</li></ol>", |
11159 | 11158 | 'wikieditor-toolbar-help-content-file-description' => 'File incorporato', |
11160 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Esempio.png|thumb|Testo della didascalia]]', |
11161 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 11159 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Esempio.png|thumb|Testo della didascalia]]', |
| 11160 | + '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>", |
11162 | 11161 | 'wikieditor-toolbar-help-content-reference-description' => 'Nota', |
11163 | 11162 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Testo della pagina.<ref name="test">[http://www.example.org Testo del collegamento], testo aggiuntivo.</ref>', |
11164 | 11163 | 'wikieditor-toolbar-help-content-reference-result' => "Testo della pagina.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -11286,8 +11285,8 @@ |
11287 | 11286 | 'wikieditor-toolbar-tool-subscript-example' => '下付き文字', |
11288 | 11287 | 'wikieditor-toolbar-group-insert' => '挿入', |
11289 | 11288 | 'wikieditor-toolbar-tool-gallery' => '画像ギャラリー', |
11290 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|キャプション1 |
11291 | | -{{ns:file}}:Example.jpg|キャプション2', |
| 11289 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|キャプション1 |
| 11290 | +$1:Example.jpg|キャプション2', |
11292 | 11291 | 'wikieditor-toolbar-tool-newline' => '改行', |
11293 | 11292 | 'wikieditor-toolbar-tool-table' => '表', |
11294 | 11293 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -11393,8 +11392,8 @@ |
11394 | 11393 | 'wikieditor-toolbar-help-content-olist-syntax' => '# 箇条書き項目<br /># 箇条書き項目', |
11395 | 11394 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>箇条書き項目</li><li>箇条書き項目</li></ol>', |
11396 | 11395 | 'wikieditor-toolbar-help-content-file-description' => '埋め込みファイル', |
11397 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|キャプション]]', |
11398 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 11396 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|キャプション]]', |
| 11397 | + '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>", |
11399 | 11398 | 'wikieditor-toolbar-help-content-reference-description' => '注釈', |
11400 | 11399 | 'wikieditor-toolbar-help-content-reference-syntax' => 'ページ本文<ref name="test">[http://www.example.org リンクタイトル]、追加テキスト</ref>。', |
11401 | 11400 | 'wikieditor-toolbar-help-content-reference-result' => "ページ本文<sup><a href='#'>[1]</a></sup>。", |
— | — | @@ -11538,8 +11537,8 @@ |
11539 | 11538 | 'wikieditor-toolbar-tool-subscript-example' => 'ქვეხაზური ტექსტი', |
11540 | 11539 | 'wikieditor-toolbar-group-insert' => 'ჩასმა', |
11541 | 11540 | 'wikieditor-toolbar-tool-gallery' => 'გამოსახულებათა გალერეა', |
11542 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|აღწერა1 |
11543 | | -{{ns:file}}:Example.jpg|აღწერა2', |
| 11541 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|აღწერა1 |
| 11542 | +$1:Example.jpg|აღწერა2', |
11544 | 11543 | 'wikieditor-toolbar-tool-newline' => 'ახალი ხაზი', |
11545 | 11544 | 'wikieditor-toolbar-tool-table' => 'ტაბულა', |
11546 | 11545 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -11645,8 +11644,8 @@ |
11646 | 11645 | 'wikieditor-toolbar-help-content-olist-syntax' => '#სიის ელემენტი<br /># სიის ელემენტი', |
11647 | 11646 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>სიის ელემენტი</li><li>სიის ელემენტი</li></ol>', |
11648 | 11647 | 'wikieditor-toolbar-help-content-file-description' => 'ჩასმული ფაილი', |
11649 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|წარწერის ტექსტი]]', |
11650 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 11648 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|წარწერის ტექსტი]]', |
| 11649 | + '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>", |
11651 | 11650 | 'wikieditor-toolbar-help-content-reference-description' => 'მინიშნება', |
11652 | 11651 | 'wikieditor-toolbar-help-content-reference-syntax' => 'გვერდის ტექსტი<ref name="test">[http://www.example.org ბმულის ტექსტი], დამატებითი ტექსტი.</ref>.', |
11653 | 11652 | 'wikieditor-toolbar-help-content-reference-result' => "გვერდის ტექსტი<sup><a href='#'>[1]</a></sup>.", |
— | — | @@ -11768,9 +11767,9 @@ |
11769 | 11768 | 'wikieditor-toolbar-tool-subscript-example' => 'ឃ្លាជាសន្ទស្សន៍', |
11770 | 11769 | 'wikieditor-toolbar-group-insert' => 'បញ្ជូល', |
11771 | 11770 | 'wikieditor-toolbar-tool-gallery' => 'វិចិត្រសាលរូបភាព', |
11772 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:ឧទាហរណ៍.jpg|ចំនងជើងក្រោមរូបភាព១ |
| 11771 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:ឧទាហរណ៍.jpg|ចំនងជើងក្រោមរូបភាព១ |
11773 | 11772 | |
11774 | | -{{ns:file}}:ឧទាហរណ៍.jpg|ចំនងជើងក្រោមរូបភាព២', |
| 11773 | +$1:ឧទាហរណ៍.jpg|ចំនងជើងក្រោមរូបភាព២', |
11775 | 11774 | 'wikieditor-toolbar-tool-newline' => 'ចុះបន្ទាត់', |
11776 | 11775 | 'wikieditor-toolbar-tool-table' => 'តារាង', |
11777 | 11776 | 'wikieditor-toolbar-tool-table-example-old' => '↓ - |
— | — | @@ -11869,8 +11868,8 @@ |
11870 | 11869 | 'wikieditor-toolbar-help-content-olist-syntax' => '# ធាតុរបស់បញ្ជី<br /># ធាតុរបស់បញ្ចី', |
11871 | 11870 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>ធាតុរបស់បញ្ជី</li><li>ធាតុរបស់បញ្ជី</li></ol>', |
11872 | 11871 | 'wikieditor-toolbar-help-content-file-description' => 'រូបភាពបង្កប់', |
11873 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:ឧទាហរណ៍.png|thumb|កូនចំនងជើងក្រោមរូបភាព]]', |
11874 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 11872 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:ឧទាហរណ៍.png|thumb|កូនចំនងជើងក្រោមរូបភាព]]', |
| 11873 | + '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>", |
11875 | 11874 | 'wikieditor-toolbar-help-content-reference-description' => 'ឯកសារយោង', |
11876 | 11875 | 'wikieditor-toolbar-help-content-reference-syntax' => 'អត្ថបទទំព័រ.<ref name="test">[http://www.example.org តំណភ្ជាប់], អក្សរបន្ថែម.</ref>', |
11877 | 11876 | 'wikieditor-toolbar-help-content-reference-result' => "អត្ថបទទំព័រ.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -12023,8 +12022,8 @@ |
12024 | 12023 | 'wikieditor-toolbar-tool-subscript-example' => '아래 첨자', |
12025 | 12024 | 'wikieditor-toolbar-group-insert' => '추가', |
12026 | 12025 | 'wikieditor-toolbar-tool-gallery' => '화랑', |
12027 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|설명1 |
12028 | | -{{ns:file}}:Example.jpg|설명2', |
| 12026 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|설명1 |
| 12027 | +$1:Example.jpg|설명2', |
12029 | 12028 | 'wikieditor-toolbar-tool-newline' => '새 줄', |
12030 | 12029 | 'wikieditor-toolbar-tool-table' => '표', |
12031 | 12030 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -12131,8 +12130,8 @@ |
12132 | 12131 | 'wikieditor-toolbar-help-content-olist-syntax' => '# 목록 항목<br /># 목록 항목', |
12133 | 12132 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>목록 항목</li><li>목록 항목</li></ol>', |
12134 | 12133 | 'wikieditor-toolbar-help-content-file-description' => '파일 넣기', |
12135 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|그림 설명]]', |
12136 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 12134 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|그림 설명]]', |
| 12135 | + '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>", |
12137 | 12136 | 'wikieditor-toolbar-help-content-reference-description' => '출처', |
12138 | 12137 | 'wikieditor-toolbar-help-content-reference-syntax' => '문서 내용.<ref name="test">[http://www.example.org 링크 제목], 기타 설명.</ref>', |
12139 | 12138 | 'wikieditor-toolbar-help-content-reference-result' => "문서 내용.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -12255,8 +12254,8 @@ |
12256 | 12255 | 'wikieditor-toolbar-tool-subscript-example' => 'Тизгин тюбю текст', |
12257 | 12256 | 'wikieditor-toolbar-group-insert' => 'Къош', |
12258 | 12257 | 'wikieditor-toolbar-tool-gallery' => 'Суратланы галереясы', |
12259 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Юлгю.jpg|Ангылатыу1 |
12260 | | -{{ns:file}}:Юлгю.jpg|Ангылатыу2', |
| 12258 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Юлгю.jpg|Ангылатыу1 |
| 12259 | +$1:Юлгю.jpg|Ангылатыу2', |
12261 | 12260 | 'wikieditor-toolbar-tool-newline' => 'Джангы тизгин', |
12262 | 12261 | 'wikieditor-toolbar-tool-table' => 'Таблица', |
12263 | 12262 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -12362,9 +12361,9 @@ |
12363 | 12362 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Списокну элементи<br /># Списокну элементи', |
12364 | 12363 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Списокну элементи</li><li>Списокну элементи</li></ol>', |
12365 | 12364 | 'wikieditor-toolbar-help-content-file-description' => 'Эндирилген файл', |
12366 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Ачыкълау текст]]', |
| 12365 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Ачыкълау текст]]', |
12367 | 12366 | 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title=' |
12368 | | -Ачыкълау текст' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/UsabilityInitiative/images/wikiEditor/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> |
| 12367 | +Ачыкълау текст' 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> |
12369 | 12368 | Ачыкълау текст</div></div>", |
12370 | 12369 | 'wikieditor-toolbar-help-content-reference-description' => 'Белги', |
12371 | 12370 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Бетни тексти.<ref name="test">[http://www.example.org Джибериуню тексти], къошакъ текст.</ref>', |
— | — | @@ -12477,8 +12476,8 @@ |
12478 | 12477 | 'wikieditor-toolbar-tool-subscript-example' => 'En deef, noh unge, jeschtallte Schreff jeschrevve', |
12479 | 12478 | 'wikieditor-toolbar-group-insert' => 'Erin donn:', |
12480 | 12479 | 'wikieditor-toolbar-tool-gallery' => 'Jallerih met Belldscher', |
12481 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Beishpell.jpg|eezte Beld-Täx |
12482 | | -{{ns:file}}:Beishpell.jpg|zweijte Beld-Täx', |
| 12480 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Beishpell.jpg|eezte Beld-Täx |
| 12481 | +$1:Beishpell.jpg|zweijte Beld-Täx', |
12483 | 12482 | 'wikieditor-toolbar-tool-newline' => 'Neu Reih', |
12484 | 12483 | 'wikieditor-toolbar-tool-table' => 'Tabäll', |
12485 | 12484 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -12579,8 +12578,8 @@ |
12580 | 12579 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Enndraach en de Leß<br /># Enndraach en de Leß', |
12581 | 12580 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Enndraach en de Leß</li><li>Enndraach en de Leß</li></ol>', |
12582 | 12581 | 'wikieditor-toolbar-help-content-file-description' => 'Enjeföösch Dattei', |
12583 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Beld_Ungerschreff]]', |
12584 | | - '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/UsabilityInitiative/images/wikiEditor/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>', |
| 12582 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Beld_Ungerschreff]]', |
| 12583 | + '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>', |
12585 | 12584 | 'wikieditor-toolbar-help-content-reference-description' => 'Fohßnoht', |
12586 | 12585 | '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>', |
12587 | 12586 | 'wikieditor-toolbar-help-content-reference-result' => 'Tex en dä Sigg. <sup><a href="#">[1]</a></sup>', |
— | — | @@ -12785,8 +12784,8 @@ |
12786 | 12785 | 'wikieditor-toolbar-tool-subscript-example' => 'Textus subscriptus', |
12787 | 12786 | 'wikieditor-toolbar-group-insert' => 'Inserere', |
12788 | 12787 | 'wikieditor-toolbar-tool-gallery' => 'Pinacotheca', |
12789 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Exemplum.jpg|Descriptio 1 |
12790 | | -{{ns:file}}:Exemplum.jpg|Descriptio 2', |
| 12788 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Exemplum.jpg|Descriptio 1 |
| 12789 | +$1:Exemplum.jpg|Descriptio 2', |
12791 | 12790 | 'wikieditor-toolbar-tool-newline' => 'Nova linea', |
12792 | 12791 | 'wikieditor-toolbar-tool-table' => 'Tabula', |
12793 | 12792 | 'wikieditor-toolbar-section-characters' => 'Characteres speciales', |
— | — | @@ -12822,8 +12821,8 @@ |
12823 | 12822 | 'wikieditor-toolbar-help-content-xlink-syntax' => '[http://www.example.org Titulus nexus]<br />[http://www.example.org]<br />http://www.example.org', |
12824 | 12823 | '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>", |
12825 | 12824 | 'wikieditor-toolbar-help-content-file-description' => 'Fasciculus in pagina impositus', |
12826 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Exemplum.png|thumb|Descriptio fasciculi]]', |
12827 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 12825 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Exemplum.png|thumb|Descriptio fasciculi]]', |
| 12826 | + '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>", |
12828 | 12827 | 'wikieditor-toolbar-help-content-reference-description' => 'Referentia bibliographica', |
12829 | 12828 | 'wikieditor-toolbar-help-content-showreferences-description' => 'Referentias bibliographicas monstrare', |
12830 | 12829 | 'wikieditor-toolbar-help-content-signaturetimestamp-description' => 'Subscriptio tua cum indicatione temporis', |
— | — | @@ -12940,8 +12939,8 @@ |
12941 | 12940 | 'wikieditor-toolbar-tool-subscript-example' => 'Text den am Indice steet', |
12942 | 12941 | 'wikieditor-toolbar-group-insert' => 'Drasetzen', |
12943 | 12942 | 'wikieditor-toolbar-tool-gallery' => 'Billergallerie', |
12944 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Beschreiwung1 |
12945 | | -{{ns:file}}:Example.jpg|Beschreiwung2', |
| 12943 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Beschreiwung1 |
| 12944 | +$1:Example.jpg|Beschreiwung2', |
12946 | 12945 | 'wikieditor-toolbar-tool-newline' => 'Nei Linn', |
12947 | 12946 | 'wikieditor-toolbar-tool-table' => 'Tabell', |
12948 | 12947 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -13055,8 +13054,8 @@ |
13056 | 13055 | <li>Element vun der Lëscht</li> |
13057 | 13056 | </ol>', |
13058 | 13057 | 'wikieditor-toolbar-help-content-file-description' => 'Agebonnene Fichier', |
13059 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Ugewisenen Text]]', |
13060 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 13058 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Ugewisenen Text]]', |
| 13059 | + '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>", |
13061 | 13060 | 'wikieditor-toolbar-help-content-reference-description' => 'Referenz', |
13062 | 13061 | '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>', |
13063 | 13062 | 'wikieditor-toolbar-help-content-reference-result' => "Text vun der Säit <sup><a href='#'>[1]</a></sup>", |
— | — | @@ -13193,8 +13192,8 @@ |
13194 | 13193 | 'wikieditor-toolbar-tool-subscript-example' => 'Óngersjrifteks', |
13195 | 13194 | 'wikieditor-toolbar-group-insert' => 'Voog in', |
13196 | 13195 | 'wikieditor-toolbar-tool-gallery' => 'Beeljegalerie', |
13197 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Veurbeildj1|Biesjrif1 |
13198 | | -{{ns:file}}:Veurbeildj2|Biesjrif2', |
| 13196 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Veurbeildj1|Biesjrif1 |
| 13197 | +$1:Veurbeildj2|Biesjrif2', |
13199 | 13198 | 'wikieditor-toolbar-tool-newline' => 'Nuuje regel', |
13200 | 13199 | 'wikieditor-toolbar-tool-table' => 'Tabel', |
13201 | 13200 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -13300,8 +13299,8 @@ |
13301 | 13300 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Regel in genummerde lies<br /># Regel in genummerde lies', |
13302 | 13301 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Regel in genummerde lies</li><li>Regel in genummerde lies</li></ol>', |
13303 | 13302 | 'wikieditor-toolbar-help-content-file-description' => 'Mediabesjtandj', |
13304 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Biesjrif]]', |
13305 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 13303 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Biesjrif]]', |
| 13304 | + '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>", |
13306 | 13305 | 'wikieditor-toolbar-help-content-reference-description' => 'Verwiezing', |
13307 | 13306 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Paginateks.<ref name="test">[http://www.example.org Verwiezingsteks], biekómmendje teks.</ref>', |
13308 | 13307 | 'wikieditor-toolbar-help-content-reference-result' => "Paginateks. <sup><a href='#'>[1]</a></sup>", |
— | — | @@ -13428,8 +13427,8 @@ |
13429 | 13428 | 'wikieditor-toolbar-tool-subscript-example' => 'Tekstas apačioje', |
13430 | 13429 | 'wikieditor-toolbar-group-insert' => 'Įterpti', |
13431 | 13430 | 'wikieditor-toolbar-tool-gallery' => 'Paveikslėlių galerija', |
13432 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Pavyzdys.jpg|Aprašymas1 |
13433 | | -{{ns:file}}:Pavyzdys.jpg|Aprašymas2', |
| 13431 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Pavyzdys.jpg|Aprašymas1 |
| 13432 | +$1:Pavyzdys.jpg|Aprašymas2', |
13434 | 13433 | 'wikieditor-toolbar-tool-newline' => 'Nauja linija', |
13435 | 13434 | 'wikieditor-toolbar-tool-table' => 'Lentelė', |
13436 | 13435 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -13535,8 +13534,8 @@ |
13536 | 13535 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Sąrašo elementas<br /># Sąrašo elementas', |
13537 | 13536 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Sąrašo elementas</li><li>Sąrašo elementas</li></ol>', |
13538 | 13537 | 'wikieditor-toolbar-help-content-file-description' => 'Įterpti failą', |
13539 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Aprašymas]]', |
13540 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 13538 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Aprašymas]]', |
| 13539 | + '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>", |
13541 | 13540 | 'wikieditor-toolbar-help-content-reference-description' => 'Išnaša', |
13542 | 13541 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Puslapio tekstas.<ref name="test">[http://www.example.org Nuorodos tekstas], papildomas tekstas.</ref>', |
13543 | 13542 | 'wikieditor-toolbar-help-content-reference-result' => "Puslapio tekstas.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -13650,8 +13649,8 @@ |
13651 | 13650 | 'wikieditor-toolbar-tool-subscript-example' => 'Apakšējā indeksa teksts', |
13652 | 13651 | 'wikieditor-toolbar-group-insert' => 'Ievietot', |
13653 | 13652 | 'wikieditor-toolbar-tool-gallery' => 'Attēlu galerija', |
13654 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Apraksts1 |
13655 | | -{{ns:file}}:Example.jpg|Apraksts2', |
| 13653 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Apraksts1 |
| 13654 | +$1:Example.jpg|Apraksts2', |
13656 | 13655 | 'wikieditor-toolbar-tool-newline' => 'Jauna rinda', |
13657 | 13656 | 'wikieditor-toolbar-tool-table' => 'Tabula', |
13658 | 13657 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -13754,8 +13753,8 @@ |
13755 | 13754 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Saraksta elements<br /># Saraksta elements', |
13756 | 13755 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Saraksta elements</li><li>Saraksta elements</li></ol>', |
13757 | 13756 | 'wikieditor-toolbar-help-content-file-description' => 'Iekļauts fails', |
13758 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Apraksts]]', |
13759 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 13757 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Apraksts]]', |
| 13758 | + '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>", |
13760 | 13759 | 'wikieditor-toolbar-help-content-reference-description' => 'Atsauce', |
13761 | 13760 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Lapas teksts.<ref name="test">[http://www.example.org Saites teksts], papildus teksts.</ref>', |
13762 | 13761 | 'wikieditor-toolbar-help-content-reference-result' => "Lapas teksts.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -13889,8 +13888,8 @@ |
13890 | 13889 | 'wikieditor-toolbar-tool-subscript-example' => 'Teks ditulis di bawah', |
13891 | 13890 | 'wikieditor-toolbar-group-insert' => 'Masuakkan', |
13892 | 13891 | 'wikieditor-toolbar-tool-gallery' => 'Galeri gambar', |
13893 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Contoh.jpg|Judul1 |
13894 | | -{{ns:file}}:Contoh.jpg|Judul2', |
| 13892 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Contoh.jpg|Judul1 |
| 13893 | +$1:Contoh.jpg|Judul2', |
13895 | 13894 | 'wikieditor-toolbar-tool-newline' => 'Barih baru', |
13896 | 13895 | 'wikieditor-toolbar-tool-table' => 'Tabel', |
13897 | 13896 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -13996,8 +13995,8 @@ |
13997 | 13996 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Senarai hal<br /># Senarai hal', |
13998 | 13997 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Senarai hal</li><li>Senarai hal</li></ol>', |
13999 | 13998 | 'wikieditor-toolbar-help-content-file-description' => 'Cantumkan berkas', |
14000 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Contoh.png|thumb|Teks gambar]]', |
14001 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 13999 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Contoh.png|thumb|Teks gambar]]', |
| 14000 | + '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>", |
14002 | 14001 | 'wikieditor-toolbar-help-content-reference-description' => 'Rujukan', |
14003 | 14002 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Teks laman.<ref name="test">[http://www.example.org Teks tautan], teks tambahan.</ref>', |
14004 | 14003 | 'wikieditor-toolbar-help-content-reference-result' => "Teks laman.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -14123,8 +14122,8 @@ |
14124 | 14123 | 'wikieditor-toolbar-tool-subscript-example' => 'Текст на долниот индекс', |
14125 | 14124 | 'wikieditor-toolbar-group-insert' => 'Вметни', |
14126 | 14125 | 'wikieditor-toolbar-tool-gallery' => 'Галерија', |
14127 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Пример.jpg|Опис1 |
14128 | | -{{ns:file}}:Пример.jpg|Опис2', |
| 14126 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Пример.jpg|Опис1 |
| 14127 | +$1:Пример.jpg|Опис2', |
14129 | 14128 | 'wikieditor-toolbar-tool-newline' => 'Нов ред', |
14130 | 14129 | 'wikieditor-toolbar-tool-table' => 'Табела', |
14131 | 14130 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -14230,8 +14229,8 @@ |
14231 | 14230 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Ставка<br /># Ставка', |
14232 | 14231 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Ставка</li><li>Ставка</li></ol>', |
14233 | 14232 | 'wikieditor-toolbar-help-content-file-description' => 'Вметната податотека', |
14234 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Описен текст]]', |
14235 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 14233 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Описен текст]]', |
| 14234 | + '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>", |
14236 | 14235 | 'wikieditor-toolbar-help-content-reference-description' => 'Навод', |
14237 | 14236 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Текст во страницата.<ref name="test">[http://www.пример.org Текст на врската], дополнителен текст.</ref>', |
14238 | 14237 | 'wikieditor-toolbar-help-content-reference-result' => "Текст во страницата.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -14356,8 +14355,8 @@ |
14357 | 14356 | 'wikieditor-toolbar-tool-subscript-example' => 'സബ്സ്ക്രിപ്റ്റ് എഴുത്ത്', |
14358 | 14357 | 'wikieditor-toolbar-group-insert' => 'ഉൾപ്പെടുത്തുക', |
14359 | 14358 | 'wikieditor-toolbar-tool-gallery' => 'ചിത്രശാല', |
14360 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|കുറിപ്പ്1 |
14361 | | -{{ns:file}}:Example.jpg|കുറിപ്പ്2', |
| 14359 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|കുറിപ്പ്1 |
| 14360 | +$1:Example.jpg|കുറിപ്പ്2', |
14362 | 14361 | 'wikieditor-toolbar-tool-newline' => 'പുതിയ വരി', |
14363 | 14362 | 'wikieditor-toolbar-tool-table' => 'പട്ടിക', |
14364 | 14363 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -14463,8 +14462,8 @@ |
14464 | 14463 | 'wikieditor-toolbar-help-content-olist-syntax' => '#ലിസ്റ്റിലെ അംഗം<br />#ലിസ്റ്റിലെ അംഗം', |
14465 | 14464 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>ലിസ്റ്റിലെ അംഗം</li><li>ലിസ്റ്റിലെ അംഗം</li></ol>', |
14466 | 14465 | 'wikieditor-toolbar-help-content-file-description' => 'പ്രമാണം ചേർക്കൽ', |
14467 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|ലഘു|വിവരണ കുറിപ്പ്]]', |
14468 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 14466 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|ലഘു|വിവരണ കുറിപ്പ്]]', |
| 14467 | + '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>", |
14469 | 14468 | 'wikieditor-toolbar-help-content-reference-description' => 'അവലംബം', |
14470 | 14469 | 'wikieditor-toolbar-help-content-reference-syntax' => 'താളിലെ എഴുത്ത്.<ref name="test">[http://www.example.org കണ്ണിയായുള്ള എഴുത്ത്], കൂടുതൽ എഴുത്ത്.</ref>', |
14471 | 14470 | 'wikieditor-toolbar-help-content-reference-result' => "താളിലെ എഴുത്ത്.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -14601,8 +14600,8 @@ |
14602 | 14601 | 'wikieditor-toolbar-tool-subscript-example' => 'अधोलेखन मजकूर', |
14603 | 14602 | 'wikieditor-toolbar-group-insert' => 'समाविष्टकरा', |
14604 | 14603 | 'wikieditor-toolbar-tool-gallery' => 'चित्रदिर्घा', |
14605 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|चित्रपरिचय १ |
14606 | | -{{ns:file}}:Example.jpg|चित्रपरिचय २', |
| 14604 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|चित्रपरिचय १ |
| 14605 | +$1:Example.jpg|चित्रपरिचय २', |
14607 | 14606 | 'wikieditor-toolbar-tool-newline' => 'नवी ओळ', |
14608 | 14607 | 'wikieditor-toolbar-tool-table' => 'सारणी', |
14609 | 14608 | 'wikieditor-toolbar-tool-table-example-old' => '! मथळा १ |
— | — | @@ -14707,9 +14706,9 @@ |
14708 | 14707 | 'wikieditor-toolbar-help-content-olist-syntax' => '# यादी घटक<br /># यादी घटक', |
14709 | 14708 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>यादी घटक</li><li>यादी घटक</li></ol>', |
14710 | 14709 | 'wikieditor-toolbar-help-content-file-description' => 'संलग्न संचिका', |
14711 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|ईवलेसे|मथळा मजकूर]]', |
14712 | | - '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/UsabilityInitiative/images/wikiEditor/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> |
14713 | | -<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/UsabilityInitiative/images/wikiEditor/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>", |
| 14710 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|ईवलेसे|मथळा मजकूर]]', |
| 14711 | + '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> |
| 14712 | +<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>", |
14714 | 14713 | 'wikieditor-toolbar-help-content-reference-description' => 'संदर्भ', |
14715 | 14714 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Page text.<ref name="test">[http://www.example.org Link text], additional text.</ref>', |
14716 | 14715 | 'wikieditor-toolbar-help-content-reference-result' => "Page text.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -14838,8 +14837,8 @@ |
14839 | 14838 | 'wikieditor-toolbar-tool-subscript-example' => 'Teks subskrip', |
14840 | 14839 | 'wikieditor-toolbar-group-insert' => 'Sisip', |
14841 | 14840 | 'wikieditor-toolbar-tool-gallery' => 'Galeri gambar', |
14842 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Contoh.jpg|Sari kata 1 |
14843 | | -{{ns:file}}:Contoh.jpg|Sari kata 2', |
| 14841 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Contoh.jpg|Sari kata 1 |
| 14842 | +$1:Contoh.jpg|Sari kata 2', |
14844 | 14843 | 'wikieditor-toolbar-tool-newline' => 'Baris baru', |
14845 | 14844 | 'wikieditor-toolbar-tool-table' => 'Jadual', |
14846 | 14845 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -14947,8 +14946,8 @@ |
14948 | 14947 | # Perkara senarai', |
14949 | 14948 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Perkara senarai</li><li>Perkara senarai</li></ol>', |
14950 | 14949 | 'wikieditor-toolbar-help-content-file-description' => 'Fail terbenam', |
14951 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Contoh.png|thumb|Teks judul pendek]]', |
14952 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 14950 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Contoh.png|thumb|Teks judul pendek]]', |
| 14951 | + '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>", |
14953 | 14952 | 'wikieditor-toolbar-help-content-reference-description' => 'Rujukan', |
14954 | 14953 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Teks laman.<ref nama="cubaan">[http://www.contoh.org Teks pautan], teks tambahan.</ref>', |
14955 | 14954 | 'wikieditor-toolbar-help-content-reference-result' => "Teks laman.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -15072,8 +15071,8 @@ |
15073 | 15072 | 'wikieditor-toolbar-tool-subscript-example' => "Test ta' indiċi ta' taħt", |
15074 | 15073 | 'wikieditor-toolbar-group-insert' => 'Daħħal', |
15075 | 15074 | 'wikieditor-toolbar-tool-gallery' => 'Gallerija tal-istampi', |
15076 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Eżempju.jpg|Deskrizzjoni1 |
15077 | | -{{ns:file}}:Eżempju.jpg|Deskrizzjoni2', |
| 15075 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Eżempju.jpg|Deskrizzjoni1 |
| 15076 | +$1:Eżempju.jpg|Deskrizzjoni2', |
15078 | 15077 | 'wikieditor-toolbar-tool-newline' => 'Linja ġdida', |
15079 | 15078 | 'wikieditor-toolbar-tool-table' => 'Tabella', |
15080 | 15079 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -15176,8 +15175,8 @@ |
15177 | 15176 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Element tal-lista<br /># Element tal-lista', |
15178 | 15177 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Element tal-lista</li><li>Element tal-lista</li></ol>', |
15179 | 15178 | 'wikieditor-toolbar-help-content-file-description' => 'Fajl inkorporat', |
15180 | | - 'wikieditor-toolbar-help-content-file-syntax' => "[[{{ns:file}}:Eżempju.png|thumb|Test ta' deskrizzjoni]]", |
15181 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 15179 | + 'wikieditor-toolbar-help-content-file-syntax' => "[[$1:Eżempju.png|thumb|Test ta' deskrizzjoni]]", |
| 15180 | + '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>", |
15182 | 15181 | 'wikieditor-toolbar-help-content-reference-description' => 'Referenza', |
15183 | 15182 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Test tal-paġna.<ref name="test">[http://www.example.org Test tal-ħolqa], test addizzjonali.</ref>', |
15184 | 15183 | 'wikieditor-toolbar-help-content-reference-result' => "Test tal-paġna.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -15429,8 +15428,8 @@ |
15430 | 15429 | 'wikieditor-toolbar-tool-subscript-example' => 'Subscript tekse', |
15431 | 15430 | 'wikieditor-toolbar-group-insert' => 'Derbie doon', |
15432 | 15431 | 'wikieditor-toolbar-tool-gallery' => 'Foto-uutstalling', |
15433 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Veurbeeld1|Bieschrifte1 |
15434 | | -{{ns:file}}:Veurbeeld2|Bieschrifte2', |
| 15432 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Veurbeeld1|Bieschrifte1 |
| 15433 | +$1:Veurbeeld2|Bieschrifte2', |
15435 | 15434 | 'wikieditor-toolbar-tool-newline' => 'Nieje regel', |
15436 | 15435 | 'wikieditor-toolbar-tool-table' => 'Tebel', |
15437 | 15436 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -15533,8 +15532,8 @@ |
15534 | 15533 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Regel in een lieste mit nummers<br /># Regel in een lieste mit nummers', |
15535 | 15534 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Regel in een lieste mit nummers</li><li>Regel in een lieste mit nummers</li></ol>', |
15536 | 15535 | 'wikieditor-toolbar-help-content-file-description' => 'Bestaand derbie doon', |
15537 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Veurbeeld.png|thumb|Beschrieving]]', |
15538 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 15536 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Veurbeeld.png|thumb|Beschrieving]]', |
| 15537 | + '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>", |
15539 | 15538 | 'wikieditor-toolbar-help-content-reference-description' => 'Rifferentie', |
15540 | 15539 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Paginatekse.<ref name="test">[http://www.example.org Beschrieving], eventuele tekse.</ref>', |
15541 | 15540 | 'wikieditor-toolbar-help-content-reference-result' => "Paginatekse <sup><a href='#'>[1]</a></sup>", |
— | — | @@ -15663,8 +15662,8 @@ |
15664 | 15663 | 'wikieditor-toolbar-tool-subscript-example' => 'Tekst in subscript', |
15665 | 15664 | 'wikieditor-toolbar-group-insert' => 'Invoegen', |
15666 | 15665 | 'wikieditor-toolbar-tool-gallery' => 'Beeldengalerij', |
15667 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Voorbeeld.jpg|Bijschrift1 |
15668 | | -{{ns:file}}:Voorbeeld.jpg|Bijschrift2', |
| 15666 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Voorbeeld.jpg|Bijschrift1 |
| 15667 | +$1:Voorbeeld.jpg|Bijschrift2', |
15669 | 15668 | 'wikieditor-toolbar-tool-newline' => 'Nieuwe regel', |
15670 | 15669 | 'wikieditor-toolbar-tool-table' => 'Tabel', |
15671 | 15670 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -15770,8 +15769,8 @@ |
15771 | 15770 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Regel in genummerde lijst<br /># Regel in genummerde lijst', |
15772 | 15771 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Regel in genummerde lijst</li><li>Regel in genummerde lijst</li></ol>', |
15773 | 15772 | 'wikieditor-toolbar-help-content-file-description' => 'Ingebed bestand', |
15774 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Voorbeeld.png|thumb|Bijschrift]]', |
15775 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 15773 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Voorbeeld.png|thumb|Bijschrift]]', |
| 15774 | + '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>", |
15776 | 15775 | 'wikieditor-toolbar-help-content-reference-description' => 'Referentie', |
15777 | 15776 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Paginatekst.<ref name="test">[http://www.example.org Verwijzingstekst], bijkomende tekst.</ref>', |
15778 | 15777 | 'wikieditor-toolbar-help-content-reference-result' => "Paginatekst. <sup><a href='#'>[1]</a></sup>", |
— | — | @@ -15896,8 +15895,8 @@ |
15897 | 15896 | 'wikieditor-toolbar-tool-subscript-example' => 'Senka skrift', |
15898 | 15897 | 'wikieditor-toolbar-group-insert' => 'Set inn', |
15899 | 15898 | 'wikieditor-toolbar-tool-gallery' => 'Biletgalleri', |
15900 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Døme.jpg|Bilettekst1 |
15901 | | -{{ns:file}}:Døme.jpg|Bilettekst2', |
| 15899 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Døme.jpg|Bilettekst1 |
| 15900 | +$1:Døme.jpg|Bilettekst2', |
15902 | 15901 | 'wikieditor-toolbar-tool-newline' => 'Ny lina', |
15903 | 15902 | 'wikieditor-toolbar-tool-table' => 'Tabell', |
15904 | 15903 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -15999,8 +15998,8 @@ |
16000 | 15999 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Listeelement<br /># Listeelement', |
16001 | 16000 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Listeelement</li><li>Listeelement</li></ol>', |
16002 | 16001 | 'wikieditor-toolbar-help-content-file-description' => 'Fil', |
16003 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Bilettekst]]', |
16004 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 16002 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Bilettekst]]', |
| 16003 | + '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>", |
16005 | 16004 | 'wikieditor-toolbar-help-content-reference-description' => 'Referanse', |
16006 | 16005 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Sidetekst.<ref name="test">[http://www.døme.org Lenkjetekst], ekstra lenkjetekst.</ref>', |
16007 | 16006 | 'wikieditor-toolbar-help-content-reference-result' => "Sidetekst.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -16127,8 +16126,8 @@ |
16128 | 16127 | 'wikieditor-toolbar-tool-subscript-example' => 'Senket tekst', |
16129 | 16128 | 'wikieditor-toolbar-group-insert' => 'Sett inn', |
16130 | 16129 | 'wikieditor-toolbar-tool-gallery' => 'Bildegalleri', |
16131 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Bildetekst1 |
16132 | | -{{ns:file}}:Example.jpg|Bildetekst2', |
| 16130 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Bildetekst1 |
| 16131 | +$1:Example.jpg|Bildetekst2', |
16133 | 16132 | 'wikieditor-toolbar-tool-newline' => 'Linjeskift', |
16134 | 16133 | 'wikieditor-toolbar-tool-table' => 'Tabell', |
16135 | 16134 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -16236,8 +16235,8 @@ |
16237 | 16236 | # Listeelement', |
16238 | 16237 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Listeelement</li><li>Listeelement</li></ol>', |
16239 | 16238 | 'wikieditor-toolbar-help-content-file-description' => 'Fil', |
16240 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Bildetekst]]', |
16241 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 16239 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Bildetekst]]', |
| 16240 | + '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>", |
16242 | 16241 | 'wikieditor-toolbar-help-content-reference-description' => 'Referanse', |
16243 | 16242 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Tekst.<ref name="test">[http://www.example.org Lenketekst], ytterligere tekst.</ref>', |
16244 | 16243 | 'wikieditor-toolbar-help-content-reference-result' => "Tekst.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -16388,8 +16387,8 @@ |
16389 | 16388 | 'wikieditor-toolbar-tool-subscript-example' => 'Tèxte en indici', |
16390 | 16389 | 'wikieditor-toolbar-group-insert' => 'Inserir', |
16391 | 16390 | 'wikieditor-toolbar-tool-gallery' => 'Galariá de fichièrs', |
16392 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Exemple.jpg|Descripcion 1 |
16393 | | -{{ns:file}}:Exemple.jpg|Descripcion 2', |
| 16391 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Exemple.jpg|Descripcion 1 |
| 16392 | +$1:Exemple.jpg|Descripcion 2', |
16394 | 16393 | 'wikieditor-toolbar-tool-newline' => 'Saut de linha', |
16395 | 16394 | 'wikieditor-toolbar-tool-table' => 'Tablèu', |
16396 | 16395 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -16490,8 +16489,8 @@ |
16491 | 16490 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Element de la lista<br /># Element de la lista', |
16492 | 16491 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Element de la lista</li><li>Element de la lista</li></ol>', |
16493 | 16492 | 'wikieditor-toolbar-help-content-file-description' => 'Fichièr inserit', |
16494 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Tèxte afichat]]', |
16495 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 16493 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Tèxte afichat]]', |
| 16494 | + '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>", |
16496 | 16495 | 'wikieditor-toolbar-help-content-reference-description' => 'Referéncia', |
16497 | 16496 | '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>', |
16498 | 16497 | 'wikieditor-toolbar-help-content-reference-result' => "Tèxte de la pagina <sup><a href='#'>[1]</a></sup>", |
— | — | @@ -16690,8 +16689,8 @@ |
16691 | 16690 | 'wikieditor-toolbar-tool-subscript-example' => 'Tekst indeksu dolnego', |
16692 | 16691 | 'wikieditor-toolbar-group-insert' => 'Wstaw', |
16693 | 16692 | 'wikieditor-toolbar-tool-gallery' => 'Galeria obrazków', |
16694 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Podpis1 |
16695 | | -{{ns:file}}:Example.jpg|Podpis2', |
| 16693 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Podpis1 |
| 16694 | +$1:Example.jpg|Podpis2', |
16696 | 16695 | 'wikieditor-toolbar-tool-newline' => 'Nowy wiersz', |
16697 | 16696 | 'wikieditor-toolbar-tool-table' => 'Tabela', |
16698 | 16697 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -16797,8 +16796,8 @@ |
16798 | 16797 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Pozycja listy<br /># Pozycja listy', |
16799 | 16798 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Pozycja listy</li><li>Pozycja listy</li></ol>', |
16800 | 16799 | 'wikieditor-toolbar-help-content-file-description' => 'Plik osadzony', |
16801 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Przykład.png|thumb|Podpis pod plikiem]]', |
16802 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 16800 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Przykład.png|thumb|Podpis pod plikiem]]', |
| 16801 | + '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>", |
16803 | 16802 | 'wikieditor-toolbar-help-content-reference-description' => 'Przypis', |
16804 | 16803 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Treść strony<ref name="test"> [http://www.przyklad.org Opis linku], dodatkowy tekst. </ref>.', |
16805 | 16804 | 'wikieditor-toolbar-help-content-reference-result' => "Treść strony<sup><a href='#'>[1]</a></sup>.", |
— | — | @@ -16924,8 +16923,8 @@ |
16925 | 16924 | 'wikieditor-toolbar-tool-subscript-example' => 'Test a ìndes an bass', |
16926 | 16925 | 'wikieditor-toolbar-group-insert' => 'Anserì', |
16927 | 16926 | 'wikieditor-toolbar-tool-gallery' => 'Galarìa ëd plance', |
16928 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Esempi.jpg|Descrission1 |
16929 | | -{{ns:file}}:Esempi.jpg|Descrission2', |
| 16927 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Esempi.jpg|Descrission1 |
| 16928 | +$1:Esempi.jpg|Descrission2', |
16930 | 16929 | 'wikieditor-toolbar-tool-newline' => 'A cap', |
16931 | 16930 | 'wikieditor-toolbar-tool-table' => 'Tàula', |
16932 | 16931 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -17031,8 +17030,8 @@ |
17032 | 17031 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Element ëd la lista<br /># Element ëd la lista', |
17033 | 17032 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Element ëd la lista</li><li>Element ëd la lista</li></ol>', |
17034 | 17033 | 'wikieditor-toolbar-help-content-file-description' => 'Archivi anserì', |
17035 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Esempi.png|thumb|Test mostrà]]', |
17036 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 17034 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Esempi.png|thumb|Test mostrà]]', |
| 17035 | + '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>", |
17037 | 17036 | 'wikieditor-toolbar-help-content-reference-description' => 'Arferiment', |
17038 | 17037 | '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>', |
17039 | 17038 | 'wikieditor-toolbar-help-content-reference-result' => "Test ëd la pàgina.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -17226,7 +17225,7 @@ |
17227 | 17226 | 'wikieditor-toolbar-help-content-olist-syntax' => '# د لړليک توکی<br /># د لړليک توکی', |
17228 | 17227 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>د لړليک توکی</li><li>د لړليک توکی</li></ol>', |
17229 | 17228 | 'wikieditor-toolbar-help-content-file-description' => 'خښه شوې دوتنه', |
17230 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|د څرګندولو متن]]', |
| 17229 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|د څرګندولو متن]]', |
17231 | 17230 | 'wikieditor-toolbar-help-content-reference-description' => 'سرچينه', |
17232 | 17231 | 'wikieditor-toolbar-help-content-reference-syntax' => 'د مخ متن.<ref name="test">[http://www.example.org د تړنې متن], اضافي متن.</ref>', |
17233 | 17232 | 'wikieditor-toolbar-help-content-reference-result' => "د مخ متن.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -17355,8 +17354,8 @@ |
17356 | 17355 | 'wikieditor-toolbar-tool-subscript-example' => 'Texto em subscrito', |
17357 | 17356 | 'wikieditor-toolbar-group-insert' => 'Inserir', |
17358 | 17357 | 'wikieditor-toolbar-tool-gallery' => 'Galeria de imagens', |
17359 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Exemplo1.jpg|Legenda1 |
17360 | | -{{ns:file}}:Exemplo2.jpg|Legenda2', |
| 17358 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Exemplo1.jpg|Legenda1 |
| 17359 | +$1:Exemplo2.jpg|Legenda2', |
17361 | 17360 | 'wikieditor-toolbar-tool-newline' => 'Nova linha', |
17362 | 17361 | 'wikieditor-toolbar-tool-table' => 'Tabela', |
17363 | 17362 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -17462,8 +17461,8 @@ |
17463 | 17462 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Elemento de lista<br /># Elemento de lista', |
17464 | 17463 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Elemento de lista</li><li>Elemento de lista</li></ol>', |
17465 | 17464 | 'wikieditor-toolbar-help-content-file-description' => 'Ficheiro incorporado', |
17466 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Exemplo.png|thumb|Legenda]]', |
17467 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 17465 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Exemplo.png|thumb|Legenda]]', |
| 17466 | + '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>", |
17468 | 17467 | 'wikieditor-toolbar-help-content-reference-description' => 'Referência', |
17469 | 17468 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Texto da página.<ref name="teste">[http://www.exemplo.org Texto do link], texto adicional.</ref>', |
17470 | 17469 | 'wikieditor-toolbar-help-content-reference-result' => "Texto da página.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -17595,8 +17594,8 @@ |
17596 | 17595 | 'wikieditor-toolbar-tool-subscript-example' => 'Texto em subscrito', |
17597 | 17596 | 'wikieditor-toolbar-group-insert' => 'Inserir', |
17598 | 17597 | 'wikieditor-toolbar-tool-gallery' => 'Galeria de imagens', |
17599 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Exemplo.jpg|Legenda1 |
17600 | | -{{ns:file}}:Exemplo.jpg|Legenda2', |
| 17598 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Exemplo.jpg|Legenda1 |
| 17599 | +$1:Exemplo.jpg|Legenda2', |
17601 | 17600 | 'wikieditor-toolbar-tool-newline' => 'Nova linha', |
17602 | 17601 | 'wikieditor-toolbar-tool-table' => 'Tabela', |
17603 | 17602 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -17702,8 +17701,8 @@ |
17703 | 17702 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Item de lista<br /># Item de lista', |
17704 | 17703 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Item de lista</li><li>Item de lista</li></ol>', |
17705 | 17704 | 'wikieditor-toolbar-help-content-file-description' => 'Arquivo embutido', |
17706 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Exemplo.png|thumb|Legenda]]', |
17707 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 17705 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Exemplo.png|thumb|Legenda]]', |
| 17706 | + '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>", |
17708 | 17707 | 'wikieditor-toolbar-help-content-reference-description' => 'Referência', |
17709 | 17708 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Texto da página.<ref name="teste">[http://www.exemplo.org Texto do link], texto adicional.</ref>', |
17710 | 17709 | 'wikieditor-toolbar-help-content-reference-result' => "Texto da página.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -17828,8 +17827,8 @@ |
17829 | 17828 | 'wikieditor-toolbar-tool-subscript-example' => 'Uraychasqa qillqa', |
17830 | 17829 | 'wikieditor-toolbar-group-insert' => "Sat'iy", |
17831 | 17830 | 'wikieditor-toolbar-tool-gallery' => 'Suyu-suyu', |
17832 | | - 'wikieditor-toolbar-tool-gallery-example' => "{{ns:file}}:Qhawarichiy.jpg|Ch'uyanchay1 |
17833 | | -{{ns:file}}:Qhawarichiy.jpg|Ch'uyanchay2", |
| 17831 | + 'wikieditor-toolbar-tool-gallery-example' => "$1:Qhawarichiy.jpg|Ch'uyanchay1 |
| 17832 | +$1:Qhawarichiy.jpg|Ch'uyanchay2", |
17834 | 17833 | 'wikieditor-toolbar-tool-newline' => "Musuq siq'i", |
17835 | 17834 | 'wikieditor-toolbar-tool-table' => 'Wachuchasqa', |
17836 | 17835 | 'wikieditor-toolbar-tool-table-example-old' => "- |
— | — | @@ -17935,8 +17934,8 @@ |
17936 | 17935 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Sutisuyup qallawan<br /># Sutisuyup qallawan', |
17937 | 17936 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Sutisuyup qallawan</li><li>Sutisuyup qallawan</li></ol>', |
17938 | 17937 | 'wikieditor-toolbar-help-content-file-description' => "Ch'aqtasqa rikcha", |
17939 | | - 'wikieditor-toolbar-help-content-file-syntax' => "[[{{ns:file}}:Qhawarichiy.png|thumb|Ch'uyanchay qillqa]]", |
17940 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 17938 | + 'wikieditor-toolbar-help-content-file-syntax' => "[[$1:Qhawarichiy.png|thumb|Ch'uyanchay qillqa]]", |
| 17939 | + '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>", |
17941 | 17940 | 'wikieditor-toolbar-help-content-reference-description' => 'Pukyumanta willay', |
17942 | 17941 | 'wikieditor-toolbar-help-content-reference-syntax' => 'P\'anqa qillqa.<ref name="test">[http://www.example.org T\'inki qillqa], yapasqa qillqa.</ref>', |
17943 | 17942 | 'wikieditor-toolbar-help-content-reference-result' => "P'anqa qillqa.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -18064,8 +18063,8 @@ |
18065 | 18064 | 'wikieditor-toolbar-tool-subscript-example' => 'Text la indice', |
18066 | 18065 | 'wikieditor-toolbar-group-insert' => 'Inserare', |
18067 | 18066 | 'wikieditor-toolbar-tool-gallery' => 'Galerie de imagini', |
18068 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Exemplu.jpg|Descriere 1 |
18069 | | -{{ns:file}}:Exemplu.jpg|Descriere 2', |
| 18067 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Exemplu.jpg|Descriere 1 |
| 18068 | +$1:Exemplu.jpg|Descriere 2', |
18070 | 18069 | 'wikieditor-toolbar-tool-newline' => 'Linie nouă', |
18071 | 18070 | 'wikieditor-toolbar-tool-table' => 'Tabel', |
18072 | 18071 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -18171,8 +18170,8 @@ |
18172 | 18171 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Element<br /># Element', |
18173 | 18172 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Element</li><li>Element</li></ol>', |
18174 | 18173 | 'wikieditor-toolbar-help-content-file-description' => 'Fișier inserat', |
18175 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Exemplu.png|thumb|Descrierea imaginii]]', |
18176 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 18174 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Exemplu.png|thumb|Descrierea imaginii]]', |
| 18175 | + '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>", |
18177 | 18176 | 'wikieditor-toolbar-help-content-reference-description' => 'Referință', |
18178 | 18177 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Textul paginii.<ref name="test">[http://www.exemplu.org Textul legăturii], text suplimentar.</ref>', |
18179 | 18178 | 'wikieditor-toolbar-help-content-reference-result' => "Textul paginii.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -18298,8 +18297,8 @@ |
18299 | 18298 | 'wikieditor-toolbar-tool-subscript-example' => 'Teste sottoscritte', |
18300 | 18299 | 'wikieditor-toolbar-group-insert' => "'Nzerisce", |
18301 | 18300 | 'wikieditor-toolbar-tool-gallery' => 'Gallerìe fotografeche', |
18302 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Titele1 |
18303 | | -{{ns:file}}:Example.jpg|Titele2', |
| 18301 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Titele1 |
| 18302 | +$1:Example.jpg|Titele2', |
18304 | 18303 | 'wikieditor-toolbar-tool-newline' => 'Linèa nove', |
18305 | 18304 | 'wikieditor-toolbar-tool-table' => 'Tabbelle', |
18306 | 18305 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -18405,8 +18404,8 @@ |
18406 | 18405 | 'wikieditor-toolbar-help-content-olist-syntax' => "# Elemende de l'elenghe numerate<br /># Elemende de l'elenghe numerate", |
18407 | 18406 | 'wikieditor-toolbar-help-content-olist-result' => "<ol><li>Elemende de l'elenghe</li><li>Elemende de l'elenghe</li></ol>", |
18408 | 18407 | 'wikieditor-toolbar-help-content-file-description' => "File 'ngorporate", |
18409 | | - 'wikieditor-toolbar-help-content-file-syntax' => "[[{{ns:file}}:Esembie.png|thumb|Teste d'u titele]]", |
18410 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 18408 | + 'wikieditor-toolbar-help-content-file-syntax' => "[[$1:Esembie.png|thumb|Teste d'u titele]]", |
| 18409 | + '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>", |
18411 | 18410 | 'wikieditor-toolbar-help-content-reference-description' => 'Riferimende', |
18412 | 18411 | '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>', |
18413 | 18412 | 'wikieditor-toolbar-help-content-reference-result' => "Teste d'a pàgene.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -18536,8 +18535,8 @@ |
18537 | 18536 | 'wikieditor-toolbar-tool-subscript-example' => 'Подстрочный текст', |
18538 | 18537 | 'wikieditor-toolbar-group-insert' => 'Вставка', |
18539 | 18538 | 'wikieditor-toolbar-tool-gallery' => 'Галерея картинок', |
18540 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Описание1 |
18541 | | -{{ns:file}}:Example.jpg|Описание2', |
| 18539 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Описание1 |
| 18540 | +$1:Example.jpg|Описание2', |
18542 | 18541 | 'wikieditor-toolbar-tool-newline' => 'Новая строка', |
18543 | 18542 | 'wikieditor-toolbar-tool-table' => 'Таблица', |
18544 | 18543 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -18643,9 +18642,9 @@ |
18644 | 18643 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Элемент списка<br /># Элемент списка', |
18645 | 18644 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Элемент списка</li><li>Элемент списка</li></ol>', |
18646 | 18645 | 'wikieditor-toolbar-help-content-file-description' => 'Встроенный файл', |
18647 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Пояснительный текст]]', |
| 18646 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Пояснительный текст]]', |
18648 | 18647 | 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title=' |
18649 | | -Пояснительный текст' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/UsabilityInitiative/images/wikiEditor/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> |
| 18648 | +Пояснительный текст' 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> |
18650 | 18649 | Пояснительный текст</div></div>", |
18651 | 18650 | 'wikieditor-toolbar-help-content-reference-description' => 'Примечание', |
18652 | 18651 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Текст страницы.<ref name="test">[http://www.example.org Текст ссылки], дополнительный текст.</ref>', |
— | — | @@ -18771,8 +18770,8 @@ |
18772 | 18771 | 'wikieditor-toolbar-tool-subscript-example' => 'Підрядковый текст', |
18773 | 18772 | 'wikieditor-toolbar-group-insert' => 'Вложыти', |
18774 | 18773 | 'wikieditor-toolbar-tool-gallery' => 'Ґалерія', |
18775 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Опис1 |
18776 | | -{{ns:file}}:Example.jpg|Опис2', |
| 18774 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Опис1 |
| 18775 | +$1:Example.jpg|Опис2', |
18777 | 18776 | 'wikieditor-toolbar-tool-newline' => 'Новый рядок', |
18778 | 18777 | 'wikieditor-toolbar-tool-table' => 'Таблиця', |
18779 | 18778 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -18878,8 +18877,8 @@ |
18879 | 18878 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Положка списку<br /># Положка списку', |
18880 | 18879 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Положка списку</li><li>Положка списку</li></ol>', |
18881 | 18880 | 'wikieditor-toolbar-help-content-file-description' => 'Вложіня файлу', |
18882 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Пояснюючій текст]]', |
18883 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 18881 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Пояснюючій текст]]', |
| 18882 | + '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>", |
18884 | 18883 | 'wikieditor-toolbar-help-content-reference-description' => 'Познамка', |
18885 | 18884 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Текст сторінкы<ref name="test">[http://www.example.org Текст одказу], додатковый текст.</ref>.', |
18886 | 18885 | 'wikieditor-toolbar-help-content-reference-result' => "Текст сторінкы.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -19004,8 +19003,8 @@ |
19005 | 19004 | 'wikieditor-toolbar-tool-subscript-example' => 'Устуруока аннынааҕы бичик', |
19006 | 19005 | 'wikieditor-toolbar-group-insert' => 'Угуу', |
19007 | 19006 | 'wikieditor-toolbar-tool-gallery' => 'Ойуулар галереялара', |
19008 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Сурук1 |
19009 | | -{{ns:file}}:Example.jpg|Сурук2', |
| 19007 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Сурук1 |
| 19008 | +$1:Example.jpg|Сурук2', |
19010 | 19009 | 'wikieditor-toolbar-tool-newline' => 'Кыһыл устуруока', |
19011 | 19010 | 'wikieditor-toolbar-tool-table' => 'Таабыл', |
19012 | 19011 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -19111,9 +19110,9 @@ |
19112 | 19111 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Тиһик бэлиэтэ<br /># Тиһик бэлиэтэ', |
19113 | 19112 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Тиһик бэлиэтэ</li><li>Тиһик бэлиэтэ</li></ol>', |
19114 | 19113 | 'wikieditor-toolbar-help-content-file-description' => 'Иһинээҕи билэ', |
19115 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Быһаарыыта]]', |
| 19114 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Быһаарыыта]]', |
19116 | 19115 | 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title=' |
19117 | | -Быһаарыы сурук' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/UsabilityInitiative/images/wikiEditor/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> |
| 19116 | +Быһаарыы сурук' 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> |
19118 | 19117 | Быһаарыы сурук</div></div>", |
19119 | 19118 | 'wikieditor-toolbar-help-content-reference-description' => 'Быһаарыы', |
19120 | 19119 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Сирэй тиэкиһэ.<ref name="test">[http://www.example.org Сигэ быһаарыыта], эбии быһаарыы.</ref>', |
— | — | @@ -19218,8 +19217,8 @@ |
19219 | 19218 | 'wikieditor-toolbar-tool-subscript-example' => 'Testu subscritu', |
19220 | 19219 | 'wikieditor-toolbar-group-insert' => 'Inserta', |
19221 | 19220 | 'wikieditor-toolbar-tool-gallery' => 'Galleria de immàgines', |
19222 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Esèmpiu.jpg|Didascalia1 |
19223 | | -{{ns:file}}:Esèmpiu.jpg|Didascalia2', |
| 19221 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Esèmpiu.jpg|Didascalia1 |
| 19222 | +$1:Esèmpiu.jpg|Didascalia2', |
19224 | 19223 | 'wikieditor-toolbar-tool-newline' => 'Lìnia noa', |
19225 | 19224 | 'wikieditor-toolbar-tool-table' => 'Tabella', |
19226 | 19225 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -19325,8 +19324,8 @@ |
19326 | 19325 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Elementu de sa lista<br /># Elementu de sa lista', |
19327 | 19326 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Elementu de sa lista</li><li>Elementu de sa lista</li></ol>', |
19328 | 19327 | 'wikieditor-toolbar-help-content-file-description' => 'File incorporadu', |
19329 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Esempru.png|thumb|Testu de sa didascalia]]', |
19330 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 19328 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Esempru.png|thumb|Testu de sa didascalia]]', |
| 19329 | + '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>", |
19331 | 19330 | 'wikieditor-toolbar-help-content-reference-description' => 'Referèntzia', |
19332 | 19331 | 'wikieditor-toolbar-help-content-reference-result' => "Testu de sa pàgina.<sup><a href='#'>[1]</a></sup>", |
19333 | 19332 | 'wikieditor-toolbar-help-content-rereference-result' => "Testu de sa pàgina.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -19445,8 +19444,8 @@ |
19446 | 19445 | 'wikieditor-toolbar-tool-subscript-example' => 'testu n pèdici', |
19447 | 19446 | 'wikieditor-toolbar-group-insert' => 'Nsirìsci', |
19448 | 19447 | 'wikieditor-toolbar-tool-gallery' => 'Gallirìa di mmàggini', |
19449 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Didascalia1 |
19450 | | -{{ns:file}}:Example.jpg|Didascalia2', |
| 19448 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Didascalia1 |
| 19449 | +$1:Example.jpg|Didascalia2', |
19451 | 19450 | 'wikieditor-toolbar-tool-newline' => 'Ligna nova', |
19452 | 19451 | 'wikieditor-toolbar-tool-table' => 'Tabbella', |
19453 | 19452 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -19565,8 +19564,8 @@ |
19566 | 19565 | 'wikieditor-toolbar-help-content-olist-syntax' => "* Elementu di l'elencu<br />* Elementu di l'elencu", |
19567 | 19566 | 'wikieditor-toolbar-help-content-olist-result' => "<ol><li>Elementu di l'elencu</li><li>Elementu di l'elencu</li></ol>", |
19568 | 19567 | 'wikieditor-toolbar-help-content-file-description' => 'File ncurpuratu', |
19569 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Testu dâ didascalia]]', |
19570 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 19568 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Testu dâ didascalia]]', |
| 19569 | + '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>", |
19571 | 19570 | 'wikieditor-toolbar-help-content-reference-description' => 'Rifirenza', |
19572 | 19571 | '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>', |
19573 | 19572 | 'wikieditor-toolbar-help-content-reference-result' => "Testu dâ pàggina.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -19696,8 +19695,8 @@ |
19697 | 19696 | 'wikieditor-toolbar-tool-subscript-example' => 'යටි ලකුණු පෙළ', |
19698 | 19697 | 'wikieditor-toolbar-group-insert' => 'ඇතුල් කරන්න', |
19699 | 19698 | 'wikieditor-toolbar-tool-gallery' => 'පිංතූර ගැලරිය', |
19700 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:උදාහරණ.jpg| 1 යටි ලියමන |
19701 | | -{{ns:file}}:උදාහරණ.jpg| 2 යටි ලියමන', |
| 19699 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:උදාහරණ.jpg| 1 යටි ලියමන |
| 19700 | +$1:උදාහරණ.jpg| 2 යටි ලියමන', |
19702 | 19701 | 'wikieditor-toolbar-tool-newline' => 'නව පේළිය', |
19703 | 19702 | 'wikieditor-toolbar-tool-table' => 'වගුව', |
19704 | 19703 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -19798,8 +19797,8 @@ |
19799 | 19798 | 'wikieditor-toolbar-help-content-olist-syntax' => '# ලැයිස්තු අයිතමය<br /># ලැයිස්තු අයිතමය', |
19800 | 19799 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>ලැයිස්තු අයිතමය</li><li>ලැයිස්තු අයිතමය</li></ol>', |
19801 | 19800 | 'wikieditor-toolbar-help-content-file-description' => 'කා වැද්දූ ගොනුව', |
19802 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|යටි ලියමන් පෙළ]]', |
19803 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 19801 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|යටි ලියමන් පෙළ]]', |
| 19802 | + '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>", |
19804 | 19803 | 'wikieditor-toolbar-help-content-reference-description' => 'යොමුව', |
19805 | 19804 | 'wikieditor-toolbar-help-content-reference-syntax' => 'පිටු පෙළ.<ref name="test">[http://www.example.org සබැඳුම් පෙළ], අමතර පෙළ.</ref>', |
19806 | 19805 | 'wikieditor-toolbar-help-content-reference-result' => "පිටු පෙළ.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -19925,8 +19924,8 @@ |
19926 | 19925 | 'wikieditor-toolbar-tool-subscript-example' => 'Dolný index', |
19927 | 19926 | 'wikieditor-toolbar-group-insert' => 'Vložiť', |
19928 | 19927 | 'wikieditor-toolbar-tool-gallery' => 'Galéria obrázkov', |
19929 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Príklad.jpg|Popis1 |
19930 | | -{{ns:file}}:Príklad.jpg|Popis2', |
| 19928 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Príklad.jpg|Popis1 |
| 19929 | +$1:Príklad.jpg|Popis2', |
19931 | 19930 | 'wikieditor-toolbar-tool-newline' => 'Nový riadok', |
19932 | 19931 | 'wikieditor-toolbar-tool-table' => 'Tabuľka', |
19933 | 19932 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -20032,8 +20031,8 @@ |
20033 | 20032 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Položka zoznamu<br /># Položka zoznamu', |
20034 | 20033 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Položka zoznamu</li><li>Položka zoznamu</li></ol>', |
20035 | 20034 | 'wikieditor-toolbar-help-content-file-description' => 'Vložený súbor', |
20036 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Príklad.png|náhľad|Text nadpisu]]', |
20037 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 20035 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Príklad.png|náhľad|Text nadpisu]]', |
| 20036 | + '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>", |
20038 | 20037 | 'wikieditor-toolbar-help-content-reference-description' => 'Referencie', |
20039 | 20038 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Text stránky.<ref name="test">[http://www.example.org Text odkazu], ďalší text.</ref>', |
20040 | 20039 | 'wikieditor-toolbar-help-content-reference-result' => "Text stránky.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -20158,8 +20157,8 @@ |
20159 | 20158 | 'wikieditor-toolbar-tool-subscript-example' => 'Podpisano besedilo', |
20160 | 20159 | 'wikieditor-toolbar-group-insert' => 'Vstavi', |
20161 | 20160 | 'wikieditor-toolbar-tool-gallery' => 'Galerija slik', |
20162 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Primer 1.jpg|Napis 1 |
20163 | | -{{ns:file}}:Primer 2.jpg|Napis 2', |
| 20161 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Primer 1.jpg|Napis 1 |
| 20162 | +$1:Primer 2.jpg|Napis 2', |
20164 | 20163 | 'wikieditor-toolbar-tool-newline' => 'Nova vrstica', |
20165 | 20164 | 'wikieditor-toolbar-tool-table' => 'Tabela', |
20166 | 20165 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -20265,8 +20264,8 @@ |
20266 | 20265 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Vnos a <br /> # Vnos b', |
20267 | 20266 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li> Vnos a </li><li> Vnos b </li></ol>', |
20268 | 20267 | 'wikieditor-toolbar-help-content-file-description' => 'Vgradnja slike', |
20269 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Primer.jpg|thumb|Napis pod sliko]]', |
20270 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 20268 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Primer.jpg|thumb|Napis pod sliko]]', |
| 20269 | + '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>", |
20271 | 20270 | 'wikieditor-toolbar-help-content-reference-description' => 'Sprotna opomba', |
20272 | 20271 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Besedilo strani. <ref name="test"> [http://www.example.org Oznaka povezave], dodatno besedilo. </ref>', |
20273 | 20272 | 'wikieditor-toolbar-help-content-reference-result' => "Besedilo strani. <a href='#'><sup>[1]</sup></a>", |
— | — | @@ -20424,8 +20423,8 @@ |
20425 | 20424 | 'wikieditor-toolbar-help-content-heading5-result' => '<h5>Mbishkrimi</h5>', |
20426 | 20425 | 'wikieditor-toolbar-help-content-ulist-description' => 'Lista e të numruara', |
20427 | 20426 | 'wikieditor-toolbar-help-content-olist-description' => 'Lista e numëruar', |
20428 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:shembull.jpg|thumb|Përshkrimi]]', |
20429 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 20427 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:shembull.jpg|thumb|Përshkrimi]]', |
| 20428 | + '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>", |
20430 | 20429 | 'wikieditor-toolbar-help-content-reference-description' => 'Burimi', |
20431 | 20430 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Teksti i Faqës.<ref name="test">[http://www.shembull.org Teksti i lidhjes], Tekst shtues.</ref>', |
20432 | 20431 | 'wikieditor-toolbar-help-content-reference-result' => "Teksti i Faqës.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -20540,8 +20539,8 @@ |
20541 | 20540 | 'wikieditor-toolbar-tool-subscript-example' => 'Текст натписа', |
20542 | 20541 | 'wikieditor-toolbar-group-insert' => 'Убаци', |
20543 | 20542 | 'wikieditor-toolbar-tool-gallery' => 'Галерија слика', |
20544 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:пример1.jpg|Наслов1 |
20545 | | -{{ns:file}}:пример2.jpg|Наслов2', |
| 20543 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:пример1.jpg|Наслов1 |
| 20544 | +$1:пример2.jpg|Наслов2', |
20546 | 20545 | 'wikieditor-toolbar-tool-newline' => 'Нова линија', |
20547 | 20546 | 'wikieditor-toolbar-tool-table' => 'Табела', |
20548 | 20547 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -20640,7 +20639,7 @@ |
20641 | 20640 | 'wikieditor-toolbar-help-content-ulist-description' => 'Попис с ознакама', |
20642 | 20641 | 'wikieditor-toolbar-help-content-olist-description' => 'Нумерисана листа', |
20643 | 20642 | 'wikieditor-toolbar-help-content-file-description' => 'Слика', |
20644 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Примјер.png|мини|Назив слике]]', |
| 20643 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Примјер.png|мини|Назив слике]]', |
20645 | 20644 | 'wikieditor-toolbar-help-content-reference-description' => 'Референце', |
20646 | 20645 | 'wikieditor-toolbar-help-content-reference-result' => "Текст странице.<sup><a href='#'>[1]</a></sup>", |
20647 | 20646 | 'wikieditor-toolbar-help-content-rereference-description' => 'Додатна употреба исте референце', |
— | — | @@ -20728,8 +20727,8 @@ |
20729 | 20728 | 'wikieditor-toolbar-tool-small-example' => 'Mali tekst', |
20730 | 20729 | 'wikieditor-toolbar-group-insert' => 'Ubaci', |
20731 | 20730 | 'wikieditor-toolbar-tool-gallery' => 'Galerija slika', |
20732 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:primer1.jpg|Naslov1 |
20733 | | -{{ns:file}}:primer2.jpg|Naslov2', |
| 20731 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:primer1.jpg|Naslov1 |
| 20732 | +$1:primer2.jpg|Naslov2', |
20734 | 20733 | 'wikieditor-toolbar-tool-newline' => 'Nova linija', |
20735 | 20734 | 'wikieditor-toolbar-tool-table' => 'Tabela', |
20736 | 20735 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -20816,7 +20815,7 @@ |
20817 | 20816 | 'wikieditor-toolbar-help-content-heading5-syntax' => '===== Naslov odeljka =====', |
20818 | 20817 | 'wikieditor-toolbar-help-content-heading5-result' => '<h5>Naslov odeljka</h5>', |
20819 | 20818 | 'wikieditor-toolbar-help-content-olist-description' => 'Numerisana lista', |
20820 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Primjer.png|mini|Naziv slike]]', |
| 20819 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Primjer.png|mini|Naziv slike]]', |
20821 | 20820 | 'wikieditor-toolbar-help-content-reference-description' => 'Reference', |
20822 | 20821 | 'wikieditor-toolbar-help-content-showreferences-description' => 'Prikaži reference', |
20823 | 20822 | '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)", |
— | — | @@ -20921,8 +20920,8 @@ |
20922 | 20921 | 'wikieditor-toolbar-tool-subscript-example' => 'Téks subskrip', |
20923 | 20922 | 'wikieditor-toolbar-group-insert' => 'Asupkeun', |
20924 | 20923 | 'wikieditor-toolbar-tool-gallery' => 'Galeri gambar', |
20925 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Conto.jpg|Pedaran1 |
20926 | | -{{ns:file}}:Conto.jpg|Pedaran2', |
| 20924 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Conto.jpg|Pedaran1 |
| 20925 | +$1:Conto.jpg|Pedaran2', |
20927 | 20926 | 'wikieditor-toolbar-tool-newline' => 'Baris anyar', |
20928 | 20927 | 'wikieditor-toolbar-tool-table' => 'Tabél', |
20929 | 20928 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -21018,8 +21017,8 @@ |
21019 | 21018 | 'wikieditor-toolbar-help-content-heading5-result' => '<h5>Téks subjudul</h5>', |
21020 | 21019 | 'wikieditor-toolbar-help-content-ulist-description' => 'Béréndélan pélor', |
21021 | 21020 | 'wikieditor-toolbar-help-content-olist-description' => 'Béréndélan nomer', |
21022 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Conto.png|thumb|Téks gambar]]', |
21023 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 21021 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Conto.png|thumb|Téks gambar]]', |
| 21022 | + '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>", |
21024 | 21023 | 'wikieditor-toolbar-help-content-reference-description' => 'Rujukan', |
21025 | 21024 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Téks kaca.<ref name="test">[http://www.conto.org Téks tutumbu], téks panambih.</ref>', |
21026 | 21025 | 'wikieditor-toolbar-help-content-reference-result' => "Téks kaca.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -21148,8 +21147,8 @@ |
21149 | 21148 | 'wikieditor-toolbar-tool-subscript-example' => 'Nedsänkt text', |
21150 | 21149 | 'wikieditor-toolbar-group-insert' => 'Sätt in', |
21151 | 21150 | 'wikieditor-toolbar-tool-gallery' => 'Bildgalleri', |
21152 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Exempel.jpg|Bildtext1 |
21153 | | -{{ns:file}}:Exempel.jpg|Bildtext2', |
| 21151 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Exempel.jpg|Bildtext1 |
| 21152 | +$1:Exempel.jpg|Bildtext2', |
21154 | 21153 | 'wikieditor-toolbar-tool-newline' => 'Ny rad', |
21155 | 21154 | 'wikieditor-toolbar-tool-table' => 'Tabell', |
21156 | 21155 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -21255,8 +21254,8 @@ |
21256 | 21255 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Listelement<br /># Listelement', |
21257 | 21256 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Listelement</li><li>Listelement</li></ol>', |
21258 | 21257 | 'wikieditor-toolbar-help-content-file-description' => 'Inbäddad fil', |
21259 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|miniatyr|Bildtext]]', |
21260 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 21258 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|miniatyr|Bildtext]]', |
| 21259 | + '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>", |
21261 | 21260 | 'wikieditor-toolbar-help-content-reference-description' => 'Referens', |
21262 | 21261 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Brödtext.<ref name="test">[http://www.example.org Länktext], ytterligare text.</ref>', |
21263 | 21262 | 'wikieditor-toolbar-help-content-reference-result' => "Brödtext.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -21379,8 +21378,8 @@ |
21380 | 21379 | 'wikieditor-toolbar-tool-subscript-example' => 'Maandishi ya chini', |
21381 | 21380 | 'wikieditor-toolbar-group-insert' => 'Kuweka', |
21382 | 21381 | 'wikieditor-toolbar-tool-gallery' => 'Mkusanyiko wa picha', |
21383 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Maelezo mafupi 1 |
21384 | | -{{ns:file}}:Example.jpg|Maelezo mafupi 2', |
| 21382 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Maelezo mafupi 1 |
| 21383 | +$1:Example.jpg|Maelezo mafupi 2', |
21385 | 21384 | 'wikieditor-toolbar-tool-newline' => 'Mstari mpya', |
21386 | 21385 | 'wikieditor-toolbar-tool-table' => 'Jedwali', |
21387 | 21386 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -21487,8 +21486,8 @@ |
21488 | 21487 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Aya<br /># Aya', |
21489 | 21488 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Aya</li><li>Aya</li></ol>', |
21490 | 21489 | 'wikieditor-toolbar-help-content-file-description' => 'Faili futike', |
21491 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Maelezo mafupi]]', |
21492 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 21490 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Maelezo mafupi]]', |
| 21491 | + '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>", |
21493 | 21492 | 'wikieditor-toolbar-help-content-reference-description' => 'Tiniwayo', |
21494 | 21493 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Maandishi ya ukurasa.<ref name="mfano">[http://www.example.org Maandishi ya kiungo], maandishi mengine.</ref>', |
21495 | 21494 | 'wikieditor-toolbar-help-content-reference-result' => "Maandiko.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -21783,8 +21782,8 @@ |
21784 | 21783 | 'wikieditor-toolbar-tool-subscript-example' => 'పాదాక్షర పాఠ్యం', |
21785 | 21784 | 'wikieditor-toolbar-group-insert' => 'చేర్చు', |
21786 | 21785 | 'wikieditor-toolbar-tool-gallery' => 'చిత్రమాలిక', |
21787 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|ఉపశీర్షిక1 |
21788 | | -{{ns:file}}:Example.jpg|ఉపశీర్షిక2', |
| 21786 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|ఉపశీర్షిక1 |
| 21787 | +$1:Example.jpg|ఉపశీర్షిక2', |
21789 | 21788 | 'wikieditor-toolbar-tool-newline' => 'కొత్త లైను', |
21790 | 21789 | 'wikieditor-toolbar-tool-table' => 'పట్టిక', |
21791 | 21790 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -21877,8 +21876,8 @@ |
21878 | 21877 | 'wikieditor-toolbar-help-content-olist-description' => 'సంఖ్యానుగుణ జాబితా', |
21879 | 21878 | 'wikieditor-toolbar-help-content-olist-syntax' => '# జాబితా అంశం<br /># జాబితా అంశం', |
21880 | 21879 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>జాబితా అంశం</li><li>జాబితా అంశం</li></ol>', |
21881 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|వివరణ పాఠ్యం]]', |
21882 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 21880 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|వివరణ పాఠ్యం]]', |
| 21881 | + '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>", |
21883 | 21882 | 'wikieditor-toolbar-help-content-reference-description' => 'సాక్ష్యాలు', |
21884 | 21883 | 'wikieditor-toolbar-help-content-reference-syntax' => 'పేజీ పాఠ్యం.<ref name="test">[http://www.example.org లింకు పాఠ్యం], అదనపు పాఠ్యం.</ref>', |
21885 | 21884 | 'wikieditor-toolbar-help-content-reference-result' => "పేజీ పాఠ్యం.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -22010,8 +22009,8 @@ |
22011 | 22010 | 'wikieditor-toolbar-tool-subscript-example' => 'ตัวหนังสือที่เป็นตัวห้อย', |
22012 | 22011 | 'wikieditor-toolbar-group-insert' => 'แทรก', |
22013 | 22012 | 'wikieditor-toolbar-tool-gallery' => 'จัดแสดงภาพ', |
22014 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|คำอธิบายภาพ1 |
22015 | | -{{ns:file}}:Example.jpg|คำอธิบายภาพ2', |
| 22013 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|คำอธิบายภาพ1 |
| 22014 | +$1:Example.jpg|คำอธิบายภาพ2', |
22016 | 22015 | 'wikieditor-toolbar-tool-newline' => 'ขึ้นบรรทัดใหม่', |
22017 | 22016 | 'wikieditor-toolbar-tool-table' => 'ตาราง', |
22018 | 22017 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -22113,8 +22112,8 @@ |
22114 | 22113 | 'wikieditor-toolbar-help-content-olist-syntax' => '# เนื้อหารายการ<br /># เนื้อหารายการ', |
22115 | 22114 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>เนื้อหารายการ</li><li>เนื้อหารายการ</li></ol>', |
22116 | 22115 | 'wikieditor-toolbar-help-content-file-description' => 'แทรกไฟล์', |
22117 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|คำอธิบายภาพ]]', |
22118 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 22116 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|คำอธิบายภาพ]]', |
| 22117 | + '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>", |
22119 | 22118 | 'wikieditor-toolbar-help-content-reference-description' => 'อ้างอิง', |
22120 | 22119 | 'wikieditor-toolbar-help-content-reference-syntax' => 'ชื่อหน้า.<ref name="test">[http://www.example.org ชื่อลิงก์], คำอธิบายเพิ่มเติม.</ref>', |
22121 | 22120 | 'wikieditor-toolbar-help-content-reference-result' => "ข้อความในหน้า<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -22237,8 +22236,8 @@ |
22238 | 22237 | 'wikieditor-toolbar-tool-subscript-example' => 'Setirasty tekst', |
22239 | 22238 | 'wikieditor-toolbar-group-insert' => 'Giriz', |
22240 | 22239 | 'wikieditor-toolbar-tool-gallery' => 'Surat galereýasy', |
22241 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Titr1 |
22242 | | -{{ns:file}}:Example.jpg|Titr2', |
| 22240 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Titr1 |
| 22241 | +$1:Example.jpg|Titr2', |
22243 | 22242 | 'wikieditor-toolbar-tool-newline' => 'Täze setir', |
22244 | 22243 | 'wikieditor-toolbar-tool-table' => 'Tablisa', |
22245 | 22244 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -22344,8 +22343,8 @@ |
22345 | 22344 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Sanaw elementi<br /># Sanaw elementi', |
22346 | 22345 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Sanaw elementi</li><li>Sanaw elementi</li></ol>', |
22347 | 22346 | 'wikieditor-toolbar-help-content-file-description' => 'Salnan faýl', |
22348 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Titriň teksti]]', |
22349 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 22347 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Titriň teksti]]', |
| 22348 | + '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>", |
22350 | 22349 | 'wikieditor-toolbar-help-content-reference-description' => 'Salgylanma', |
22351 | 22350 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Sahypanyň teksti.<ref name="test">[http://www.example.org Çykgydyň teksti], goşmaça tekst.</ref>', |
22352 | 22351 | 'wikieditor-toolbar-help-content-reference-result' => "Sahypa teksti.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -22470,8 +22469,8 @@ |
22471 | 22470 | 'wikieditor-toolbar-tool-subscript-example' => 'Teksto ng nakababang panitik', |
22472 | 22471 | 'wikieditor-toolbar-group-insert' => 'Isingit', |
22473 | 22472 | 'wikieditor-toolbar-tool-gallery' => 'Tipunan ng larawan', |
22474 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Halimbawa.jpg|Kapsyon1 |
22475 | | -{{ns:file}}:Halimbawa.jpg|Kapsyon2', |
| 22473 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Halimbawa.jpg|Kapsyon1 |
| 22474 | +$1:Halimbawa.jpg|Kapsyon2', |
22476 | 22475 | 'wikieditor-toolbar-tool-newline' => 'Bagong guhit', |
22477 | 22476 | 'wikieditor-toolbar-tool-table' => 'Talahanayan', |
22478 | 22477 | 'wikieditor-toolbar-tool-table-example-old' => ' |
— | — | @@ -22577,8 +22576,8 @@ |
22578 | 22577 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Bagay sa talaan<br /># Bagay sa talaan', |
22579 | 22578 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Bagay sa talaan</li><li>Bagay sa talaan</li></ol>', |
22580 | 22579 | 'wikieditor-toolbar-help-content-file-description' => 'Talaksang nakabaon', |
22581 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Halimbawa.png|kagyat|Teksto ng kapsyon]]', |
22582 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 22580 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Halimbawa.png|kagyat|Teksto ng kapsyon]]', |
| 22581 | + '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>", |
22583 | 22582 | 'wikieditor-toolbar-help-content-reference-description' => 'Sanggunian', |
22584 | 22583 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Taksto ng pahina.<ref name="test">[http://www.halimbawa.org Teksto ng kawing], karagdagang teksto.</ref>', |
22585 | 22584 | 'wikieditor-toolbar-help-content-reference-result' => "Teksto ng pahina.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -22713,8 +22712,8 @@ |
22714 | 22713 | 'wikieditor-toolbar-tool-subscript-example' => 'Alt simge metni', |
22715 | 22714 | 'wikieditor-toolbar-group-insert' => 'Ekle', |
22716 | 22715 | 'wikieditor-toolbar-tool-gallery' => 'Resim galerisi', |
22717 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Örnek.jpg|Resimyazısı1 |
22718 | | -{{ns:file}}:Örnek.jpg|Resimyazısı2', |
| 22716 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Örnek.jpg|Resimyazısı1 |
| 22717 | +$1:Örnek.jpg|Resimyazısı2', |
22719 | 22718 | 'wikieditor-toolbar-tool-newline' => 'Yeni satır', |
22720 | 22719 | 'wikieditor-toolbar-tool-table' => 'Tablo', |
22721 | 22720 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -22819,8 +22818,8 @@ |
22820 | 22819 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Liste öğesi<br /># Liste öğesi', |
22821 | 22820 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Liste öğesi</li><li>Liste öğesi</li></ol>', |
22822 | 22821 | 'wikieditor-toolbar-help-content-file-description' => 'Gömülü dosya', |
22823 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Ornek.png|thumb|Resim yazısı]]', |
22824 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 22822 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Ornek.png|thumb|Resim yazısı]]', |
| 22823 | + '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>", |
22825 | 22824 | 'wikieditor-toolbar-help-content-reference-description' => 'Kaynak', |
22826 | 22825 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Sayfa metni.<ref name="deneme">[http://www.ornek.org Bağlanı metni], ek metin.</ref>', |
22827 | 22826 | 'wikieditor-toolbar-help-content-reference-result' => "Sayfa metni.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -22946,8 +22945,8 @@ |
22947 | 22946 | 'wikieditor-toolbar-tool-subscript-example' => 'Индекслы юл тексты', |
22948 | 22947 | 'wikieditor-toolbar-group-insert' => 'Өстәү', |
22949 | 22948 | 'wikieditor-toolbar-tool-gallery' => 'Рәсемнәр җыентыгы', |
22950 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Мисал.jpg|Тасвирлама1 |
22951 | | -{{ns:file}}:Мисал.jpg|Тасвирлама2', |
| 22949 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Мисал.jpg|Тасвирлама1 |
| 22950 | +$1:Мисал.jpg|Тасвирлама2', |
22952 | 22951 | 'wikieditor-toolbar-tool-newline' => 'Яңа юл', |
22953 | 22952 | 'wikieditor-toolbar-tool-table' => 'Табын', |
22954 | 22953 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -23053,9 +23052,9 @@ |
23054 | 23053 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Исемлекнең тәртибе<br /># Исемлекнең тәртибе', |
23055 | 23054 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Исемлекнең тәртибе</li><li>Исемлекнең тәртибе</li></ol>', |
23056 | 23055 | 'wikieditor-toolbar-help-content-file-description' => 'Куелган файл', |
23057 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Аңлатмалы текст]]', |
| 23056 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Аңлатмалы текст]]', |
23058 | 23057 | 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title=' |
23059 | | -Аңлатмалы текст' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='extensions/UsabilityInitiative/images/wikiEditor/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> |
| 23058 | +Аңлатмалы текст' 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> |
23060 | 23059 | Пояснительный текст</div></div>", |
23061 | 23060 | 'wikieditor-toolbar-help-content-reference-description' => 'Искәрмә', |
23062 | 23061 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Битнең тексты.<ref name="test">[http://www.example.org Сылтаманың тексты], өстәмә текст.</ref>', |
— | — | @@ -23185,8 +23184,8 @@ |
23186 | 23185 | 'wikieditor-toolbar-tool-subscript-example' => 'Текст нижнього індексу', |
23187 | 23186 | 'wikieditor-toolbar-group-insert' => 'Вставити', |
23188 | 23187 | 'wikieditor-toolbar-tool-gallery' => 'Галерея', |
23189 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Опис1 |
23190 | | -{{ns:file}}:Example.jpg|Опис2', |
| 23188 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Опис1 |
| 23189 | +$1:Example.jpg|Опис2', |
23191 | 23190 | 'wikieditor-toolbar-tool-newline' => 'Новий рядок', |
23192 | 23191 | 'wikieditor-toolbar-tool-table' => 'Таблиця', |
23193 | 23192 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -23292,8 +23291,8 @@ |
23293 | 23292 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Елемент списку<br /># Елемент списку', |
23294 | 23293 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Елемент списку</li><li>Елемент списку</li></ol>', |
23295 | 23294 | 'wikieditor-toolbar-help-content-file-description' => 'Вбудований файл', |
23296 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Пояснювальний текст]]', |
23297 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 23295 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Пояснювальний текст]]', |
| 23296 | + '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>", |
23298 | 23297 | 'wikieditor-toolbar-help-content-reference-description' => 'Виноска', |
23299 | 23298 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Текст сторінки<ref name="test">[http://www.example.org Текст посилання], додатковий текст.</ref>.', |
23300 | 23299 | 'wikieditor-toolbar-help-content-reference-result' => "Текст сторінки.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -23425,8 +23424,8 @@ |
23426 | 23425 | 'wikieditor-toolbar-tool-subscript-example' => 'Testo in pèdice', |
23427 | 23426 | 'wikieditor-toolbar-group-insert' => 'Inserissi', |
23428 | 23427 | 'wikieditor-toolbar-tool-gallery' => 'Galerìa fotografica', |
23429 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Esenpio.jpg|Didascalia1 |
23430 | | -{{ns:file}}:Esenpio.jpg|Didascalia2', |
| 23428 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Esenpio.jpg|Didascalia1 |
| 23429 | +$1:Esenpio.jpg|Didascalia2', |
23431 | 23430 | 'wikieditor-toolbar-tool-newline' => 'Riga nova', |
23432 | 23431 | 'wikieditor-toolbar-tool-table' => 'Tabèla', |
23433 | 23432 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -23532,8 +23531,8 @@ |
23533 | 23532 | 'wikieditor-toolbar-help-content-olist-syntax' => "# Elemento de l'elenco<br /># Elemento de l'elenco", |
23534 | 23533 | 'wikieditor-toolbar-help-content-olist-result' => "<ol><li>Elemento de l'elenco</li><li>Elemento de l'elenco</li></ol>", |
23535 | 23534 | 'wikieditor-toolbar-help-content-file-description' => 'File incorporado', |
23536 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Testo de la didascalia]]', |
23537 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 23535 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Testo de la didascalia]]', |
| 23536 | + '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>", |
23538 | 23537 | 'wikieditor-toolbar-help-content-reference-description' => 'Nota', |
23539 | 23538 | '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>', |
23540 | 23539 | 'wikieditor-toolbar-help-content-reference-result' => "Testo de la pagina.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -23712,8 +23711,8 @@ |
23713 | 23712 | 'wikieditor-toolbar-tool-subscript-example' => 'Chữ được viết xuống dưới', |
23714 | 23713 | 'wikieditor-toolbar-group-insert' => 'Chèn', |
23715 | 23714 | 'wikieditor-toolbar-tool-gallery' => 'Album hình ảnh', |
23716 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Ví dụ.jpg|Chú thích 1 |
23717 | | -{{ns:file}}:Ví dụ.jpg|Chú thích 2', |
| 23715 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Ví dụ.jpg|Chú thích 1 |
| 23716 | +$1:Ví dụ.jpg|Chú thích 2', |
23718 | 23717 | 'wikieditor-toolbar-tool-newline' => 'Dòng mới', |
23719 | 23718 | 'wikieditor-toolbar-tool-table' => 'Bảng', |
23720 | 23719 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -23819,8 +23818,8 @@ |
23820 | 23819 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Mục danh sách<br /># Mục danh sách', |
23821 | 23820 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Mục danh sách</li><li>Mục danh sách</li></ol>', |
23822 | 23821 | 'wikieditor-toolbar-help-content-file-description' => 'Chèn tập tin', |
23823 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Ví dụ.png|thumb|Văn bản chú thích]]', |
23824 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 23822 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Ví dụ.png|thumb|Văn bản chú thích]]', |
| 23823 | + '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>", |
23825 | 23824 | 'wikieditor-toolbar-help-content-reference-description' => 'Tham khảo', |
23826 | 23825 | '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>.', |
23827 | 23826 | 'wikieditor-toolbar-help-content-reference-result' => "Nội dung trang<sup><a href='#'>[1]</a></sup>.", |
— | — | @@ -23928,8 +23927,8 @@ |
23929 | 23928 | 'wikieditor-toolbar-tool-subscript-example' => 'Mbind ci suufaan', |
23930 | 23929 | 'wikieditor-toolbar-group-insert' => 'Roof', |
23931 | 23930 | 'wikieditor-toolbar-tool-gallery' => 'Gaaraluwaayu nataal', |
23932 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Misaal.jpg|Faramfacce1 |
23933 | | -{{ns:file}}:Misaal.jpg|Faramfacce2', |
| 23931 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Misaal.jpg|Faramfacce1 |
| 23932 | +$1:Misaal.jpg|Faramfacce2', |
23934 | 23933 | 'wikieditor-toolbar-tool-newline' => 'Rëdd wu bees', |
23935 | 23934 | 'wikieditor-toolbar-tool-table' => 'Xaatim', |
23936 | 23935 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -24084,8 +24083,8 @@ |
24085 | 24084 | 'wikieditor-toolbar-tool-subscript-example' => 'גענידערטער טעקסט', |
24086 | 24085 | 'wikieditor-toolbar-group-insert' => 'צולייגן', |
24087 | 24086 | 'wikieditor-toolbar-tool-gallery' => 'בילדער גאַלעריע', |
24088 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:בײַשפיל.jpg|קעפל1 |
24089 | | -{{ns:file}}:בײַשפיל.jpg|קעפל2', |
| 24087 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:בײַשפיל.jpg|קעפל1 |
| 24088 | +$1:בײַשפיל.jpg|קעפל2', |
24090 | 24089 | 'wikieditor-toolbar-tool-newline' => 'נײַע שורה', |
24091 | 24090 | 'wikieditor-toolbar-tool-table' => 'טאַבעלע', |
24092 | 24091 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -24188,8 +24187,8 @@ |
24189 | 24188 | 'wikieditor-toolbar-help-content-olist-syntax' => '# ליסטע איינצל<br /># ליסטע איינצל', |
24190 | 24189 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>ליסטע איינצל</li><li>ליסטע איינצל</li></ol>', |
24191 | 24190 | 'wikieditor-toolbar-help-content-file-description' => 'אײַנגעבעטעטע טעקע', |
24192 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|באשרייבונג]]', |
24193 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 24191 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|באשרייבונג]]', |
| 24192 | + '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>", |
24194 | 24193 | 'wikieditor-toolbar-help-content-reference-description' => 'רעפערענץ', |
24195 | 24194 | 'wikieditor-toolbar-help-content-reference-syntax' => 'בלאַט טעקסט.<ref name="test">[http://www.example.org לינק טעקסט], צוגעגעבענער טעקסט.</ref>', |
24196 | 24195 | 'wikieditor-toolbar-help-content-reference-result' => "בלאַט טעקסט. <a href='#'><sup>[1]</sup></a>", |
— | — | @@ -24310,8 +24309,8 @@ |
24311 | 24310 | 'wikieditor-toolbar-tool-subscript-example' => 'Ìkọ àfìkọṣábẹ́', |
24312 | 24311 | 'wikieditor-toolbar-group-insert' => 'Ìkìbọ̀', |
24313 | 24312 | 'wikieditor-toolbar-tool-gallery' => 'Ìkójọ àwòrán', |
24314 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|Àkọlé1 |
24315 | | -{{ns:file}}:Example.jpg|Àkọlé2', |
| 24313 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|Àkọlé1 |
| 24314 | +$1:Example.jpg|Àkọlé2', |
24316 | 24315 | 'wikieditor-toolbar-tool-newline' => 'Ìlà tuntun', |
24317 | 24316 | 'wikieditor-toolbar-tool-table' => 'Tábìlì', |
24318 | 24317 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -24417,8 +24416,8 @@ |
24418 | 24417 | 'wikieditor-toolbar-help-content-olist-syntax' => '# Ohun àkójọ<br /># Ohun àkójọ', |
24419 | 24418 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>Ohun àkójọ</li><li>Ohun àkójọ</li></ol>', |
24420 | 24419 | 'wikieditor-toolbar-help-content-file-description' => 'Fáìlì alákòósínú', |
24421 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|Àkọlé]]', |
24422 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 24420 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Àkọlé]]', |
| 24421 | + '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>", |
24423 | 24422 | 'wikieditor-toolbar-help-content-reference-description' => 'Ìtọ́kasí', |
24424 | 24423 | 'wikieditor-toolbar-help-content-reference-syntax' => 'Íkọ ojúewé.<ref name="test">[http://www.example.org Ìkọ ìjápọ̀], ìkọ mìràn.</ref>', |
24425 | 24424 | 'wikieditor-toolbar-help-content-reference-result' => "Ìkọ ojúewé.<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -24540,8 +24539,8 @@ |
24541 | 24540 | 'wikieditor-toolbar-tool-subscript-example' => '下標字', |
24542 | 24541 | 'wikieditor-toolbar-group-insert' => '插入', |
24543 | 24542 | 'wikieditor-toolbar-tool-gallery' => '畫廊', |
24544 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|標題1 |
24545 | | -{{ns:file}}:Example.jpg|標題2', |
| 24543 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|標題1 |
| 24544 | +$1:Example.jpg|標題2', |
24546 | 24545 | 'wikieditor-toolbar-tool-newline' => '新行', |
24547 | 24546 | 'wikieditor-toolbar-tool-table' => '表', |
24548 | 24547 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -24666,8 +24665,8 @@ |
24667 | 24666 | 'wikieditor-toolbar-help-content-olist-syntax' => '# 一覽項目<br /># 一覽項目', |
24668 | 24667 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>一覽項目</li><li>一覽項目</li></ol>', |
24669 | 24668 | 'wikieditor-toolbar-help-content-file-description' => '結合檔', |
24670 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|標題字]]', |
24671 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 24669 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|標題字]]', |
| 24670 | + '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>", |
24672 | 24671 | 'wikieditor-toolbar-help-content-reference-description' => '參考', |
24673 | 24672 | 'wikieditor-toolbar-help-content-reference-syntax' => '頁字。<ref name="test">[http://www.example.org 連字],附加字。</ref>', |
24674 | 24673 | 'wikieditor-toolbar-help-content-reference-result' => "頁字。<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -24798,8 +24797,8 @@ |
24799 | 24798 | 'wikieditor-toolbar-tool-subscript-example' => '下标文字', |
24800 | 24799 | 'wikieditor-toolbar-group-insert' => '插入', |
24801 | 24800 | 'wikieditor-toolbar-tool-gallery' => '画廊', |
24802 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|标题1 |
24803 | | -{{ns:file}}:Example.jpg|标题2', |
| 24801 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|标题1 |
| 24802 | +$1:Example.jpg|标题2', |
24804 | 24803 | 'wikieditor-toolbar-tool-newline' => '换行', |
24805 | 24804 | 'wikieditor-toolbar-tool-table' => '表格', |
24806 | 24805 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -24905,8 +24904,8 @@ |
24906 | 24905 | 'wikieditor-toolbar-help-content-olist-syntax' => '# 列表项<br /># 列表项', |
24907 | 24906 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>列表项</li><li>列表项</li></ol>', |
24908 | 24907 | 'wikieditor-toolbar-help-content-file-description' => '嵌入文件', |
24909 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|标题文本]]', |
24910 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 24908 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|标题文本]]', |
| 24909 | + '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>", |
24911 | 24910 | 'wikieditor-toolbar-help-content-reference-description' => '注释', |
24912 | 24911 | 'wikieditor-toolbar-help-content-reference-syntax' => '页面文本。<ref name="测试">[http://www.example.org 链接文本],附加文本。</ref>', |
24913 | 24912 | 'wikieditor-toolbar-help-content-reference-result' => "页面文本。<sup><a href='#'>[1]</a></sup>", |
— | — | @@ -25037,8 +25036,8 @@ |
25038 | 25037 | 'wikieditor-toolbar-tool-subscript-example' => '下標文字', |
25039 | 25038 | 'wikieditor-toolbar-group-insert' => '插入', |
25040 | 25039 | 'wikieditor-toolbar-tool-gallery' => '畫廊', |
25041 | | - 'wikieditor-toolbar-tool-gallery-example' => '{{ns:file}}:Example.jpg|標題1 |
25042 | | -{{ns:file}}:Example.jpg|標題2', |
| 25040 | + 'wikieditor-toolbar-tool-gallery-example' => '$1:Example.jpg|標題1 |
| 25041 | +$1:Example.jpg|標題2', |
25043 | 25042 | 'wikieditor-toolbar-tool-newline' => '換行', |
25044 | 25043 | 'wikieditor-toolbar-tool-table' => '表格', |
25045 | 25044 | 'wikieditor-toolbar-tool-table-example-old' => '- |
— | — | @@ -25166,8 +25165,8 @@ |
25167 | 25166 | 'wikieditor-toolbar-help-content-olist-syntax' => '# 列表項目<br /># 列表項目', |
25168 | 25167 | 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>列表項目</li><li>列表項目</li></ol>', |
25169 | 25168 | 'wikieditor-toolbar-help-content-file-description' => '結合檔', |
25170 | | - 'wikieditor-toolbar-help-content-file-syntax' => '[[{{ns:file}}:Example.png|thumb|標題文字]]', |
25171 | | - '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/UsabilityInitiative/images/wikiEditor/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>", |
| 25169 | + 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|標題文字]]', |
| 25170 | + '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>", |
25172 | 25171 | 'wikieditor-toolbar-help-content-reference-description' => '參考', |
25173 | 25172 | 'wikieditor-toolbar-help-content-reference-syntax' => '頁面文字。<ref name="測試">[http://www.example.org 連結文字],附加文字。</ref>', |
25174 | 25173 | 'wikieditor-toolbar-help-content-reference-result' => "頁面文字。<sup><a href='#'>[1]</a></sup>", |