|
From: Jon O. <jon...@us...> - 2005-03-28 20:23:01
|
Update of /cvsroot/mxbb/mx_kb/language/lang_english In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20851/modules/mx_kb/language/lang_english Modified Files: lang_kb.php Log Message: finally rewriting this module, once and for all - rewritten post methods - better security - separated html. bbcode, smilies from phpbb - wysiwyg support - adding custom fields - making it compatible with phpBB mod Index: lang_kb.php =================================================================== RCS file: /cvsroot/mxbb/mx_kb/language/lang_english/lang_kb.php,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** lang_kb.php 26 Mar 2005 22:52:36 -0000 1.14 --- lang_kb.php 28 Mar 2005 20:22:48 -0000 1.15 *************** *** 123,126 **** --- 123,127 ---- $lang['Forum_id_explain'] = 'This is the forum that the article\'s comments will be kept'; + // // Permissions *************** *** 139,143 **** $lang['Approval_edit'] = 'Approval Edit'; ! $lang['Allow_anonymos_rating'] = 'Allow anonymos ratings'; --- 140,145 ---- $lang['Approval_edit'] = 'Approval Edit'; ! $lang['Allow_rating'] = 'Allow ratings'; ! $lang['Allow_rating_explain'] = 'Users are allowed to rate articles.'; $lang['Allow_anonymos_rating'] = 'Allow anonymos ratings'; *************** *** 178,182 **** $lang['KB_Rules_moderate_can'] = 'You <b>can</b> moderate this category'; // %s replaced by a href links, do not remove! - //Added by Haplo $lang['Comments_show'] = 'Display article comments.'; $lang['Comments_show_explain'] = '- also displays comments in the article page'; --- 180,183 ---- *************** *** 311,316 **** $lang['News_update_error'] = "Couldn't update KB block configuration.<br /><br />This mod is designed for MySQL so please contact the author if you have troubles. If you can offer a translation of the SQL into other database formats, please send them to:<br />"; ! // kb $lang['Cat_all'] = "All"; --- 312,352 ---- $lang['News_update_error'] = "Couldn't update KB block configuration.<br /><br />This mod is designed for MySQL so please contact the author if you have troubles. If you can offer a translation of the SQL into other database formats, please send them to:<br />"; + // Custom Field + $lang['Fieldselecttitle'] = 'Select what to do'; + $lang['Afield'] = 'Custom Field: Add'; + $lang['Efield'] = 'Custom Field: Edit'; + $lang['Dfield'] = 'Custom Field: Delete'; + $lang['Mfieldtitle'] = 'Custom Fields'; + $lang['Afieldtitle'] = 'Add Field'; + $lang['Efieldtitle'] = 'Edit Field'; + $lang['Dfieldtitle'] = 'Delete Field'; + $lang['Fieldexplain'] = 'You can use the custom fields management section to add, edit, and delete custom fields. You can use custom fields to add more information about an article.'; + $lang['Fieldname'] = 'Field Name'; + $lang['Fieldnameinfo'] = 'This is the name of the field, for example \'File Size\''; + $lang['Fielddesc'] = 'Field Description'; + $lang['Fielddescinfo'] = 'This is a description of the field, for example \'File Size in Megabytes\''; + $lang['Fieldadded'] = 'The custom field has been successfully added'; + $lang['Fieldedited'] = 'The custom field you selected has been successfully edited'; + $lang['Dfielderror'] = 'You didn\'t select any fields to delete'; + $lang['Fieldsdel'] = 'The custom fields you selected have been successfully deleted'; + + $lang['Field_data'] = 'Options'; + $lang['Field_data_info'] = 'Enter the options that the user can choose from. Separate each option with a new-line (carriage return).'; + $lang['Field_regex'] = 'Regular Expression'; + $lang['Field_regex_info'] = 'You may require the input field to match a regular expression %s(PCRE)%s.'; + $lang['Field_order'] = 'Display Order'; ! //Fields Types ! ! $lang['Field_Input'] = 'Single-Line Text Box'; ! $lang['Field_Textarea'] = 'Multiple-Line Text Box'; ! $lang['Field_Radio'] = 'Single-Selection Radio Buttons'; ! $lang['Field_Select'] = 'Single-Selection Menu'; ! $lang['Field_Select_multiple'] = 'Multiple-Selection Menu'; ! $lang['Field_Checkbox'] = 'Multiple-Selection Checkbox'; ! ! $lang['Click_return'] = 'Click %sHere%s to return to the previous page'; ! ! // added $lang['Cat_all'] = "All"; *************** *** 336,339 **** --- 372,376 ---- $lang['Default_article_id'] = "Set default article, for the article viewer"; + // Added for v. 2.0 $lang['KB_comment_prefix'] = '[ KB ] '; *************** *** 347,350 **** --- 384,388 ---- $lang['Formatting_fixup_explain'] = 'I enabled, the article text is reformatted: wordwrapping, url truncates, img resizing, some bbcode reformatting etc'; + $lang['Addtional_field'] = 'More information (optional)'; ?> \ No newline at end of file |