about summary refs log tree commit diff stats
path: root/update/plugin/phpBB3/trunk/root/language/en/mods/instadisc.php
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2008-08-06 00:44:44 +0000
committerKelly Rauchenberger <fefferburbia@gmail.com>2008-08-06 00:44:44 +0000
commite554fa7fbceeab7ca16b4be9b2671c19c8c36d90 (patch)
tree335ff48807261d4b27b55ec6d2585b96bab88b0f /update/plugin/phpBB3/trunk/root/language/en/mods/instadisc.php
parentad7b861b840c12637097c7ee20e14227d6aae571 (diff)
downloadinstadisc-e554fa7fbceeab7ca16b4be9b2671c19c8c36d90.tar.gz
instadisc-e554fa7fbceeab7ca16b4be9b2671c19c8c36d90.tar.bz2
instadisc-e554fa7fbceeab7ca16b4be9b2671c19c8c36d90.zip
Update: Started InstaDisc ACP for phpBB3 plugin
Refs #7
Diffstat (limited to 'update/plugin/phpBB3/trunk/root/language/en/mods/instadisc.php')
-rw-r--r--update/plugin/phpBB3/trunk/root/language/en/mods/instadisc.php41
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*/
16if (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?>