2011-11-28 20:28:28 +00:00
< ? php
$messages = array ();
/** English
* @ author Trevor Parscal
*/
$messages [ 'en' ] = array (
'visualeditor' => 'VisualEditor' ,
2011-12-12 00:39:07 +00:00
'visualeditorsandbox' => 'Visual editor sandbox' ,
2011-11-28 20:28:28 +00:00
'visualeditor-desc' => 'Visual editor for MediaWiki' ,
2011-12-11 23:42:33 +00:00
'visualeditor-sandbox-title' => 'Visual editor sandbox' ,
2011-12-11 23:28:29 +00:00
'visualeditor-tooltip-wikitext' => 'Toggle wikitext view' ,
'visualeditor-tooltip-json' => 'Toggle JSON view' ,
'visualeditor-tooltip-html' => 'Toggle HTML view' ,
'visualeditor-tooltip-render' => 'Toggle preview' ,
'visualeditor-tooltip-history' => 'Toggle transaction history view' ,
2011-12-12 22:09:15 +00:00
'visualeditor-tooltip-help' => 'Toggle help view' ,
2011-12-13 02:46:31 +00:00
'visualeditor-feedback-prompt' => 'Leave feedback' ,
'visualeditor-feedback-dialog-title' => 'Leave feedback about VisualEditor Sandbox' ,
2011-12-11 23:28:29 +00:00
);
/** Message documentation
* @ author Trevor Parscal
* @ author Erik Moeller
*/
$messages [ 'qqq' ] = array (
2011-12-11 23:47:54 +00:00
'visualeditor-tooltip-wikitext' => 'Tooltip for a toolbar button which activates or deactivates a split view, with the visual editor on the left-hand side, and a dynamically updating but read-only wikitext view on the right-hand side.' ,
2011-12-11 23:28:29 +00:00
'visualeditor-tooltip-json' => 'Tooltip for a toolbar button which activates or deactivates a split view, with the visual editor on the left-hand side, and a dynamically updating but read-only JSON representation of the document on the right-hand side. This view is primarily useful for debugging purposes.' ,
'visualeditor-tooltip-html' => 'Tooltip for a toolbar button which activates or deactivates a split view, with the visual editor on the left-hand side, and a dyanmically updating but read-only raw HTML view on the right-hand side. This view is primarily useful for debugging purposes.' ,
'visualeditor-tooltip-render' => 'Tooltip for a toolbar button which activates or deactivates a split view, with the visual editor on the left-hand side, and a dynamically updating preview on the right-hand side. This view is primarily useful for debugging purposes.' ,
'visualeditor-tooltip-history' => 'Tooltip for a toolbar button which activates or deactivates a split view, with the visual editor on the left-hand side, and a history of the user\'s edit transactions on the right-hand side. This view is primarily useful for debugging purposes.' ,
2011-11-28 20:28:28 +00:00
);
2011-11-29 20:32:09 +00:00
2011-12-11 20:35:30 +00:00
/** Breton ( Brezhoneg )
* @ author Y - M D
*/
$messages [ 'br' ] = array (
'visualeditor' => 'VisualEditor' ,
'visualeditor-sandbox-title' => 'Poull-traezh VisualEditor' ,
);
2011-11-29 20:32:09 +00:00
/** German ( Deutsch )
* @ author Kghbln
*/
$messages [ 'de' ] = array (
'visualeditor' => 'WYSIWYG-Editor' ,
2011-12-13 20:50:04 +00:00
'visualeditorsandbox' => 'WYSIWYG-Editor - Spielwiese' ,
2011-11-29 20:32:09 +00:00
'visualeditor-desc' => 'Ermöglicht einen WYSIWYG-Editor' ,
2011-12-13 20:50:04 +00:00
'visualeditor-sandbox-title' => 'Spielwiese für den WYSIWYG-Editor' ,
'visualeditor-tooltip-wikitext' => 'Von und zur Ansicht in Wikitext umschalten' ,
'visualeditor-tooltip-json' => 'Von und zur Ansicht in JSON umschalten' ,
'visualeditor-tooltip-html' => 'Von und zur Ansicht in HTML umschalten' ,
'visualeditor-tooltip-render' => 'Von und zur Vorschau umschalten' ,
'visualeditor-tooltip-history' => 'Transaktionsverlauf ein- und ausblenden' ,
'visualeditor-tooltip-help' => 'Hilfen ein- und ausblenden' ,
'visualeditor-feedback-prompt' => 'Rückmeldung geben' ,
'visualeditor-feedback-dialog-title' => 'Rückmeldung zur Spielwiese für den WYSIWYG-Editor geben' ,
2011-11-29 20:32:09 +00:00
);
2011-12-05 21:02:57 +00:00
/** French ( Français )
* @ author Crochet . david
2011-12-09 20:31:37 +00:00
* @ author Gomoko
2011-12-05 21:02:57 +00:00
*/
$messages [ 'fr' ] = array (
2011-12-09 20:31:37 +00:00
'visualeditor' => 'VisualEditor' ,
2011-12-05 21:02:57 +00:00
'visualeditor-desc' => 'Éditeur visuel pour MediaWiki' ,
2011-12-09 20:31:37 +00:00
'visualeditor-sandbox-title' => 'Bac à sable de VisualEditor' ,
2011-12-05 21:02:57 +00:00
);
2011-11-29 20:32:09 +00:00
/** Galician ( Galego )
* @ author Toliño
*/
$messages [ 'gl' ] = array (
'visualeditor' => 'Editor visual' ,
2011-12-13 20:50:04 +00:00
'visualeditorsandbox' => 'Zona de probas do editor visual' ,
2011-11-29 20:32:09 +00:00
'visualeditor-desc' => 'Editor visual para MediaWiki' ,
'visualeditor-sandbox-title' => 'Zona de probas do editor visual' ,
2011-12-13 20:50:04 +00:00
'visualeditor-tooltip-wikitext' => 'Alternar a vista en texto wiki' ,
'visualeditor-tooltip-json' => 'Alternar a vista en JSON' ,
'visualeditor-tooltip-html' => 'Alternar a vista en HTML' ,
'visualeditor-tooltip-render' => 'Alternar a vista previa' ,
'visualeditor-tooltip-history' => 'Alternar a vista en historial de transaccións' ,
'visualeditor-tooltip-help' => 'Alternar a vista de axuda' ,
'visualeditor-feedback-prompt' => 'Deixe un comentario' ,
'visualeditor-feedback-dialog-title' => 'Deixe un comentario sobre a zona de probas do editor visual' ,
2011-11-29 20:32:09 +00:00
);
2011-11-30 20:59:10 +00:00
/** Upper Sorbian ( Hornjoserbsce )
* @ author Michawiki
*/
$messages [ 'hsb' ] = array (
'visualeditor' => 'VisualEditor' ,
'visualeditor-desc' => 'WYSIWYG-editor za MediaWiki' ,
'visualeditor-sandbox-title' => 'WYSIWYG-editor - hrajkanišćo' ,
);
2011-12-09 20:31:37 +00:00
/** Hungarian ( Magyar )
* @ author Dj
*/
$messages [ 'hu' ] = array (
'visualeditor' => 'VisualEditor' ,
'visualeditor-desc' => 'Vizuális szerkesztő a MediaWikihez' ,
'visualeditor-sandbox-title' => 'VisualEditor homokozó' ,
);
2011-12-03 14:56:00 +00:00
/** Interlingua ( Interlingua )
* @ author McDutchie
*/
$messages [ 'ia' ] = array (
'visualeditor' => 'Editor visual' ,
2011-12-13 20:50:04 +00:00
'visualeditorsandbox' => 'Cassa a sablo del editor visual' ,
2011-12-03 14:56:00 +00:00
'visualeditor-desc' => 'Editor visual pro MediaWiki' ,
'visualeditor-sandbox-title' => 'Cassa a sablo del editor visual' ,
2011-12-13 20:50:04 +00:00
'visualeditor-tooltip-wikitext' => 'Alternar vista wikitexto' ,
'visualeditor-tooltip-json' => 'Alternar vista JSON' ,
'visualeditor-tooltip-html' => 'Alternar vista HTML' ,
'visualeditor-tooltip-render' => 'Alternar previsualisation' ,
'visualeditor-tooltip-history' => 'Alternar vista historia de transactiones' ,
'visualeditor-tooltip-help' => 'Alternar adjuta' ,
'visualeditor-feedback-prompt' => 'Lassar retroaction' ,
'visualeditor-feedback-dialog-title' => 'Lassar retroaction super le cassa a sablo del editor visual' ,
2011-12-03 14:56:00 +00:00
);
2011-12-05 21:02:57 +00:00
/** Luxembourgish ( Lëtzebuergesch )
* @ author Robby
*/
$messages [ 'lb' ] = array (
'visualeditor' => 'WYSIWYG-Editeur' ,
'visualeditor-desc' => 'WYSIWYG-Editeur fir MediaWiki' ,
'visualeditor-sandbox-title' => 'WYSIWYG-Editeur - Sandkëscht' ,
);
2011-11-29 20:32:09 +00:00
/** Macedonian ( Македонски )
* @ author Bjankuloski06
*/
$messages [ 'mk' ] = array (
'visualeditor' => 'Визуелен уредник' ,
2011-12-13 20:50:04 +00:00
'visualeditorsandbox' => 'Песочник — Визуелен уредник' ,
2011-11-29 20:32:09 +00:00
'visualeditor-desc' => 'Визуелен уредник за МедијаВики' ,
'visualeditor-sandbox-title' => 'Песочник — Визуелен уредник' ,
2011-12-13 20:50:04 +00:00
'visualeditor-tooltip-wikitext' => 'Поглед на викитекст' ,
'visualeditor-tooltip-json' => 'Поглед на JSON' ,
'visualeditor-tooltip-html' => 'Поглед на HTML' ,
'visualeditor-tooltip-render' => 'Поглед на преглед' ,
'visualeditor-tooltip-history' => 'Поглед на историја на преносот' ,
'visualeditor-tooltip-help' => 'Поглед на помош' ,
'visualeditor-feedback-prompt' => 'Дајте мислење' ,
'visualeditor-feedback-dialog-title' => 'Дајте мислење за Песочникот на ВизуеленУредник' ,
2011-11-29 20:32:09 +00:00
);
2011-11-30 20:59:10 +00:00
/** Dutch ( Nederlands )
* @ author Siebrand
*/
$messages [ 'nl' ] = array (
'visualeditor' => 'Vereenvoudigde tekstverwerker' ,
'visualeditor-desc' => 'Vereenvoudigde tekstverwerker voor MediaWiki' ,
'visualeditor-sandbox-title' => 'Testruimte voor Vereenvoudigde tekstverwerker' ,
);
2011-12-06 21:36:57 +00:00
/** Simplified Chinese ( 中文 ( 简体 ) )
* @ author Shizhao
*/
$messages [ 'zh-hans' ] = array (
'visualeditor-sandbox-title' => 'VisualEditor沙盒' ,
);