909ae54dff674b2787570416d654e7cabc8ea97e
[lhc/web/wiklou.git] / includes / installer / Installer.i18n.php
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
8 $messages = array();
9
10 /**
11 * English
12 */
13 $messages['en'] = array(
14 'config-title' => 'MediaWiki $1 installation',
15 'config-information' => 'Information',
16 'config-localsettings-upgrade' => "'''Warning''': Your <code>LocalSettings.php</code> file has been detected.
17 Your software is able to upgrade. Please move LocalSettings.php to somewhere safe in then run the installer again.",
18 'config-localsettings-noupgrade' => "'''Error''': Your <code>LocalSettings.php</code> file has been detected.
19 Your software is not able to upgrade at this time. The installer has been disabled for security reasons.",
20 'config-session-error' => 'Error starting session: $1',
21 'config-session-expired' => 'Your session data seems to have expired.
22 Sessions are configured for a lifetime of $1.
23 You can increase this by setting <code>session.gc_maxlifetime</code> in php.ini.
24 Restart the installation process.',
25 'config-no-session' => 'Your session data was lost!
26 Check your php.ini and make sure <code>session.save_path</code> is set to an appropriate directory.',
27 'config-session-path-bad' => 'Your <code>session.save_path</code> (<code>$1</code>) seems to be invalid or unwritable.',
28 'config-show-help' => 'Help',
29 'config-hide-help' => 'Hide help',
30 'config-your-language' => 'Your language:',
31 'config-your-language-help' => 'Select a language to use during the installation process.',
32 'config-wiki-language' => 'Wiki language:',
33 'config-wiki-language-help' => 'Select the language that the wiki will predominantly be written in.',
34 'config-back' => '← Back',
35 'config-continue' => 'Continue →',
36 'config-page-language' => 'Language',
37 'config-page-welcome' => 'Welcome to MediaWiki!',
38 'config-page-dbconnect' => 'Connect to database',
39 'config-page-upgrade' => 'Upgrade existing',
40 'config-page-dbsettings' => 'Database settings',
41 'config-page-name' => 'Name',
42 'config-page-options' => 'Options',
43 'config-page-install' => 'Install',
44 'config-page-complete' => 'Complete!',
45 'config-page-restart' => 'Restart installation',
46 'config-page-readme' => 'Read me',
47 'config-page-releasenotes' => 'Release notes',
48 'config-page-copying' => 'Copying',
49 'config-page-upgradedoc' => 'Upgrading',
50 'config-help-restart' => 'Do you want to clear all saved data that you have entered and restart the installation process?',
51 'config-restart' => 'Yes, restart it',
52 'config-welcome' => "=== Environmental checks ===
53 We're doing basic checks to see if this environment is suitable for MediaWiki installation. You
54 should provide this information if you need help during installation.",
55 'config-copyright' => "=== Copyright and Terms ===
56
57 $1
58
59 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.
60
61 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'''.
62 See the GNU General Public License for more details.
63
64 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].",
65 'config-authors' => 'MediaWiki is Copyright © 2001-2010 by Magnus Manske, Brion Vibber, Lee Daniel Crocker, Tim Starling, Erik Möller, Gabriel Wicke, Ævar Arnfjörð Bjarmason, Niklas Laxström, Domas Mituzas, Rob Church, Yuri Astrakhan, Aryeh Gregor, Aaron Schulz, Andrew Garrett, Raimond Spekking, Alexandre Emsenhuber, Siebrand Mazeland, Chad Horohoe and others.',
66 'config-sidebar' => "* [http://www.mediawiki.org MediaWiki home]
67 * [http://www.mediawiki.org/wiki/Help:Contents User's Guide]
68 * [http://www.mediawiki.org/wiki/Manual:Contents Administrator's Guide]
69 * [http://www.mediawiki.org/wiki/Manual:FAQ FAQ]",
70 'config-env-good' => '<span class="success-message">The environment has been checked.
71 You can install MediaWiki.</span>', // FIXME: take span out of message.
72 'config-env-bad' => 'The environment has been checked.
73 You cannot install MediaWiki.',
74 'config-env-php' => 'PHP $1 installed.',
75 'config-env-latest-ok' => 'You are installing the latest version of Mediawiki.',
76 'config-env-latest-new' => "'''Note:''' You are installing a development version of Mediawiki.",
77 'config-env-latest-can-not-check' => "'''Note:''' We were unable to retrieve information about the latest MediaWiki release (from [$1]).",
78 'config-env-latest-data-invalid' => "'''Warning:''' When trying to check if this version was outdated we got invalid data from [$1].",
79 'config-env-latest-old' => "'''Warning:''' You are installing an outdated version of Mediawiki.",
80 'config-env-latest-help' => 'You are installing version $1, but the latest version is $2.
81 You are advised to use the latest release, which can be downloaded from [http://www.mediawiki.org/wiki/Download mediawiki.org]',
82 'config-no-db' => 'Could not find a suitable database driver!',
83 'config-no-db-help' => 'You need to install a database driver for PHP.
84 The following database types are supported: $1.
85
86 If you are on shared hosting, ask your hosting provider to install a suitable database driver.
87 If you compiled PHP yourself, reconfigure it with a database client enabled, for example using <code>./configure --with-mysql</code>.
88 If you installed PHP from a Debian or Ubuntu package, then you also need install the php5-mysql module.',
89 'config-have-db' => 'Found database drivers: $1.',
90 'config-register-globals' => "'''Warning: PHP's <code>[http://php.net/register_globals register_globals]</code> option is enabled.'''
91 '''Disable it if you can.'''
92 MediaWiki will work, but your server is exposed to potential security vulnerabilities.",
93 'config-magic-quotes-runtime' => "'''Fatal: [http://www.php.net/manual/en/ref.info.php#ini.magic-quotes-runtime magic_quotes_runtime] is active!'''
94 This option corrupts data input unpredictably.
95 You cannot install or use MediaWiki unless this option is disabled.",
96 'config-magic-quotes-sybase' => "'''Fatal: [http://www.php.net/manual/en/ref.info.php#ini.magic-quotes-sybase magic_quotes_sybase] is active!'''
97 This option corrupts data input unpredictably.
98 You cannot install or use MediaWiki unless this option is disabled.",
99 'config-mbstring' => "'''Fatal: [http://www.php.net/manual/en/ref.mbstring.php#mbstring.overload mbstring.func_overload] is active!'''
100 This option causes errors and may corrupt data unpredictably.
101 You cannot install or use MediaWiki unless this option is disabled.",
102 'config-ze1' => "'''Fatal: [http://www.php.net/manual/en/ini.core.php zend.ze1_compatibility_mode] is active!'''
103 This option causes horrible bugs with MediaWiki.
104 You cannot install or use MediaWiki unless this option is disabled.",
105 'config-safe-mode' => "'''Warning:''' PHP's [http://www.php.net/features.safe-mode safe mode] is active.
106 It may cause problems, particularly if using file uploads and <code>math</code> support.",
107 'config-xml-good' => 'Have XML / Latin1-UTF-8 conversion support.',
108 'config-xml-bad' => "PHP's XML module is missing.
109 MediaWiki requires functions in this module and will not work in this configuration.
110 If you're running Mandrake, install the php-xml package.",
111 'config-pcre' => 'The PCRE support module appears to be missing.
112 MediaWiki requires the Perl-compatible regular expression functions to work.',
113 'config-memory-none' => 'PHP is configured with no <code>memory_limit</code>',
114 'config-memory-ok' => "PHP's <code>memory_limit</code> is $1, ok.",
115 'config-memory-raised' => "PHP's <code>memory_limit</code> is $1, raised to $2.",
116 'config-memory-bad' => "'''Warning:''' PHP's <code>memory_limit</code> is $1.
117 This is probably too low.
118 The installation may fail!",
119 'config-xcache' => '[http://trac.lighttpd.net/xcache/ XCache] installed',
120 'config-apc' => '[http://www.php.net/apc APC] installed',
121 'config-eaccel' => '[http://eaccelerator.sourceforge.net/ eAccelerator] installed',
122 'config-wincache' => '[http://www.iis.net/download/WinCacheForPhp WinCache] installed',
123 '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].
124 Object caching is not enabled.",
125 'config-diff3-good' => 'Found GNU diff3: <code>$1</code>.',
126 'config-diff3-bad' => 'GNU diff3 not found.',
127 'config-imagemagick' => 'Found ImageMagick: <code>$1</code>.
128 Image thumbnailing will be enabled if you enable uploads.',
129 'config-gd' => 'Found GD graphics library built-in.
130 Image thumbnailing will be enabled if you enable uploads.',
131 'config-no-scaling' => 'Could not find GD library or ImageMagick.
132 Image thumbnailing will be disabled.',
133 'config-dir' => 'Installation directory: <code>$1</code>.',
134 'config-uri' => 'Script URI path: <code>$1</code>.',
135 'config-no-uri' => "'''Error:''' Could not determine the current URI.
136 Installation aborted.",
137 'config-dir-not-writable-group' => "'''Error:''' Cannot write config file.
138 Installation aborted.
139
140 We have determined the user your webserver is running as. Make the
141 <code><nowiki>config</nowiki></code> directory writable by it to continue. On a Unix/Linux system:
142
143 <pre>cd $1
144 chgrp $2 config
145 chmod g+w config</pre>",
146 'config-dir-not-writable-nogroup' => "'''Error:''' Cannot write config file.
147 Installation aborted.
148
149 We couldn't determine the user your webserver is running as. Make the
150 <code><nowiki>config</nowiki></code> directory globally writable by it (and others!) to continue. On
151 a Unix/Linux system do:
152
153 <pre>cd $1
154 chmod a+w config</pre>",
155 'config-file-extension' => 'Installing MediaWiki with <code>$1</code> file extensions.',
156 'config-shell-locale' => 'Detected shell locale "$1"',
157 'config-uploads-safe' => 'Default uploads directory is safe from arbitrary scripts execution.',
158 'config-uploads-not-safe' => "'''Warning:''' Your default uploads directory <code>$1</code> is vulnerable to arbitrary scripts execution.
159 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 hole] before enabling uploads.",
160 'config-db-type' => 'Database type:',
161 'config-db-host' => 'Database host:',
162 'config-db-host-help' => 'If your database server is on different server, enter the host name or IP address here.
163
164 If you are using shared web hosting, your hosting provider should give you the correct host name in their documentation.',
165 'config-db-wiki-settings' => 'Identify this wiki',
166 'config-db-name' => 'Database name:',
167 'config-db-name-help' => 'Choose a name that identifies your wiki.
168 It should not contain spaces or hyphens.
169
170 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.',
171 'config-db-install-account' => 'User account for installation',
172 'config-db-username' => 'Database username:',
173 'config-db-password' => 'Database password:',
174 'config-db-install-help' => 'Enter the username and password that will be used to connect to the database during the installation process.',
175 'config-db-account-lock' => 'Use the same username and password during normal operation',
176 'config-db-wiki-account' => 'User account for normal operation',
177 'config-db-wiki-help' => 'Enter the username and password that will be used to connect to the database during normal wiki operation.
178 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.',
179 'config-db-prefix' => 'Database table prefix:',
180 '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.
181 Do not use spaces or hyphens.
182
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
190 In '''binary mode''', MediaWiki stores UTF-8 text to the database in binary fields.
191 This is more efficient than MySQL's UTF-8 mode, and allows you to use the full range of Unicode characters.
192 In '''UTF-8 mode''', MySQL will know what character set your data is in, and can present and convert it appropriately,
193 but it will not let you store characters above the [http://en.wikipedia.org/wiki/Mapping_of_Unicode_character_planes Basic Multilingual Plane].",
194 'config-mysql-old' => 'MySQL $1 or later is required, you have $2.',
195 'config-db-port' => 'Database port:',
196 'config-db-schema' => 'Schema for MediaWiki',
197 'config-db-ts2-schema' => 'Schema for tsearch2',
198 'config-db-schema-help' => 'The above schemas are usually correct.
199 Only change them if you know you need to.',
200 'config-sqlite-dir' => 'SQLite data directory:',
201 'config-sqlite-dir-help' => "SQLite stores all data in a single file.
202
203 The directory you provide must be writable by the webserver during installation.
204
205 It should '''not''' be accessible via the web, this is why we're not putting it where your PHP files
206 are.
207
208 We'll write out a <code>.htaccess</code> file along with it, but if that fails someone can gain
209 access to your raw database. That includes raw user data (E-Mails, hashed passwords) as well as
210 deleted revisions and other restricted data on the wiki.
211
212 Consider putting the database somewhere altogether, for example <code>/var/lib/mediawiki/yourwiki</code>.",
213 'config-type-mysql' => 'MySQL',
214 'config-type-postgres' => 'PostgreSQL',
215 'config-type-sqlite' => 'SQLite',
216 'config-type-oracle' => 'Oracle',
217 'config-header-mysql' => 'MySQL settings',
218 'config-header-postgres' => 'PostgreSQL settings',
219 'config-header-sqlite' => 'SQLite settings',
220 'config-header-oracle' => 'Oracle settings',
221 'config-invalid-db-type' => 'Invalid database type',
222 'config-missing-db-name' => 'You must enter a value for "Database name"',
223 'config-invalid-db-name' => 'Invalid database name "$1".
224 It may only contain numbers, letters and underscores.',
225 'config-invalid-db-prefix' => 'Invalid database prefix "$1".
226 It may only contain numbers, letters and underscores.',
227 'config-connection-error' => '$1.
228
229 Check the host, username and password below and try again.',
230 'config-invalid-schema' => 'Invalid schema for MediaWiki "$1".
231 Use only letters, numbers and underscores.',
232 'config-invalid-ts2schema' => 'Invalid schema for tsearch2 "$1".
233 Use only letters, numbers and underscores.',
234 'config-postgres-old' => 'PostgreSQL $1 or later is required, you have $2.',
235 'config-sqlite-name-help' => 'Choose a name that identifies your wiki.
236 Do not use spaces or hyphens.
237 This will be used for the SQLite data file name.',
238 '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.
239
240 We have determined the user your webserver is running as. Make the <code><nowiki>$3</nowiki></code>
241 directory writable by it to continue. On a Unix/Linux system do:
242
243 <pre>cd $2
244 mkdir $3
245 chgrp $4 $3
246 chmod g+w $3</pre>',
247 '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.
248
249 We couldn\'t determine the user your webserver is running as. Make the <code><nowiki>$3</nowiki></code>
250 directory globally writable by it (and others!) to continue. On a Unix/Linux system do:
251
252 <pre>cd $2
253 mkdir $3
254 chmod a+w $3</pre>',
255 'config-sqlite-mkdir-error' => 'Error creating the data directory "$1".
256 Check the location and try again.',
257 'config-sqlite-dir-unwritable' => 'Unable to write to the directory "$1".
258 Change its permissions so that the webserver can write to it, and try again.',
259 'config-sqlite-connection-error' => '$1.
260
261 Check the data directory and database name below and try again.',
262 'config-sqlite-readonly' => 'File <code>$1</code> is not writeable.',
263 'config-sqlite-cant-create-db' => 'Could not create database file <code>$1</code>.',
264 'config-sqlite-fts3-downgrade' => 'PHP is missing FTS3 support, downgrading tables',
265 'config-sqlite-fts3-add' => 'Adding FTS3 search capabilities',
266 'config-sqlite-fts3-ok' => 'Fulltext search table appears to be in order',
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
271 You can now [$1 start using your wiki].
272
273 If you want to regenerate your <code>LocalSettings.php</code> file, click the button below.
274 This is '''not recommended''' unless you are having problems with your wiki.",
275 'config-regenerate' => 'Regenerate LocalSettings.php →',
276 'config-show-table-status' => 'SHOW TABLE STATUS query failed!',
277 'config-unknown-collation' => "'''Warning:''' Datbase 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
289 '''MyISAM''' may be faster in single-user or read-only installations.
290 MyISAM databases tend to get corrupted more often than InnoDB databases.",
291 'config-mysql-charset' => 'Database character set:',
292 'config-mysql-binary' => 'Binary',
293 'config-mysql-utf8' => 'UTF-8',
294 'config-mysql-charset-help' => "In '''binary mode''', MediaWiki stores UTF-8 text to the database in binary fields.
295 This is more efficient than MySQL's UTF-8 mode, and allows you to use the full range of Unicode characters.
296
297 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].",
298 'config-site-name' => 'Name of wiki:',
299 'config-site-name-help' => "This will appear in the browser's title bar and various other places.",
300 'config-site-name-blank' => 'Enter a site name.',
301 'config-project-namespace' => 'Project namespace:',
302 'config-ns-generic' => 'Project',
303 'config-ns-site-name' => 'Same as the wiki name: $1',
304 'config-ns-other' => 'Other (specify)',
305 'config-ns-other-default' => 'MyWiki',
306 'config-project-namespace-help' => 'Following Wikipedia\'s example, many wikis keep their policy pages separate from their content pages, in a "\'\'\'project namespace\'\'\'".
307 All page titles in this namespace start with a certain prefix, which you can specify here.
308 Traditionally, this prefix is derived from the name of the wiki, but it cannot contain punctuation characters such as "#" or ":".',
309 'config-ns-invalid' => 'The specified namespace "<nowiki>$1</nowiki>" is invalid.
310 Specify a different project namespace',
311 'config-admin-default-username' => 'WikiSysop',
312 'config-admin-box' => 'Administrator account',
313 'config-admin-name' => 'Your name:',
314 'config-admin-password' => 'Password:',
315 'config-admin-password-confirm' => 'Password again:',
316 'config-admin-help' => 'Enter your preferred username here, for example "Joe Bloggs".
317 This is the name you will use to log in to the wiki.',
318 'config-admin-name-blank' => 'Enter an administrator username.',
319 'config-admin-name-invalid' => 'The specified username "<nowiki>$1</nowiki>" is invalid.
320 Specify a different username.',
321 'config-admin-password-blank' => 'Enter a password for the administrator account.',
322 'config-admin-password-same' => 'The password must not be the same as the username.',
323 'config-admin-password-mismatch' => 'The two passwords you entered do not match.',
324 'config-admin-email' => 'E-mail address:',
325 '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.',
326 'config-admin-error-user' => 'Internal error when creating an admin with the name "<nowiki>$1</nowiki>".',
327 'config-admin-error-password' => 'Internal error when setting a password for the admin "<nowiki>$1</nowiki>": <pre>$2</pre>',
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
343 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.
344 So you have the the choice.
345
346 A '''traditional wiki''' allows anyone to edit, without even logging in.
347 A wiki with '''account creation required''' provides extra accountability, but may deter casual contributors.
348
349 The '''authorized editors only''' scenario allows approved users to edit, but the public can view the pages, including history.
350 A '''private wiki''' only allows approved users to view pages, with the same group allowed to edit.
351
352 More complex user rights configurations are available after installation, see the [http://www.mediawiki.org/wiki/Manual:User_rights relevant manual entry].",
353 'config-license' => 'Copyright and license:',
354 'config-license-none' => 'No license footer',
355 'config-license-cc-by-sa' => 'Creative Commons Attribution Share Alike (Wikipedia-compatible)',
356 'config-license-cc-by-nc-sa' => 'Creative Commons Attribution Non-Commercial Share Alike',
357 'config-license-gfdl-old' => 'GNU Free Documentation License 1.2',
358 'config-license-gfdl-current' => 'GNU Free Documentation License 1.3 or later',
359 'config-license-pd' => 'Public Domain',
360 'config-license-cc-choose' => 'Select a custom Creative Commons license',
361 'config-license-help' => "Many public wikis put all contributions under a [http://freedomdefined.org/Definition free license].
362 This helps to create a sense of community ownership and encourages long-term contribution.
363 It is not generally necessary for a private or corporate wiki.
364
365 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'''.
366
367 The GNU Free Documentation License was the old license Wikipedia was under. It is still a valid license, however, this license has some features which make reuse and interpretation difficult.",
368 'config-email-settings' => 'E-mail settings',
369 'config-enable-email' => 'Enable outbound e-mail',
370 '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.
371 If you do not want any e-mail features, you can disable them here.",
372 'config-email-user' => 'Enable user-to-user e-mail',
373 'config-email-user-help' => 'All users to send each other e-mail, if they have enabled it in their preferences',
374 'config-email-usertalk' => 'Enable user talk page notification',
375 'config-email-usertalk-help' => 'Allow users to receive notifications on user talk page changes, if they have enabled it in their preferences',
376 'config-email-watchlist' => 'Enable watchlist notification',
377 'config-email-watchlist-help' => 'Allow users to receive notifications to their watched pages, if they have enabled it in their preferences',
378 'config-email-auth' => 'Enable e-mail authentication',
379 '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.
380 Only authenticated e-mail addresses can receive e-mails from other users or change notification e-mails.
381 Setting this option is '''recommended''' for public wikis because of potential abuse of the e-mail features.",
382 'config-email-sender' => 'Return e-mail address:',
383 'config-email-sender-help' => 'Enter the e-mail address to use as the return address on outbound e-mail.
384 This is where bounces will be sent.
385 Many mail servers require at least the domain name part to be valid.',
386 'config-upload-settings' => 'Images and file uploads',
387 'config-upload-enable' => 'Enable file uploads',
388 'config-upload-help' => "File uploads potentially expose your server to security risks.
389 For more information, read the [http://www.mediawiki.org/wiki/Manual:Security security section] in the manual.
390
391 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.
392 Then enable this option.",
393 'config-upload-deleted' => 'Directory for deleted files:',
394 'config-upload-deleted-help' => 'Choose a directory in which to archive deleted files.
395 Ideally, this should not be accessible from the web.',
396 'config-logo' => 'Logo URL:',
397 'config-logo-help' => "MediaWiki's default skin includes space for a 135x135 pixel logo in the top left corner.
398 Upload an image of the appropriate size, and enter the URL here.
399
400 If you do not want a logo, leave this box blank.",
401 'config-instantcommons' => 'Enable Instant Commons',
402 'config-instantcommons-help' => '[http://www.mediawiki.org/wiki/InstantCommons Instant Commons] is a feature that allows wikis
403 to use images, sounds and other media found on the [http://commons.wikimedia.org/ Wikimedia Commons] site. In order to do this, MediaWiki requires
404 access to the Internet. $1
405
406 For more information on this feature, including instructions on how to set it up for
407 wikis other than the Wikimedia Commons, consult [http://mediawiki.org/wiki/Manual:$wgForeignFileRepos the manual]',
408 'config-instantcommons-good' => 'We were able to detect internet connectivity during the environment checks, so you should be able to enable this if you want to.',
409 'config-instantcommons-bad' => '\'\'Unfortunately, we were unable to detect internet connectivity during the environment checks, so you might be unable to use this. If you are behind a proxy, see [http://www.mediawiki.org/wiki/Manual:$wgHTTPProxy this page]\'\'',
410 'config-cc-error' => 'The Creative Commons license chooser gave no result.
411 Enter the license name manually.',
412 'config-cc-again' => 'Pick again...',
413 'config-cc-not-chosen' => 'Choose which Creative Commons license you want and click "proceed".',
414 'config-advanced-settings' => 'Advanced configuration',
415 'config-cache-options' => 'Settings for object caching:',
416 'config-cache-help' => 'Object caching is used to improve the speed of MediaWiki by caching frequently used data.
417 Medium to large sites are highly encouraged to enable this, and small sites will see benefits as well.',
418 'config-cache-none' => 'No caching (no functionality is removed, but speed may be impacted on larger wiki sites)',
419 'config-cache-accel' => 'PHP object caching (APC, eAccelerator, XCache or WinCache)',
420 'config-cache-memcached' => 'Use Memcached (requires additional setup and configuration)',
421 'config-memcached-servers' => 'Memcached servers:',
422 'config-memcached-help' => 'List of IP addresses to use for Memcached.
423 Should be separated with commas and specify the port to be used (for example: 127.0.0.1:11211, 192.168.1.25:11211).',
424 'config-extensions' => 'Extensions',
425 'config-extensions-help' => 'The extensions listed above were detected in your <code>./extensions</code> directory.
426
427 They may require additional configuration, but you can enable them now',
428 'config-install-alreadydone' => "'''Warning: You seem to have already installed MediaWiki and are trying to install it again. Please proceed to the next page.",
429 'config-install-step-done' => 'done',
430 'config-install-step-failed' => 'failed',
431 'config-install-extensions' => 'Including extensions',
432 'config-install-database' => 'Setting up database',
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-user' => 'Creating database user',
436 'config-install-user-failed' => 'Granting permission to user "$1" failed: $2',
437 'config-install-tables' => 'Creating tables',
438 'config-install-tables-exist' => "'''Warning''': MediaWiki tables seem to already exist. Skipping creation",
439 'config-install-tables-failed' => "'''Error''': Table creation failed with the following error $1",
440 'config-install-interwiki' => 'Populating default interwiki table',
441 'config-install-interwiki-sql' => 'Could not find file <code>interwiki.sql</code>',
442 'config-install-interwiki-exists' => "'''Warning''': Interwiki table seems to already have entires. Skipping default list",
443 'config-install-secretkey' => 'Generating secret key',
444 'config-insecure-secretkey' => "'''Warning:''' Unable to create secure <code>\$wgSecretKey</code>.
445 Consider changing it manually.",
446 'config-install-sysop' => 'Creating administrator user account',
447 'config-install-localsettings' => 'Creating LocalSettings.php',
448 'config-install-localsettings-unwritable' => 'Warning: Could not write <code>LocalSettings.php</code>.
449 Create it yourself, using the following text:
450 <textarea name="LocalSettings" id="LocalSettings" cols="80" rows="25" readonly="readonly">
451 $1
452 </textarea>
453 ',
454 'config-install-done' => "'''Congratulations!'''
455 You have successfully installed MediaWiki.
456
457 We have generated a <code>LocalSettings.php</code> file for you. It contains all your configuration.
458
459 You will need to move it from <code>./config/LocalSettings.php</code> to <code>./LocalSettings.php</code> in order for MediaWiki to work:
460
461 On a Unix/Linux system:
462
463 <pre>
464 mv ./config/LocalSettings.php ./LocalSettings.php
465 </pre>
466
467 When that's done, you can [$1 '''enter your wiki''']",
468 'config-install-done-moved' => "'''Congratulations!'''
469 You have successfully installed MediaWiki.
470
471 [$1 Enter your wiki]",
472 );
473
474 /** Dutch (Nederlands)
475 * @author Siebrand
476 */
477 $messages['nl'] = array(
478 'config-title' => 'Installatie MediaWiki $1',
479 'config-information' => 'Informatie',
480 'config-session-error' => 'Fout bij het begin van de sessie: $1',
481 'config-session-expired' => 'Uw sessiegegevens zijn verlopen.
482 Sessies zijn ingesteld om een levensduur van $1 te hebben.
483 U kunt deze wijzigen via de instelling <code>session.gc_maxlifetime</code> in php.ini.
484 Begin het installatieproces opnieuw.',
485 'config-no-session' => 'Uw sessiegegevens zijn verloren gegaan.
486 Controleer uw php.ini en zorg dat er een juiste map is ingesteld voor <code>session.save_path</code>.',
487 'config-session-path-bad' => 'Uw <code>session.save_path</code> (<code>$1</code>) lijkt onjuist of er kan niet in geschreven worden.',
488 'config-show-help' => 'Hulp',
489 'config-hide-help' => 'Hulp verbergen',
490 'config-your-language' => 'Uw taal:',
491 'config-your-language-help' => 'Selecteer een taal om tijdens het installatieproces te gebruiken.',
492 'config-wiki-language' => 'Wikitaal:',
493 'config-wiki-language-help' => 'Selecteer de taal waar de wiki voornamelijk in wordt geschreven.',
494 'config-back' => '← Terug',
495 'config-continue' => 'Doorgaan →',
496 'config-page-language' => 'Taal',
497 'config-page-welcome' => 'Welkom bij MediaWiki!',
498 'config-page-dbconnect' => 'Verbinding maken met database',
499 'config-page-upgrade' => 'Bestaande bijwerken',
500 'config-page-dbsettings' => 'Databaseinstellingen',
501 'config-page-name' => 'Naam',
502 'config-page-options' => 'Opties',
503 'config-page-install' => 'Installeren',
504 'config-page-complete' => 'Afgerond!',
505 'config-page-restart' => 'Installatie herstarten',
506 'config-page-readme' => 'Lees mij',
507 'config-page-releasenotes' => 'Release notes',
508 'config-page-copying' => 'Kopiëren',
509 'config-page-upgradedoc' => 'Bijwerken',
510 'config-help-restart' => 'Wilt u alle opgeslagen gegevens die u hebt ingevoerd wissen en het installatieproces opnieuw starten?',
511 'config-restart' => 'Ja, opnieuw starten',
512 'config-authors' => 'MediaWiki is Copyright © 2001-2010 door Magnus Manske, Brion Vibber, Lee Daniel Crocker, Tim Starling, Erik Möller, Gabriel Wicke, Ævar Arnfjörð Bjarmason, Niklas Laxström, Domas Mituzas, Rob Church, Yuri Astrakhan, Aryeh Gregor, Aaron Schulz, Andrew Garrett, Raimond Spekking, Alexandre Emsenhuber, Siebrand Mazeland, Chad Horohoe en anderen.',
513 'config-env-good' => 'De omgeving is gecontroleerd.
514 U kunt MediaWiki installeren.',
515 'config-env-bad' => 'De omgeving is gecontroleerd.
516 U kunt MediaWiki niet installeren.',
517 'config-env-php' => 'PHP $1 is geïnstalleerd.',
518 'config-env-latest-ok' => 'U bent bezig de meest recente versie van MediaWiki te installeren.',
519 'config-env-latest-new' => "'''Let op:''' U bent bezig een ontwikkelversie van MediaWiki te installeren.",
520 'config-env-latest-old' => "'''Waarschuwing:''' U bent bezig een verouderde versie van MediaWiki te installeren.",
521 'config-env-latest-help' => 'U bent bezig versie $1 te installeren, maar de meest recente versie is $2.
522 U wordt aangeraden de meest recente versie te gebruiken die u kunt downloaden van [http://www.mediawiki.org/wiki/Download mediawiki.org].',
523 'config-no-db' => 'Er kon geen geschikte databasedriver geladen worden!',
524 'config-no-db-help' => 'U moet een databasedriver installeren voor PHP.
525 De volgende databases worden ondersteund: $1.
526
527 Als u op een gedeelde omgeving zit, vraag dan uw hostingprovider een geschikte databasedriver te installeren.
528 Als u PHP zelf hebt gecompileerd, wijzig dan uw instellingen zodat een databasedriver wordt geactiveerd, bijvoorbeeld via <code>./configure --with-mysql</code>.',
529 'config-have-db' => 'Gevonden databasedrivers: $1.',
530 'config-register-globals' => "'''Waarschuwing: De PHP-optie <code>[http://php.net/register_globals register_globals]</code> is ingeschakeld.'''
531 '''Schakel deze uit als dat mogelijk is.'''
532 MediaWiki kan ermee werken, maar uw server is dan meer kwetsbaar voor beveiligingslekken.",
533 'config-magic-quotes-runtime' => "'''Onherstelbare fout: [http://www.php.net/manual/en/ref.info.php#ini.magic-quotes-runtime magic_quotes_runtime] is actief!'''
534 Deze instelling zorgt voor gegevenscorruptie.
535 U kunt MediaWiki niet installeren tenzij deze instelling is uitgeschakeld.",
536 'config-magic-quotes-sybase' => "'''Onherstelbare fout: [http://www.php.net/manual/en/ref.info.php#ini.magic-quotes-runtime magic_quotes_sybase] is actief!'''
537 Deze instelling zorgt voor gegevenscorruptie.
538 U kunt MediaWiki niet installeren tenzij deze instelling is uitgeschakeld.",
539 'config-mbstring' => "'''Onherstelbare fout: [http://www.php.net/manual/en/ref.mbstring.php#mbstring.overload mbstring.func_overload] is actief!'''
540 Deze instelling zorgt voor gegevenscorruptie.
541 U kunt MediaWiki niet installeren tenzij deze instelling is uitgeschakeld.",
542 'config-ze1' => "'''Onherstelbare fout: [http://www.php.net/manual/en/ini.core.php zend.ze1_compatibility_mode] is actief!'''
543 Deze instelling zorgt voor grote problemen in MediaWiki.
544 U kunt MediaWiki niet installeren tenzij deze instelling is uitgeschakeld.",
545 'config-safe-mode' => "'''Waarschuwing:'''
546 '''PHP's [http://www.php.net/features.safe-mode veilige modus] actief is.'''
547 Dit kan problemen veroorzaken, vooral bij het uploaden van bestanden en ondersteuning van <code>math</code>.",
548 'config-xml-bad' => 'De XML-module van PHP ontbreekt.
549 MediaWiki heeft de functies van deze module nodig en werkt niet zonder deze module.',
550 'config-pcre' => 'De ondersteuningsmodule PCRE lijkt te missen.
551 MediaWiki vereist dat de met Perl compatibele reguliere expressies werken.',
552 'config-memory-none' => 'PHP is ingesteld zonder <code>memory_limit</code>',
553 'config-memory-ok' => "PHP's <code>memory_limit</code> is $1. In orde.",
554 'config-memory-raised' => "PHP's <code>memory_limit</code> is $1. Verhoogd tot $2.",
555 'config-memory-bad' => "'''Waarschuwing:''' PHP's <code>memory_limit</code> is $1.
556 Dit is waarschijnlijk te laag.
557 De installatie kan mislukken!",
558 'config-xcache' => '[http://trac.lighttpd.net/xcache/ XCache] geïnstalleerd',
559 'config-apc' => '[http://www.php.net/apc APC] geïnstalleerd',
560 'config-eaccel' => '[http://eaccelerator.sourceforge.net/ eAccelerator] geïnstalleerd',
561 'config-no-cache' => "'''Waarschuwing:''' [http://eaccelerator.sourceforge.net eAccelerator], [http://www.php.net/apc APC] of [http://trac.lighttpd.net/ xcache / XCache] is niet aangetroffen.
562 Het cachen van objecten is niet ingeschakeld.",
563 'config-diff3-good' => 'GNU diff3 aangetroffen: <code>$1</code>.',
564 'config-diff3-bad' => 'GNU diff3 niet aangetroffen.',
565 'config-imagemagick' => 'ImageMagick aangetroffen: <code>$1</code>.
566 Het aanmaken van miniaturen van afbeeldingen wordt ingeschakeld als u uploaden inschakelt.',
567 'config-gd' => 'Ingebouwde GD grafische bibliotheek aangetroffen.
568 Het aanmaken van miniaturen van afbeeldingen wordt ingeschakeld als u uploaden inschakelt.',
569 'config-no-scaling' => 'De GD-bibliotheek en ImageMagick zijn niet aangetroffen.
570 Het maken van miniaturen van afbeeldingen wordt uitgeschakeld.',
571 'config-dir' => 'Installatiemap: <code>$1</code>.',
572 'config-uri' => 'Script URI-pad: <code>$1</code>.',
573 'config-no-uri' => "'''Fout:''' de huidige URI kon niet vastgesteld worden.
574 De installatie is afgebroken.",
575 'config-file-extension' => 'MediaWiki wordt geinstalleerd met <code>$1</code> als bestandsextensie.',
576 'config-shell-locale' => 'Als shelllocale is "$1" herkend',
577 'config-uploads-safe' => 'De uploadmap is beveiligd tegen het arbitrair uitvoeren van scripts.',
578 'config-uploads-not-safe' => "'''Waarschuwing:''' uw uploadmap <code>$1</code> kan gebruikt worden voor het arbitrair uitvoeren van scripts.
579 Hoewel MediaWiki alle toegevoegde bestanden controleert op bedreigingen, is het zeer aan te bevelen het [http://www.mediawiki.org/wiki/Manual:Security#Upload_security beveiligingslek te verhelpen] alvorens uploads in te schakelen.",
580 'config-db-type' => 'Databasetype:',
581 'config-db-host' => 'Databasehost:',
582 'config-db-host-help' => 'Als uw databaseserver een andere server is, voer dan de hostnaam of het IP-adres hier in.
583 Als u gebruik maakt van gedeelde webhosting, hoort uw provider u de juiste hostnaam te hebben verstrekt.',
584 'config-db-wiki-settings' => 'Identificeer deze wiki',
585 'config-db-name' => 'Databasenaam:',
586 'config-db-name-help' => 'Kies een naam die uw wiki identificeert.
587 Er mogen geen spaties of koppeltekens gebruikt worden.
588 Als u gebruik maakt van gedeelde webhosting, dan hoort uw provider ofwel u een te gebruiken databasenaam gegeven te hebben, of u aangegeven te hebben hoe u databases kunt aanmaken.',
589 'config-db-install-account' => 'Gebruiker voor installatie',
590 'config-db-username' => 'Gebruikersnaam voor database:',
591 'config-db-password' => 'Wachtwoord voor database:',
592 'config-db-install-help' => 'Voer de gebruikersnaam en het wachtwoord in die worden gebruikt voor de databaseverbinding tijdens het installatieproces.',
593 'config-db-account-lock' => 'Dezelfde gebruiker en wachwoord gebruiken na de installatie',
594 'config-db-wiki-account' => 'Gebruiker voor na de installatie',
595 'config-db-wiki-help' => 'Selecteer de gebruikersnaam en het wachtwoord die gebruikt worden om verbinding te maken met de database na de installatie.
596 Als de gebruiker niet bestaat en de gebruiker die tijdens de installatie gebruikt wordt voldoende rechten heeft, wordt deze gebruiker aangemaakt met de minimaal benodigde rechten voor het laten werken van de wiki.',
597 'config-db-prefix' => 'Databasetabelvoorvoegsel:',
598 'config-db-prefix-help' => "Als u een database moet gebruiken voor meerdere wiki's, of voor MediaWiki en een andere applicatie, dan kunt u ervoor kiezen om een voorvoegsel toe te voegen aan de tabelnamen om conflicten te voorkomen.
599 Gebruik geen spaties of koppeltekens.
600
601 Dit veld wordt meestal leeg gelaten.",
602 'config-db-charset' => 'Tekenset voor de database',
603 'config-charset-mysql5-binary' => 'MySQL 4.1/5.0 binair',
604 'config-charset-mysql5' => 'MySQL 4.1/5.0 UTF-8',
605 'config-charset-mysql4' => 'MySQL 4.0 UTF-8-compatibel',
606 'config-mysql-old' => 'U moet MySQL $1 of later gebruiken.
607 U gebruikt $2.',
608 'config-db-port' => 'Databasepoort:',
609 'config-db-schema' => 'Schema voor MediaWiki',
610 'config-db-ts2-schema' => 'Schema voor tsearch2',
611 'config-db-schema-help' => "De bovenstaande schema's kloppen meestal.
612 Wijzig ze alleen als u weet dat u ze nodig hebt.",
613 'config-sqlite-dir' => 'Gegevensmap voor SQLite:',
614 'config-type-mysql' => 'MySQL',
615 'config-type-postgres' => 'PostgreSQL',
616 'config-type-sqlite' => 'SQLite',
617 'config-type-oracle' => 'Oracle',
618 'config-header-mysql' => 'MySQL-instellingen',
619 'config-header-postgres' => 'PostgreSQL-instellingen',
620 'config-header-sqlite' => 'SQLite-instellingen',
621 'config-header-oracle' => 'Oracle-instellingen',
622 'config-invalid-db-type' => 'Ongeldig databasetype',
623 'config-missing-db-name' => 'U moet een waarde ingeven voor "Databasenaam"',
624 'config-invalid-db-name' => 'Ongeldige database naam "$1".
625 Deze mag alleen cijfers, letters en liggende streepjes bevatten.',
626 'config-invalid-db-prefix' => 'Ongeldig databasevoorvoegsel "$1".
627 Dit mag alleen cijfers, letters en liggende streepjes bevatten.',
628 'config-connection-error' => '$1.
629
630 Controleer de host, gebruikersnaam en wachtwoord hieronder in en probeer het opnieuw.',
631 'config-invalid-schema' => 'Ongeldige schema voor MediaWiki "$1".
632 Gebruik alleen letters, cijfers en liggende streepjes.',
633 'config-invalid-ts2schema' => 'Ongeldig schema voor tsearch "$1".
634 Gebruik alleen letters, cijfers en liggende streepjes.',
635 'config-postgres-old' => 'PostgreSQL $1 of hoger is vereist.
636 U gebruikt $2.',
637 'config-sqlite-name-help' => 'Kies een naam die uw wiki identificeert.
638 Gebruik geen spaties of koppeltekens.
639 Deze naam wordt gebruikt voor het gegevensbestands van SQLite.',
640 'config-sqlite-mkdir-error' => 'Er is een fout opgetreden bij het aanmaken van de gegevensmap "$1".
641 Controleer de locatie en probeer het opnieuw.',
642 'config-sqlite-dir-unwritable' => 'Het was niet mogelijk in de map "$1" te schrijven.
643 Wijzig de rechten zodat de webserver erin kan schrijven en probeer het opnieuw.',
644 'config-sqlite-connection-error' => '$1.
645
646 Controleer de map voor gegevens en de databasenaam hieronder en probeer het opnieuw.',
647 'config-sqlite-readonly' => 'Het bestand <code>$1</code> kan niet geschreven worden.',
648 'config-sqlite-cant-create-db' => 'Het was niet mogelijk het databasebestand <code>$1</code> aan te maken.',
649 'config-can-upgrade' => "Er staan al tabellen voor MediaWiki in deze database.
650 Klik op '''Doorgaan''' om ze bij te werken naar MediaWiki $1.",
651 'config-upgrade-done' => "Het bijwerken is afgerond.
652
653 Uw kunt [$1 uw wiki gebruiken].
654
655 Als u uw <code>LocalSettings.php</code> opnieuw wilt aanmaken, klik dan op de knop hieronder.
656 Dit is '''niet aan te raden''' tenzij u problemen hebt met uw wiki.",
657 'config-regenerate' => 'LocalSettings.php opnieuw aanmaken →',
658 'config-show-table-status' => 'Het uitvoeren van SHOW TABLE STATUS is mislukt!',
659 'config-unknown-collation' => "'''Waarschiwing:''' de database gebruikt een collatie die niet wordt herkend.",
660 'config-db-web-account' => 'Databasegebruiker voor webtoegang',
661 'config-db-web-help' => 'Selecteer de gebruikersnaam en het wachtwoord die de webserver gebruikt om verbinding te maken met de databaseserver na de installatie.',
662 'config-db-web-account-same' => 'Dezelfde gebruiker gebruiken als voor de installatie',
663 'config-db-web-create' => 'Maak de gebruiker aan als deze nog niet bestaat',
664 'config-db-web-no-create-privs' => 'De gebruiker die u hebt opgegeven voor de installatie heeft niet voldoende rechten om een gebruiker aan te maken.
665 De gebruiker die u hier opgeeft moet al bestaan.',
666 'config-mysql-engine' => 'Opslagmethode:',
667 'config-mysql-innodb' => 'InnoDB',
668 'config-mysql-myisam' => 'MyISAM',
669 'config-mysql-engine-help' => "'''InnoDB''' is vrijwel altijd de beste instelling, omdat deze goed omgaat met meerdere verzoeken tegelijkertijd.
670
671 '''MyISAM''' is bij een zeer beperkt aantal gebruikers mogelijk sneller, of als de wiki alleen-lezen is.
672 MyISAM-databases raken vaker corrupt dan InnoDB-databases.",
673 'config-mysql-charset' => 'Tekenset voor de database:',
674 'config-mysql-binary' => 'Binair',
675 'config-mysql-utf8' => 'UTF-8',
676 'config-site-name' => 'Naam van de wiki:',
677 'config-site-name-help' => 'Deze naam verschijnt in de titelbalk van browsers en op andere plaatsen.',
678 'config-site-name-blank' => 'Geef een naam op voor de site.',
679 'config-project-namespace' => 'Projectnaamruimte:',
680 'config-ns-generic' => 'Project',
681 'config-ns-site-name' => 'Zelfde als de wiki: $1',
682 'config-ns-other' => 'Andere (geen aan welke)',
683 'config-ns-other-default' => 'MijnWiki',
684 'config-project-namespace-help' => "In het kielzog van Wikipedia beheren veel wiki's hun beleidspagina's apart van hun inhoudelijke pagina's in een \"'''projectnaamruimte'''\".
685 Alle paginanamen in deze naamruimte beginnen met een bepaald voorvoegsel dat u hier kunt aangeven.
686 Dit voorvoegsel wordt meestal afgeleid van de naam van de wiki, maar het kan geen bijzondere tekens bevatten als \"#\" of \":\".",
687 'config-ns-invalid' => 'De aangegeven naamruimte "<nowiki>$1</nowiki>" is ongeldig.
688 Geef een andere naamruimte op.',
689 'config-admin-default-username' => 'WikiBeheerder',
690 'config-admin-box' => 'Beheerdersaccount',
691 'config-admin-name' => 'Uw naam:',
692 'config-admin-password' => 'Wachtwoord:',
693 'config-admin-password-confirm' => 'Wachtwoord opnieuw:',
694 'config-admin-help' => 'Voor de gebruikersnaam hier in, bijvoorbeeld "Jan Jansen".
695 Dit is de naam die wordt gebruikt om aan de melden bij de wiki.',
696 'config-admin-name-blank' => 'Geef een gebruikersnaam op voor de beheerder.',
697 'config-admin-name-invalid' => 'De opgegeven gebruikersnaam "<nowiki>$1</nowiki>" is ongeldig.
698 Kies een andere gebruikersnaam.',
699 'config-admin-password-blank' => 'Voer een wachtwoord voor de beheerder in.',
700 'config-admin-password-same' => 'Het wachtwoord mag niet hetzelfde zijn als de gebruikersnaam.',
701 'config-admin-password-mismatch' => 'De twee door u ingevoerde wachtwoorden komen niet overeen.',
702 'config-admin-email' => 'E-mailadres:',
703 'config-admin-email-help' => "Voer hier een e-mailadres in om e-mail te kunnen ontvangen van andere gebruikers op de wiki, uw wachtwoord opnieuw in te stellen en op de hoogte te worden gehouden van wijzigingen van pagina's op uw volglijst.",
704 'config-subscribe' => 'Abonneren op de [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce mailinglijst releaseaankondigen].',
705 'config-subscribe-help' => 'Dit is een mailinglijst met een laag volume voor aankondigingen van nieuwe versies, inclusief belangrijke aankondigingen met betrekking tot beveiliging.
706 Abonneer uzelf erop en werk uw MediaWiki-installatie bij als er nieuwe versies uitkomen.',
707 'config-almost-done' => 'U bent bijna klaar!
708 Als u wilt kunt u de overige instellingen overslaan en de wiki nu installeren.',
709 'config-optional-continue' => 'Meer vragen',
710 'config-optional-skip' => 'Installeer de wiki',
711 'config-profile' => 'Gebruikersrechtenprofiel:',
712 'config-profile-wiki' => 'Traditionele wiki',
713 'config-profile-no-anon' => 'Gebruiker aanmaken verplicht',
714 'config-profile-private' => 'Privéwiki',
715 'config-license' => 'Auteursrechten en licentie:',
716 'config-license-none' => 'Geen licentie in de voettekst',
717 'config-license-gfdl-old' => 'GNU Free Documentation License 1.2 of hoger',
718 'config-license-gfdl-current' => 'GNU Free Documentation License 1.3 of hoger',
719 'config-license-pd' => 'Publiek domein',
720 'config-license-cc-choose' => 'Een Creative Commons-licentie',
721 'config-email-settings' => 'E-mailinstellingen',
722 'config-enable-email' => 'Uitgaande e-mail inschakelen',
723 'config-enable-email-help' => "Als u wilt dat e-mailen mogelijk is, dan moeten [http://www.php.net/manual/en/mail.configuration.php PHP's e-mailinstellingen] correct zijn.
724 Als u niet wilt dat e-mailen mogelijk is, dan kunt u de instellingen hier uitschakelen.",
725 'config-email-user' => 'E-mail tussen gebruikers inschakelen',
726 'config-email-user-help' => 'Gebruikers toestaan e-mail aan elkaar te verzenden als dit in de voorkeuren is ingesteld',
727 'config-email-usertalk' => 'Gebruikersoverlegnotificatie inschakelen',
728 'config-email-usertalk-help' => 'Gebruikers toestaan notificaties te ontvangen bij wijzigingen op de eigen overlegpagina als dit in de voorkeuren is ingesteld',
729 'config-email-watchlist' => 'Volglijstnotificatie inschakelen',
730 'config-email-watchlist-help' => "Gebruikers toestaan notificaties te ontvangen bij wijzigingen van pagina's op hun volglijst als dit in de voorkeuren is ingesteld",
731 'config-email-auth' => 'E-mailbevestiging inschakelen',
732 'config-email-auth-help' => "Als deze instelling actief is, moeten gebruikers hun e-mailadres bevestigen via een verwijziging die ze per e-mail wordt toegezonden.
733 Alleen bevestigde e-mailadressen kunnen e-mail ontvangen van andere gebruikers of wijzigingsnotificaties ontvangen.
734 Het inschakelen van deze instelling is '''aan te raden''' voor openbare wiki's vanwege de mogelijkheden voor misbruik van e-mailmogelijkheden.",
735 'config-email-sender' => 'E-mailadres voor antwoorden:',
736 'config-email-sender-help' => 'Voer het e-mailadres in dat u wilt gebruiken als antwoordadres voor uitgaande e-mail.
737 Als een e-mail niet bezorgd kan worden, wordt dat op dit e-mailadres gemeld.
738 Veel mailservers vereisen dat tenminste het domein bestaat.',
739 'config-upload-settings' => 'Afbeeldingen en bestanden uploaden',
740 'config-upload-enable' => 'Uploaden van bestanden inschakelen',
741 'config-upload-deleted' => 'Map voor verwijderde bestanden:',
742 'config-upload-deleted-help' => 'Kies een map waarin verwijderde bestanden gearchiveerd kunnen worden.
743 Idealiter is deze map niet via het web te benaderen.',
744 'config-logo' => 'URL voor logo:',
745 'config-logo-help' => 'Het standaarduiterlijk van MediaWiki bevat ruimte voor een logo van 135x135 pixels in de linker bovenhoek.
746 Upload een afbeelding met de juiste afmetingen en voer de URL hier in.
747
748 Als u geen logo wilt gebruiken, kunt u dit veld leeg laten.',
749 'config-cc-error' => 'De licentiekiezer van Creative Commons heeft geen resultaat opgeleverd.
750 Voer de licentie handmatig in.',
751 'config-cc-not-chosen' => 'Kies alstublieft de Creative Commons-licentie die u wilt gebruiken en klik op "doorgaan".',
752 'config-advanced-settings' => 'Gevorderde instellingen',
753 'config-cache-options' => 'Instellingen voor het cachen van objecten:',
754 'config-cache-help' => 'Het cachen van objecten wordt gebruikt om de snelheid van MediaWiki te verbeteren door vaak gebruikte gegevens te bewaren.
755 Middelgrote tot grote websites wordt geadviseerd dit in te schakelen en ook kleine sites merken de voordelen.',
756 'config-cache-none' => 'Niets cachen.
757 Er gaat geen functionaliteit verloren, maar dit kan invloed hebben op de snelheid.',
758 'config-cache-accel' => 'Cachen van objecten via PHP (APC, eAccelerator or XCache)',
759 'config-cache-memcached' => 'Memcached gebruiken (dit vereist aanvullende instellingen)',
760 'config-cache-db' => 'Gegevens cachen in de database',
761 'config-cache-anything' => 'MediaWiki zal proberen de gegevens te cachen waar mogelijk, behalve in Memcached, tenzij expliciet aangegeven',
762 'config-memcached-servers' => 'Memcachedservers:',
763 'config-memcached-help' => "Lijst met IP-adressen te gebruiken voor Memcached.
764 Deze moeten worden gescheiden met komma's en geef de poort op die moet worden gebruikt (bijvoorbeeld: 1.2.3.4:56, 7.8.9.10:11).",
765 'config-extensions' => 'Uitbreidingen',
766 'config-extensions-help' => 'De bovenstaande uitbreidingen zijn aangetroffen in de map <code>./extensions</code>.
767
768 Mogelijk moet u aanvullende instellingen maken, maar u kunt deze uitbreidingen nu inschakelen.',
769 'config-install-step-done' => 'Afgerond',
770 'config-install-step-failed' => 'Mislukt',
771 'config-install-extensions' => 'Inclusief uitbreidingen',
772 'config-install-database' => 'Database inrichten',
773 'config-install-pg-schema-failed' => 'Het aanmaken van de tabellen is mislukt.
774 Zorg dat de gebruiker "$1" in het schema "$2" mag schrijven.',
775 'config-install-tables' => 'Tabellen aanmaken',
776 'config-install-interwiki-sql' => 'Het bestand <code>interwiki.sql</code> is niet aangetroffen',
777 'config-install-secretkey' => 'Geheime sleutel aanmaken',
778 'config-insecure-secretkey' => 'Waarschuwing: het was niet mogelijk een veilige <code>$wgSecretKey</code> aan te maken.
779 Overweeg deze handmatig te wijzigen.',
780 'config-install-sysop' => 'Gebruiker voor beheerder aanmaken',
781 'config-install-localsettings' => '<code>LocalSettings.php</code> aanmaken',
782 'config-install-localsettings-unwritable' => "'''Waarschuwing:''' het was niet mogelijk <code>LocalSettings.php</code> weg te schrijven.
783 Maak dit bestand zelf aan met de volgende inhoud:",
784 'config-install-done-moved' => "'''Gefeliciteerd!'''
785 U hebt MediaWiki geïnstalleerd.
786
787 [$1 Naar uw wiki]",
788 );
789
790 /**
791 * Russian (Русский)
792 * @author MaxSem
793 */
794 $messages['ru'] = array(
795 'config-title' => 'Установка MediaWiki $1',
796 'config-page-language' => 'Язык',
797 'config-admin-default-username' => 'ВикиАдминистратор',
798 );