Commit 8639322a by Scott

Add final missing tooltips

parent 4d496c45
......@@ -67,6 +67,9 @@
'category_required' => 'Please choose a category',
'category_ask_not_allowed' => 'You do not have permission to ask questions in this category',
'claim_button' => 'I wrote this',
'claim_a_popup' => 'Assign this answer to your user account',
'claim_c_popup' => 'Assign this comment to your user account',
'claim_q_popup' => 'Assign this question to your user account',
'clear_flags_button' => 'clear flags',
'clear_flags_popup' => 'Remove flags by all users',
'close_button' => 'close',
......@@ -148,6 +151,7 @@
'reject_q_popup' => 'Reject this question',
'remove_q_favorites' => 'Remove this question from my favorites',
'reopen_button' => 'reopen',
'reopen_q_popup' => 'Reopen this question',
'reply_button' => 'reply',
'reply_c_popup' => 'Reply to this comment',
'reshow_a_popup' => 'Reshow this answer',
......
......@@ -291,17 +291,20 @@
$buttons['reopen']=array(
'tags' => 'name="q_doreopen"'.$clicksuffix,
'label' => qa_lang_html('question/reopen_button'),
'popup' => qa_lang_html('question/reopen_q_popup'),
);
if ($question['moderatable']) {
$buttons['approve']=array(
'tags' => 'name="q_doapprove"'.$clicksuffix,
'label' => qa_lang_html('question/approve_button'),
'popup' => qa_lang_html('question/approve_q_popup'),
);
$buttons['reject']=array(
'tags' => 'name="q_doreject"'.$clicksuffix,
'label' => qa_lang_html('question/reject_button'),
'popup' => qa_lang_html('question/reject_q_popup'),
);
}
......@@ -330,6 +333,7 @@
$buttons['claim']=array(
'tags' => 'name="q_doclaim"'.$clicksuffix,
'label' => qa_lang_html('question/claim_button'),
'popup' => qa_lang_html('question/claim_q_popup'),
);
if ($question['answerbutton']) // don't show if shown by default
......@@ -476,11 +480,13 @@
$buttons['approve']=array(
'tags' => 'name="'.$prefix.'doapprove"'.$clicksuffix,
'label' => qa_lang_html('question/approve_button'),
'popup' => qa_lang_html('question/approve_a_popup'),
);
$buttons['reject']=array(
'tags' => 'name="'.$prefix.'doreject"'.$clicksuffix,
'label' => qa_lang_html('question/reject_button'),
'popup' => qa_lang_html('question/reject_a_popup'),
);
}
......@@ -509,6 +515,7 @@
$buttons['claim']=array(
'tags' => 'name="'.$prefix.'doclaim"'.$clicksuffix,
'label' => qa_lang_html('question/claim_button'),
'popup' => qa_lang_html('question/claim_a_popup'),
);
if ($answer['followable'])
......@@ -598,11 +605,13 @@
$buttons['approve']=array(
'tags' => 'name="'.$prefix.'doapprove"'.$clicksuffix,
'label' => qa_lang_html('question/approve_button'),
'popup' => qa_lang_html('question/approve_c_popup'),
);
$buttons['reject']=array(
'tags' => 'name="'.$prefix.'doreject"'.$clicksuffix,
'label' => qa_lang_html('question/reject_button'),
'popup' => qa_lang_html('question/reject_c_popup'),
);
}
......@@ -631,6 +640,7 @@
$buttons['claim']=array(
'tags' => 'name="'.$prefix.'doclaim"'.$clicksuffix,
'label' => qa_lang_html('question/claim_button'),
'popup' => qa_lang_html('question/claim_c_popup'),
);
if ($parent['commentbutton'] && qa_opt('show_c_reply_buttons') && ($comment['type']=='C'))
......
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