PageRenderTime 59ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 2ms

/extensions/WikiEditor/WikiEditor.i18n.php

https://bitbucket.org/ghostfreeman/freeside-wiki
PHP | 6563 lines | 6399 code | 33 blank | 131 comment | 25 complexity | e3003586456530a85ff805bb07cb1224 MD5 | raw file
Possible License(s): GPL-2.0, Apache-2.0, LGPL-3.0

Large files files are truncated, but you can click here to view the full file

  1. <?php
  2. /**
  3. * Internationalisation for WikiEditor extension
  4. *
  5. * @file
  6. * @ingroup Extensions
  7. */
  8. $messages = array();
  9. /** English
  10. * @author Trevor Parscal
  11. */
  12. $messages['en'] = array(
  13. /* WikiEditor */
  14. 'wikieditor' => 'Advanced wikitext editing interface',
  15. 'wikieditor-desc' => 'Provides an extendable wikitext editing interface and many feature-providing modules',
  16. 'wikieditor-wikitext-tab' => 'Wikitext',
  17. 'wikieditor-loading' => 'Loading...',
  18. /* Preview */
  19. 'wikieditor-preview-preference' => 'Enable side-by-side preview',
  20. 'wikieditor-preview-tab' => 'Preview',
  21. 'wikieditor-preview-changes-tab' => 'Changes',
  22. 'wikieditor-preview-loading' => 'Loading...',
  23. /* Preview Dialog */
  24. 'wikieditor-previewDialog-preference' => 'Enable preview dialog',
  25. 'wikieditor-previewDialog-tab' => 'Preview',
  26. 'wikieditor-previewDialog-loading' => 'Loading...',
  27. /* Publish */
  28. 'wikieditor-publish-preference' => 'Enable step-by-step publishing',
  29. 'wikieditor-publish-button-publish' => 'Publish',
  30. 'wikieditor-publish-button-cancel' => 'Cancel',
  31. 'wikieditor-publish-dialog-title' => 'Publish to {{SITENAME}}',
  32. 'wikieditor-publish-dialog-summary' => 'Edit summary (briefly describe the changes you have made):',
  33. 'wikieditor-publish-dialog-minor' => 'Minor edit',
  34. 'wikieditor-publish-dialog-watch' => 'Watch this page',
  35. 'wikieditor-publish-dialog-publish' => 'Publish',
  36. 'wikieditor-publish-dialog-goback' => 'Go back',
  37. /* Template Editor */
  38. 'wikieditor-template-editor-preference' => 'Enable form-based editing of wiki templates',
  39. 'wikieditor-template-editor-dialog-title' => 'Edit template',
  40. 'wikieditor-template-editor-dialog-submit' => 'Update',
  41. 'wikieditor-template-editor-dialog-cancel' => 'Cancel',
  42. /* Templates */
  43. 'wikieditor-templates-preference' => 'Enable template collapsing',
  44. /* Table of Contents */
  45. 'wikieditor-toc-preference' => 'Enable navigable table of contents',
  46. 'wikieditor-toc-show' => 'Show contents',
  47. 'wikieditor-toc-hide' => 'Hide contents',
  48. /* Toolbar */
  49. 'wikieditor-toolbar' => 'Editing toolbar',
  50. 'wikieditor-toolbar-desc' => 'Edit page toolbar with enhanced usability',
  51. 'wikieditor-toolbar-preference' => 'Enable enhanced editing toolbar',
  52. 'wikieditor-toolbar-dialogs-preference' => 'Enable dialogs for inserting links, tables and more',
  53. 'wikieditor-toolbar-hidesig' => 'Hide the signature button from pages in the main namespace',
  54. 'wikieditor-toolbar-loading' => 'Loading...',
  55. /* Toolbar - Main Section */
  56. 'wikieditor-toolbar-tool-bold' => 'Bold',
  57. 'wikieditor-toolbar-tool-bold-example' => 'Bold text',
  58. 'wikieditor-toolbar-tool-italic' => 'Italic',
  59. 'wikieditor-toolbar-tool-italic-example' => 'Italic text',
  60. 'wikieditor-toolbar-tool-ilink' => 'Internal link',
  61. 'wikieditor-toolbar-tool-ilink-example' => 'Link title',
  62. 'wikieditor-toolbar-tool-xlink' => 'External link (remember http:// prefix)',
  63. 'wikieditor-toolbar-tool-xlink-example' => 'http://www.example.com link title',
  64. 'wikieditor-toolbar-tool-link' => 'Link',
  65. 'wikieditor-toolbar-tool-link-title' => 'Insert link',
  66. 'wikieditor-toolbar-tool-link-int' => 'To a wiki page',
  67. 'wikieditor-toolbar-tool-link-int-target' => 'Target page or URL:',
  68. 'wikieditor-toolbar-tool-link-int-target-tooltip' => 'Page title or URL',
  69. 'wikieditor-toolbar-tool-link-int-text' => 'Text to display:',
  70. 'wikieditor-toolbar-tool-link-int-text-tooltip' => 'Text to be displayed',
  71. 'wikieditor-toolbar-tool-link-ext' => 'To an external web page',
  72. 'wikieditor-toolbar-tool-link-ext-target' => 'Link URL:',
  73. 'wikieditor-toolbar-tool-link-ext-text' => 'Link text:',
  74. 'wikieditor-toolbar-tool-link-insert' => 'Insert link',
  75. 'wikieditor-toolbar-tool-link-cancel' => 'Cancel',
  76. 'wikieditor-toolbar-tool-link-int-target-status-exists' => 'Page exists',
  77. 'wikieditor-toolbar-tool-link-int-target-status-notexists' => 'Page does not exist',
  78. 'wikieditor-toolbar-tool-link-int-target-status-invalid' => 'Invalid title',
  79. 'wikieditor-toolbar-tool-link-int-target-status-external' => 'External link',
  80. 'wikieditor-toolbar-tool-link-int-target-status-loading' => 'Checking page existence...',
  81. 'wikieditor-toolbar-tool-link-int-invalid' => 'The title you specified is invalid.',
  82. 'wikieditor-toolbar-tool-link-lookslikeinternal' => 'The URL you specified looks like it was intended as a link to another wiki page.
  83. Do you want to make it an internal link?',
  84. 'wikieditor-toolbar-tool-link-lookslikeinternal-int' => 'Internal link',
  85. 'wikieditor-toolbar-tool-link-lookslikeinternal-ext' => 'External link',
  86. 'wikieditor-toolbar-tool-link-empty' => "You did not enter anything to link to.",
  87. 'wikieditor-toolbar-tool-file' => 'Embedded file',
  88. 'wikieditor-toolbar-tool-file-example' => 'Example.jpg',
  89. 'wikieditor-toolbar-tool-file-title' => 'Insert file',
  90. 'wikieditor-toolbar-file-target' => 'Filename:',
  91. 'wikieditor-toolbar-file-caption' => 'Caption:',
  92. 'wikieditor-toolbar-file-size' => 'Size:',
  93. 'wikieditor-toolbar-file-float' => 'Align:',
  94. 'wikieditor-toolbar-file-default' => '(default)',
  95. 'wikieditor-toolbar-file-format' => 'Format:',
  96. 'wikieditor-toolbar-file-format-none' => 'none',
  97. 'wikieditor-toolbar-tool-file-insert' => 'Insert',
  98. 'wikieditor-toolbar-tool-file-cancel' => 'Cancel',
  99. 'wikieditor-toolbar-tool-reference' => 'Reference',
  100. 'wikieditor-toolbar-tool-reference-example' => 'Insert footnote text here',
  101. 'wikieditor-toolbar-tool-reference-cancel' => 'Cancel',
  102. 'wikieditor-toolbar-tool-reference-title' => 'Insert reference',
  103. 'wikieditor-toolbar-tool-reference-insert' => 'Insert',
  104. 'wikieditor-toolbar-tool-reference-text' => 'Reference text',
  105. 'wikieditor-toolbar-tool-signature' => 'Signature and timestamp',
  106. /* Toolbar - Advanced Section */
  107. 'wikieditor-toolbar-section-advanced' => 'Advanced',
  108. 'wikieditor-toolbar-tool-heading' => 'Heading',
  109. 'wikieditor-toolbar-tool-heading-1' => 'Level 1',
  110. 'wikieditor-toolbar-tool-heading-2' => 'Level 2',
  111. 'wikieditor-toolbar-tool-heading-3' => 'Level 3',
  112. 'wikieditor-toolbar-tool-heading-4' => 'Level 4',
  113. 'wikieditor-toolbar-tool-heading-5' => 'Level 5',
  114. 'wikieditor-toolbar-tool-heading-example' => 'Heading text',
  115. 'wikieditor-toolbar-group-format' => 'Format',
  116. 'wikieditor-toolbar-tool-ulist' => 'Bulleted list',
  117. 'wikieditor-toolbar-tool-ulist-example' => 'Bulleted list item',
  118. 'wikieditor-toolbar-tool-olist' => 'Numbered list',
  119. 'wikieditor-toolbar-tool-olist-example' => 'Numbered list item',
  120. 'wikieditor-toolbar-tool-indent' => 'Indentation',
  121. 'wikieditor-toolbar-tool-indent-example' => 'Indented line',
  122. 'wikieditor-toolbar-tool-nowiki' => 'No wiki formatting',
  123. 'wikieditor-toolbar-tool-nowiki-example' => 'Insert non-formatted text here',
  124. 'wikieditor-toolbar-tool-redirect' => 'Redirect',
  125. 'wikieditor-toolbar-tool-redirect-example' => 'Target page name',
  126. 'wikieditor-toolbar-tool-big' => 'Big',
  127. 'wikieditor-toolbar-tool-big-example' => 'Big text',
  128. 'wikieditor-toolbar-tool-small' => 'Small',
  129. 'wikieditor-toolbar-tool-small-example' => 'Small text',
  130. 'wikieditor-toolbar-tool-superscript' => 'Superscript',
  131. 'wikieditor-toolbar-tool-superscript-example' => 'Superscript text',
  132. 'wikieditor-toolbar-tool-subscript' => 'Subscript',
  133. 'wikieditor-toolbar-tool-subscript-example' => 'Subscript text',
  134. 'wikieditor-toolbar-group-insert' => 'Insert',
  135. 'wikieditor-toolbar-tool-gallery' => 'Picture gallery',
  136. 'wikieditor-toolbar-tool-gallery-example' => "$1:Example.jpg|Caption1
  137. $1:Example.jpg|Caption2",
  138. 'wikieditor-toolbar-tool-newline' => 'New line',
  139. 'wikieditor-toolbar-tool-table' => 'Table',
  140. 'wikieditor-toolbar-tool-table-example-old' => "-
  141. ! header 1
  142. ! header 2
  143. ! header 3
  144. |-
  145. | row 1, cell 1
  146. | row 1, cell 2
  147. | row 1, cell 3
  148. |-
  149. | row 2, cell 1
  150. | row 2, cell 2
  151. | row 2, cell 3",
  152. 'wikieditor-toolbar-tool-table-example-cell-text' => 'Cell text',
  153. 'wikieditor-toolbar-tool-table-example-header' => 'Header text',
  154. 'wikieditor-toolbar-tool-table-title' => 'Insert table',
  155. 'wikieditor-toolbar-tool-table-dimensions-rows' => 'Rows',
  156. 'wikieditor-toolbar-tool-table-dimensions-columns' => 'Columns',
  157. 'wikieditor-toolbar-tool-table-dimensions-header' => 'Add header row',
  158. 'wikieditor-toolbar-tool-table-wikitable' => 'Style with borders',
  159. 'wikieditor-toolbar-tool-table-sortable' => 'Make table sortable',
  160. 'wikieditor-toolbar-tool-table-example' => 'Example',
  161. 'wikieditor-toolbar-tool-table-preview' => 'Preview',
  162. 'wikieditor-toolbar-tool-table-insert' => 'Insert',
  163. 'wikieditor-toolbar-tool-table-cancel' => 'Cancel',
  164. 'wikieditor-toolbar-tool-table-example-text' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut nec purus diam. Sed aliquam imperdiet nunc quis lacinia. Donec rutrum consectetur placerat. Sed volutpat neque non purus faucibus id ultricies enim euismod.',
  165. 'wikieditor-toolbar-tool-table-toomany' => 'Inserting a table with more than $1 cells is not possible with this dialog.',
  166. 'wikieditor-toolbar-tool-table-invalidnumber' => 'You have not entered a valid number of rows or columns.',
  167. 'wikieditor-toolbar-tool-table-zero' => 'You cannot insert a table with zero rows or columns.',
  168. 'wikieditor-toolbar-tool-replace' => 'Search and replace',
  169. 'wikieditor-toolbar-tool-replace-title' => 'Search and replace',
  170. 'wikieditor-toolbar-tool-replace-search' => 'Search for:',
  171. 'wikieditor-toolbar-tool-replace-replace' => 'Replace with:',
  172. 'wikieditor-toolbar-tool-replace-case' => 'Match case',
  173. 'wikieditor-toolbar-tool-replace-regex' => 'Treat search string as a regular expression',
  174. 'wikieditor-toolbar-tool-replace-button-findnext' => 'Find next',
  175. 'wikieditor-toolbar-tool-replace-button-replace' => 'Replace',
  176. 'wikieditor-toolbar-tool-replace-button-replaceall' => 'Replace all',
  177. 'wikieditor-toolbar-tool-replace-close' => 'Close',
  178. 'wikieditor-toolbar-tool-replace-nomatch' => 'Your search did not match anything.',
  179. 'wikieditor-toolbar-tool-replace-success' => '$1 replacement(s) made.',
  180. 'wikieditor-toolbar-tool-replace-emptysearch' => 'You did not enter anything to search for.',
  181. 'wikieditor-toolbar-tool-replace-invalidregex' => 'The regular expression you entered is invalid: $1',
  182. /* Toolbar - Special characters Section */
  183. 'wikieditor-toolbar-section-characters' => 'Special characters',
  184. 'wikieditor-toolbar-characters-page-latin' => 'Latin',
  185. 'wikieditor-toolbar-characters-page-latinextended' => 'Latin extended',
  186. 'wikieditor-toolbar-characters-page-ipa' => 'IPA',
  187. 'wikieditor-toolbar-characters-page-symbols' => 'Symbols',
  188. 'wikieditor-toolbar-characters-page-greek' => 'Greek',
  189. 'wikieditor-toolbar-characters-page-cyrillic' => 'Cyrillic',
  190. 'wikieditor-toolbar-characters-page-arabic' => 'Arabic',
  191. 'wikieditor-toolbar-characters-page-arabicextended' => 'Arabic extended',
  192. 'wikieditor-toolbar-characters-page-persian' => 'Persian',
  193. 'wikieditor-toolbar-characters-page-hebrew' => 'Hebrew',
  194. 'wikieditor-toolbar-characters-page-bangla' => 'Bangla',
  195. 'wikieditor-toolbar-characters-page-tamil' => 'Tamil',
  196. 'wikieditor-toolbar-characters-page-telugu' => 'Telugu',
  197. 'wikieditor-toolbar-characters-page-sinhala' => 'Sinhala',
  198. 'wikieditor-toolbar-characters-page-gujarati' => 'Gujarati',
  199. 'wikieditor-toolbar-characters-page-devanagari' => 'Devanagari',
  200. 'wikieditor-toolbar-characters-page-thai' => 'Thai',
  201. 'wikieditor-toolbar-characters-page-lao' => 'Lao',
  202. 'wikieditor-toolbar-characters-page-khmer' => 'Khmer',
  203. /* Toolbar - Help Section */
  204. 'wikieditor-toolbar-section-help' => 'Help',
  205. 'wikieditor-toolbar-help-heading-description' => 'Description',
  206. 'wikieditor-toolbar-help-heading-syntax' => 'What you type',
  207. 'wikieditor-toolbar-help-heading-result' => 'What you get',
  208. 'wikieditor-toolbar-help-page-format' => 'Formatting',
  209. 'wikieditor-toolbar-help-page-link' => 'Links',
  210. 'wikieditor-toolbar-help-page-heading' => 'Headings',
  211. 'wikieditor-toolbar-help-page-list' => 'Lists',
  212. 'wikieditor-toolbar-help-page-file' => 'Files',
  213. 'wikieditor-toolbar-help-page-reference' => 'References',
  214. 'wikieditor-toolbar-help-page-discussion' => 'Discussion',
  215. 'wikieditor-toolbar-help-content-italic-description' => 'Italic',
  216. 'wikieditor-toolbar-help-content-italic-syntax' => "''Italic text''",
  217. 'wikieditor-toolbar-help-content-italic-result' => '<em>Italic text</em>',
  218. 'wikieditor-toolbar-help-content-bold-description' => 'Bold',
  219. 'wikieditor-toolbar-help-content-bold-syntax' => "'''Bold text'''",
  220. 'wikieditor-toolbar-help-content-bold-result' => '<strong>Bold text</strong>',
  221. 'wikieditor-toolbar-help-content-bolditalic-description' => 'Bold &amp; italic',
  222. 'wikieditor-toolbar-help-content-bolditalic-syntax' => "'''''Bold &amp; italic text'''''",
  223. 'wikieditor-toolbar-help-content-bolditalic-result' => '<strong><em>Bold &amp; italic text</em></strong>',
  224. 'wikieditor-toolbar-help-content-ilink-description' => 'Internal link',
  225. 'wikieditor-toolbar-help-content-ilink-syntax' => '[[Page title|Link label]]<br />[[Page title]]',
  226. 'wikieditor-toolbar-help-content-ilink-result' => "<a href='#'>Link label</a><br /><a href='#'>Page title</a>",
  227. 'wikieditor-toolbar-help-content-xlink-description' => 'External link',
  228. 'wikieditor-toolbar-help-content-xlink-syntax' => '[http://www.example.org Link label]<br />[http://www.example.org]<br />http://www.example.org',
  229. 'wikieditor-toolbar-help-content-xlink-result' => "<a href='#' class='external'>Link label</a><br /><a href='#' class='external autonumber'>[1]</a><br /><a href='#' class='external'>http://www.example.org</a>",
  230. 'wikieditor-toolbar-help-content-heading2-description' => '2nd level heading',
  231. 'wikieditor-toolbar-help-content-heading2-syntax' => '== Heading text ==',
  232. 'wikieditor-toolbar-help-content-heading2-result' => '<h2>Heading text</h2>',
  233. 'wikieditor-toolbar-help-content-heading3-description' => '3rd level heading',
  234. 'wikieditor-toolbar-help-content-heading3-syntax' => '=== Heading text ===',
  235. 'wikieditor-toolbar-help-content-heading3-result' => '<h3>Heading text</h3>',
  236. 'wikieditor-toolbar-help-content-heading4-description' => '4th level heading',
  237. 'wikieditor-toolbar-help-content-heading4-syntax' => '==== Heading text ====',
  238. 'wikieditor-toolbar-help-content-heading4-result' => '<h4>Heading text</h4>',
  239. 'wikieditor-toolbar-help-content-heading5-description' => '5th level heading',
  240. 'wikieditor-toolbar-help-content-heading5-syntax' => '===== Heading text =====',
  241. 'wikieditor-toolbar-help-content-heading5-result' => '<h5>Heading text</h5>',
  242. 'wikieditor-toolbar-help-content-ulist-description' => 'Bulleted list',
  243. 'wikieditor-toolbar-help-content-ulist-syntax' => '* List item<br />* List item',
  244. 'wikieditor-toolbar-help-content-ulist-result' => '<ul><li>List item</li><li>List item</li></ul>',
  245. 'wikieditor-toolbar-help-content-olist-description' => 'Numbered list',
  246. 'wikieditor-toolbar-help-content-olist-syntax' => '# List item<br /># List item',
  247. 'wikieditor-toolbar-help-content-olist-result' => '<ol><li>List item</li><li>List item</li></ol>',
  248. 'wikieditor-toolbar-help-content-file-description' => 'Embedded file',
  249. 'wikieditor-toolbar-help-content-file-syntax' => '[[$1:Example.png|thumb|Caption text]]',
  250. 'wikieditor-toolbar-help-content-file-result' => "<div style='width:104px;' class='thumbinner'><a title='Caption text' class='image' href='#'><img height='50' width='100' border='0' class='thumbimage' src='$2/WikiEditor/modules/images/toolbar/example-image.png' alt=''/></a><div class='thumbcaption'><div class='magnify'><a title='Enlarge' class='internal' href='#'><img height='11' width='15' alt='' src='$1/common/images/magnify-clip.png'/></a></div>Caption text</div></div>",
  251. 'wikieditor-toolbar-help-content-reference-description' => 'Reference',
  252. 'wikieditor-toolbar-help-content-reference-syntax' => 'Page text.&lt;ref name="test"&gt;[http://www.example.org Link text], additional text.&lt;/ref&gt;',
  253. 'wikieditor-toolbar-help-content-reference-result' => "Page text.<sup><a href='#'>[1]</a></sup>",
  254. 'wikieditor-toolbar-help-content-rereference-description' => 'Additional use of same reference',
  255. 'wikieditor-toolbar-help-content-rereference-syntax' => '&lt;ref name="test" /&gt;',
  256. 'wikieditor-toolbar-help-content-rereference-result' => "Page text.<sup><a href='#'>[1]</a></sup>",
  257. 'wikieditor-toolbar-help-content-showreferences-description' => 'Display references',
  258. 'wikieditor-toolbar-help-content-showreferences-syntax' => '&lt;references /&gt;',
  259. 'wikieditor-toolbar-help-content-showreferences-result' => "<ol class='references'><li id='cite_note-test-0'><b><a title='' href='#'>^</a></b> <a rel='nofollow' title='http://www.example.org' class='external text' href='#'>Link text</a>, additional text.</li></ol>",
  260. 'wikieditor-toolbar-help-content-signaturetimestamp-description' => 'Signature with timestamp',
  261. 'wikieditor-toolbar-help-content-signaturetimestamp-syntax' => '~~~~',
  262. 'wikieditor-toolbar-help-content-signaturetimestamp-result' => "<a href='#' title='{{#special:mypage}}'>Username</a> (<a href='#' title='{{#special:mytalk}}'>talk</a>) 15:54, 10 June 2009 (UTC)",
  263. 'wikieditor-toolbar-help-content-signature-description' => 'Signature',
  264. 'wikieditor-toolbar-help-content-signature-syntax' => '~~~',
  265. 'wikieditor-toolbar-help-content-signature-result' => "<a href='#' title='{{#special:mypage}}'>Username</a> (<a href='#' title='{{#special:mytalk}}'>talk</a>)",
  266. 'wikieditor-toolbar-help-content-indent-description' => 'Indent',
  267. 'wikieditor-toolbar-help-content-indent-syntax' => 'Normal text<br />:Indented text<br />::Indented text',
  268. 'wikieditor-toolbar-help-content-indent-result' => 'Normal text<dl><dd>Indented text<dl><dd>Indented text</dd></dl></dd></dl>',
  269. );
  270. /** Message documentation (Message documentation)
  271. * @author Amire80
  272. * @author EugeneZelenko
  273. * @author Hamilton Abreu
  274. * @author Harald Khan
  275. * @author Kghbln
  276. * @author Liangent
  277. * @author Lloffiwr
  278. * @author Mormegil
  279. * @author Njardarlogar
  280. * @author Onecountry
  281. * @author Prima klasy4na
  282. * @author Raymond
  283. * @author Siebrand
  284. * @author Umherirrender
  285. * @author Yekrats
  286. */
  287. $messages['qqq'] = array(
  288. 'wikieditor' => 'An extension to allow for advanced editing features.
  289. http://www.mediawiki.org/wiki/Extension:WikiEditor',
  290. 'wikieditor-desc' => "{{desc}}
  291. I guess that 'feature-providing modules' means the same as 'modules providing features'.",
  292. 'wikieditor-wikitext-tab' => 'Caption of the tab containing the edit box',
  293. 'wikieditor-loading' => "Explanatory text for the temporary cover placed over the wikieditor while it's being assembled.
  294. {{Identical|Loading}}",
  295. 'wikieditor-preview-preference' => "Option in [[Special:Preferences]], tab ''{{int:prefs-editing}}''",
  296. 'wikieditor-preview-tab' => 'Caption of the tab containing the preview
  297. {{Identical|Preview}}',
  298. 'wikieditor-preview-changes-tab' => "Caption of the tab containing a diff of the user's changes, à la ''{{int:Showdiff}}'' ({{msg-mw|Showdiff|notext=1}}).
  299. {{Identical|Change}}",
  300. 'wikieditor-preview-loading' => 'Alt text for spinner displayed while preview is being loaded
  301. {{Identical|Loading}}',
  302. 'wikieditor-previewDialog-tab' => 'Caption of the tab containing the preview
  303. {{Identical|Preview}}',
  304. 'wikieditor-previewDialog-loading' => 'Alt text for spinner displayed while preview is being loaded
  305. {{Identical|Loading}}',
  306. 'wikieditor-publish-preference' => "Option in [[Special:Preferences]], tab ''{{int:prefs-editing}}''",
  307. 'wikieditor-publish-button-publish' => 'Button to the right of the Edit/Preview tabs that opens a dialog window that lets the user save their edit
  308. {{Identical|Publish}}',
  309. 'wikieditor-publish-button-cancel' => 'Button to the right of the Edit/Preview tabs that has the same effect as the {{msg-mw|Cancel}} link below the edit box.
  310. {{Identical|Cancel}}',
  311. 'wikieditor-publish-dialog-title' => 'Title of the dialog that opens when the user clicks the Publish button',
  312. 'wikieditor-publish-dialog-summary' => 'Label for the edit summary textbox in the dialog that opens when the user clicks the Publish button. See also {{msg-mw|Summary}}.',
  313. 'wikieditor-publish-dialog-minor' => 'Label for the minor edit checkbox in the dialog that opens when the user clicks the Publish button. See also {{msg-mw|Minoredit}}',
  314. 'wikieditor-publish-dialog-watch' => 'Label for the watch checkbox in the dialog that opens when the user clicks the Publish button
  315. {{Identical|Watch this page}}',
  316. 'wikieditor-publish-dialog-publish' => "Button that saves the user's edit in the dialog that opens when the user clicks the Publish button
  317. {{Identical|Publish}}",
  318. 'wikieditor-publish-dialog-goback' => 'Button that closes the dialog that opens when the user clicks the Publish button
  319. {{Identical|Go back}}',
  320. 'wikieditor-template-editor-dialog-submit' => '{{Identical|Update}}',
  321. 'wikieditor-template-editor-dialog-cancel' => '{{Identical|Cancel}}',
  322. 'wikieditor-toc-preference' => "Option at [[Special:Preferences]], tab ''{{int:prefs-editing}}''",
  323. 'wikieditor-toc-show' => 'Label of the show/hide link when the navigable table of contents is hidden',
  324. 'wikieditor-toc-hide' => 'Label of the show/hide link when the navigable table of contents is visible',
  325. 'wikieditor-toolbar' => 'A customizable toolbar for the WikiEditor.
  326. For more information, see http://www.mediawiki.org/wiki/Extension:WikiEditor/Toolbar_customization',
  327. 'wikieditor-toolbar-desc' => '{{desc}}',
  328. 'wikieditor-toolbar-preference' => 'Option in [[Special:Preferences]]',
  329. 'wikieditor-toolbar-dialogs-preference' => "Caption of a checkbox on [[Special:Preferences]] (''editing'' tab), enabling helper dialogs for various features of the advanced edit toolbar (e.g. inserting links or tables).
  330. {{Identical|Enable dialogs for inserting links, tables and more}}",
  331. 'wikieditor-toolbar-loading' => '{{Identical|Loading}}',
  332. 'wikieditor-toolbar-tool-bold' => '{{Identical|Bold}}',
  333. 'wikieditor-toolbar-tool-bold-example' => '{{Identical|Bold text}}',
  334. 'wikieditor-toolbar-tool-italic' => '{{Identical|Italic}}',
  335. 'wikieditor-toolbar-tool-italic-example' => '{{Identical|Italic text}}',
  336. 'wikieditor-toolbar-tool-ilink' => '{{Identical|Internal link}}',
  337. 'wikieditor-toolbar-tool-xlink' => '{{Identical|External link (remember http:// prefix)}}',
  338. 'wikieditor-toolbar-tool-xlink-example' => "www.example.com is not a real website, but it has been reserved to use in software documentation, and will never be sold or used for advertising. If you translate the word example and try to go to that web address then you might get a message that it doesn't exist. But somebody may have created a commercial web page for that address, such as www.Beispiel.org, using the German word for example. It is therefore recommended that you do not translate http://www.example.com at all. If you do wish to translate it you should first check where the translated link takes you, and bear in mind that anybody could purchase that name in the future.",
  339. 'wikieditor-toolbar-tool-link' => '{{Identical|Link}}',
  340. 'wikieditor-toolbar-tool-link-cancel' => '{{Identical|Cancel}}',
  341. 'wikieditor-toolbar-tool-link-int-target-status-exists' => 'Text shown when the title the user entered exists',
  342. 'wikieditor-toolbar-tool-link-int-target-status-notexists' => 'Text shown when the title the user entered does not exist',
  343. 'wikieditor-toolbar-tool-link-int-target-status-invalid' => 'Text shown when the title the user entered is invalid',
  344. 'wikieditor-toolbar-tool-link-int-target-status-external' => 'Text shown when the link target the user entered points to an external web site
  345. {{Identical|External link}}',
  346. 'wikieditor-toolbar-tool-link-int-target-status-loading' => 'alt text and title text for the image shown while the title the user entered is being checked for existence',
  347. 'wikieditor-toolbar-tool-link-int-invalid' => 'This message appears when you try to create an internal link but the page title in the link is invalid.',
  348. 'wikieditor-toolbar-tool-link-lookslikeinternal-int' => '{{Identical|Internal link}}',
  349. 'wikieditor-toolbar-tool-link-lookslikeinternal-ext' => '{{Identical|External link}}',
  350. 'wikieditor-toolbar-tool-file' => '{{Identical|Embedded file}}',
  351. 'wikieditor-toolbar-tool-file-title' => 'Title for insert file dialog',
  352. 'wikieditor-toolbar-file-target' => 'Label for the input of filename on insert file dialog',
  353. 'wikieditor-toolbar-file-caption' => 'Label for input of caption on insert file dialog
  354. {{Identical|Caption}}',
  355. 'wikieditor-toolbar-file-size' => 'Label for input of size on insert file dialog',
  356. 'wikieditor-toolbar-file-float' => 'Label for image align selector on insert file dialog',
  357. 'wikieditor-toolbar-file-default' => 'Label for default option in insert file dialog selectors',
  358. 'wikieditor-toolbar-file-format' => 'Label for image format selector on insert file dialog',
  359. 'wikieditor-toolbar-file-format-none' => 'Option in file dialog for no format for the added image',
  360. 'wikieditor-toolbar-tool-file-insert' => '{{Identical|Insert}}',
  361. 'wikieditor-toolbar-tool-file-cancel' => '{{Identical|Cancel}}',
  362. 'wikieditor-toolbar-tool-reference' => '{{Identical|Reference}}',
  363. 'wikieditor-toolbar-tool-reference-cancel' => '{{Identical|Cancel}}',
  364. 'wikieditor-toolbar-tool-reference-title' => 'Title of insert reference dialog. This text is on the very top bar of the dialog.',
  365. 'wikieditor-toolbar-tool-reference-insert' => 'Button text for the insert action of the insert reference dialog.
  366. {{Identical|Insert}}',
  367. 'wikieditor-toolbar-tool-reference-text' => 'Label for the input field on the insert reference dialog.',
  368. 'wikieditor-toolbar-tool-signature' => '{{Identical|Signature with timestamp}}',
  369. 'wikieditor-toolbar-section-advanced' => '{{Identical|Advanced}}',
  370. 'wikieditor-toolbar-group-format' => '{{Identical|Format}}',
  371. 'wikieditor-toolbar-tool-ulist' => '{{Identical|Bulleted list}}',
  372. 'wikieditor-toolbar-tool-olist' => '{{Identical|Numbered list}}',
  373. 'wikieditor-toolbar-tool-nowiki' => 'This is the text that appears when you hover the mouse over the third button from the right on the edit toolbar.',
  374. 'wikieditor-toolbar-tool-redirect' => "Tooltip for icon to place wiki text for a redirect in the edit box. The label before these icons says 'Insert'. 'Redirect' is a noun here.
  375. {{Identical|Redirect}}",
  376. 'wikieditor-toolbar-tool-redirect-example' => "Target is an adjective describing the page name. You could use 'destination' instead of 'target'. 'Target page name' is the destination of the redirect and appears when the wikitext for a redirect is inserted in the text box thus
  377. <nowiki>#REDIRECT [[target page name]]</nowiki>",
  378. 'wikieditor-toolbar-tool-small' => '{{Identical|Small}}',
  379. 'wikieditor-toolbar-group-insert' => '{{Identical|Insert}}',
  380. 'wikieditor-toolbar-tool-table' => '{{Identical|Table}}',
  381. 'wikieditor-toolbar-tool-table-example-cell-text' => '[[File:Wikieditor-toolbar-tool-table.png|thumb]] See screenshot.',
  382. 'wikieditor-toolbar-tool-table-example-header' => '[[File:Wikieditor-toolbar-tool-table.png|thumb]] See screenshot.',
  383. 'wikieditor-toolbar-tool-table-title' => '[[File:Wikieditor-toolbar-tool-table.png|thumb]] See screenshot.',
  384. 'wikieditor-toolbar-tool-table-dimensions-rows' => '[[File:Wikieditor-toolbar-tool-table.png|thumb]] See screenshot.',
  385. 'wikieditor-toolbar-tool-table-dimensions-columns' => '[[File:Wikieditor-toolbar-tool-table.png|thumb]] See screenshot.',
  386. 'wikieditor-toolbar-tool-table-dimensions-header' => '[[File:Wikieditor-toolbar-tool-table.png|thumb]] See screenshot.',
  387. 'wikieditor-toolbar-tool-table-wikitable' => '[[File:Wikieditor-toolbar-tool-table.png|thumb]] See screenshot.',
  388. 'wikieditor-toolbar-tool-table-sortable' => '[[File:Wikieditor-toolbar-tool-table.png|thumb]] See screenshot.',
  389. 'wikieditor-toolbar-tool-table-example' => '{{Identical|Example}}
  390. [[File:Wikieditor-toolbar-tool-table.png|thumb]]This is a noun. Important to indicate that this is not a preview of what the table will look like, but an example of what it will look similar to. See screenshot.',
  391. 'wikieditor-toolbar-tool-table-preview' => '{{Identical|Preview}}
  392. [[File:Wikieditor-toolbar-tool-table.png|thumb]]This is a noun. See screenshot.',
  393. 'wikieditor-toolbar-tool-table-insert' => '{{Identical|Insert}}
  394. [[File:Wikieditor-toolbar-tool-table.png|thumb]] See screenshot.',
  395. 'wikieditor-toolbar-tool-table-cancel' => '{{Identical|Cancel}}',
  396. 'wikieditor-toolbar-tool-table-example-text' => '{{optional}}
  397. Placeholder text to help the table example appear to be in the context of an article. Should be lorem ipsum, or equivalent.',
  398. 'wikieditor-toolbar-tool-table-toomany' => '[[file:Bulbgraph.png|left|22px]]
  399. This message does not support PLURAL on $1.',
  400. 'wikieditor-toolbar-tool-replace' => '{{Identical|Search and replace}}',
  401. 'wikieditor-toolbar-tool-replace-title' => '{{Identical|Search and replace}}',
  402. 'wikieditor-toolbar-tool-replace-search' => '{{Identical|Search}}',
  403. 'wikieditor-toolbar-tool-replace-case' => 'This could as well be translated as "case sensitive search" -
  404. "case" refers to character case, that is upper case, or lower case.',
  405. 'wikieditor-toolbar-tool-replace-regex' => 'A "regular expression" is a syntax to find strings based on patterns, for more see [[wikipedia:Regular expression|the Wikipedia article]].
  406. More notes:
  407. * "Regular expression" is mostly a programmer tool, which is sometimes exposed to normal users too. It\'s almost as an programming language, but it is used to describe different kinds of strings (sometimes also called patterns and pattern matching), and is often used to change (parts of) the strings too.',
  408. 'wikieditor-toolbar-tool-replace-button-replace' => '{{Identical|Replace}}',
  409. 'wikieditor-toolbar-tool-replace-close' => '{{Identical|Close}}',
  410. 'wikieditor-toolbar-tool-replace-success' => '[[file:Bulbgraph.png|left|22px]]
  411. This message does not support PLURAL on $1.',
  412. 'wikieditor-toolbar-tool-replace-invalidregex' => '$1 is a browser-supplied error message, probably in English, possibly in the browser language.
  413. A "regular expression" is a syntax to find strings based on patterns, for more see [[wikipedia:Regular expression|the Wikipedia article]].
  414. Regular expressions are mostly a programmer tool, which is sometimes exposed to normal users too. It\'s almost as an programming language, but it is used to describe different kinds of strings (sometimes also called patterns and pattern matching), and is often used to change (parts of) the strings too.',
  415. 'wikieditor-toolbar-section-characters' => 'This will be a toolbar for special characters, like emoticons.
  416. For more information, see http://www.mediawiki.org/wiki/Extension:WikiEditor/Toolbar_customization',
  417. 'wikieditor-toolbar-characters-page-latin' => 'This is the name of a script, or alphabet, not a language',
  418. 'wikieditor-toolbar-characters-page-latinextended' => 'The name of the Latin Extended character set section of the toolbar.
  419. For more information, see http://www.mediawiki.org/wiki/Extension:WikiEditor/Toolbar_customization',
  420. 'wikieditor-toolbar-characters-page-ipa' => 'IPA means a script: "international phonetic alphabet" here, and not "international phonetic association", the organization behind it.',
  421. 'wikieditor-toolbar-characters-page-symbols' => 'The section name for symbols on the wiki-toolbar.
  422. For more information, see http://www.mediawiki.org/wiki/Extension:WikiEditor/Toolbar_customization',
  423. 'wikieditor-toolbar-characters-page-greek' => 'This is the name of a script, or alphabet, not a language.',
  424. 'wikieditor-toolbar-characters-page-cyrillic' => 'This is the name of a script, or a group of alphabets, used mainly in Eastern Europe and North and Central Asia.',
  425. 'wikieditor-toolbar-characters-page-arabic' => 'This is the name of a script, or alphabet, not a language.',
  426. 'wikieditor-toolbar-characters-page-arabicextended' => 'This is a description of the additional group of Arabic script characters for languages such as a Persian, Urdu, Pashto and others. This message is supposed to be similar to {{msg-mw|Wikieditor-toolbar-characters-page-latinextended}}.',
  427. 'wikieditor-toolbar-characters-page-persian' => 'The name of the Persian character set (alphabet) on the toolbar.
  428. For more information, see http://www.mediawiki.org/wiki/Extension:WikiEditor/Toolbar_customization',
  429. 'wikieditor-toolbar-characters-page-hebrew' => 'This is the name of a script, or alphabet, not a language.',
  430. 'wikieditor-toolbar-characters-page-bangla' => 'The name of the [[w:Bengali alphabet|Bangla]] (a.k.a. Bengali) character set (alphabet) on the toolbar.
  431. For more information, see http://www.mediawiki.org/wiki/Extension:WikiEditor/Toolbar_customization',
  432. 'wikieditor-toolbar-characters-page-tamil' => 'The name of the [[w:Tamil_Script#Numerals_and_symbols|Tamil]] numerals and symbols on the toolbar.
  433. For more information, see http://www.mediawiki.org/wiki/Extension:WikiEditor/Toolbar_customization',
  434. 'wikieditor-toolbar-characters-page-telugu' => 'The name of the [[w:Telugu language#Alphabet|Telugu]] character set (alphabet) on the toolbar.
  435. For more information, see http://www.mediawiki.org/wiki/Extension:WikiEditor/Toolbar_customization',
  436. 'wikieditor-toolbar-section-help' => '{{Identical|Help}}',
  437. 'wikieditor-toolbar-help-heading-description' => '{{Identical|Description}}',
  438. 'wikieditor-toolbar-help-page-link' => '{{Identical|Links}}',
  439. 'wikieditor-toolbar-help-page-list' => '{{Identical|List}}',
  440. 'wikieditor-toolbar-help-page-file' => '{{Identical|File}}',
  441. 'wikieditor-toolbar-help-page-reference' => '{{Identical|Reference}}',
  442. 'wikieditor-toolbar-help-page-discussion' => '{{Identical|Discussion}}',
  443. 'wikieditor-toolbar-help-content-italic-description' => '{{Identical|Italic}}',
  444. 'wikieditor-toolbar-help-content-italic-syntax' => '{{Identical|Italic text}}',
  445. 'wikieditor-toolbar-help-content-italic-result' => '{{Identical|Italic text}}',
  446. 'wikieditor-toolbar-help-content-bold-description' => '{{Identical|Bold}}',
  447. 'wikieditor-toolbar-help-content-bold-syntax' => '{{Identical|Bold text}}',
  448. 'wikieditor-toolbar-help-content-bold-result' => '{{Identical|Bold text}}',
  449. 'wikieditor-toolbar-help-content-bolditalic-description' => '"& amp;" is displayed as &. It means "and".',
  450. 'wikieditor-toolbar-help-content-bolditalic-syntax' => '"& amp;" is displayed as &. It means "and".',
  451. 'wikieditor-toolbar-help-content-bolditalic-result' => '"& amp;" is displayed as &. It means "and".',
  452. 'wikieditor-toolbar-help-content-ilink-description' => '{{Identical|Internal link}}',
  453. 'wikieditor-toolbar-help-content-xlink-description' => '{{Identical|External link}}',
  454. 'wikieditor-toolbar-help-content-xlink-syntax' => "www.example.org is not a real website, but it has been reserved to use in software documentation. If you translate the word example and try to go to that web address then you might get a message that it doesn't exist. But somebody may have created a commercial web page for that address, such as www.Beispiel.org, using the German word for example. It is therefore recommended that you do not translate http://www.example.org at all. If you do wish to translate it you should first check where the translated link takes you.",
  455. 'wikieditor-toolbar-help-content-xlink-result' => "www.example.org is not a real website, but it has been reserved to use in software documentation. If you translate the word example and try to go to that web address then you might get a message that it doesn't exist. But somebody may have created a commercial web page for that address, such as www.Beispiel.org, using the German word for example. It is therefore recommended that you do not translate http://www.example.org at all. If you do wish to translate it you should first check where the translated link takes you.",
  456. 'wikieditor-toolbar-help-content-heading2-syntax' => '{{Identical|Heading text}}',
  457. 'wikieditor-toolbar-help-content-heading2-result' => '{{Identical|Heading text}}',
  458. 'wikieditor-toolbar-help-content-heading3-syntax' => '{{Identical|Heading text}}',
  459. 'wikieditor-toolbar-help-content-heading3-result' => '{{Identical|Heading text}}',
  460. 'wikieditor-toolbar-help-content-heading4-syntax' => '{{Identical|Heading text}}',
  461. 'wikieditor-toolbar-help-content-heading4-result' => '{{Identical|Heading text}}',
  462. 'wikieditor-toolbar-help-content-heading5-syntax' => '{{Identical|Heading text}}',
  463. 'wikieditor-toolbar-help-content-heading5-result' => '{{Identical|Heading text}}',
  464. 'wikieditor-toolbar-help-content-ulist-description' => '{{Identical|Bulleted list}}',
  465. 'wikieditor-toolbar-help-content-olist-description' => '{{Identical|Numbered list}}',
  466. 'wikieditor-toolbar-help-content-file-description' => '{{Identical|Embedded file}}',
  467. 'wikieditor-toolbar-help-content-file-syntax' => "{{doc-important|''thumb'' is a magic word. Leave it untranslated!}}",
  468. 'wikieditor-toolbar-help-content-file-result' => '{{doc-important|Do not translate anything except "Caption text" (twice) and "Enlarge" (to "{{int:thumbnail-more}}").}}',
  469. 'wikieditor-toolbar-help-content-reference-description' => '{{Identical|Reference}}',
  470. 'wikieditor-toolbar-help-content-reference-syntax' => 'I suggest leaving the <code>name="test"</code> string in English
  471. www.example.org is not a real website, but it has been reserved to use in software documentation. If you translate the word example and try to go to that web address then you might get a message that it doesn\'t exist. But somebody may have created a commercial web page for that address, such as www.Beispiel.org, using the German word for example. It is therefore recommended that you do not translate http://www.example.org at all. If you do wish to translate it you should first check where the translated link takes you.',
  472. 'wikieditor-toolbar-help-content-rereference-syntax' => '{{Optional}}',
  473. 'wikieditor-toolbar-help-content-showreferences-syntax' => '{{Optional}}',
  474. 'wikieditor-toolbar-help-content-showreferences-result' => 'For the <code><nowiki><li></nowiki></code> tag’s <code>id</code> attribute, non-ASCII characters are URL-encoded as follows: a period (<code>.</code>) followed by a capital hexadecimal code. For example, <code><nowiki><ref name="thử"></nowiki></code> produces <code><nowiki><li id="cite_note-th.E1.BB.AD-0"></nowiki></code>.
  475. www.example.org is not a real website, but it has been reserved to use in software documentation. If you translate the word example and try to go to that web address then you might get a message that it doesn\'t exist. But somebody may have created a commercial web page for that address, such as www.Beispiel.org, using the German word for example. It is therefore recommended that you do not translate http://www.example.org at all. If you do wish to translate it you should first check where the translated link takes you.',
  476. 'wikieditor-toolbar-help-content-signaturetimestamp-description' => '{{Identical|Signature with timestamp}}',
  477. 'wikieditor-toolbar-help-content-signature-description' => '{{Identical|Signature}}',
  478. );
  479. /** Abkhazian (Аҧсшәа)
  480. * @author Temuri rajavi
  481. */
  482. $messages['ab'] = array(
  483. 'wikieditor-toolbar-characters-page-latin' => 'Алаҭын',
  484. 'wikieditor-toolbar-characters-page-greek' => 'Аберзентә',
  485. 'wikieditor-toolbar-characters-page-cyrillic' => 'Акирилица',
  486. 'wikieditor-toolbar-characters-page-arabic' => 'Араҧтә',
  487. 'wikieditor-toolbar-section-help' => 'Ацхыраара',
  488. 'wikieditor-toolbar-help-page-file' => 'Афаилқәа',
  489. 'wikieditor-toolbar-help-page-discussion' => 'Ахцәажәара',
  490. 'wikieditor-toolbar-help-content-signature-result' => "<a href='#' title='Special:MyPage'> Алахәыла ахьʒ</a> (<a href='#' title='Special:MyTalk'> ахцәажәара </a>)",
  491. );
  492. /** Afrikaans (Afrikaans)
  493. * @author Adriaan
  494. * @author Anrie
  495. * @author Naudefj
  496. * @author පසිඳු කාවින්ද
  497. */
  498. $messages['af'] = array(
  499. 'wikieditor' => 'Uitgebreide teksverwerker vir wikiteks',
  500. 'wikieditor-desc' => "Voorsien 'n uitbreibare wikiteks-verwerker en modules met bykomende funksies",
  501. 'wikieditor-wikitext-tab' => 'Wikiteks',
  502. 'wikieditor-loading' => 'Laai tans',
  503. 'wikieditor-preview-preference' => 'Wysig en voorskou langs mekaar',
  504. 'wikieditor-preview-tab' => 'Voorskou',
  505. 'wikieditor-preview-changes-tab' => 'Wysigings',
  506. 'wikieditor-preview-loading' => 'Besig om te laai...',
  507. 'wikieditor-previewDialog-preference' => 'Aktiveer voorskou-dialoog',
  508. 'wikieditor-previewDialog-tab' => 'Voorskou',
  509. 'wikieditor-previewDialog-loading' => 'Besig om te laai...',
  510. 'wikieditor-publish-preference' => 'Aktiveer stap-vir-stap publisering',
  511. 'wikieditor-publish-button-publish' => 'Publiseer',
  512. 'wikieditor-publish-button-cancel' => 'Kanselleer',
  513. 'wikieditor-publish-dialog-title' => 'Publiseer na {{SITENAME}}',
  514. 'wikieditor-publish-dialog-summary' => 'Wysigingsopsomming (beskryf kortliks wat u verander het):',
  515. 'wikieditor-publish-dialog-minor' => 'Klein wysiging',
  516. 'wikieditor-publish-dialog-watch' => 'Hou die bladsy dop',
  517. 'wikieditor-publish-dialog-publish' => 'Publiseer',
  518. 'wikieditor-publish-dialog-goback' => 'Terug',
  519. 'wikieditor-template-editor-preference' => 'Aktiveer vorm-gebaseerde wysiging van wikisjablone',
  520. 'wikieditor-template-editor-dialog-title' => 'Wysig sjabloon',
  521. 'wikieditor-template-editor-dialog-submit' => 'Bywerk',
  522. 'wikieditor-template-editor-dialog-cancel' => 'Kanselleer',
  523. 'wikieditor-templates-preference' => 'Inklapbare sjablone toelaat',
  524. 'wikieditor-toc-preference' => 'Aktiveer navigeerbare inhoudsopgawe',
  525. 'wikieditor-toc-show' => 'Wys inhoud',
  526. 'wikieditor-toc-hide' => 'Versteek inhoud',
  527. 'wikieditor-toolbar' => 'Wysigingswerksbalk',
  528. 'wikieditor-toolbar-desc' => 'Wysigingsbalk met verhoogde bruikbaarheid',
  529. 'wikieditor-toolbar-preference' => 'Gebruik gevorderde redigeringsbalk',
  530. 'wikieditor-toolbar-dialogs-preference' => 'Aktiveer dialoog vir die byvoeging van skakels, tabelle en meer',
  531. 'wikieditor-toolbar-hidesig' => 'Steek die ondertekening knoppie van die bladsye in die hoof naamruimte',
  532. 'wikieditor-toolbar-loading' => 'Besig om te laai...',
  533. 'wikieditor-toolbar-tool-bold' => 'Vetdruk',
  534. 'wikieditor-toolbar-tool-bold-example' => 'Vetgedrukte teks',
  535. 'wikieditor-toolbar-tool-italic' => 'Skuinsdruk',
  536. 'wikieditor-toolbar-tool-italic-example' => 'Skuinsgedrukte teks',
  537. 'wikieditor-toolbar-tool-ilink' => 'Interne skakel',
  538. 'wikieditor-toolbar-tool-ilink-example' => 'Skakel se titel',
  539. 'wikieditor-toolbar-tool-xlink' => 'Eksterne skakel (onthou http:// vooraan)',
  540. 'wikieditor-toolbar-tool-xlink-example' => 'http://www.voorbeeld.co.za skakel se titel',
  541. 'wikieditor-toolbar-tool-link' => 'Skakel',
  542. 'wikieditor-toolbar-tool-link-title' => 'Voeg skakel by',
  543. 'wikieditor-toolbar-tool-link-int' => "Na 'n wikibladsy",
  544. 'wikieditor-toolbar-tool-link-int-target' => 'Bladsynaam:',
  545. 'wikieditor-toolbar-tool-link-int-target-tooltip' => 'Bladsynaam of URL',
  546. 'wikieditor-toolbar-tool-link-int-text' => 'Skakel se teks:',
  547. 'wikieditor-toolbar-tool-link-int-text-tooltip' => 'Sleutel die teks wat vertoon moet word in',
  548. 'wikieditor-toolbar-tool-link-ext' => "Na 'n eksterne webbladsy",
  549. 'wikieditor-toolbar-tool-link-ext-target' => 'URL:',
  550. 'wikieditor-toolbar-tool-link-ext-text' => 'Skakel se teks:',
  551. 'wikieditor-toolbar-tool-link-insert' => 'Skakel byvoeg',
  552. 'wikieditor-toolbar-tool-link-cancel' => 'kanselleer',
  553. 'wikieditor-toolbar-tool-link-int-target-status-exists' => 'Die bladsy bestaan al',
  554. 'wikieditor-toolbar-tool-link-int-target-status-notexists' => 'Die bladsy bestaan nie',
  555. 'wikieditor-toolbar-tool-link-int-target-status-invalid' => 'Ongeldige bladsynaam',
  556. 'wikieditor-toolbar-tool-link-int-target-status-external' => 'Eksterne skakel',
  557. 'wikieditor-toolbar-tool-link-int-target-status-loading' => 'Kontroleer of die bladsy reeds bestaan...',
  558. 'wikieditor-toolbar-tool-link-int-invalid' => 'Die titel wat u verskaf het is ongeldig.',
  559. 'wikieditor-toolbar-tool-link-lookslikeinternal' => "Die URL wat u verskaf het lyk asof dit bedoel is as skakel na 'n ander wikibladsy.
  560. Wil u dit na 'n interne skakel verander?",
  561. 'wikieditor-toolbar-tool-link-lookslikeinternal-int' => 'Interne skakel',
  562. 'wikieditor-toolbar-tool-link-lookslikeinternal-ext' => 'Eksterne skakel',
  563. 'wikieditor-toolbar-tool-link-empty' => 'U het niks ingesleutel om na te skakel nie.',
  564. 'wikieditor-toolbar-tool-file' => 'Ingebedde lêer',
  565. 'wikieditor-toolbar-tool-file-example' => 'Voorbeeld.jpg',
  566. 'wikieditor-toolbar-file-target' => 'Lêernaam:',
  567. 'wikieditor-toolbar-file-caption' => 'Byskrif:',
  568. 'wikieditor-toolbar-file-size' => 'Grootte:',
  569. 'wikieditor-toolbar-file-format' => 'Formaat:',
  570. 'wikieditor-toolbar-tool-file-insert' => 'Invoeg',
  571. 'wikieditor-toolbar-tool-file-cancel' => 'Kanselleer',
  572. 'wikieditor-toolbar-tool-reference' => 'Verwysing',
  573. 'wikieditor-toolbar-tool-reference-example' => 'Voeg teks vir voetnota hier in',
  574. 'wikieditor-toolbar-tool-reference-cancel' => 'Kanselleer',
  575. 'wikieditor-toolbar-tool-reference-title' => 'Verwysing invoeg',
  576. 'wikieditor-toolbar-tool-reference-insert' => 'Invoeg',
  577. 'wikieditor-toolbar-tool-reference-text' => 'Verwysingteks',
  578. 'wikieditor-toolbar-tool-signature' => 'Handtekening en tydstempel',
  579. 'wikieditor-toolbar-section-advanced' => 'Gevorderde funksies',
  580. 'wikieditor-toolbar-tool-heading' => 'Opskrif',
  581. 'wikieditor-toolbar-tool-heading-1' => 'Vlak 1',
  582. 'wikieditor-toolbar-tool-heading-2' => 'Vlak 2',
  583. 'wikieditor-toolbar-tool-heading-3' => 'Vlak 3',
  584. 'wikieditor-toolbar-tool-heading-4' => 'Vlak 4',
  585. 'wikieditor-toolbar-tool-heading-5' => 'Vlak 5',
  586. 'wikieditor-toolbar-tool-heading-example' => 'Opskrifteks',
  587. 'wikieditor-toolbar-group-format' => 'Formatteer:',
  588. 'wikieditor-toolbar-tool-ulist' => 'Ongenommerde lys',
  589. 'wikieditor-toolbar-tool-ulist-example' => 'Lyn in ongenommerde lys',
  590. 'wikieditor-toolbar-tool-olist' => 'Genommerde lys',
  591. 'wikieditor-toolbar-tool-olist-example' => 'Lyn in genommerde lys',
  592. 'wikieditor-toolbar-tool-indent' => 'Indentasie',
  593. 'wikieditor-toolbar-tool-indent-example' => 'Ingekeepte lyn',
  594. 'wikieditor-toolbar-tool-nowiki' => 'Geen wiki-formattering',
  595. 'wikieditor-toolbar-tool-nowiki-example' => 'Ongeformatteerde teks hier invoeg',
  596. 'wikieditor-toolbar-tool-redirect' => 'Aanstuur',
  597. 'wikieditor-toolbar-tool-redirect-example' => 'Teikenbladsynaam',
  598. 'wikieditor-toolbar-tool-big' => 'Groot',
  599. 'wikieditor-toolbar-tool-big-example' => 'Groot gedrukte teks',
  600. 'wikieditor-toolbar-tool-small' => 'Klein',
  601. 'wikieditor-toolbar-tool-small-example' => 'Klein gedrukte teks',
  602. 'wikieditor-toolbar-tool-superscript' => 'Boskrif',
  603. 'wikieditor-toolbar-tool-superscript-example' => 'Teks in boskrif',
  604. 'wikieditor-toolbar-tool-subscript' => 'Onderskrif',
  605. 'wikieditor-toolbar-tool-subscript-example' => 'Teks in onderskrif',
  606. 'wikieditor-toolbar-group-insert' => 'Invoeg',
  607. 'wikieditor-toolbar-tool-gallery' => 'Fotogalery',
  608. 'wikieditor-toolbar-tool-gallery-example' => '$1:Voorbeeld1|Byskrif1
  609. $1:Voorbeeld2|Byskrif2',
  610. 'wikieditor-toolbar-tool-newline' => 'Nuwe lyn',
  611. 'wikieditor-toolbar-tool-table' => 'Tabel',
  612. 'wikieditor-toolbar-tool-table-example-old' => '-
  613. ! opskrif 1
  614. ! opskrif 2
  615. ! opskrif 3
  616. |-
  617. | ry 1, sel 1
  618. | ry 1, sel 2
  619. | ry 1, sel 3
  620. |-
  621. | ry 2, sel 1
  622. | ry 2, sel 2
  623. | ry 2, sel 3',
  624. 'wikieditor-toolbar-tool-table-example-cell-text' => 'Selteks',
  625. 'wikieditor-toolbar-tool-table-example-header' => 'Opskrifteks',
  626. 'wikieditor-toolbar-tool-table-title' => 'Voeg tabel in',
  627. 'wikieditor-toolbar-tool-table-dimensions-rows' => 'Rye',
  628. 'wikieditor-toolbar-tool-table-dimensions-columns' => 'Kolomme',
  629. 'wikieditor-toolbar-tool-table-dimensions-header' => 'Voeg opskriflyn in',
  630. 'wikieditor-toolbar-tool-table-wikitable' => 'Styl met rante',
  631. 'wikieditor-toolbar-tool-table-sortable' => 'Maak tabel sorteerbaar',
  632. 'wikieditor-toolbar-tool-table-example' => 'Selteks',
  633. 'wikieditor-toolbar-tool-table-preview' => 'Voorskou',
  634. 'wikieditor-toolbar-tool-table-insert' => 'Invoeg',
  635. 'wikieditor-toolbar-tool-table-cancel' => 'Kanselleer',
  636. 'wikieditor-toolbar-tool-table-toomany' => "U kan nie 'n tabel met meer as $1 selle met die dialoog invoeg nie.",
  637. 'wikieditor-toolbar-tool-table-invalidnumber' => "U het 'n ongeldige aantal lyne of kolomme verskaf.",
  638. 'wikieditor-toolbar-tool-table-zero' => "U kan nie 'n tabel sonder lyne en kolomme invoeg nie.",
  639. 'wikieditor-toolbar-tool-replace' => 'Soek en vervang',
  640. 'wikieditor-toolbar-tool-replace-title' => 'Soek en vervang',
  641. 'wikieditor-toolbar-tool-replace-search' => 'Soek na:',
  642. 'wikieditor-toolbar-tool-replace-replace' => 'Vervang met:',
  643. 'wikieditor-toolbar-tool-replace-case' => 'Gevoelig vir hoofletters',
  644. 'wikieditor-toolbar-tool-replace-regex' => 'Hanteer die soekstring as \'n "regular expression"',
  645. 'wikieditor-toolbar-tool-replace-button-findnext' => 'Vind volgende',
  646. 'wikieditor-toolbar-tool-replace-button-replace' => 'Vervang',
  647. 'wikieditor-toolbar-tool-replace-button-replaceall' => 'Vervang alles',
  648. 'wikieditor-toolbar-tool-replace-close' => 'Sluit',
  649. 'wikieditor-toolbar-tool-replace-nomatch' => 'U soektog het geen resultate opgelewer nie.',
  650. 'wikieditor-toolbar-tool-replace-success' => '$1 vervangings gemaak.',
  651. 'wikieditor-toolbar-tool-replace-emptysearch' => 'U het niks ingesleutel om na te soek nie.',
  652. 'wikieditor-toolbar-tool-replace-invalidregex' => 'Die "regular expression" wat u verskaf het is ongeldig: $1',
  653. 'wikieditor-toolbar-section-characters' => 'Spesiale karakters',
  654. 'wikieditor-toolbar-characters-page-latin' => 'Latyns',
  655. 'wikieditor-toolbar-characters-page-latinextended' => 'Latyns uitgebreid',
  656. 'wikieditor-toolbar-characters-page-ipa' => 'IFA',
  657. 'wikieditor-toolbar-characters-page-symbols' => 'Simbole',
  658. 'wikieditor-toolbar-characters-page-greek' => 'Grieks',
  659. 'wikieditor-toolbar-characters-page-cyrillic' => 'Cyrillies',
  660. 'wikieditor-toolbar-characters-page-arabic' => 'Arabies',
  661. 'wikieditor-toolbar-characters-page-arabicextended' => 'Arabies uitgebrei',
  662. 'wikieditor-toolbar-characters-page-persian' => 'Persiese',
  663. 'wikieditor-toolbar-characters-page-hebrew' => 'Hebreeus',
  664. 'wikieditor-toolbar-characters-page-bangla' => 'Bengaals',
  665. 'wikieditor-toolbar-characters-page-tamil' => 'Tamil',
  666. 'wikieditor-toolbar-characters-page-telugu' => 'Telugu',
  667. 'wikieditor-toolbar-characters-page-sinhala' => 'Sinhala',
  668. 'wikieditor-toolbar-characters-page-gujarati' => 'Gujarati',
  669. 'wikieditor-toolbar-characters-page-devanagari' => 'Devanagari',
  670. 'wikieditor-too…

Large files files are truncated, but you can click here to view the full file