Extension:Wiki2LaTeX/Development/w2lMessages.php
From MediaWiki.org
<?php
/*
* File: w2lMessages.php
* Created: 2007-09-01
* Version: 0.7
*
* Purpose:
* Contains all the strings, which are to be localized
*
* License:
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
if ( !defined('MEDIAWIKI') ) {
$msg = 'To install Wiki2LaTeX, put the following line in LocalSettings.php:<br/>';
$msg .= '<tt>require_once( $IP."/extensions/path_to_Wiki2LaTeX_files/wiki2latex.php" );</tt>';
echo $msg;
exit( 1 );
}
$w2lMessages = array(
'en' => array(
'wiki2latex' => 'Wiki2LaTeX',
'wiki2latexspecialpage' => 'Wiki2LaTeX',
'w2l_tab' => 'LaTeX',
'w2l_description' => 'Converts an article to LaTeX.',
'w2l_export_title' => '$1 (Wiki2LaTeX)',
'w2l_export_subtitle' => 'Export of: $1',
'w2l_export' => 'Export as ...',
'w2l_export_textarea' => 'Textarea',
'w2l_export_geshi' => 'Syntax-Highlighted (powered by GeSHi)',
'w2l_export_tex_files' => 'Download tex files',
'w2l_export_pdf' => 'Download pdf file (needs working tex-installation on server!)',
'w2l_export_start' => 'Start Export',
'w2l_chapter' => 'chapter',
'w2l_page' => 'page',
'w2l_select_docclass_book' => 'Documentclass Book (==heading== gets \chapter{heading})',
'w2l_select_docclass_report' => 'Documentclass Report (==heading== gets \chapter{heading})',
'w2l_select_docclass_article' => 'Documentclass Article (==heading== gets \section{heading})',
'w2l_options' => 'Options',
'w2l_select_paralist' => 'Paralist',
'w2l_select_quotedetection' => 'Use Typographic-Quote detection',
'w2l_select_leavenoinclude' => 'Leave NoInclude-blocks in main Article',
'w2l_select_insertincludeonly' => 'Insert IncludeOnly-blocks in main Article',
'w2l_select_removetemplates' => 'Remove Template and Parserfunction calls',
'w2l_select_donotprocesstemplates' => 'Do not process Templates and Parserfunctions (but leave calls in the string)',
'w2l_select_processtemplates' => 'Process Templates and Parserfunctions',
'w2l_select_events_heading' => 'Advanced: Execute Eventfunctions',
'w2l_select_event' => 'Use Eventfunction "$1"',
'w2l_select_templates_heading' => 'LaTeX-Templates',
'w2l_select_template' => 'LaTeX-Template',
'w2l_select_output' => 'Export article...',
'w2l_select_textarea' => 'In a Textarea',
'w2l_select_geshi' => 'Syntax-Highlighted by <a href="http://qbnz.com/highlighter/">GeSHi</a>',
'w2l_select_texfiles' => 'Download tex-files',
'w2l_select_pdf' => 'Download $1-file (needs working tex-installation on server!)',
'w2l_start_export' => 'Start Export',
'w2l_pdfexport_disabled' => '<p>Sorry, pdf-export is not enabled.</p>',
'w2l_debug_info' => '<p>Time taken to parse article: $1 seconds. Template-Statistic: $2 Inclusions with $3 Bytes</p>',
'w2l_result_subtitle' => 'Result of: $1',
'w2l_result_title' => '$1 (Wiki2LaTeX)',
'w2l_error_no_template' => '<p>Sorry, you need to choose a template! <a href="javascript:history.back();">Back</a></p>',
'w2l_error_plattform' => '<p>There is an error in your configurationfile. Probably the value of $w2lConfig["plattform"] is currently not supported.</p>',
'w2l_export_mode' => '<p>Mode: $1</p>',
'w2l_compile_command' => 'Command: $1',
'w2l_temppath' => 'Path: $1',
'w2l_compile_run' => '== Run #$1 ==',
'w2l_result_heading' => '<h2>LaTeX-Result</h2>',
'w2l_result_folder'=> '<p><a href="$1Main.$2">$3</a>. Click <a href="$1">here to view the folder</a> of all files</p>',
'w2l_parser_no_default_value' => "Can't be a default value",
'w2l_parser_article_not_existing' => 'Article does not exist: $1',
'w2l_parser_protocol' => '<p>Error protocol</p>',
'w2l_parser_cachehit' => 'Cachehit: $1',
'w2l_parser_no_namespace' => 'Caution: Namespace could not be found: $1.',
'w2l_tab_pdfarchive' => 'pdf-archive',
'w2l_archive_title' => '$1 (PDF-Archive)',
'w2l_archive_subtitle' => '...of: $1',
'w2l_save_file' => 'Save File',
'w2l_save_legend' => 'Archive this file?',
'w2l_save_filename' => 'Filename:',
'w2l_save_comment' => 'Comment:',
'w2l_delete_success' => 'Files have been removed (click to hide this message)',
'w2l_delete_error' => 'Files have not been removed. Please delete them manually. (click to hide this message)',
'w2l_archive_save_success'=> '<p>File has been saved! <a href="$1">Get it here</a>. (click to hide this message)</p>',
'w2l_archive_save_error' => '<p>File has not been saved! (click to hide this message)</p>',
'w2l_archive_no_folder' => '<p>There is no file saved yet.</p>',
'w2l_archive_filename' => 'Filename',
'w2l_archive_filetime' => 'filetime',
'w2l_archive_filesize' => 'filesize',
'w2l_archive_comment' => 'Comment',
'w2l_archive_actions' => 'Actions',
'w2l_archive_delete' => 'delete',
'w2l_archive_disabled' => 'Archive is disabled. Sorry.',
'w2l_form_delete_link' => 'Delete temporary files',
'w2l_delete_confirmation' => 'Really delete all files?',
'w2l_delete_file_confirmation' => 'Really delete file $1?',
'w2l_archive_delete_success' => 'File was deleted successfully. (click to hide this message)',
'w2l_archive_delete_error' => 'File could not be deleted. (click to hide this message)',
),
'de' => array(
'wiki2latex' => 'Wiki2LaTeX',
)
);
