diff options
| author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-07-18 18:20:58 +0000 |
|---|---|---|
| committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-07-18 18:20:58 +0000 |
| commit | 0244aaa5d0c492fbd8fa396fe732cad91cefb5de (patch) | |
| tree | 0f7083f2caab552aee6efe76aa056459dbd053bb /phpBB/language | |
| parent | ac875d22a95dc12709921e098f0d3843133974e9 (diff) | |
| download | forums-0244aaa5d0c492fbd8fa396fe732cad91cefb5de.tar forums-0244aaa5d0c492fbd8fa396fe732cad91cefb5de.tar.gz forums-0244aaa5d0c492fbd8fa396fe732cad91cefb5de.tar.bz2 forums-0244aaa5d0c492fbd8fa396fe732cad91cefb5de.tar.xz forums-0244aaa5d0c492fbd8fa396fe732cad91cefb5de.zip | |
New theme function, edit theme details ... I'm really beginning to dislike styles, and safe mode is just well, worse than I remember on 2.0.x :D
git-svn-id: file:///svn/phpbb/trunk@4282 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/language')
| -rw-r--r-- | phpBB/language/en/lang_admin.php | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/phpBB/language/en/lang_admin.php b/phpBB/language/en/lang_admin.php index cccc8aae6c..f2a596a6db 100644 --- a/phpBB/language/en/lang_admin.php +++ b/phpBB/language/en/lang_admin.php @@ -174,10 +174,15 @@ $lang = array_merge($lang, array( 'LOG_FORUM_DEL_POSTS_FORUMS'=> '<b>Deleted forum, its messages and subforums</b><br />» %s', 'LOG_FORUM_DEL_MOVE_POSTS_MOVE_FORUMS' => '<b>Deleted forum, moved posts</b> to %s <b>and subforums</b> to %s<br />» %s', - 'LOG_EDIT_THEME' => '<b>Edited theme</b><br />» %s', + 'LOG_EDIT_THEME' => '<b>Edited theme</b><br />» %s', + 'LOG_EDIT_THEME_DETAILS'=> '<b>Edited theme details</b><br />» %s', + 'LOG_ADD_THEME_FS' => '<b>Add new theme on filesystem</b><br />» %s', + 'LOG_ADD_THEME_DB' => '<b>Added new theme to database</b><br />» %s', + 'LOG_ADD_STYLE' => '<b>Added new style</b><br />» %s', 'LOG_EDIT_STYLE' => '<b>Edited style</b><br />» %s', + 'LOG_CLEAR_TPLCACHE'=> '<b>Cleared template cache</b><br />» %s', @@ -1009,7 +1014,16 @@ $lang = array_merge($lang, array( 'STYLE_ANCHOR_VISITED' => 'Visited', 'STYLE_ANCHOR_HOVER' => 'Hover', + 'THEME_ERR_STYLE_NAME' => 'You must supply a name for this theme', + 'THEME_ERR_NAME_LONG' => 'The theme name can be no longer than 30 characters', + 'THEME_ERR_NAME_EXIST' => 'A theme with that name already exists', + 'THEME_ERR_COPY_LONG' => 'The copyright can be no longer than 60 characters', + 'THEME_UPDATED' => 'Theme updated successfully', + 'THEME_DB_ADDED' => 'New theme added to database', + 'THEME_FS_ADDED' => 'New theme added on filesystem', + 'THEME_DETAILS_UPDATE' => 'Theme details updated', + 'MANAGE_IMAGESET_EXPLAIN'=> 'Imagesets comprise all the button, forum, folder, etc. and other non-style specific images used by the board. Here you can edit, export or delete existing imagesets and import or activate new sets.', 'EDIT_IMAGESET' => 'Edit Imageset', |
