summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWushin <pasekei@gmail.com>2015-10-16 11:18:10 -0500
committerWushin <pasekei@gmail.com>2015-10-16 11:18:10 -0500
commitaf13b947ca3cb41b7768aedcc171c3c050e48d8d (patch)
tree19aee08b138f862368afac6a4694d6fbdbbaa2e2
parent41b849bdccfd7c758c205c416b87f7e4d0508a7a (diff)
parent560164dd78738edb4fe32000a1ff253dde600a67 (diff)
downloadwebsite-af13b947ca3cb41b7768aedcc171c3c050e48d8d.tar.gz
website-af13b947ca3cb41b7768aedcc171c3c050e48d8d.tar.bz2
website-af13b947ca3cb41b7768aedcc171c3c050e48d8d.tar.xz
website-af13b947ca3cb41b7768aedcc171c3c050e48d8d.zip
Merge pull request #16 from nelson6e65/es_translation
TMWAccount Spanish translations
-rw-r--r--extensions/tmwa/frontend/language/TMWAccount.alias.php24
-rw-r--r--extensions/tmwa/frontend/language/TMWAccount.i18n.php16
2 files changed, 30 insertions, 10 deletions
diff --git a/extensions/tmwa/frontend/language/TMWAccount.alias.php b/extensions/tmwa/frontend/language/TMWAccount.alias.php
index 7d6e624..2463201 100644
--- a/extensions/tmwa/frontend/language/TMWAccount.alias.php
+++ b/extensions/tmwa/frontend/language/TMWAccount.alias.php
@@ -6,10 +6,24 @@
* @ingroup Extensions
*/
-$specialPageAliases = array();
+$specialPageAliases = array(
+ /** English (English) */
+ 'en' => array(
+ 'GameAccountPage' => array(
+ 'The Mana World Account'
+ ),
+ 'GameNewsPage' => array(
+ 'The Mana World News'
+ )
+ ),
-/** English (English) */
-$specialPageAliases['en'] = array(
- 'GameAccountPage' => array( 'The Mana World Account' ),
- 'GameNewsPage' => array( 'The Mana World News' )
+ /** Spanish (Español) */
+ 'es' => array(
+ 'GameAccountPage' => array(
+ 'Cuenta en The Mana World'
+ ),
+ 'GameNewsPage' => array(
+ 'Noticias de The Mana World'
+ )
+ ),
);
diff --git a/extensions/tmwa/frontend/language/TMWAccount.i18n.php b/extensions/tmwa/frontend/language/TMWAccount.i18n.php
index 637a7f0..0098467 100644
--- a/extensions/tmwa/frontend/language/TMWAccount.i18n.php
+++ b/extensions/tmwa/frontend/language/TMWAccount.i18n.php
@@ -6,10 +6,16 @@
* @ingroup Extensions
*/
-$messages = array();
+$messages = array(
+ 'en' => array(
+ 'gameaccount' => 'The Mana World Game Account',
+ 'gamenews' => 'The Mana World 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]]\'\'\'.',
+ ),
-$messages['en'] = array(
- 'gameaccount' => 'The Mana World Game Account',
- 'gamenews' => 'The Mana World 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 en The Mana World',
+ 'gamenews' => 'Noticias del Juego The Mana World',
+ '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]]\'\'\'.',
+ ),
);