diff options
Diffstat (limited to 'update/plugin/phpBB3/trunk/root/language')
| -rw-r--r-- | update/plugin/phpBB3/trunk/root/language/en/mods/instadisc.php | 41 |
1 files changed, 41 insertions, 0 deletions
| diff --git a/update/plugin/phpBB3/trunk/root/language/en/mods/instadisc.php b/update/plugin/phpBB3/trunk/root/language/en/mods/instadisc.php new file mode 100644 index 0000000..629adba --- /dev/null +++ b/update/plugin/phpBB3/trunk/root/language/en/mods/instadisc.php | |||
| @@ -0,0 +1,41 @@ | |||
| 1 | <?php | ||
| 2 | /** | ||
| 3 | * | ||
| 4 | * instadisc [English] | ||
| 5 | * | ||
| 6 | * @package language | ||
| 7 | * @version $Id: v3_modules.xml 52 2008-08-05 19:03:00Z hatkirby $ | ||
| 8 | * @copyright (c) 2008 Starla Insigna | ||
| 9 | * @license http://opensource.org/licenses/gpl-license.php GNU Public License | ||
| 10 | * | ||
| 11 | */ | ||
| 12 | |||
| 13 | /** | ||
| 14 | * DO NOT CHANGE | ||
| 15 | */ | ||
| 16 | if (empty($lang) || !is_array($lang)) | ||
| 17 | { | ||
| 18 | $lang = array(); | ||
| 19 | } | ||
| 20 | |||
| 21 | // DEVELOPERS PLEASE NOTE | ||
| 22 | // | ||
| 23 | // All language files should use UTF-8 as their encoding and the files must not contain a BOM. | ||
| 24 | // | ||
| 25 | // Placeholders can now contain order information, e.g. instead of | ||
| 26 | // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows | ||
| 27 | // translators to re-order the output of data while ensuring it remains correct | ||
| 28 | // | ||
| 29 | // You do not need this where single placeholders are used, e.g. 'Message %d' is fine | ||
| 30 | // equally where a string contains only two placeholders which are used to wrap text | ||
| 31 | // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine | ||
| 32 | |||
| 33 | $lang = array_merge($lang, array( | ||
| 34 | 'ACP_INSTADISC' => 'InstaDisc', | ||
| 35 | |||
| 36 | 'INSTADISC' => 'InstaDisc', | ||
| 37 | 'INSTADISC_EXPLAIN' => 'Welcome to the InstaDisc Update Server admin panel. To set up your subscriptions, you have to do a few things. For more information, see', | ||
| 38 | 'INSTADISC_LINK_TEXT' => 'the InstaDisc phpBB3 plugin page', | ||
| 39 | )); | ||
| 40 | |||
| 41 | ?> | ||
