diff --git a/phpBB/adm/images/icon_delete_disabled.gif b/phpBB/adm/images/icon_delete_disabled.gif new file mode 100644 index 0000000000..da55bbbe44 Binary files /dev/null and b/phpBB/adm/images/icon_delete_disabled.gif differ diff --git a/phpBB/adm/images/icon_down_disabled.gif b/phpBB/adm/images/icon_down_disabled.gif new file mode 100644 index 0000000000..3ba36975b4 Binary files /dev/null and b/phpBB/adm/images/icon_down_disabled.gif differ diff --git a/phpBB/adm/images/icon_edit_disabled.gif b/phpBB/adm/images/icon_edit_disabled.gif new file mode 100644 index 0000000000..ac96b0e6dc Binary files /dev/null and b/phpBB/adm/images/icon_edit_disabled.gif differ diff --git a/phpBB/adm/images/icon_sync_disabled.gif b/phpBB/adm/images/icon_sync_disabled.gif new file mode 100644 index 0000000000..39985045c8 Binary files /dev/null and b/phpBB/adm/images/icon_sync_disabled.gif differ diff --git a/phpBB/adm/images/icon_up_disabled.gif b/phpBB/adm/images/icon_up_disabled.gif new file mode 100644 index 0000000000..2797192574 Binary files /dev/null and b/phpBB/adm/images/icon_up_disabled.gif differ diff --git a/phpBB/adm/index.php b/phpBB/adm/index.php index 336afc0de1..e84e1c5e36 100644 --- a/phpBB/adm/index.php +++ b/phpBB/adm/index.php @@ -136,11 +136,16 @@ function adm_page_header($page_title) 'T_RANKS_PATH' => "{$phpbb_root_path}{$config['ranks_path']}/", 'T_UPLOAD_PATH' => "{$phpbb_root_path}{$config['upload_path']}/", - 'ICON_MOVE_UP' => '' . $user->lang['MOVE_UP'] . '', - 'ICON_MOVE_DOWN' => '' . $user->lang['MOVE_DOWN'] . '', - 'ICON_EDIT' => '' . $user->lang['EDIT'] . '', - 'ICON_DELETE' => '' . $user->lang['DELETE'] . '', - 'ICON_SYNC' => '' . $user->lang['RESYNC'] . '', + 'ICON_MOVE_UP' => '' . $user->lang['MOVE_UP'] . '', + 'ICON_MOVE_UP_DISABLED' => '' . $user->lang['MOVE_UP'] . '', + 'ICON_MOVE_DOWN' => '' . $user->lang['MOVE_DOWN'] . '', + 'ICON_MOVE_DOWN_DISABLED' => '' . $user->lang['MOVE_DOWN'] . '', + 'ICON_EDIT' => '' . $user->lang['EDIT'] . '', + 'ICON_EDIT_DISABLED' => '' . $user->lang['EDIT'] . '', + 'ICON_DELETE' => '' . $user->lang['DELETE'] . '', + 'ICON_DELETE_DISABLED' => '' . $user->lang['DELETE'] . '', + 'ICON_SYNC' => '' . $user->lang['RESYNC'] . '', + 'ICON_SYNC_DISABLED' => '' . $user->lang['RESYNC'] . '', 'S_CONTENT_DIRECTION' => $user->lang['DIRECTION'], 'S_CONTENT_ENCODING' => $user->lang['ENCODING'], diff --git a/phpBB/adm/style/acp_bbcodes.html b/phpBB/adm/style/acp_bbcodes.html index 162ee18c35..c1eb7e2193 100644 --- a/phpBB/adm/style/acp_bbcodes.html +++ b/phpBB/adm/style/acp_bbcodes.html @@ -96,7 +96,7 @@ {bbcodes.BBCODE_TAG} - {ICON_EDIT} {ICON_DELETE} + {ICON_EDIT} {ICON_DELETE} diff --git a/phpBB/adm/style/acp_forums.html b/phpBB/adm/style/acp_forums.html index dff974e818..24febd120d 100644 --- a/phpBB/adm/style/acp_forums.html +++ b/phpBB/adm/style/acp_forums.html @@ -313,15 +313,30 @@ {forums.FOLDER_IMAGE} - {forums.FORUM_NAME}{forums.FORUM_NAME} + {forums.FORUM_NAME}{forums.FORUM_NAME}
{forums.FORUM_DESCRIPTION}

{L_TOPICS}: {forums.FORUM_TOPICS} / {L_POSTS}: {forums.FORUM_POSTS} - - {ICON_MOVE_UP} - {ICON_MOVE_DOWN} + + + {ICON_MOVE_UP_DISABLED} + {ICON_MOVE_DOWN} + + {ICON_MOVE_UP} + {ICON_MOVE_DOWN} + + {ICON_MOVE_UP} + {ICON_MOVE_DOWN_DISABLED} + + {ICON_MOVE_UP_DISABLED} + {ICON_MOVE_DOWN_DISABLED} + {ICON_EDIT} - {ICON_SYNC} + + {ICON_SYNC} + + {ICON_SYNC_DISABLED} + {ICON_DELETE} diff --git a/phpBB/adm/style/acp_icons.html b/phpBB/adm/style/acp_icons.html index ca4c39004a..e9d2e4823f 100644 --- a/phpBB/adm/style/acp_icons.html +++ b/phpBB/adm/style/acp_icons.html @@ -144,9 +144,17 @@ {items.CODE} {items.EMOTION} - - {ICON_MOVE_UP} - {ICON_MOVE_DOWN} + + + {ICON_MOVE_UP_DISABLED} + {ICON_MOVE_DOWN} + + {ICON_MOVE_UP} + {ICON_MOVE_DOWN} + + {ICON_MOVE_UP} + {ICON_MOVE_DOWN_DISABLED} + {ICON_EDIT} {ICON_DELETE} diff --git a/phpBB/adm/style/acp_modules.html b/phpBB/adm/style/acp_modules.html index 3f27c94be3..479058fd9b 100644 --- a/phpBB/adm/style/acp_modules.html +++ b/phpBB/adm/style/acp_modules.html @@ -143,11 +143,22 @@ {modules.MODULE_IMAGE} - {modules.MODULE_TITLE} [{L_HIDDEN_MODULE}] + {modules.MODULE_TITLE} [{L_HIDDEN_MODULE}]  {L_DISABLE}{L_ENABLE}  - - {ICON_MOVE_UP} - {ICON_MOVE_DOWN} + + + {ICON_MOVE_UP_DISABLED} + {ICON_MOVE_DOWN} + + {ICON_MOVE_UP} + {ICON_MOVE_DOWN} + + {ICON_MOVE_UP} + {ICON_MOVE_DOWN_DISABLED} + + {ICON_MOVE_UP_DISABLED} + {ICON_MOVE_DOWN_DISABLED} + {ICON_EDIT} {ICON_DELETE} diff --git a/phpBB/adm/style/acp_permission_roles.html b/phpBB/adm/style/acp_permission_roles.html index 0eca7e9273..f5676b0986 100644 --- a/phpBB/adm/style/acp_permission_roles.html +++ b/phpBB/adm/style/acp_permission_roles.html @@ -173,10 +173,10 @@
- + - + @@ -186,10 +186,21 @@ - - + diff --git a/phpBB/adm/style/acp_profile.html b/phpBB/adm/style/acp_profile.html index 5f7c87432c..9bc3111fc9 100644 --- a/phpBB/adm/style/acp_profile.html +++ b/phpBB/adm/style/acp_profile.html @@ -160,8 +160,7 @@ - - + @@ -170,12 +169,24 @@ - + - diff --git a/phpBB/adm/style/acp_reasons.html b/phpBB/adm/style/acp_reasons.html index 93d23563e2..8648fb18c5 100644 --- a/phpBB/adm/style/acp_reasons.html +++ b/phpBB/adm/style/acp_reasons.html @@ -64,11 +64,23 @@
{reasons.REASON_DESCRIPTION} -
{L_ROLE_NAME}{L_ROLE_NAME} {L_OPTIONS}
{roles.ROLE_NAME}
{roles.ROLE_DESCRIPTION}
{L_VIEW_ASSIGNED_ITEMS}{L_VIEW_ASSIGNED_ITEMS} - {ICON_MOVE_UP} - {ICON_MOVE_DOWN} + {L_VIEW_ASSIGNED_ITEMS}{L_VIEW_ASSIGNED_ITEMS} + + {ICON_MOVE_UP_DISABLED} + {ICON_MOVE_DOWN} + + {ICON_MOVE_UP} + {ICON_MOVE_DOWN} + + {ICON_MOVE_UP} + {ICON_MOVE_DOWN_DISABLED} + + {ICON_MOVE_UP_DISABLED} + {ICON_MOVE_DOWN_DISABLED} + {ICON_EDIT} {ICON_DELETE}
{L_FIELD_IDENT} {L_FIELD_TYPE} {L_OPTIONS}{L_OPTIONS}
{fields.FIELD_IDENT} {fields.FIELD_TYPE}{fields.L_ACTIVATE_DEACTIVATE} | {L_EDIT}{fields.L_ACTIVATE_DEACTIVATE} | {L_EDIT} - {ICON_MOVE_UP} - {ICON_MOVE_DOWN} - {ICON_EDIT} + + + {ICON_MOVE_UP_DISABLED} + {ICON_MOVE_DOWN} + + {ICON_MOVE_UP} + {ICON_MOVE_DOWN} + + {ICON_MOVE_UP} + {ICON_MOVE_DOWN_DISABLED} + + + {ICON_EDIT} + + {ICON_EDIT_DISABLED} + {ICON_DELETE} {reasons.REASON_COUNT} - {ICON_MOVE_UP} - {ICON_MOVE_DOWN} + + + {ICON_MOVE_UP_DISABLED} + {ICON_MOVE_DOWN} + + {ICON_MOVE_UP} + {ICON_MOVE_DOWN} + + {ICON_MOVE_UP} + {ICON_MOVE_DOWN_DISABLED} + {ICON_EDIT} - {ICON_DELETE} + + {ICON_DELETE} + + {ICON_DELETE_DISABLED} +