|
From: Jon O. <jon...@us...> - 2005-04-11 17:56:21
|
Update of /cvsroot/mxbb/mx_pafiledb/language/lang_english In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2875/modules/mx_pafiledb/language/lang_english Modified Files: lang_admin_pafiledb.php lang_pafiledb.php Log Message: finally upgrading this module/mod - merging phpBB mod, mxBB module (2.7.x and 2.8) -.permissions reviewed - pm notification added - and many many minor fixes all over the place Index: lang_pafiledb.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/language/lang_english/lang_pafiledb.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** lang_pafiledb.php 6 Mar 2005 01:13:11 -0000 1.10 --- lang_pafiledb.php 11 Apr 2005 17:55:40 -0000 1.11 *************** *** 246,248 **** --- 246,258 ---- $lang['Pa_settings_explain'] = "Here you can edit the configuration for the pa module. This panel lets you associate pa cats and dynamic blocks for the quickdl block."; + // PM Notification + $lang['PA_title'] = 'Download database'; + $lang['PA_goto_file'] = 'View file'; + $lang['PA_notify_subject_new'] = 'New file uploaded!'; + $lang['PA_notify_subject_edited'] = 'Edited File!'; + $lang['PA_notify_subject_approved'] = 'Approved File!'; + $lang['PA_notify_subject_unapproved'] = 'Unapproved File!'; + $lang['PA_notify_body'] = 'A file has been uploaded or modified:'; + + $lang['kb_no_ratings'] = 'Disabled in this category'; ?> \ No newline at end of file Index: lang_admin_pafiledb.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/language/lang_english/lang_admin_pafiledb.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** lang_admin_pafiledb.php 9 Jan 2005 21:44:14 -0000 1.10 --- lang_admin_pafiledb.php 11 Apr 2005 17:55:40 -0000 1.11 *************** *** 68,71 **** --- 68,72 ---- $lang['Edit_file'] = 'Edit File'; $lang['Upload'] = 'Upload File'; + $lang['Approval'] = 'Approval Level'; $lang['Download_file'] = 'Download File'; $lang['Rate'] = 'Rate'; *************** *** 111,115 **** $lang['Dbdlinfo'] = 'This will make the download section unavailable to users. This is a good option to use when making modifications to your database. Only Admins will be able to view the database'; $lang['Isdisabled'] = 'The download section is currently unavailable, please try again later.'; - $lang['Com_settings'] = 'Comment Settings'; $lang['Com_allowh'] = 'Allow HTML'; $lang['Com_allowb'] = 'Allow BBCode'; --- 112,115 ---- *************** *** 155,158 **** --- 155,159 ---- // Custom Field + $lang['Fieldselecttitle'] = 'Select what to do'; $lang['Afield'] = 'Custom Field: Add'; $lang['Efield'] = 'Custom Field: Edit'; *************** *** 276,297 **** //Fields Types ! $lang['Input'] = 'Single-Line Text Box'; ! $lang['Textarea'] = 'Multiple-Line Text Box'; ! $lang['Radio'] = 'Single-Selection Radio Buttons'; ! $lang['Select'] = 'Single-Selection Menu'; ! $lang['Select_multiple'] = 'Multiple-Selection Menu'; ! $lang['Checkbox'] = 'Multiple-Selection Checkbox'; ! // MX Addon ! $lang['Validation_settings'] = 'Validation of uploads'; ! $lang['Need_validate'] = 'Validate uploads?'; ! $lang['Validator'] = 'Validator'; ! $lang['PM_notify'] = 'PM Notify to validator(s) (n/a)'; ! $lang['Validator_admin_option'] = 'Admin'; ! $lang['Validator_mod_option'] = 'Admin and cat moderator'; ! $lang['Allow_comments'] = 'Enable comments (n/a)'; $lang['Allow_comments_info'] = 'Enable/disable comments in this category.'; ! $lang['Allow_ratings'] = 'Enable ratings (n/a)'; $lang['Allow_ratings_info'] = 'Enable/disable ratings in this category.'; --- 277,298 ---- //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['Com_settings'] = 'Comment Settings'; ! $lang['Validation_settings'] = 'Approval Settings'; ! $lang['Ratings_settings'] = 'Ratings Settings'; ! $lang['PM_notify'] = 'PM Notification (to admin)'; ! $lang['Use_comments'] = 'Enable comments'; ! $lang['Allow_comments'] = 'Enable comments'; $lang['Allow_comments_info'] = 'Enable/disable comments in this category.'; ! ! $lang['Use_ratings'] = 'Enable ratings'; ! $lang['Allow_ratings'] = 'Enable ratings'; $lang['Allow_ratings_info'] = 'Enable/disable ratings in this category.'; |