diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2011-01-27 13:30:59 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2011-02-08 14:57:42 +0100 |
commit | 0e02f5cb0b7f615f1eadd6606a89bfd1b28f0d0d (patch) | |
tree | 9054335defe726c89fa07b01dd0891fb196bf907 /phpBB/language | |
parent | 18fedfce1739075586aa0e40fabdffba65593793 (diff) | |
download | forums-0e02f5cb0b7f615f1eadd6606a89bfd1b28f0d0d.tar forums-0e02f5cb0b7f615f1eadd6606a89bfd1b28f0d0d.tar.gz forums-0e02f5cb0b7f615f1eadd6606a89bfd1b28f0d0d.tar.bz2 forums-0e02f5cb0b7f615f1eadd6606a89bfd1b28f0d0d.tar.xz forums-0e02f5cb0b7f615f1eadd6606a89bfd1b28f0d0d.zip |
[ticket/9675] Put the code into methods to avoid code duplication.
PHPBB3-9675
Diffstat (limited to 'phpBB/language')
-rw-r--r-- | phpBB/language/en/acp/styles.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/phpBB/language/en/acp/styles.php b/phpBB/language/en/acp/styles.php index f5531071e4..8f65b3ef5f 100644 --- a/phpBB/language/en/acp/styles.php +++ b/phpBB/language/en/acp/styles.php @@ -285,9 +285,9 @@ $lang = array_merge($lang, array( 'INSTALLED_TEMPLATE' => 'Installed templates', 'INSTALLED_THEME' => 'Installed themes', - 'KEEP_IMAGESET' => 'Keep imageset', - 'KEEP_TEMPLATE' => 'Keep template', - 'KEEP_THEME' => 'Keep theme', + 'KEEP_IMAGESET' => 'Keep "%s" imageset', + 'KEEP_TEMPLATE' => 'Keep "%s" template', + 'KEEP_THEME' => 'Keep "%s" theme', 'LINE_SPACING' => 'Line spacing', 'LOCALISED_IMAGES' => 'Localised', @@ -325,6 +325,7 @@ $lang = array_merge($lang, array( 'REPLACE_TEMPLATE_EXPLAIN' => 'This template set will replace the one you are deleting in any styles that use it.', 'REPLACE_THEME' => 'Replace theme with', 'REPLACE_THEME_EXPLAIN' => 'This theme will replace the one you are deleting in any styles that use it.', + 'REPLACE_WITH_OPTION' => 'Replace with "%s"', 'REQUIRES_IMAGESET' => 'This style requires the %s imageset to be installed.', 'REQUIRES_TEMPLATE' => 'This style requires the %s template set to be installed.', 'REQUIRES_THEME' => 'This style requires the %s theme to be installed.', |