PageRenderTime 68ms CodeModel.GetById 25ms RepoModel.GetById 0ms app.codeStats 2ms

/includes/installer/Installer.i18n.php

https://bitbucket.org/kgrashad/thawrapedia
PHP | 5799 lines | 5452 code | 235 blank | 112 comment | 26 complexity | 5afbc4e57f47938d88049dd24a8dbaf4 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. * Internationalization file for the install/upgrade process. None of the
  4. * messages used here are loaded during normal operations, only during
  5. * install and upgrade. So you should not put normal messages here.
  6. *
  7. * @file
  8. * @ingroup Deployment
  9. */
  10. $messages = array();
  11. /** English */
  12. $messages['en'] = array(
  13. 'config-desc' => 'The installer for MediaWiki',
  14. 'config-title' => 'MediaWiki $1 installation',
  15. 'config-information' => 'Information',
  16. 'config-localsettings-upgrade' => "A <code>LocalSettings.php</code> file has been detected.
  17. To upgrade this installation, please enter the value of <code>\$wgUpgradeKey</code> in the box below.
  18. You will find it in LocalSettings.php.",
  19. 'config-localsettings-cli-upgrade' => 'A LocalSettings.php file has been detected.
  20. To upgrade this installation, please run update.php instead',
  21. 'config-localsettings-key' => 'Upgrade key:',
  22. 'config-localsettings-badkey' => 'The key you provided is incorrect.',
  23. 'config-upgrade-key-missing' => 'An existing installation of MediaWiki has been detected.
  24. To upgrade this installation, please put the following line at the bottom of your LocalSettings.php:
  25. $1',
  26. 'config-localsettings-incomplete' => 'The existing LocalSettings.php appears to be incomplete.
  27. The $1 variable is not set.
  28. Please change LocalSettings.php so that this variable is set, and click "Continue".',
  29. 'config-localsettings-connection-error' => 'An error was encountered when connecting to the database using the settings specified in LocalSettings.php or AdminSettings.php. Please fix these settings and try again.
  30. $1',
  31. 'config-session-error' => 'Error starting session: $1',
  32. 'config-session-expired' => 'Your session data seems to have expired.
  33. Sessions are configured for a lifetime of $1.
  34. You can increase this by setting <code>session.gc_maxlifetime</code> in php.ini.
  35. Restart the installation process.',
  36. 'config-no-session' => 'Your session data was lost!
  37. Check your php.ini and make sure <code>session.save_path</code> is set to an appropriate directory.',
  38. 'config-your-language' => 'Your language:',
  39. 'config-your-language-help' => 'Select a language to use during the installation process.',
  40. 'config-wiki-language' => 'Wiki language:',
  41. 'config-wiki-language-help' => 'Select the language that the wiki will predominantly be written in.',
  42. 'config-back' => '← Back',
  43. 'config-continue' => 'Continue →',
  44. 'config-page-language' => 'Language',
  45. 'config-page-welcome' => 'Welcome to MediaWiki!',
  46. 'config-page-dbconnect' => 'Connect to database',
  47. 'config-page-upgrade' => 'Upgrade existing installation',
  48. 'config-page-dbsettings' => 'Database settings',
  49. 'config-page-name' => 'Name',
  50. 'config-page-options' => 'Options',
  51. 'config-page-install' => 'Install',
  52. 'config-page-complete' => 'Complete!',
  53. 'config-page-restart' => 'Restart installation',
  54. 'config-page-readme' => 'Read me',
  55. 'config-page-releasenotes' => 'Release notes',
  56. 'config-page-copying' => 'Copying',
  57. 'config-page-upgradedoc' => 'Upgrading',
  58. 'config-page-existingwiki' => 'Existing wiki',
  59. 'config-help-restart' => 'Do you want to clear all saved data that you have entered and restart the installation process?',
  60. 'config-restart' => 'Yes, restart it',
  61. 'config-welcome' => "=== Environmental checks ===
  62. Basic checks are performed to see if this environment is suitable for MediaWiki installation.
  63. You should provide the results of these checks if you need help during installation.",
  64. 'config-copyright' => "=== Copyright and Terms ===
  65. $1
  66. 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.
  67. This program is distributed in the hope that it will be useful, but '''without any warranty'''; without even the implied warranty of '''merchantability''' or '''fitness for a particular purpose'''.
  68. See the GNU General Public License for more details.
  69. You should have received <doclink href=Copying>a copy of the GNU General Public License</doclink> along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. or [http://www.gnu.org/copyleft/gpl.html read it online].",
  70. 'config-sidebar' => "* [http://www.mediawiki.org MediaWiki home]
  71. * [http://www.mediawiki.org/wiki/Help:Contents User's Guide]
  72. * [http://www.mediawiki.org/wiki/Manual:Contents Administrator's Guide]
  73. * [http://www.mediawiki.org/wiki/Manual:FAQ FAQ]
  74. ----
  75. * <doclink href=Readme>Read me</doclink>
  76. * <doclink href=ReleaseNotes>Release notes</doclink>
  77. * <doclink href=Copying>Copying</doclink>
  78. * <doclink href=UpgradeDoc>Upgrading</doclink>",
  79. 'config-env-good' => 'The environment has been checked.
  80. You can install MediaWiki.',
  81. 'config-env-bad' => 'The environment has been checked.
  82. You cannot install MediaWiki.',
  83. 'config-env-php' => 'PHP $1 is installed.',
  84. 'config-env-php-toolow' => 'PHP $1 is installed.
  85. However, MediaWiki requires PHP $2 or higher.',
  86. 'config-unicode-using-utf8' => 'Using Brion Vibber\'s utf8_normalize.so for Unicode normalization.',
  87. 'config-unicode-using-intl' => 'Using the [http://pecl.php.net/intl intl PECL extension] for Unicode normalization.',
  88. 'config-unicode-pure-php-warning' => "'''Warning''': The [http://pecl.php.net/intl intl PECL extension] is not available to handle Unicode normalization, falling back to slow pure-PHP implementation.
  89. If you run a high-traffic site, you should read a little on [http://www.mediawiki.org/wiki/Unicode_normalization_considerations Unicode normalization].",
  90. 'config-unicode-update-warning' => "'''Warning''': The installed version of the Unicode normalization wrapper uses an older version of [http://site.icu-project.org/ the ICU project's] library.
  91. You should [http://www.mediawiki.org/wiki/Unicode_normalization_considerations upgrade] if you are at all concerned about using Unicode.",
  92. 'config-no-db' => 'Could not find a suitable database driver! You need to install a database driver for PHP.
  93. The following database types are supported: $1.
  94. If you are on shared hosting, ask your hosting provider to install a suitable database driver.
  95. If you compiled PHP yourself, reconfigure it with a database client enabled, for example using <code>./configure --with-mysql</code>.
  96. If you installed PHP from a Debian or Ubuntu package, then you also need install the php5-mysql module.',
  97. 'config-no-fts3' => "'''Warning''': SQLite is compiled without the [http://sqlite.org/fts3.html FTS3 module], search features will be unavailable on this backend.",
  98. 'config-register-globals' => "'''Warning: PHP's <code>[http://php.net/register_globals register_globals]</code> option is enabled.'''
  99. '''Disable it if you can.'''
  100. MediaWiki will work, but your server is exposed to potential security vulnerabilities.",
  101. 'config-magic-quotes-runtime' => "'''Fatal: [http://www.php.net/manual/en/ref.info.php#ini.magic-quotes-runtime magic_quotes_runtime] is active!'''
  102. This option corrupts data input unpredictably.
  103. You cannot install or use MediaWiki unless this option is disabled.",
  104. 'config-magic-quotes-sybase' => "'''Fatal: [http://www.php.net/manual/en/ref.info.php#ini.magic-quotes-sybase magic_quotes_sybase] is active!'''
  105. This option corrupts data input unpredictably.
  106. You cannot install or use MediaWiki unless this option is disabled.",
  107. 'config-mbstring' => "'''Fatal: [http://www.php.net/manual/en/ref.mbstring.php#mbstring.overload mbstring.func_overload] is active!'''
  108. This option causes errors and may corrupt data unpredictably.
  109. You cannot install or use MediaWiki unless this option is disabled.",
  110. 'config-ze1' => "'''Fatal: [http://www.php.net/manual/en/ini.core.php zend.ze1_compatibility_mode] is active!'''
  111. This option causes horrible bugs with MediaWiki.
  112. You cannot install or use MediaWiki unless this option is disabled.",
  113. 'config-safe-mode' => "'''Warning:''' PHP's [http://www.php.net/features.safe-mode safe mode] is active.
  114. It may cause problems, particularly if using file uploads and <code>math</code> support.",
  115. 'config-xml-bad' => "PHP's XML module is missing.
  116. MediaWiki requires functions in this module and will not work in this configuration.
  117. If you're running Mandrake, install the php-xml package.",
  118. 'config-pcre' => 'The PCRE support module appears to be missing.
  119. MediaWiki requires the Perl-compatible regular expression functions to work.',
  120. 'config-pcre-no-utf8' => "'''Fatal''': PHP's PCRE module seems to be compiled without PCRE_UTF8 support.
  121. MediaWiki requires UTF-8 support to function correctly.",
  122. 'config-memory-raised' => "PHP's <code>memory_limit</code> is $1, raised to $2.",
  123. 'config-memory-bad' => "'''Warning:''' PHP's <code>memory_limit</code> is $1.
  124. This is probably too low.
  125. The installation may fail!",
  126. 'config-xcache' => '[http://trac.lighttpd.net/xcache/ XCache] is installed',
  127. 'config-apc' => '[http://www.php.net/apc APC] is installed',
  128. 'config-eaccel' => '[http://eaccelerator.sourceforge.net/ eAccelerator] is installed',
  129. 'config-wincache' => '[http://www.iis.net/download/WinCacheForPhp WinCache] is installed',
  130. 'config-no-cache' => "'''Warning:''' Could not find [http://eaccelerator.sourceforge.net eAccelerator], [http://www.php.net/apc APC], [http://trac.lighttpd.net/xcache/ XCache] or [http://www.iis.net/download/WinCacheForPhp WinCache].
  131. Object caching is not enabled.",
  132. 'config-diff3-bad' => 'GNU diff3 not found.',
  133. 'config-imagemagick' => 'Found ImageMagick: <code>$1</code>.
  134. Image thumbnailing will be enabled if you enable uploads.',
  135. 'config-gd' => 'Found GD graphics library built-in.
  136. Image thumbnailing will be enabled if you enable uploads.',
  137. 'config-no-scaling' => 'Could not find GD library or ImageMagick.
  138. Image thumbnailing will be disabled.',
  139. 'config-no-uri' => "'''Error:''' Could not determine the current URI.
  140. Installation aborted.",
  141. 'config-uploads-not-safe' => "'''Warning:''' Your default directory for uploads <code>$1</code> is vulnerable to arbitrary scripts execution.
  142. Although MediaWiki checks all uploaded files for security threats, it is highly recommended to [http://www.mediawiki.org/wiki/Manual:Security#Upload_security close this security vulnerability] before enabling uploads.",
  143. 'config-brokenlibxml' => 'Your system has a combination of PHP and libxml2 versions which is buggy and can cause hidden data corruption in MediaWiki and other web applications.
  144. Upgrade to PHP 5.2.9 or later and libxml2 2.7.3 or later ([http://bugs.php.net/bug.php?id=45996 bug filed with PHP]).
  145. Installation aborted.',
  146. 'config-using531' => 'MediaWiki cannot be used with PHP $1 due to a bug involving reference parameters to <code>__call()</code>.
  147. Upgrade to PHP 5.3.2 or higher, or downgrade to PHP 5.3.0 to resolve this.
  148. Installation aborted.',
  149. 'config-suhosin-max-value-length' => "Suhosin is installed and limits the GET parameter length to $1 bytes. MediaWiki's ResourceLoader component will work around this limit, but that will degrade performance. If at all possible, you should set suhosin.get.max_value_length to 1024 or higher in php.ini , and set \$wgResourceLoaderMaxQueryLength to the same value in LocalSettings.php .",
  150. 'config-db-type' => 'Database type:',
  151. 'config-db-host' => 'Database host:',
  152. 'config-db-host-help' => 'If your database server is on different server, enter the host name or IP address here.
  153. If you are using shared web hosting, your hosting provider should give you the correct host name in their documentation.
  154. If you are installing on a Windows server and using MySQL, using "localhost" may not work for the server name. If it does not, try "127.0.0.1" for the local IP address.',
  155. 'config-db-host-oracle' => 'Database TNS:',
  156. 'config-db-host-oracle-help' => 'Enter a valid [http://download.oracle.com/docs/cd/B28359_01/network.111/b28317/tnsnames.htm Local Connect Name]; a tnsnames.ora file must be visible to this installation.<br />If you are using client libraries 10g or newer you can also use the [http://download.oracle.com/docs/cd/E11882_01/network.112/e10836/naming.htm Easy Connect] naming method.',
  157. 'config-db-wiki-settings' => 'Identify this wiki',
  158. 'config-db-name' => 'Database name:',
  159. 'config-db-name-help' => 'Choose a name that identifies your wiki.
  160. It should not contain spaces.
  161. If you are using shared web hosting, your hosting provider will either give you a specific database name to use or let you create databases via a control panel.',
  162. 'config-db-name-oracle' => 'Database schema:',
  163. 'config-db-account-oracle-warn' => "There are three supported scenarios for installing Oracle as database backend:
  164. If you wish to create database account as part of the installation process, please supply an account with SYSDBA role as database account for installation and specify the desired credentials for the web-access account, otherwise you can either create the web-access account manually and supply only that account (if it has required permissions to create the schema objects) or supply two different accounts, one with create privileges and a restricted one for web access.
  165. Script for creating an account with required privileges can be found in \"maintenance/oracle/\" directory of this installation. Keep in mind that using a restricted account will disable all maintenance capabilities with the default account.",
  166. 'config-db-install-account' => 'User account for installation',
  167. 'config-db-username' => 'Database username:',
  168. 'config-db-password' => 'Database password:',
  169. 'config-db-password-empty' => 'Please enter a password for the new database user: $1.
  170. While it may be possible to create users with no passwords, it is not secure.',
  171. 'config-db-install-username' => 'Enter the username that will be used to connect to the database during the installation process.
  172. This is not the username of the MediaWiki account; this is the username for your database.',
  173. 'config-db-install-password' => 'Enter the password that will be used to connect to the database during the installation process.
  174. This is not the password for the MediaWiki account; this is the password for your database.',
  175. 'config-db-install-help' => 'Enter the username and password that will be used to connect to the database during the installation process.',
  176. 'config-db-account-lock' => 'Use the same username and password during normal operation',
  177. 'config-db-wiki-account' => 'User account for normal operation',
  178. 'config-db-wiki-help' => 'Enter the username and password that will be used to connect to the database during normal wiki operation.
  179. If the account does not exist, and the installation account has sufficient privileges, this user account will be created with the minimum privileges required to operate the wiki.',
  180. 'config-db-prefix' => 'Database table prefix:',
  181. 'config-db-prefix-help' => 'If you need to share one database between multiple wikis, or between MediaWiki and another web application, you may choose to add a prefix to all the table names to avoid conflicts.
  182. Do not use spaces.
  183. This field is usually left empty.',
  184. 'config-db-charset' => 'Database character set',
  185. 'config-charset-mysql5-binary' => 'MySQL 4.1/5.0 binary',
  186. 'config-charset-mysql5' => 'MySQL 4.1/5.0 UTF-8',
  187. 'config-charset-mysql4' => 'MySQL 4.0 backwards-compatible UTF-8',
  188. 'config-charset-help' => "'''Warning:''' If you use '''backwards-compatible UTF-8''' on MySQL 4.1+, and subsequently back up the database with <code>mysqldump</code>, it may destroy all non-ASCII characters, irreversibly corrupting your backups!
  189. In '''binary mode''', MediaWiki stores UTF-8 text to the database in binary fields.
  190. This is more efficient than MySQL's UTF-8 mode, and allows you to use the full range of Unicode characters.
  191. In '''UTF-8 mode''', MySQL will know what character set your data is in, and can present and convert it appropriately,
  192. but it will not let you store characters above the [http://en.wikipedia.org/wiki/Mapping_of_Unicode_character_planes Basic Multilingual Plane].",
  193. 'config-mysql-old' => 'MySQL $1 or later is required, you have $2.',
  194. 'config-db-port' => 'Database port:',
  195. 'config-db-schema' => 'Schema for MediaWiki',
  196. 'config-db-schema-help' => 'This schema will usually be fine.
  197. Only change it if you know you need to.',
  198. 'config-pg-test-error' => "Cannot connect to database '''$1''': $2",
  199. 'config-sqlite-dir' => 'SQLite data directory:',
  200. 'config-sqlite-dir-help' => "SQLite stores all data in a single file.
  201. The directory you provide must be writable by the webserver during installation.
  202. It should '''not''' be accessible via the web, this is why we're not putting it where your PHP files are.
  203. The installer will write a <code>.htaccess</code> file along with it, but if that fails someone can gain access to your raw database.
  204. That includes raw user data (e-mail addresses, hashed passwords) as well as deleted revisions and other restricted data on the wiki.
  205. Consider putting the database somewhere else altogether, for example in <code>/var/lib/mediawiki/yourwiki</code>.",
  206. 'config-oracle-def-ts' => 'Default tablespace:',
  207. 'config-oracle-temp-ts' => 'Temporary tablespace:',
  208. 'config-type-mysql' => 'MySQL',
  209. 'config-type-postgres' => 'PostgreSQL',
  210. 'config-type-sqlite' => 'SQLite',
  211. 'config-type-oracle' => 'Oracle',
  212. 'config-support-info' => 'MediaWiki supports the following database systems:
  213. $1
  214. If you do not see the database system you are trying to use listed below, then follow the instructions linked above to enable support.',
  215. 'config-support-mysql' => '* $1 is the primary target for MediaWiki and is best supported ([http://www.php.net/manual/en/mysql.installation.php how to compile PHP with MySQL support])',
  216. 'config-support-postgres' => '* $1 is a popular open source database system as an alternative to MySQL ([http://www.php.net/manual/en/pgsql.installation.php how to compile PHP with PostgreSQL support]). There may be some minor outstanding bugs, and it is not recommended for use in a production environment.',
  217. 'config-support-sqlite' => '* $1 is a lightweight database system which is very well supported. ([http://www.php.net/manual/en/pdo.installation.php How to compile PHP with SQLite support], uses PDO)',
  218. 'config-support-oracle' => '* $1 is a commercial enterprise database. ([http://www.php.net/manual/en/oci8.installation.php How to compile PHP with OCI8 support])',
  219. 'config-header-mysql' => 'MySQL settings',
  220. 'config-header-postgres' => 'PostgreSQL settings',
  221. 'config-header-sqlite' => 'SQLite settings',
  222. 'config-header-oracle' => 'Oracle settings',
  223. 'config-invalid-db-type' => 'Invalid database type',
  224. 'config-missing-db-name' => 'You must enter a value for "Database name"',
  225. 'config-missing-db-host' => 'You must enter a value for "Database host"',
  226. 'config-missing-db-server-oracle' => 'You must enter a value for "Database TNS"',
  227. 'config-invalid-db-server-oracle' => 'Invalid database TNS "$1".
  228. Use only ASCII letters (a-z, A-Z), numbers (0-9), underscores (_) and dots (.).',
  229. 'config-invalid-db-name' => 'Invalid database name "$1".
  230. Use only ASCII letters (a-z, A-Z), numbers (0-9), underscores (_) and hyphens (-).',
  231. 'config-invalid-db-prefix' => 'Invalid database prefix "$1".
  232. Use only ASCII letters (a-z, A-Z), numbers (0-9), underscores (_) and hyphens (-).',
  233. 'config-connection-error' => '$1.
  234. Check the host, username and password and try again.',
  235. 'config-invalid-schema' => 'Invalid schema for MediaWiki "$1".
  236. Use only ASCII letters (a-z, A-Z), numbers (0-9) and underscores (_).',
  237. 'config-db-sys-create-oracle' => 'Installer only supports using a SYSDBA account for creating a new account.',
  238. 'config-db-sys-user-exists-oracle' => 'User account "$1" already exists. SYSDBA can only be used for creating of a new account!',
  239. 'config-postgres-old' => 'PostgreSQL $1 or later is required, you have $2.',
  240. 'config-sqlite-name-help' => 'Choose a name that identifies your wiki.
  241. Do not use spaces or hyphens.
  242. This will be used for the SQLite data file name.',
  243. 'config-sqlite-parent-unwritable-group' => 'Cannot create the data directory <code><nowiki>$1</nowiki></code>, because the parent directory <code><nowiki>$2</nowiki></code> is not writable by the webserver.
  244. The installer has determined the user your webserver is running as.
  245. Make the <code><nowiki>$3</nowiki></code> directory writable by it to continue.
  246. On a Unix/Linux system do:
  247. <pre>cd $2
  248. mkdir $3
  249. chgrp $4 $3
  250. chmod g+w $3</pre>',
  251. 'config-sqlite-parent-unwritable-nogroup' => 'Cannot create the data directory <code><nowiki>$1</nowiki></code>, because the parent directory <code><nowiki>$2</nowiki></code> is not writable by the webserver.
  252. The installer could not determine the user your webserver is running as.
  253. Make the <code><nowiki>$3</nowiki></code> directory globally writable by it (and others!) to continue.
  254. On a Unix/Linux system do:
  255. <pre>cd $2
  256. mkdir $3
  257. chmod a+w $3</pre>',
  258. 'config-sqlite-mkdir-error' => 'Error creating the data directory "$1".
  259. Check the location and try again.',
  260. 'config-sqlite-dir-unwritable' => 'Unable to write to the directory "$1".
  261. Change its permissions so that the webserver can write to it, and try again.',
  262. 'config-sqlite-connection-error' => '$1.
  263. Check the data directory and database name below and try again.',
  264. 'config-sqlite-readonly' => 'The file <code>$1</code> is not writeable.',
  265. 'config-sqlite-cant-create-db' => 'Could not create database file <code>$1</code>.',
  266. 'config-sqlite-fts3-downgrade' => 'PHP is missing FTS3 support, downgrading tables',
  267. 'config-can-upgrade' => "There are MediaWiki tables in this database.
  268. To upgrade them to MediaWiki $1, click '''Continue'''.",
  269. 'config-upgrade-done' => "Upgrade complete.
  270. You can now [$1 start using your wiki].
  271. If you want to regenerate your <code>LocalSettings.php</code> file, click the button below.
  272. This is '''not recommended''' unless you are having problems with your wiki.",
  273. 'config-upgrade-done-no-regenerate' => "Upgrade complete.
  274. You can now [$1 start using your wiki].",
  275. 'config-regenerate' => 'Regenerate LocalSettings.php →',
  276. 'config-show-table-status' => 'SHOW TABLE STATUS query failed!',
  277. 'config-unknown-collation' => "'''Warning:''' Database is using unrecognised collation.",
  278. 'config-db-web-account' => 'Database account for web access',
  279. 'config-db-web-help' => 'Select the username and password that the web server will use to connect to the database server, during ordinary operation of the wiki.',
  280. 'config-db-web-account-same' => 'Use the same account as for installation',
  281. 'config-db-web-create' => 'Create the account if it does not already exist',
  282. 'config-db-web-no-create-privs' => 'The account you specified for installation does not have enough privileges to create an account.
  283. The account you specify here must already exist.',
  284. 'config-mysql-engine' => 'Storage engine:',
  285. 'config-mysql-innodb' => 'InnoDB',
  286. 'config-mysql-myisam' => 'MyISAM',
  287. 'config-mysql-engine-help' => "'''InnoDB''' is almost always the best option, since it has good concurrency support.
  288. '''MyISAM''' may be faster in single-user or read-only installations.
  289. MyISAM databases tend to get corrupted more often than InnoDB databases.",
  290. 'config-mysql-charset' => 'Database character set:',
  291. 'config-mysql-binary' => 'Binary',
  292. 'config-mysql-utf8' => 'UTF-8',
  293. 'config-mysql-charset-help' => "In '''binary mode''', MediaWiki stores UTF-8 text to the database in binary fields.
  294. This is more efficient than MySQL's UTF-8 mode, and allows you to use the full range of Unicode characters.
  295. In '''UTF-8 mode''', MySQL will know what character set your data is in, and can present and convert it appropriately, but it will not let you store characters above the [http://en.wikipedia.org/wiki/Mapping_of_Unicode_character_planes Basic Multilingual Plane].",
  296. 'config-site-name' => 'Name of wiki:',
  297. 'config-site-name-help' => "This will appear in the title bar of the browser and in various other places.",
  298. 'config-site-name-blank' => 'Enter a site name.',
  299. 'config-project-namespace' => 'Project namespace:',
  300. 'config-ns-generic' => 'Project',
  301. 'config-ns-site-name' => 'Same as the wiki name: $1',
  302. 'config-ns-other' => 'Other (specify)',
  303. 'config-ns-other-default' => 'MyWiki',
  304. 'config-project-namespace-help' => 'Following Wikipedia\'s example, many wikis keep their policy pages separate from their content pages, in a "\'\'\'project namespace\'\'\'".
  305. All page titles in this namespace start with a certain prefix, which you can specify here.
  306. Traditionally, this prefix is derived from the name of the wiki, but it cannot contain punctuation characters such as "#" or ":".',
  307. 'config-ns-invalid' => 'The specified namespace "<nowiki>$1</nowiki>" is invalid.
  308. Specify a different project namespace.',
  309. 'config-ns-conflict' => 'The specified namespace "<nowiki>$1</nowiki>" conflicts with a default MediaWiki namespace.
  310. Specify a different project namespace.',
  311. 'config-admin-box' => 'Administrator account',
  312. 'config-admin-name' => 'Your name:',
  313. 'config-admin-password' => 'Password:',
  314. 'config-admin-password-confirm' => 'Password again:',
  315. 'config-admin-help' => 'Enter your preferred username here, for example "Joe Bloggs".
  316. This is the name you will use to log in to the wiki.',
  317. 'config-admin-name-blank' => 'Enter an administrator username.',
  318. 'config-admin-name-invalid' => 'The specified username "<nowiki>$1</nowiki>" is invalid.
  319. Specify a different username.',
  320. 'config-admin-password-blank' => 'Enter a password for the administrator account.',
  321. 'config-admin-password-same' => 'The password must not be the same as the username.',
  322. 'config-admin-password-mismatch' => 'The two passwords you entered do not match.',
  323. 'config-admin-email' => 'E-mail address:',
  324. 'config-admin-email-help' => 'Enter an e-mail address here to allow you to receive e-mail from other users on the wiki, reset your password, and be notified of changes to pages on your watchlist. You can leave this field empty.',
  325. 'config-admin-error-user' => 'Internal error when creating an admin with the name "<nowiki>$1</nowiki>".',
  326. 'config-admin-error-password' => 'Internal error when setting a password for the admin "<nowiki>$1</nowiki>": <pre>$2</pre>',
  327. 'config-admin-error-bademail' => 'You have entered an invalid e-mail address.',
  328. 'config-subscribe' => 'Subscribe to the [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce release announcements mailing list].',
  329. 'config-subscribe-help' => 'This is a low-volume mailing list used for release announcements, including important security announcements.
  330. You should subscribe to it and update your MediaWiki installation when new versions come out.',
  331. 'config-almost-done' => 'You are almost done!
  332. You can now skip the remaining configuration and install the wiki right now.',
  333. 'config-optional-continue' => 'Ask me more questions.',
  334. 'config-optional-skip' => "I'm bored already, just install the wiki.",
  335. 'config-profile' => 'User rights profile:',
  336. 'config-profile-wiki' => 'Traditional wiki',
  337. 'config-profile-no-anon' => 'Account creation required',
  338. 'config-profile-fishbowl' => 'Authorized editors only',
  339. 'config-profile-private' => 'Private wiki',
  340. 'config-profile-help' => "Wikis work best when you let as many people edit them as possible.
  341. In MediaWiki, it is easy to review the recent changes, and to revert any damage that is done by naive or malicious users.
  342. However, many have found MediaWiki to be useful in a wide variety of roles, and sometimes it is not easy to convince everyone of the benefits of the wiki way.
  343. So you have the choice.
  344. A '''{{int:config-profile-wiki}}''' allows anyone to edit, without even logging in.
  345. A wiki with '''{{int:config-profile-no-anon}}''' provides extra accountability, but may deter casual contributors.
  346. The '''{{int:config-profile-fishbowl}}''' scenario allows approved users to edit, but the public can view the pages, including history.
  347. A '''{{int:config-profile-private}}''' only allows approved users to view pages, with the same group allowed to edit.
  348. More complex user rights configurations are available after installation, see the [http://www.mediawiki.org/wiki/Manual:User_rights relevant manual entry].",
  349. 'config-license' => 'Copyright and license:',
  350. 'config-license-none' => 'No license footer',
  351. 'config-license-cc-by-sa' => 'Creative Commons Attribution Share Alike',
  352. 'config-license-cc-by-nc-sa' => 'Creative Commons Attribution Non-Commercial Share Alike',
  353. 'config-license-cc-0' => 'Creative Commons Zero',
  354. 'config-license-gfdl-old' => 'GNU Free Documentation License 1.2',
  355. 'config-license-gfdl-current' => 'GNU Free Documentation License 1.3 or later',
  356. 'config-license-pd' => 'Public Domain',
  357. 'config-license-cc-choose' => 'Select a custom Creative Commons license',
  358. 'config-license-help' => "Many public wikis put all contributions under a [http://freedomdefined.org/Definition free license].
  359. This helps to create a sense of community ownership and encourages long-term contribution.
  360. It is not generally necessary for a private or corporate wiki.
  361. If you want to be able to use text from Wikipedia, and you want Wikipedia to be able to accept text copied from your wiki, you should choose '''Creative Commons Attribution Share Alike'''.
  362. The GNU Free Documentation License was the old license Wikipedia was under.
  363. It is still a valid license, however, this license has some features which make reuse and interpretation difficult.",
  364. 'config-email-settings' => 'E-mail settings',
  365. 'config-enable-email' => 'Enable outbound e-mail',
  366. 'config-enable-email-help' => "If you want e-mail to work, [http://www.php.net/manual/en/mail.configuration.php PHP's mail settings] need to be configured correctly.
  367. If you do not want any e-mail features, you can disable them here.",
  368. 'config-email-user' => 'Enable user-to-user e-mail',
  369. 'config-email-user-help' => 'Allow all users to send each other e-mail if they have enabled it in their preferences.',
  370. 'config-email-usertalk' => 'Enable user talk page notification',
  371. 'config-email-usertalk-help' => 'Allow users to receive notifications on user talk page changes, if they have enabled it in their preferences.',
  372. 'config-email-watchlist' => 'Enable watchlist notification',
  373. 'config-email-watchlist-help' => 'Allow users to receive notifications about their watched pages if they have enabled it in their preferences.',
  374. 'config-email-auth' => 'Enable e-mail authentication',
  375. 'config-email-auth-help' => "If this option is enabled, users have to confirm their e-mail address using a link sent to them whenever they set or change it.
  376. Only authenticated e-mail addresses can receive e-mails from other users or change notification e-mails.
  377. Setting this option is '''recommended''' for public wikis because of potential abuse of the e-mail features.",
  378. 'config-email-sender' => 'Return e-mail address:',
  379. 'config-email-sender-help' => 'Enter the e-mail address to use as the return address on outbound e-mail.
  380. This is where bounces will be sent.
  381. Many mail servers require at least the domain name part to be valid.',
  382. 'config-upload-settings' => 'Images and file uploads',
  383. 'config-upload-enable' => 'Enable file uploads',
  384. 'config-upload-help' => "File uploads potentially expose your server to security risks.
  385. For more information, read the [http://www.mediawiki.org/wiki/Manual:Security security section] in the manual.
  386. To enable file uploads, change the mode on the <code>images</code> subdirectory under MediaWiki's root directory so that the web server can write to it.
  387. Then enable this option.",
  388. 'config-upload-deleted' => 'Directory for deleted files:',
  389. 'config-upload-deleted-help' => 'Choose a directory in which to archive deleted files.
  390. Ideally, this should not be accessible from the web.',
  391. 'config-logo' => 'Logo URL:',
  392. 'config-logo-help' => "MediaWiki's default skin includes space for a 135x160 pixel logo above the sidebar menu.
  393. Upload an image of the appropriate size, and enter the URL here.
  394. If you do not want a logo, leave this box blank.",
  395. 'config-instantcommons' => 'Enable Instant Commons',
  396. 'config-instantcommons-help' => '[http://www.mediawiki.org/wiki/InstantCommons Instant Commons] is a feature that allows wikis to use images, sounds and other media found on the [http://commons.wikimedia.org/ Wikimedia Commons] site.
  397. In order to do this, MediaWiki requires access to the Internet.
  398. For more information on this feature, including instructions on how to set it up for wikis other than the Wikimedia Commons, consult [http://mediawiki.org/wiki/Manual:$wgForeignFileRepos the manual].',
  399. 'config-cc-error' => 'The Creative Commons license chooser gave no result.
  400. Enter the license name manually.',
  401. 'config-cc-again' => 'Pick again...',
  402. 'config-cc-not-chosen' => 'Choose which Creative Commons license you want and click "proceed".',
  403. 'config-advanced-settings' => 'Advanced configuration',
  404. 'config-cache-options' => 'Settings for object caching:',
  405. 'config-cache-help' => 'Object caching is used to improve the speed of MediaWiki by caching frequently used data.
  406. Medium to large sites are highly encouraged to enable this, and small sites will see benefits as well.',
  407. 'config-cache-none' => 'No caching (no functionality is removed, but speed may be impacted on larger wiki sites)',
  408. 'config-cache-accel' => 'PHP object caching (APC, eAccelerator, XCache or WinCache)',
  409. 'config-cache-memcached' => 'Use Memcached (requires additional setup and configuration)',
  410. 'config-memcached-servers' => 'Memcached servers:',
  411. 'config-memcached-help' => 'List of IP addresses to use for Memcached.
  412. Should specify one per line and specify the port to be used. For example:
  413. 127.0.0.1:11211
  414. 192.168.1.25:1234',
  415. 'config-memcache-needservers' => 'You selected Memcached as your cache type but did not specify any servers.',
  416. 'config-memcache-badip' => 'You have entered an invalid IP address for Memcached: $1.',
  417. 'config-memcache-noport' => 'You did not specify a port to use for Memcached server: $1.
  418. If you do not know the port, the default is 11211.',
  419. 'config-memcache-badport' => 'Memcached port numbers should be between $1 and $2.',
  420. 'config-extensions' => 'Extensions',
  421. 'config-extensions-help' => 'The extensions listed above were detected in your <code>./extensions</code> directory.
  422. They may require additional configuration, but you can enable them now',
  423. 'config-install-alreadydone' => "'''Warning:''' You seem to have already installed MediaWiki and are trying to install it again.
  424. Please proceed to the next page.",
  425. 'config-install-begin' => 'By pressing "{{int:config-continue}}", you will begin the installation of MediaWiki.
  426. If you still want to make changes, press back.',
  427. 'config-install-step-done' => 'done',
  428. 'config-install-step-failed' => 'failed',
  429. 'config-install-extensions' => 'Including extensions',
  430. 'config-install-database' => 'Setting up database',
  431. 'config-install-schema' => 'Creating schema',
  432. 'config-install-pg-schema-not-exist' => 'PostgreSQL schema does not exist.',
  433. 'config-install-pg-schema-failed' => 'Tables creation failed.
  434. Make sure that the user "$1" can write to the schema "$2".',
  435. 'config-install-pg-commit' => 'Committing changes',
  436. 'config-install-pg-plpgsql' => 'Checking for language PL/pgSQL',
  437. 'config-pg-no-plpgsql' => 'You need to install the language PL/pgSQL in the database $1',
  438. 'config-pg-no-create-privs' => 'The account you specified for installation does not have enough privileges to create an account.',
  439. 'config-pg-not-in-role' => 'The account you specified for the web user already exists.
  440. The account you specified for installation is not a superuser and is not a member of the web user\'s role, so it is unable to create objects owned by the web user.
  441. MediaWiki currently requires that the tables be owned by the web user. Please specify another web account name, or click "back" and specify a suitably privileged install user.',
  442. 'config-install-user' => 'Creating database user',
  443. 'config-install-user-alreadyexists' => 'User "$1" already exists',
  444. 'config-install-user-create-failed' => 'Creating user "$1" failed: $2',
  445. 'config-install-user-grant-failed' => 'Granting permission to user "$1" failed: $2',
  446. 'config-install-user-missing' => 'The specified user "$1" does not exist.',
  447. 'config-install-user-missing-create' => 'The specified user "$1" does not exist.
  448. Please click the "create account" checkbox below if you want to create it.',
  449. 'config-install-tables' => 'Creating tables',
  450. 'config-install-tables-exist' => "'''Warning''': MediaWiki tables seem to already exist.
  451. Skipping creation.",
  452. 'config-install-tables-failed' => "'''Error''': Table creation failed with the following error: $1",
  453. 'config-install-interwiki' => 'Populating default interwiki table',
  454. 'config-install-interwiki-list' => 'Could not read file <code>interwiki.list</code>.',
  455. 'config-install-interwiki-exists' => "'''Warning''': The interwiki table seems to already have entries.
  456. Skipping default list.",
  457. 'config-install-stats' => 'Initializing statistics',
  458. 'config-install-keys' => 'Generating secret keys',
  459. 'config-insecure-keys' => "'''Warning:''' {{PLURAL:$2|A secure key|Secure keys}} ($1) generated during installation {{PLURAL:$2|is|are}} not completely safe. Consider changing {{PLURAL:$2|it|them}} manually.",
  460. 'config-install-sysop' => 'Creating administrator user account',
  461. 'config-install-subscribe-fail' => 'Unable to subscribe to mediawiki-announce: $1',
  462. 'config-install-mainpage' => 'Creating main page with default content',
  463. 'config-install-extension-tables' => 'Creating tables for enabled extensions',
  464. 'config-install-mainpage-failed' => 'Could not insert main page: $1',
  465. 'config-install-done' => "'''Congratulations!'''
  466. You have successfully installed MediaWiki.
  467. The installer has generated a <code>LocalSettings.php</code> file.
  468. It contains all your configuration.
  469. You will need to download it and put it in the base of your wiki installation (the same directory as index.php). The download should have started automatically.
  470. If the download was not offered, or if you cancelled it, you can restart the download by clicking the link below:
  471. $3
  472. '''Note''': If you do not do this now, this generated configuration file will not be available to you later if you exit the installation without downloading it.
  473. When that has been done, you can '''[$2 enter your wiki]'''.",
  474. 'config-download-localsettings' => 'Download LocalSettings.php',
  475. 'config-help' => 'help',
  476. );
  477. /** Message documentation (Message documentation)
  478. * @author Dani
  479. * @author EugeneZelenko
  480. * @author Kghbln
  481. * @author McDutchie
  482. * @author Nike
  483. * @author Platonides
  484. * @author Purodha
  485. * @author Raymond
  486. * @author Siebrand
  487. * @author Umherirrender
  488. */
  489. $messages['qqq'] = array(
  490. 'config-desc' => '{{desc}}',
  491. 'config-title' => 'Parameters:
  492. * $1 is the version of MediaWiki that is being installed.',
  493. 'config-information' => '{{Identical|Information}}',
  494. 'config-localsettings-cli-upgrade' => 'Do not translate the <code>LocalSettings.php</code> and the <code>update.php</code> parts.',
  495. 'config-session-error' => 'Parameters:
  496. * $1 is the error that was encountered with the session.',
  497. 'config-session-expired' => 'Parameters:
  498. * $1 is the configured session lifetime.',
  499. 'config-back' => '{{Identical|Back}}',
  500. 'config-continue' => '{{Identical|Continue}}',
  501. 'config-page-language' => '{{Identical|Language}}',
  502. 'config-page-name' => '{{Identical|Name}}',
  503. 'config-page-options' => '{{Identical|Options}}',
  504. 'config-page-install' => '{{Identical|Install}}',
  505. 'config-page-copying' => 'This is a link to the full GPL text',
  506. 'config-restart' => 'Button text to confirm the installation procedure has to be restarted.',
  507. 'config-env-php' => 'Parameters:
  508. * $1 is the version of PHP that has been installed.',
  509. 'config-no-db-help' => 'Parameters:
  510. * $1 is comma separated list of supported database types by MediaWiki.',
  511. 'config-memory-raised' => 'Parameters:
  512. * $1 is the configured <code>memory_limit</code>.
  513. * $2 is the value to which <code>memory_limit</code> was raised.',
  514. 'config-memory-bad' => 'Parameters:
  515. * $1 is the configured <code>memory_limit</code>.',
  516. 'config-xcache' => 'Message indicates if this program is available',
  517. 'config-apc' => 'Message indicates if this program is available',
  518. 'config-eaccel' => 'Message indicates if this program is available',
  519. 'config-wincache' => 'Message indicates if this program is available',
  520. 'config-db-host-oracle' => 'TNS = [[:wikipedia:Transparent Network Substrate|Transparent Network Substrate]] (<== wikipedia link)',
  521. 'config-db-wiki-settings' => 'This is more acurate: "Enter identifying or distinguishing data for this wiki" since a MySQL database can host tables of several wikis.',
  522. 'config-db-account-lock' => "It might be easier to translate ''normal operation'' as \"also after the installation process\"",
  523. 'config-support-mysql' => 'Parameters:
  524. * $1 - a link to the MySQL home page having the anchor text "MySQL".',
  525. 'config-support-postgres' => 'Parameters:
  526. * $1 - a link to the PostgreSQL home page having the anchor text "PostgreSQL".',
  527. 'config-support-sqlite' => 'Parameters:
  528. * $1 - a link to the SQLite home page having the anchor text "SQLite".',
  529. 'config-support-oracle' => 'Parameters:
  530. * $1 - a link to the Oracle home page, the anchor text of which is "Oracle".',
  531. 'config-sqlite-dir-unwritable' => 'webserver refers to a software like Apache or Lighttpd.',
  532. 'config-can-upgrade' => 'Should we no use an {{int:xxx}} construct for "continue" ?
  533. Parameters:
  534. * $1 - Version or Revision indicator.',
  535. 'config-show-table-status' => '{{doc-important|"SHOW TABLE STATUS" is a MySQL command. Do not translate this.}}',
  536. 'config-ns-generic' => '{{Identical|Project}}',
  537. 'config-admin-name' => '{{Identical|Your name}}',
  538. 'config-admin-password' => '{{Identical|Password}}',
  539. 'config-admin-email' => '{{Identical|E-mail address}}',
  540. 'config-subscribe' => 'Used as label for the installer checkbox',
  541. 'config-profile-help' => 'Messages referenced:
  542. * {{msg-mw|config-profile-wiki}}
  543. * {{msg-mw|config-profile-no-anon}}
  544. * {{msg-mw|config-profile-fishbowl}}
  545. * {{msg-mw|config-profile-private}}',
  546. 'config-upload-help' => 'The word "mode" here refers to the access rights given to various user groups when attempting to create and store files and/or subdiretories in the said directory on the server. It also refers to the <code>mode</code> command used to maipulate said right mask under Unix, Linux, and similar operating systems. A less operating-system-centric translation is fine.',
  547. 'config-logo-help' => '{{doc-important|For languages with right-to-left script, translate "top left corner" as "top right corner".}}',
  548. 'config-cc-not-chosen' => 'Do not translate the <code>"proceed".</code> part.
  549. This message refers to a block of HTML being embedded into the installer page. It comes from the Creative Commons Web site. The block is in the English language. It is a scripted license chooser. When an individual license has been selected, it asks you to klick "proceed" so as to return to the MediaWiki installer page.',
  550. 'config-extensions' => '{{Identical|Extension}}',
  551. 'config-install-step-done' => '{{Identical|Done}}',
  552. 'config-install-pg-schema-failed' => 'Parameters:
  553. * $1 = database user name (usernames in the database are unrelated to wiki user names)
  554. * $2 =',
  555. 'config-install-user' => 'Message indicates that the user is being created',
  556. 'config-install-user-grant-failed' => 'Parameters:
  557. * $1 is the database username for which granting rights failed
  558. * $2 is the error message',
  559. 'config-install-tables' => 'Message indicates that the tables are being created',
  560. 'config-install-interwiki' => 'Message indicates that the interwikitables are being populated',
  561. 'config-insecure-keys' => 'Parameters:
  562. * $1 - A list of names of the secret keys that were generated.
  563. * $2 - the number of items in the list $1, to be used with PLURAL.',
  564. 'config-install-sysop' => 'Message indicates that the administrator user account is being created',
  565. 'config-install-subscribe-fail' => '{{doc-important|"mediawiki-announce" is the name of a mailing list and should not be translated.}}',
  566. 'config-install-done' => 'Parameters:
  567. * $1 is the URL to LocalSettings download
  568. * $2 is a link to the wiki.
  569. * $3 is a download link with attached download icon. The config-download-localsettings message will be used as the link text.',
  570. 'config-download-localsettings' => 'The link text used in the download link in config-install-done.',
  571. 'config-help' => 'This is used in help boxes.
  572. {{Identical|Help}}',
  573. );
  574. /** Magyar (magázó) (Magyar (magázó))
  575. * @author Dani
  576. * @author Glanthor Reviol
  577. */
  578. $messages['hu-formal'] = array(
  579. 'config-localsettings-upgrade' => "'''Figyelmeztetés''': már létezik a <code>LocalSettings.php</code> fájl.
  580. A szoftver frissíthető.
  581. Adja meg a <code>\$wgUpgradeKey</code>-ben található kulcsot a beviteli mezőben",
  582. 'config-session-expired' => 'Úgy tűnik, hogy a munkamenetadatok lejártak.
  583. A munkamenetek élettartama a következőre van beállítva: $1.
  584. Az érték növelhető a php.ini <code>session.gc_maxlifetime</code> beállításának módosításával.
  585. Indítsa újra a telepítési folyamatot.',
  586. 'config-no-session' => 'Elvesztek a munkamenetadatok!
  587. Ellenőrizze, hogy a php.ini-ben a <code>session.save_path</code> beállítás a megfelelő könyvtárra mutat-e.',
  588. 'config-your-language-help' => 'Válassza ki a telepítési folyamat során használandó nyelvet.',
  589. 'config-wiki-language-help' => 'Az a nyelv, amin a wiki tartalmának legnagyobb része íródik.',
  590. 'config-page-welcome' => 'Üdvözli a MediaWiki!',
  591. 'config-help-restart' => 'Szeretné törölni az eddig megadott összes adatot és újraindítani a telepítési folyamatot?',
  592. 'config-welcome' => '=== Környezet ellenőrzése ===
  593. Alapvető ellenőrzés, ami megmondja, hogy a környezet alkalmas-e a MediaWiki számára.
  594. Ha probléma merülne fel a telepítés során, meg kell adnia mások számára az alább megjelenő információkat.',
  595. 'config-unicode-pure-php-warning' => "'''Figyelmeztetés''': Az [http://pecl.php.net/intl intl PECL kiterjesztés] nem érhető el Unicode normalizáláshoz.
  596. Ha nagy látogatottságú oldalt üzemeltet, itt találhat információkat [http://www.mediawiki.org/wiki/Unicode_normalization_considerations a témáról].",
  597. 'config-register-globals' => "'''Figyelmeztetés: A PHP <code>[http://php.net/register_globals register_globals]</code> beállítása engedélyezve van.'''
  598. '''Tiltsa le, ha van rá lehetősége.'''
  599. A MediaWiki működőképes a beállítás használata mellett, de a szerver biztonsági kockázatnak lesz kitéve.",
  600. 'config-imagemagick' => 'Az ImageMagick megtalálható a rendszeren: <code>$1</code>.
  601. A bélyegké

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