blob: ce5be1fa2ee66cb35f7b63f0c02058729e2fa38a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
/**
* Internationalisation file for RequestAccount special page.
*
* @file
* @ingroup Extensions
*/
$messages = array(
'en' => array(
'gameaccount' => 'Game Account',
'gamenews' => 'Game News',
'gameaccount-loginnotice' => 'To obtain a game account, you must register here: \'\'\'[[Special:GameAccount|Game Account]]\'\'\'.<br/> To obtain a wiki account, you must register here: \'\'\'[[Special:RequestAccount|Wiki Account]]\'\'\'.',
),
'es' => array(
'gameaccount' => 'Cuenta de Juego',
'gamenews' => 'Noticias del Juego',
'gameaccount-loginnotice' => 'Para obtener una cuenta de juego, debes registrarte aquí: \'\'\'[[Special:GameAccount|Game Account]]\'\'\'.<br/> Para obtener una cuenta en la wiki, debes registrarte aquí: \'\'\'[[Special:RequestAccount|Wiki Account]]\'\'\'.',
),
);
|