mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-11-13 18:07:05 +00:00
35cc7c4630
Also changed scribunto-lua-in-function-at to not say "anonymous" since it also applies to functions which are not anonymous as declared, only anonymous as called. Change-Id: Ib99cc6d12fbb40a295e1fda35ac48bcf097fdb66
46 lines
2.2 KiB
PHP
46 lines
2.2 KiB
PHP
<?php
|
|
/**
|
|
* Internationalisation file for extension Scribunto.
|
|
*
|
|
* @file
|
|
* @ingroup Extensions
|
|
*/
|
|
|
|
$messages = array();
|
|
|
|
/** English
|
|
* @author Victor Vasiliev
|
|
*/
|
|
$messages['en'] = array(
|
|
'scribunto-desc' => 'Framework for embedding scripting languages into MediaWiki pages',
|
|
'scribunto-line' => 'at line $1',
|
|
'scribunto-module-line' => 'in $1 at line $2',
|
|
'scribunto-parser-error' => 'Script error',
|
|
'scribunto-parser-dialog-title' => 'Script error',
|
|
'scribunto-error-short' => 'Script error: $1',
|
|
'scribunto-error-long' => 'Script errors:
|
|
|
|
$1',
|
|
'scribunto-common-nosuchmodule' => 'Script error: No such module',
|
|
'scribunto-common-nofunction' => 'Script error: You must specify a function to call.',
|
|
'scribunto-common-nosuchfunction' => 'Script error: The function you specified did not exist.',
|
|
'scribunto-common-timeout' => 'The time allocated for running scripts has expired.',
|
|
'scribunto-common-oom' => 'The amount of memory allowed for running scripts has been exceeded.',
|
|
'scribunto-common-backtrace' => 'Backtrace:',
|
|
'scribunto-lua-in-function' => 'in function "$1"',
|
|
'scribunto-lua-in-main' => 'in main chunk',
|
|
'scribunto-lua-in-function-at' => 'in the function at $1:$2',
|
|
'scribunto-lua-backtrace-line' => '$1: $2',
|
|
'scribunto-lua-error-location' => 'Lua error $1: $2',
|
|
'scribunto-lua-error' => 'Lua error: $2',
|
|
'scribunto-lua-noreturn' => 'Script error: The module did not return a value, it should return an export table.',
|
|
'scribunto-lua-notarrayreturn' => 'Script error: The module returned something other than a table, it should return an export table.',
|
|
'scribunto-luastandalone-proc-error' => 'Lua error: cannot create process',
|
|
'scribunto-luastandalone-decode-error' => 'Lua error: internal error: unable to decode message',
|
|
'scribunto-luastandalone-write-error' => 'Lua error: internal error: error writing to pipe',
|
|
'scribunto-luastandalone-read-error' => 'Lua error: internal error: error reading from pipe',
|
|
'scribunto-luastandalone-gone' => 'Lua error: internal error: the interpreter has already exited',
|
|
'scribunto-luastandalone-signal' => 'Lua error: internal error: the interpreter has terminated with signal "$2"',
|
|
'scribunto-luastandalone-exited' => 'Lua error: internal error: the interpreter exited with status $2',
|
|
);
|