diff options
author | Crizz0 <mail@crizzo.de> | 2013-01-27 21:13:49 +0100 |
---|---|---|
committer | Crizz0 <mail@crizzo.de> | 2013-02-03 13:24:00 +0100 |
commit | cf3edb2c6e7f18e143e6627a8f9a5848df74f6ec (patch) | |
tree | b2df5952e6597113ae53a0750102fcc3c49e3654 /phpBB/language | |
parent | 229d1092f8c18075ad03c6d67dd78707cbf1b421 (diff) | |
download | forums-cf3edb2c6e7f18e143e6627a8f9a5848df74f6ec.tar forums-cf3edb2c6e7f18e143e6627a8f9a5848df74f6ec.tar.gz forums-cf3edb2c6e7f18e143e6627a8f9a5848df74f6ec.tar.bz2 forums-cf3edb2c6e7f18e143e6627a8f9a5848df74f6ec.tar.xz forums-cf3edb2c6e7f18e143e6627a8f9a5848df74f6ec.zip |
[ticket/11220] Improvement to the info pop-up from "list="
A improvement to the info popup which is displayed when the cursor
is over the bbcode-button [list=] in the posting-editor
PHPBB3-11220
Diffstat (limited to 'phpBB/language')
-rw-r--r-- | phpBB/language/en/posting.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/language/en/posting.php b/phpBB/language/en/posting.php index 24f3204c57..dfc5065a05 100644 --- a/phpBB/language/en/posting.php +++ b/phpBB/language/en/posting.php @@ -54,9 +54,9 @@ $lang = array_merge($lang, array( 'BBCODE_IS_OFF' => '%sBBCode%s is <em>OFF</em>', 'BBCODE_IS_ON' => '%sBBCode%s is <em>ON</em>', 'BBCODE_I_HELP' => 'Italic text: [i]text[/i]', - 'BBCODE_L_HELP' => 'List: [list]text[/list]', - 'BBCODE_LISTITEM_HELP' => 'List item: [*]text[/*]', - 'BBCODE_O_HELP' => 'Ordered list: [list=]text[/list]', + 'BBCODE_L_HELP' => 'List: [list][*]text[/list]', + 'BBCODE_LISTITEM_HELP' => 'List item: [*]text', + 'BBCODE_O_HELP' => 'Ordered list: e.g. [list=1][*]First point[/list] or [list=a][*]Point a[/list]', 'BBCODE_P_HELP' => 'Insert image: [img]http://image_url[/img]', 'BBCODE_Q_HELP' => 'Quote text: [quote]text[/quote]', 'BBCODE_S_HELP' => 'Font colour: [color=red]text[/color] Tip: you can also use color=#FF0000', |