Commit 838ba4ef by pupi1985

Added approve and block user hints which were missing in the admin/approve section

parent 662ff81d
...@@ -37,6 +37,7 @@ ...@@ -37,6 +37,7 @@
'add_widget_button' => 'Add Widget', 'add_widget_button' => 'Add Widget',
'add_widget_link' => ' - ^1add widget^2', 'add_widget_link' => ' - ^1add widget^2',
'admin_title' => 'Administration center', 'admin_title' => 'Administration center',
'approve_user_popup' => 'Approve user',
'after_footer' => 'After links in footer', 'after_footer' => 'After links in footer',
'after_main_menu' => 'After tabs at top', 'after_main_menu' => 'After tabs at top',
'after_x_tab' => 'After "^" tab', 'after_x_tab' => 'After "^" tab',
...@@ -54,6 +55,7 @@ ...@@ -54,6 +55,7 @@
'blobs_to_disk_note' => '- migrate all uploaded images and documents from the database to disk files', 'blobs_to_disk_note' => '- migrate all uploaded images and documents from the database to disk files',
'block_button' => 'block', 'block_button' => 'block',
'block_ips_note' => 'Use a hyphen for ranges or * to match any number. Examples: 192.168.0.4 , 192.168.0.0-192.168.0.31 , 192.168.0.*', 'block_ips_note' => 'Use a hyphen for ranges or * to match any number. Examples: 192.168.0.4 , 192.168.0.0-192.168.0.31 , 192.168.0.*',
'block_user_popup' => 'Block user',
'block_words_note' => 'Use a * to match any letters. Examples: doh (will only match exact word doh) , doh* (will match doh or dohno) , do*h (will match doh, dooh, dough).', 'block_words_note' => 'Use a * to match any letters. Examples: doh (will only match exact word doh) , doh* (will match doh or dohno) , do*h (will match doh, dooh, dough).',
'cancel_mailing_button' => 'Cancel Mailing', 'cancel_mailing_button' => 'Cancel Mailing',
'categories_introduction' => 'To get started with categories, click the \'Add Category\' button.', 'categories_introduction' => 'To get started with categories, click the \'Add Category\' button.',
......
...@@ -114,11 +114,13 @@ ...@@ -114,11 +114,13 @@
'approve' => array( 'approve' => array(
'tags' => 'name="admin_'.$user['userid'].'_userapprove" onclick="return qa_admin_click(this);"', 'tags' => 'name="admin_'.$user['userid'].'_userapprove" onclick="return qa_admin_click(this);"',
'label' => qa_lang_html('question/approve_button'), 'label' => qa_lang_html('question/approve_button'),
'popup' => qa_lang_html('admin/approve_user_popup'),
), ),
'block' => array( 'block' => array(
'tags' => 'name="admin_'.$user['userid'].'_userblock" onclick="return qa_admin_click(this);"', 'tags' => 'name="admin_'.$user['userid'].'_userblock" onclick="return qa_admin_click(this);"',
'label' => qa_lang_html('admin/block_button'), 'label' => qa_lang_html('admin/block_button'),
'popup' => qa_lang_html('admin/block_user_popup'),
), ),
), ),
); );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment