diff options
author | Nelson Martell <nelson6e65-dev@yahoo.es> | 2015-10-15 01:17:22 -0430 |
---|---|---|
committer | Nelson Martell <nelson6e65-dev@yahoo.es> | 2015-10-15 01:17:22 -0430 |
commit | eecbbfe1bec9553811d5429e62ef9550bb763e43 (patch) | |
tree | b84a5ac31b438e158ea28b731eac4cecccdfbaf3 | |
parent | 41b849bdccfd7c758c205c416b87f7e4d0508a7a (diff) | |
download | website-eecbbfe1bec9553811d5429e62ef9550bb763e43.tar.gz website-eecbbfe1bec9553811d5429e62ef9550bb763e43.tar.bz2 website-eecbbfe1bec9553811d5429e62ef9550bb763e43.tar.xz website-eecbbfe1bec9553811d5429e62ef9550bb763e43.zip |
:art: improve arrays coding style.
-rw-r--r-- | extensions/tmwa/frontend/language/TMWAccount.alias.php | 16 | ||||
-rw-r--r-- | extensions/tmwa/frontend/language/TMWAccount.i18n.php | 12 |
2 files changed, 16 insertions, 12 deletions
diff --git a/extensions/tmwa/frontend/language/TMWAccount.alias.php b/extensions/tmwa/frontend/language/TMWAccount.alias.php index 7d6e624..55bba36 100644 --- a/extensions/tmwa/frontend/language/TMWAccount.alias.php +++ b/extensions/tmwa/frontend/language/TMWAccount.alias.php @@ -6,10 +6,14 @@ * @ingroup Extensions */ -$specialPageAliases = array(); - -/** English (English) */ -$specialPageAliases['en'] = array( - 'GameAccountPage' => array( 'The Mana World Account' ), - 'GameNewsPage' => array( 'The Mana World News' ) +$specialPageAliases = array( + /** English (English) */ + 'en' => array( + 'GameAccountPage' => array( + 'The Mana World Account' + ), + 'GameNewsPage' => array( + 'The Mana World News' + ) + ), ); diff --git a/extensions/tmwa/frontend/language/TMWAccount.i18n.php b/extensions/tmwa/frontend/language/TMWAccount.i18n.php index 637a7f0..0616209 100644 --- a/extensions/tmwa/frontend/language/TMWAccount.i18n.php +++ b/extensions/tmwa/frontend/language/TMWAccount.i18n.php @@ -6,10 +6,10 @@ * @ingroup Extensions */ -$messages = array(); - -$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]]\'\'\'.', +$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]]\'\'\'.', + ), ); |