|
From: Andrew <men...@us...> - 2005-12-16 03:28:26
|
Update of /cvsroot/mxbb/mx_kb/language/lang_english In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28297/language/lang_english Modified Files: lang_main.php Log Message: Cosmetic fixes; one logical. Used $lang for the message when standalone mode is not supported. We also need to stay up with standards for lang entries... ie quotes. Index: lang_main.php =================================================================== RCS file: /cvsroot/mxbb/mx_kb/language/lang_english/lang_main.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** lang_main.php 8 Dec 2005 15:04:26 -0000 1.6 --- lang_main.php 16 Dec 2005 03:28:10 -0000 1.7 *************** *** 22,26 **** $lang['Article'] = 'Article'; $lang['Category'] = 'Category'; ! $lang['Sub_categories'] = 'Sub Categories'; $lang['Article_description'] = 'Description'; $lang['Article_type'] = 'Type'; --- 22,26 ---- $lang['Article'] = 'Article'; $lang['Category'] = 'Category'; ! $lang['Sub_categories'] = 'Subcategories'; $lang['Article_description'] = 'Description'; $lang['Article_type'] = 'Type'; *************** *** 40,43 **** --- 40,45 ---- $lang['Edit'] = 'Edit'; + $lang['Standalone_Not_Supported'] = 'This module does not support standalone usage. In the AdminCP, add the KB block to a portal page.'; + $lang['Article_submitted_Approve'] = 'Article Submitted Successfully.<br />An Administrator will review your article and decide whether to let users view it or not.'; $lang['Article_submitted'] = 'Article Submitted Successfully.'; *************** *** 81,85 **** $lang['Empty_article_desc'] = 'You must fill out the article description'; ! $lang['Read_full_article'] = '>>Read Full Article'; $lang['Comments'] = 'Comments'; --- 83,87 ---- $lang['Empty_article_desc'] = 'You must fill out the article description'; ! $lang['Read_full_article'] = '>> Read Full Article'; $lang['Comments'] = 'Comments'; *************** *** 95,104 **** $lang['Edited_Article_info'] = 'Article updated by '; $lang['No_Articles'] = 'There are no articles in this cateogry!'; ! $lang['Not_authorized'] = 'Sorry, you are not authorized!'; $lang['TOC'] = 'Contents'; // Rate $lang['Votes_label'] = 'Rating '; ! $lang['Votes'] = 'vote(s)'; $lang['No_votes'] = 'No votes'; $lang['Rate'] = 'Rate Article'; --- 97,106 ---- $lang['Edited_Article_info'] = 'Article updated by '; $lang['No_Articles'] = 'There are no articles in this cateogry!'; ! $lang['Not_authorized'] = 'Sorry, but you are not authorized!'; $lang['TOC'] = 'Contents'; // Rate $lang['Votes_label'] = 'Rating '; ! $lang['Votes'] = 'Vote(s)'; $lang['No_votes'] = 'No votes'; $lang['Rate'] = 'Rate Article'; *************** *** 160,164 **** $lang['L_Subtitle_Format_explain'] = "Use the '[subtitle]...[/subtitle]' environment to insert a subtitle"; ! $lang['L_Subsubtitle_Format'] = "Subsubtitle"; $lang['L_Subsubtitle_Format'] = "Use the '[subsubtitle]...[/subsubtitle]' environment to insert a small header"; --- 162,166 ---- $lang['L_Subtitle_Format_explain'] = "Use the '[subtitle]...[/subtitle]' environment to insert a subtitle"; ! $lang['L_Subsubtitle_Format'] = "Sub-subtitle"; $lang['L_Subsubtitle_Format'] = "Use the '[subsubtitle]...[/subsubtitle]' environment to insert a small header"; *************** *** 189,200 **** $lang['Choose_cat'] = 'Choose Category:'; $lang['Include_comments'] = 'Include Comments'; ! $lang['Submiter'] = 'Submited by'; // Comments $lang['Comments'] = 'Comments'; $lang['Comments_title'] = 'Comments Title'; ! $lang['Comment_subject'] = 'Comment subject'; $lang['Comment'] = 'Comment'; ! $lang['Comment_explain'] = 'Use the text box above to give your opinion on this file!'; $lang['Comment_add'] = 'Add Comment'; $lang['Comment_delete'] = 'Delete'; --- 191,202 ---- $lang['Choose_cat'] = 'Choose Category:'; $lang['Include_comments'] = 'Include Comments'; ! $lang['Submiter'] = 'Submitted by'; // Comments $lang['Comments'] = 'Comments'; $lang['Comments_title'] = 'Comments Title'; ! $lang['Comment_subject'] = 'Comment Subject'; $lang['Comment'] = 'Comment'; ! $lang['Comment_explain'] = 'Use the textbox above to give your opinion on this file!'; $lang['Comment_add'] = 'Add Comment'; $lang['Comment_delete'] = 'Delete'; *************** *** 203,210 **** $lang['Comment_desc'] = 'Title'; $lang['No_comments'] = 'No Comments have been posted yet.'; ! $lang['Links_are_ON'] = 'Links is <u>ON</u>'; ! $lang['Links_are_OFF'] = 'Links is <u>OFF</u>'; ! $lang['Images_are_ON'] = 'Images is <u>ON</u>'; ! $lang['Images_are_OFF'] = 'Images is <u>OFF</u>'; $lang['Check_message_length'] = 'Check Message Length'; $lang['Msg_length_1'] = 'Your message is '; --- 205,212 ---- $lang['Comment_desc'] = 'Title'; $lang['No_comments'] = 'No Comments have been posted yet.'; ! $lang['Links_are_ON'] = 'Links are <u>ENABLED</u>'; ! $lang['Links_are_OFF'] = 'Links are <u>DISABLED</u>'; ! $lang['Images_are_ON'] = 'Images are <u>ENABLED</u>'; ! $lang['Images_are_OFF'] = 'Images are <u>DISABLED</u>'; $lang['Check_message_length'] = 'Check Message Length'; $lang['Msg_length_1'] = 'Your message is '; *************** *** 213,217 **** $lang['Msg_length_4'] = ' characters available.';; $lang['Msg_length_5'] = 'There are '; ! $lang['Msg_length_6'] = ' characters left to use.'; ?> \ No newline at end of file --- 215,219 ---- $lang['Msg_length_4'] = ' characters available.';; $lang['Msg_length_5'] = 'There are '; ! $lang['Msg_length_6'] = ' characters remaining.'; ?> \ No newline at end of file |