diff --git a/RELEASE b/RELEASE index 39ee137b..f9da12e1 100644 --- a/RELEASE +++ b/RELEASE @@ -1 +1 @@ -6.3.1 \ No newline at end of file +6.3.2 \ No newline at end of file diff --git a/app/functions/db-function.php b/app/functions/db-function.php index f65e36c7..58c9b0a5 100755 --- a/app/functions/db-function.php +++ b/app/functions/db-function.php @@ -267,6 +267,8 @@ function web_reg_check() $options->meta_value = 1; $options->where('meta_key = "open_registration"') ->update(); + + etsis_cache_flush_namespace('option'); } } @@ -276,6 +278,8 @@ function web_reg_check() $options->meta_value = 0; $options->where('meta_key = "open_registration"') ->update(); + + etsis_cache_flush_namespace('option'); } } } catch (NotFoundException $e) { diff --git a/app/functions/hook-function.php b/app/functions/hook-function.php index 7c31f995..d456ae11 100755 --- a/app/functions/hook-function.php +++ b/app/functions/hook-function.php @@ -837,7 +837,7 @@ function dashboard_course_count() $count = $app->db->course() ->where('course.currStatus = "A"')->_and_() ->where('course.endDate IS NULL')->_or_() - ->whereLte('course.endDate','0000-00-00') + ->whereLte('course.endDate', '0000-00-00') ->count('course.courseID'); $crseCount = '
'; @@ -872,7 +872,7 @@ function dashboard_acadProg_count() $count = $app->db->acad_program() ->where('acad_program.currStatus = "A"')->_and_() ->where('acad_program.endDate IS NULL')->_or_() - ->whereLte('acad_program.endDate','0000-00-00') + ->whereLte('acad_program.endDate', '0000-00-00') ->count('acad_program.id'); $progCount = '
'; @@ -1839,7 +1839,7 @@ function etsis_enqueue_script() function etsis_dev_mode() { if (APP_ENV === 'DEV') { - echo '
'._t('Your system is currently in DEV mode. Please remember to set your system back to PROD mode after testing. When PROD mode is set, this warning message will disappear.').'
'; + echo '
' . _t('Your system is currently in DEV mode. Please remember to set your system back to PROD mode after testing. When PROD mode is set, this warning message will disappear.') . '
'; } } $app->hook->add_action('etsis_dashboard_head', 'head_release_meta', 5); @@ -1864,7 +1864,6 @@ function etsis_dev_mode() $app->hook->add_action('post_brgn_stu_crse_reg', 'create_update_sttr_record', 5, 1); $app->hook->add_action('dashboard_admin_notices', 'etsis_dev_mode', 5); $app->hook->add_action('myetsis_admin_notices', 'etsis_dev_mode', 5); -$app->hook->add_action('stu_acct_rule', 'etsis_reg_btrl_rule', 5, 3); $app->hook->add_action('execute_webreg_check', 'web_reg_check', 5); $app->hook->add_filter('the_myetsis_page_content', 'etsis_autop'); $app->hook->add_filter('the_myetsis_page_content', 'parsecode_unautop'); diff --git a/app/functions/nodeq-function.php b/app/functions/nodeq-function.php index 4026bc78..a49a3c48 100755 --- a/app/functions/nodeq-function.php +++ b/app/functions/nodeq-function.php @@ -54,6 +54,10 @@ function etsis_nodeq_login_details() $message = str_replace('#mailaddr#', _h(get_option('mailing_address')), $message); $message = process_email_html($message, _t("myetSIS Login Details")); $headers[] = sprintf("From: %s ", _t('myetSIS :: ') . _h(get_option('institution_name')), get_domain_name()); + if (!function_exists('etsis_smtp')) { + $headers[] = 'Content-Type: text/html; charset="UTF-8"'; + $headers[] = sprintf("X-Mailer: eduTrac SIS %s", RELEASE_TAG); + } try { _etsis_email()->etsisMail(_h($r->email), _t("myetSIS Login Details"), $message, $headers); @@ -119,6 +123,10 @@ function etsis_nodeq_reset_password() $message = str_replace('#password#', _h($r->password), $message); $message = process_email_html($message, _t('Reset Password')); $headers[] = sprintf("From: %s ", $from, get_domain_name()); + if (!function_exists('etsis_smtp')) { + $headers[] = 'Content-Type: text/html; charset="UTF-8"'; + $headers[] = sprintf("X-Mailer: eduTrac SIS %s", RELEASE_TAG); + } try { _etsis_email()->etsisMail(_h($r->email), _t('Reset Password'), $message, $headers); @@ -172,6 +180,10 @@ function etsis_nodeq_csv_email() foreach ($sql as $r) { $message = process_email_html(_escape($r->message), _h($r->subject)); $headers[] = sprintf("From: %s ", _h(get_option('institution_name')), get_domain_name()); + if (!function_exists('etsis_smtp')) { + $headers[] = 'Content-Type: text/html; charset="UTF-8"'; + $headers[] = sprintf("X-Mailer: eduTrac SIS %s", RELEASE_TAG); + } $attachment = $app->config('file.savepath') . _h($r->filename); @@ -248,6 +260,10 @@ function etsis_nodeq_change_address() $message = str_replace('#mailaddr#', _h(get_option('mailing_address')), $message); $message = process_email_html($message, _t('Change of Address Request')); $headers[] = sprintf("From: %s ", _t('myetSIS :: ') . _h(get_option('institution_name')), get_domain_name()); + if (!function_exists('etsis_smtp')) { + $headers[] = 'Content-Type: text/html; charset="UTF-8"'; + $headers[] = sprintf("X-Mailer: eduTrac SIS %s", RELEASE_TAG); + } try { _etsis_email()->etsisMail(_h(get_option('contact_email')), _t('Change of Address Request'), $message, $headers); @@ -317,6 +333,10 @@ function etsis_nodeq_acceptance_letter() $message = str_replace('#mailaddr#', _h(get_option('mailing_address')), $message); $message = process_email_html($message, _h(get_option('institution_name')) . ' ' . _t('Decision Notification')); $headers[] = sprintf("From: %s ", _h(get_option('institution_name')), get_domain_name()); + if (!function_exists('etsis_smtp')) { + $headers[] = 'Content-Type: text/html; charset="UTF-8"'; + $headers[] = sprintf("X-Mailer: eduTrac SIS %s", RELEASE_TAG); + } try { _etsis_email()->etsisMail(_h(get_option('contact_email')), _h(get_option('institution_name')) . ' ' . _t('Decision Notification'), $message, $headers); @@ -466,6 +486,10 @@ function etsis_nodeq_student_email() $headers[] = sprintf("Bcc: %s", _h($r->bcc)); } $headers[] = sprintf("Reply-to: %s", _h($from->email)); + if (!function_exists('etsis_smtp')) { + $headers[] = 'Content-Type: text/html; charset="UTF-8"'; + $headers[] = sprintf("X-Mailer: eduTrac SIS %s", RELEASE_TAG); + } try { _etsis_email()->etsisMail(_h($to->email), _h($r->subject), $message, $headers, _h($r->attachment) != '' ? [_h($r->attachment)] : []); diff --git a/app/languages/edutrac-sis.pot b/app/languages/edutrac-sis.pot index 0f59b05a..60c75e5c 100644 --- a/app/languages/edutrac-sis.pot +++ b/app/languages/edutrac-sis.pot @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: eduTrac SIS\n" "X-Domain: edutrac-sis\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-18 10:43-0400\n" +"POT-Creation-Date: 2017-07-19 09:05-0400\n" "PO-Revision-Date: 2015-11-06 11:48-0500\n" "Last-Translator: Joshua Parker \n" "Language-Team: 7 Media Web Solutions, LLC \n" @@ -382,26 +382,26 @@ msgstr "" msgid "eduTrac SIS System Alert!" msgstr "" -#: functions/nodeq-function.php:55 functions/nodeq-function.php:59 +#: functions/nodeq-function.php:55 functions/nodeq-function.php:63 msgid "myetSIS Login Details" msgstr "" -#: functions/nodeq-function.php:56 functions/nodeq-function.php:250 +#: functions/nodeq-function.php:56 functions/nodeq-function.php:262 #: routers/student.router.php:297 msgid "myetSIS :: " msgstr "" -#: functions/nodeq-function.php:120 functions/nodeq-function.php:124 +#: functions/nodeq-function.php:124 functions/nodeq-function.php:132 #: routers/person.router.php:1162 routers/person.router.php:1163 #: views/person/view.php:346 views/setting/templates.php:189 msgid "Reset Password" msgstr "" -#: functions/nodeq-function.php:249 functions/nodeq-function.php:253 +#: functions/nodeq-function.php:261 functions/nodeq-function.php:269 msgid "Change of Address Request" msgstr "" -#: functions/nodeq-function.php:318 functions/nodeq-function.php:322 +#: functions/nodeq-function.php:334 functions/nodeq-function.php:342 msgid "Decision Notification" msgstr "" @@ -440,12 +440,15 @@ msgstr "" #: views/course/addnl-info.php:80 views/course/addnl-info.php:145 #: views/course/index.php:121 views/course/view.php:326 #: views/dashboard/system-snapshot.php:40 -#: views/dashboard/system-snapshot.php:70 views/form/aclv.php:99 -#: views/form/grade-scale.php:79 views/form/grade-scale.php:95 -#: views/form/semester.php:114 views/form/term.php:133 -#: views/form/view-aclv.php:101 views/form/view-grade-scale.php:81 -#: views/form/view-grade-scale.php:97 views/form/view-semester.php:116 -#: views/form/view-term.php:135 views/person/add.php:167 +#: views/dashboard/system-snapshot.php:70 views/financial/paypal.php:57 +#: views/financial/paypal.php:70 views/financial/paypal.php:112 +#: views/form/aclv.php:99 views/form/grade-scale.php:79 +#: views/form/grade-scale.php:95 views/form/semester.php:114 +#: views/form/term.php:133 views/form/view-aclv.php:101 +#: views/form/view-grade-scale.php:81 views/form/view-grade-scale.php:97 +#: views/form/view-semester.php:116 views/form/view-term.php:135 +#: views/index/apply.php:135 views/mrkt/campaign/create.php:211 +#: views/mrkt/campaign/view.php:205 views/person/add.php:167 #: views/person/view.php:128 views/section/add.php:294 #: views/section/offering-info.php:164 views/setting/index.php:80 #: views/setting/index.php:155 views/setting/registration.php:70 @@ -457,12 +460,15 @@ msgstr "" #: views/course/addnl-info.php:81 views/course/addnl-info.php:146 #: views/course/index.php:122 views/course/view.php:327 #: views/dashboard/system-snapshot.php:40 -#: views/dashboard/system-snapshot.php:70 views/form/aclv.php:100 -#: views/form/grade-scale.php:80 views/form/grade-scale.php:96 -#: views/form/semester.php:115 views/form/term.php:134 -#: views/form/view-aclv.php:102 views/form/view-grade-scale.php:82 -#: views/form/view-grade-scale.php:98 views/form/view-semester.php:117 -#: views/form/view-term.php:136 views/person/add.php:173 +#: views/dashboard/system-snapshot.php:70 views/financial/paypal.php:58 +#: views/financial/paypal.php:71 views/financial/paypal.php:113 +#: views/form/aclv.php:100 views/form/grade-scale.php:80 +#: views/form/grade-scale.php:96 views/form/semester.php:115 +#: views/form/term.php:134 views/form/view-aclv.php:102 +#: views/form/view-grade-scale.php:82 views/form/view-grade-scale.php:98 +#: views/form/view-semester.php:117 views/form/view-term.php:136 +#: views/index/apply.php:136 views/mrkt/campaign/create.php:212 +#: views/mrkt/campaign/view.php:206 views/person/add.php:173 #: views/person/view.php:129 views/section/add.php:295 #: views/section/offering-info.php:165 views/setting/index.php:81 #: views/setting/index.php:156 views/setting/registration.php:71 @@ -491,12 +497,14 @@ msgid "Address:" msgstr "" #: functions/student-function.php:837 views/hr/add.php:51 -#: views/hr/positions.php:52 views/hr/view.php:52 views/staff/view.php:52 +#: views/hr/positions.php:52 views/hr/view-timesheet.php:51 +#: views/hr/view.php:52 views/staff/view.php:52 msgid "Phone:" msgstr "" #: functions/student-function.php:856 views/hr/add.php:66 -#: views/hr/positions.php:67 views/hr/view.php:67 views/staff/view.php:67 +#: views/hr/positions.php:67 views/hr/view-timesheet.php:66 +#: views/hr/view.php:67 views/staff/view.php:67 msgid "Email:" msgstr "" @@ -505,12 +513,15 @@ msgid "Birth Date:" msgstr "" #: functions/student-function.php:858 views/hr/add.php:67 -#: views/hr/positions.php:68 views/hr/view.php:68 views/staff/view.php:68 +#: views/hr/positions.php:68 views/hr/view-timesheet.php:67 +#: views/hr/view.php:68 views/staff/view.php:68 msgid "Status:" msgstr "" #: functions/student-function.php:858 functions/student-function.php:896 -#: views/cron/index.php:81 views/cron/new.php:143 views/cron/view.php:143 +#: views/admin/links.php:52 views/admin/links.php:152 views/cron/index.php:81 +#: views/cron/new.php:143 views/cron/view.php:143 +#: views/financial/billing-table.php:102 views/financial/view-btbl.php:104 #: views/form/grade-scale.php:91 views/form/semester.php:110 #: views/form/term.php:129 views/form/view-grade-scale.php:93 #: views/form/view-semester.php:112 views/form/view-term.php:131 @@ -518,8 +529,10 @@ msgstr "" msgid "Active" msgstr "" -#: functions/student-function.php:858 views/cron/index.php:81 -#: views/cron/new.php:144 views/cron/view.php:144 views/person/view.php:240 +#: functions/student-function.php:858 views/admin/links.php:53 +#: views/admin/links.php:153 views/cron/index.php:81 views/cron/new.php:144 +#: views/cron/view.php:144 views/financial/billing-table.php:103 +#: views/financial/view-btbl.php:105 views/person/view.php:240 #: views/student/view.php:130 msgid "Inactive" msgstr "" @@ -564,11 +577,13 @@ msgstr "" msgid "Class Level:" msgstr "" -#: functions/student-function.php:933 views/student/add-prog.php:205 -#: views/student/sacd.php:262 views/student/sacp.php:295 -#: views/student/shis.php:277 views/student/stac.php:154 -#: views/student/stal.php:177 views/student/sttr.php:115 -#: views/student/view.php:166 +#: functions/student-function.php:933 views/financial/account-history.php:156 +#: views/financial/view-bill.php:332 views/financial/view-comments.php:151 +#: views/financial/view-payments.php:195 views/financial/view-refunds.php:186 +#: views/student/add-prog.php:205 views/student/sacd.php:262 +#: views/student/sacp.php:295 views/student/shis.php:277 +#: views/student/stac.php:154 views/student/stal.php:177 +#: views/student/sttr.php:115 views/student/view.php:166 msgid "Family Educational Rights and Privacy Act (FERPA)" msgstr "" @@ -590,29 +605,85 @@ msgstr "" #: functions/student-function.php:944 views/application/index.php:123 #: views/application/view.php:524 views/course/prrl.php:167 -#: views/course/prrl.php:212 views/courses/index.php:147 +#: views/course/prrl.php:212 views/courses/index.php:146 +#: views/financial/account-history.php:172 views/financial/btrl.php:129 +#: views/financial/create-bill.php:204 views/financial/index.php:121 +#: views/financial/payment-plan.php:362 views/financial/payment-plan.php:386 +#: views/financial/payment-plan.php:410 views/financial/payment-plan.php:436 +#: views/financial/paypal.php:162 views/financial/paypal.php:186 +#: views/financial/view-bill.php:291 views/financial/view-bill.php:317 +#: views/financial/view-bill.php:348 views/financial/view-comments.php:167 +#: views/financial/view-payments.php:211 views/financial/view-refunds.php:202 #: views/form/aclv.php:199 views/form/alst.php:236 views/form/clvr.php:234 #: views/form/grade-scale.php:145 views/form/stld.php:254 #: views/form/view-aclv.php:220 views/form/view-grade-scale.php:146 -#: views/person/index.php:138 views/person/perc.php:118 -#: views/section/rrsr.php:234 views/setting/registration.php:181 -#: views/setting/registration.php:205 views/setting/registration.php:229 -#: views/setting/registration.php:253 views/setting/registration.php:277 -#: views/setting/sms.php:231 views/student/add-prog.php:221 -#: views/student/sacd.php:278 views/student/sacp.php:276 -#: views/student/sacp.php:311 views/student/shis.php:129 -#: views/student/shis.php:163 views/student/shis.php:293 -#: views/student/stac.php:170 views/student/stal.php:193 -#: views/student/sttr.php:131 views/student/view.php:182 +#: views/mrkt/campaign/view.php:335 views/mrkt/index.php:146 +#: views/mrkt/list/create.php:157 views/mrkt/list/index.php:84 +#: views/mrkt/list/view.php:179 views/mrkt/template/index.php:75 +#: views/mrkt/template/index.php:96 views/person/index.php:138 +#: views/person/perc.php:118 views/section/rrsr.php:234 +#: views/setting/registration.php:181 views/setting/registration.php:205 +#: views/setting/registration.php:229 views/setting/registration.php:253 +#: views/setting/registration.php:277 views/setting/sms.php:231 +#: views/student/add-prog.php:221 views/student/sacd.php:278 +#: views/student/sacp.php:276 views/student/sacp.php:311 +#: views/student/shis.php:129 views/student/shis.php:163 +#: views/student/shis.php:293 views/student/stac.php:170 +#: views/student/stal.php:193 views/student/sttr.php:131 +#: views/student/view.php:182 msgid "Close" msgstr "" -#: routers/appl.router.php:23 routers/course.router.php:24 +#: modules/booking.module.php:344 modules/booking.module.php:423 +msgid "Room/Event Booking Confirmation" +msgstr "" + +#: modules/booking.module.php:493 +msgid "Room Request: " +msgstr "" + +#: modules/financial.module.php:605 +msgid "Pay Bill" +msgstr "" + +#: modules/financial.module.php:615 views/financial/view-bill.php:49 +#: views/financial/view-comments.php:53 views/financial/view-payments.php:53 +#: views/financial/view-refunds.php:53 +msgid "Student Bill" +msgstr "" + +#: modules/financial.module.php:629 +msgid "Pay Now" +msgstr "" + +#: modules/mrkt.module.php:417 modules/mrkt.module.php:422 +msgid "Spam is not allowed." +msgstr "" + +#: modules/mrkt.module.php:622 modules/mrkt.module.php:647 +msgid "Email Sent." +msgstr "" + +#: modules/mrkt.module.php:865 +msgid "Campaign was successfully sent to the queue." +msgstr "" + +#: routers/appl.router.php:23 routers/booking.router.php:14 +#: routers/booking.router.php:638 routers/course.router.php:24 #: routers/courses.router.php:197 routers/dashboard.router.php:30 -#: routers/form.router.php:25 routers/hr.router.php:24 -#: routers/index.router.php:115 routers/index.router.php:181 -#: routers/index.router.php:526 routers/person.router.php:22 -#: routers/program.router.php:24 routers/rlde.router.php:23 +#: routers/financial.router.php:24 routers/financial.router.php:2565 +#: routers/financial.router.php:2581 routers/financial.router.php:2597 +#: routers/financial.router.php:2630 routers/financial.router.php:2683 +#: routers/financial.router.php:2866 routers/form.router.php:25 +#: routers/gradebook.router.php:25 routers/gradebook.router.php:897 +#: routers/gradebook.router.php:1207 routers/gradebook.router.php:1263 +#: routers/hr.router.php:24 routers/index.router.php:115 +#: routers/index.router.php:181 routers/index.router.php:526 +#: routers/mrkt.router.php:32 routers/mrkt.router.php:1244 +#: routers/myetsis.router.php:628 routers/myetsis.router.php:661 +#: routers/myetsis.router.php:745 routers/myetsis.router.php:781 +#: routers/person.router.php:22 routers/program.router.php:24 +#: routers/rlde.router.php:23 routers/savedquery.router.php:22 #: routers/section.router.php:25 routers/settings.router.php:10 #: routers/settings.router.php:59 routers/settings.router.php:107 #: routers/settings.router.php:150 routers/settings.router.php:194 @@ -628,45 +699,81 @@ msgstr "" #: routers/student.router.php:1769 routers/student.router.php:1832 #: routers/student.router.php:1865 routers/student.router.php:1902 #: routers/student.router.php:1957 routers/student.router.php:2007 +#: routers/timesheet.router.php:24 routers/timesheet.router.php:81 +#: routers/timesheet.router.php:227 routers/timesheet.router.php:311 +#: routers/transfer.router.php:15 routers/transfer.router.php:205 +#: routers/transfer.router.php:401 msgid "401 - Error: Unauthorized." msgstr "" #: routers/appl.router.php:34 routers/appl.router.php:96 #: routers/appl.router.php:255 routers/appl.router.php:374 -#: routers/appl.router.php:427 routers/course.router.php:27 -#: routers/course.router.php:86 routers/course.router.php:454 -#: routers/course.router.php:575 routers/dashboard.router.php:34 -#: routers/dashboard.router.php:126 routers/dashboard.router.php:162 -#: routers/dashboard.router.php:184 routers/dashboard.router.php:449 -#: routers/error.router.php:28 routers/form.router.php:30 +#: routers/appl.router.php:427 routers/booking.router.php:34 +#: routers/booking.router.php:56 routers/booking.router.php:107 +#: routers/booking.router.php:206 routers/booking.router.php:270 +#: routers/booking.router.php:321 routers/booking.router.php:452 +#: routers/booking.router.php:492 routers/booking.router.php:619 +#: routers/course.router.php:27 routers/course.router.php:86 +#: routers/course.router.php:454 routers/course.router.php:575 +#: routers/dashboard.router.php:34 routers/dashboard.router.php:126 +#: routers/dashboard.router.php:162 routers/dashboard.router.php:184 +#: routers/dashboard.router.php:449 routers/error.router.php:28 +#: routers/financial.router.php:56 routers/financial.router.php:118 +#: routers/financial.router.php:248 routers/financial.router.php:515 +#: routers/financial.router.php:576 routers/financial.router.php:630 +#: routers/financial.router.php:748 routers/financial.router.php:789 +#: routers/financial.router.php:901 routers/financial.router.php:998 +#: routers/financial.router.php:1083 routers/financial.router.php:1157 +#: routers/financial.router.php:1235 routers/financial.router.php:1340 +#: routers/financial.router.php:1410 routers/financial.router.php:1491 +#: routers/financial.router.php:2479 routers/form.router.php:30 #: routers/form.router.php:2919 routers/form.router.php:3052 #: routers/form.router.php:3228 routers/form.router.php:3536 -#: routers/hr.router.php:28 routers/index.router.php:251 +#: routers/gradebook.router.php:30 routers/gradebook.router.php:78 +#: routers/gradebook.router.php:211 routers/gradebook.router.php:296 +#: routers/gradebook.router.php:376 routers/gradebook.router.php:480 +#: routers/gradebook.router.php:586 routers/gradebook.router.php:681 +#: routers/gradebook.router.php:812 routers/gradebook.router.php:902 +#: routers/gradebook.router.php:1017 routers/gradebook.router.php:1212 +#: routers/gradebook.router.php:1268 routers/hr.router.php:28 +#: routers/import.router.php:10 routers/index.router.php:251 #: routers/index.router.php:386 routers/index.router.php:557 -#: routers/person.router.php:27 routers/person.router.php:88 -#: routers/person.router.php:254 routers/person.router.php:391 -#: routers/person.router.php:624 routers/person.router.php:750 -#: routers/person.router.php:869 routers/person.router.php:980 -#: routers/person.router.php:1093 routers/plugins.router.php:18 -#: routers/plugins.router.php:122 routers/program.router.php:29 -#: routers/program.router.php:90 routers/program.router.php:195 -#: routers/rlde.router.php:26 routers/section.router.php:30 -#: routers/section.router.php:92 routers/section.router.php:297 -#: routers/section.router.php:448 routers/section.router.php:555 -#: routers/section.router.php:645 routers/section.router.php:760 -#: routers/section.router.php:925 routers/section.router.php:1013 -#: routers/section.router.php:1061 routers/settings.router.php:14 -#: routers/settings.router.php:63 routers/settings.router.php:111 -#: routers/settings.router.php:154 routers/settings.router.php:198 -#: routers/settings.router.php:237 routers/sql.router.php:23 -#: routers/staff.router.php:48 routers/staff.router.php:215 -#: routers/staff.router.php:328 routers/student.router.php:47 -#: routers/student.router.php:111 routers/student.router.php:241 -#: routers/student.router.php:439 routers/student.router.php:517 -#: routers/student.router.php:599 routers/student.router.php:735 -#: routers/student.router.php:973 routers/student.router.php:1099 -#: routers/student.router.php:1206 routers/student.router.php:1323 -#: routers/student.router.php:1399 +#: routers/log.router.php:23 routers/log.router.php:67 +#: routers/log.router.php:108 routers/mrkt.router.php:36 +#: routers/mrkt.router.php:821 routers/myetsis.router.php:44 +#: routers/myetsis.router.php:65 routers/myetsis.router.php:145 +#: routers/myetsis.router.php:223 routers/myetsis.router.php:298 +#: routers/myetsis.router.php:317 routers/myetsis.router.php:349 +#: routers/myetsis.router.php:381 routers/person.router.php:27 +#: routers/person.router.php:88 routers/person.router.php:254 +#: routers/person.router.php:391 routers/person.router.php:624 +#: routers/person.router.php:750 routers/person.router.php:869 +#: routers/person.router.php:980 routers/person.router.php:1093 +#: routers/plugins.router.php:18 routers/plugins.router.php:122 +#: routers/program.router.php:29 routers/program.router.php:90 +#: routers/program.router.php:195 routers/rlde.router.php:26 +#: routers/savedquery.router.php:26 routers/savedquery.router.php:275 +#: routers/savedquery.router.php:330 routers/savedquery.router.php:470 +#: routers/section.router.php:30 routers/section.router.php:92 +#: routers/section.router.php:297 routers/section.router.php:448 +#: routers/section.router.php:555 routers/section.router.php:645 +#: routers/section.router.php:760 routers/section.router.php:925 +#: routers/section.router.php:1013 routers/section.router.php:1061 +#: routers/settings.router.php:14 routers/settings.router.php:63 +#: routers/settings.router.php:111 routers/settings.router.php:154 +#: routers/settings.router.php:198 routers/settings.router.php:237 +#: routers/sql.router.php:23 routers/staff.router.php:48 +#: routers/staff.router.php:215 routers/staff.router.php:328 +#: routers/student.router.php:47 routers/student.router.php:111 +#: routers/student.router.php:241 routers/student.router.php:439 +#: routers/student.router.php:517 routers/student.router.php:599 +#: routers/student.router.php:735 routers/student.router.php:973 +#: routers/student.router.php:1099 routers/student.router.php:1206 +#: routers/student.router.php:1323 routers/student.router.php:1399 +#: routers/timesheet.router.php:28 routers/timesheet.router.php:85 +#: routers/timesheet.router.php:231 routers/timesheet.router.php:315 +#: routers/transfer.router.php:19 routers/transfer.router.php:209 +#: routers/transfer.router.php:405 msgid "403 - Error: Forbidden." msgstr "" @@ -678,7 +785,12 @@ msgstr "" msgid "Permission denied." msgstr "" -#: routers/appl.router.php:625 routers/student.router.php:1836 +#: routers/appl.router.php:625 routers/booking.router.php:726 +#: routers/booking.router.php:757 routers/booking.router.php:788 +#: routers/booking.router.php:818 routers/financial.router.php:716 +#: routers/financial.router.php:1752 routers/financial.router.php:1782 +#: routers/financial.router.php:1813 routers/financial.router.php:1844 +#: routers/financial.router.php:2427 routers/student.router.php:1836 #: routers/student.router.php:1869 msgid "Permission denied to delete record." msgstr "" @@ -780,21 +892,21 @@ msgstr "" msgid "Cronjob data loaded" msgstr "" -#: routers/cron.router.php:510 routers/cron.router.php:511 +#: routers/cron.router.php:511 routers/cron.router.php:512 msgid "Students on Academic Probation" msgstr "" -#: routers/cron.router.php:510 +#: routers/cron.router.php:511 routers/savedquery.router.php:298 msgid "" "The attached report can be opened with OpenOffice.org Calc, Google Docs, " "Microsoft Excel, or Apple Numbers." msgstr "" -#: routers/cron.router.php:647 +#: routers/cron.router.php:648 routers/mrkt.router.php:569 msgid "View this email in your browser" msgstr "" -#: routers/cron.router.php:766 +#: routers/cron.router.php:767 #, php-format msgid "Seconds to process: %s" msgstr "" @@ -815,7 +927,7 @@ msgid "" "module package." msgstr "" -#: routers/dashboard.router.php:238 +#: routers/dashboard.router.php:238 routers/myetsis.router.php:410 msgid "Cache was flushed successfully." msgstr "" @@ -827,13 +939,13 @@ msgstr "" msgid "Academic Departments" msgstr "" -#: routers/dashboard.router.php:419 views/person/add.php:149 -#: views/person/view.php:120 +#: routers/dashboard.router.php:419 views/index/apply.php:157 +#: views/person/add.php:149 views/person/view.php:120 msgid "Male" msgstr "" -#: routers/dashboard.router.php:421 views/person/add.php:155 -#: views/person/view.php:121 +#: routers/dashboard.router.php:421 views/index/apply.php:158 +#: views/person/add.php:155 views/person/view.php:121 msgid "Female" msgstr "" @@ -846,8 +958,29 @@ msgstr "" msgid "The screen %s does not exist. Please try your search again." msgstr "" +#: routers/financial.router.php:1561 routers/financial.router.php:1664 +#: routers/financial.router.php:1720 +msgid "You don't have permission to manage business rules." +msgstr "" + +#: routers/financial.router.php:1697 +#, php-format +msgid "%s did not pass the rule." +msgstr "" + +#: routers/financial.router.php:1699 +#, php-format +msgid "%s passed the rule." +msgstr "" + +#: routers/financial.router.php:2602 routers/financial.router.php:2634 +#: routers/financial.router.php:2687 routers/financial.router.php:2870 +msgid "You must be a student in order to access student screens." +msgstr "" + #: routers/form.router.php:2908 views/course/add.php:166 -#: views/course/view.php:190 views/form/alst.php:37 views/form/alst.php:39 +#: views/course/view.php:190 views/financial/batch.php:84 +#: views/financial/batch.php:117 views/form/alst.php:37 views/form/alst.php:39 #: views/form/clas.php:35 views/form/clas.php:37 views/form/clvr.php:37 #: views/form/clvr.php:39 views/form/stld.php:36 views/form/stld.php:38 #: views/form/view-aclv.php:22 views/form/view-aclv.php:24 @@ -927,11 +1060,48 @@ msgid "" "rule." msgstr "" +#: routers/gradebook.router.php:1227 routers/gradebook.router.php:1317 +msgid "" +"Your file size is bigger than 20MB. Try to shrink the size of your file and " +"try again." +msgstr "" + +#: routers/gradebook.router.php:1248 +msgid "Email queued for sending." +msgstr "" + +#: routers/gradebook.router.php:1292 +msgid "No students." +msgstr "" + +#: routers/gradebook.router.php:1351 +msgid "Emails queued for sending." +msgstr "" + #: routers/hr.router.php:75 views/dashboard/core-admin-bar.php:131 #: views/dashboard/menu.php:137 msgid "Human Resources" msgstr "" +#: routers/import.router.php:20 +msgid "200 - Ok: Data was imported successfully." +msgstr "" + +#: routers/import.router.php:22 +msgid "" +"409 - Conflict: There was an error with saving the data to the database." +msgstr "" + +#: routers/import.router.php:25 +msgid "" +"204 - No Content: The file was neither in csv format or the file was empty." +msgstr "" + +#: routers/import.router.php:35 views/dashboard/core-admin-bar.php:57 +#: views/dashboard/menu.php:65 +msgid "Importer" +msgstr "" + #: routers/index.router.php:93 #, php-format msgid "

Name: %s

" @@ -974,6 +1144,175 @@ msgstr "" msgid "Switching back to original user was successful." msgstr "" +#: routers/mrkt.router.php:68 views/dashboard/core-admin-bar.php:213 +#: views/dashboard/menu.php:359 views/mrkt/bounce.php:21 +#: views/mrkt/campaign/bounced.php:21 views/mrkt/campaign/clicked.php:21 +#: views/mrkt/campaign/create.php:130 views/mrkt/campaign/opened.php:21 +#: views/mrkt/campaign/report.php:21 views/mrkt/campaign/view.php:130 +#: views/mrkt/index.php:37 views/mrkt/index.php:40 +#: views/mrkt/list/create.php:21 views/mrkt/list/index.php:21 +#: views/mrkt/list/view.php:21 views/mrkt/mailmerge.php:22 +#: views/mrkt/template/create.php:130 views/mrkt/template/index.php:21 +#: views/mrkt/template/view.php:130 +msgid "Campaigns" +msgstr "" + +#: routers/mrkt.router.php:95 +msgid "My Email Lists" +msgstr "" + +#: routers/mrkt.router.php:133 views/mrkt/list/create.php:25 +#: views/mrkt/list/create.php:28 +msgid "Create Email List" +msgstr "" + +#: routers/mrkt.router.php:159 views/dashboard/core-admin-bar.php:212 +#: views/dashboard/menu.php:358 views/mrkt/template/create.php:132 +#: views/mrkt/template/index.php:23 views/mrkt/template/index.php:26 +#: views/mrkt/template/view.php:132 +msgid "Templates" +msgstr "" + +#: routers/mrkt.router.php:235 +msgid "Edit Template" +msgstr "" + +#: routers/mrkt.router.php:273 views/mrkt/template/create.php:134 +#: views/mrkt/template/create.php:137 views/mrkt/template/index.php:118 +#: views/mrkt/template/view.php:134 views/mrkt/template/view.php:137 +msgid "Create Template" +msgstr "" + +#: routers/mrkt.router.php:323 views/mrkt/campaign/create.php:132 +#: views/mrkt/campaign/create.php:135 views/mrkt/index.php:169 +msgid "Create Campaign" +msgstr "" + +#: routers/mrkt.router.php:388 views/mrkt/list/view.php:25 +#: views/mrkt/list/view.php:28 +msgid "View/Edit Email List" +msgstr "" + +#: routers/mrkt.router.php:472 views/mrkt/campaign/view.php:132 +#: views/mrkt/campaign/view.php:135 +msgid "View/Edit Campaign" +msgstr "" + +#: routers/mrkt.router.php:483 +msgid "Message is already queued." +msgstr "" + +#: routers/mrkt.router.php:488 +msgid "Campaign does not exist." +msgstr "" + +#: routers/mrkt.router.php:501 +msgid "Message is already paused." +msgstr "" + +#: routers/mrkt.router.php:513 +msgid "Campaign was successfully paused." +msgstr "" + +#: routers/mrkt.router.php:527 +msgid "Message is already processing." +msgstr "" + +#: routers/mrkt.router.php:539 +msgid "Campaign was successfully resumed." +msgstr "" + +#: routers/mrkt.router.php:870 routers/settings.router.php:41 +#: routers/settings.router.php:87 routers/settings.router.php:131 +#: routers/settings.router.php:177 routers/settings.router.php:218 +msgid "Settings saved successfully." +msgstr "" + +#: routers/myetsis.router.php:54 +msgid "Administration" +msgstr "" + +#: routers/myetsis.router.php:133 views/admin/index.php:28 +#: views/admin/pages.php:21 +msgid "Manage Pages" +msgstr "" + +#: routers/myetsis.router.php:211 views/admin/news.php:21 +msgid "Manage News & Announcements" +msgstr "" + +#: routers/myetsis.router.php:286 views/admin/links.php:19 +msgid "Manage Quick Links" +msgstr "" + +#: routers/myetsis.router.php:306 +msgid "myetSIS CSS Editor" +msgstr "" + +#: routers/myetsis.router.php:458 views/index/news.php:19 +msgid "News & Announcements" +msgstr "" + +#: routers/myetsis.router.php:650 views/_layouts/myetsis/clean.layout.php:108 +#: views/_layouts/myetsis/default.layout.php:171 views/form/address.php:21 +msgid "Change of Address Form" +msgstr "" + +#: routers/myetsis.router.php:719 +msgid "" +"The system could not move the uploaded file. Please check with your system " +"administrator." +msgstr "" + +#: routers/myetsis.router.php:722 +msgid "Your image size is bigger than 4MB. Try to upload a smaller image." +msgstr "" + +#: routers/myetsis.router.php:725 +msgid "Invalid file format. You must upload a jpeg, gif, png or bmp file." +msgstr "" + +#: routers/myetsis.router.php:728 +msgid "You have to first select an image to upload." +msgstr "" + +#: routers/myetsis.router.php:734 views/_layouts/myetsis/clean.layout.php:110 +#: views/_layouts/myetsis/default.layout.php:173 +msgid "School Photo" +msgstr "" + +#: routers/myetsis.router.php:812 +msgid "Your request has been queued for sending." +msgstr "" + +#: routers/myetsis.router.php:836 +#, php-format +msgid "" +"The username %s is already taken. Try again with a more " +"unique username." +msgstr "" + +#: routers/myetsis.router.php:843 +#, php-format +msgid "" +"The email address %s is already in use. Try again with a " +"different email address." +msgstr "" + +#: routers/myetsis.router.php:921 +msgid "Student Application Via myeT" +msgstr "" + +#: routers/myetsis.router.php:928 +msgid "" +"Your application has been submitted, and you can now log in with your " +"username and password." +msgstr "" + +#: routers/myetsis.router.php:955 +msgid "Online Application" +msgstr "" + #: routers/person.router.php:516 msgid "" "200 - Success: Ok. If checked `Send username & password to the user`, email " @@ -1022,6 +1361,14 @@ msgstr "" msgid "Install Plugins" msgstr "" +#: routers/savedquery.router.php:31 +msgid "Your query contained a forbidden keyword(s). Please try again." +msgstr "" + +#: routers/savedquery.router.php:298 +msgid "CSV to Email Attachment" +msgstr "" + #: routers/section.router.php:768 msgid "The course section cannot be a 'null' value" msgstr "" @@ -1056,12 +1403,6 @@ msgid "" "rule." msgstr "" -#: routers/settings.router.php:41 routers/settings.router.php:87 -#: routers/settings.router.php:131 routers/settings.router.php:177 -#: routers/settings.router.php:218 -msgid "Settings saved successfully." -msgstr "" - #: routers/settings.router.php:252 msgid "Text message has been sent." msgstr "" @@ -1074,6 +1415,93 @@ msgstr "" msgid "Student Acceptance Letter" msgstr "" +#: src/CSVEmail.php:174 src/CSVEmail.php:284 +#, php-format +msgid "Could not connect to MySQL server: %s" +msgstr "" + +#: src/CSVEmail.php:177 src/CSVEmail.php:287 +msgid "" +"Step 1: Connected to MySQL server successfully. \n" +"\n" +msgstr "" + +#: src/CSVEmail.php:250 +msgid "" +"Step 4: Email sent with attachment. \n" +"\n" +msgstr "" + +#: src/CSVEmail.php:254 +msgid "" +"Step 4: No data found for query. Email NOT sent. \n" +"\n" +msgstr "" + +#: src/CSVEmail.php:265 +msgid "FINISHED." +msgstr "" + +#: src/CSVEmail.php:307 +msgid "File saved." +msgstr "" + +#: src/CSVEmail.php:319 +#, php-format +msgid "" +"ERROR: Invalid query \n" +" MySQL error: (%s)%s \n" +" Your query: %s" +msgstr "" + +#: src/CSVEmail.php:325 +msgid "" +"Step 2 (repeats for each attachment): MySQL query ran successfully. \n" +"\n" +msgstr "" + +#: src/CSVEmail.php:356 +msgid "" +"Step 3 (repeats for each attachment): CSV file built. \n" +"\n" +msgstr "" + +#: src/CSVEmail.php:359 +msgid "" +"Step 2 (repeats for each attachment): MySQL query ran successfully \n" +"\n" +msgstr "" + +#: src/CSVEmail.php:360 +#, php-format +msgid "" +"Step 3 (repeats for each attachment): NO results were returned for this " +"query. No file will be sent for the following query: \n" +" %s \n" +"\n" +msgstr "" + +#: src/CSVimporter.php:61 +#, php-format +msgid "The CSV file (%s) does not exist." +msgstr "" + +#: src/CSVimporter.php:95 +#, php-format +msgid "There are %s fields in the CSV file, you have supplied %s field names." +msgstr "" + +#: src/CSVimporter.php:128 +msgid "You must set the field names" +msgstr "" + +#: src/CSVimporter.php:155 +#, php-format +msgid "" +"The following line was not included, because the number of fields did not " +"match:
%s

" +msgstr "" + #: src/Core/Cache/etsis_Cache_APC.php:49 msgid "APC requires PHP APC extension to be installed and loaded." msgstr "" @@ -1165,19 +1593,19 @@ msgstr "" msgid "

Password: %s

" msgstr "" -#: src/Core/etsis_Email.php:396 src/Core/etsis_Email.php:432 -#: src/Core/etsis_Email.php:472 +#: src/Core/etsis_Email.php:396 src/Core/etsis_Email.php:436 +#: src/Core/etsis_Email.php:481 #, php-format msgid "

%s

" msgstr "" -#: src/Core/etsis_Email.php:398 src/Core/etsis_Email.php:434 -#: src/Core/etsis_Email.php:474 +#: src/Core/etsis_Email.php:398 src/Core/etsis_Email.php:438 +#: src/Core/etsis_Email.php:483 msgid "THIS IS AN AUTOMATED RESPONSE.
" msgstr "" -#: src/Core/etsis_Email.php:399 src/Core/etsis_Email.php:435 -#: src/Core/etsis_Email.php:475 +#: src/Core/etsis_Email.php:399 src/Core/etsis_Email.php:439 +#: src/Core/etsis_Email.php:484 msgid "****DO NOT RESPOND TO THIS EMAIL****" msgstr "" @@ -1185,74 +1613,78 @@ msgstr "" msgid " Account Login Details" msgstr "" -#: src/Core/etsis_Email.php:402 src/Core/etsis_Email.php:438 +#: src/Core/etsis_Email.php:402 src/Core/etsis_Email.php:442 msgid "myetSIS::" msgstr "" -#: src/Core/etsis_Email.php:405 +#: src/Core/etsis_Email.php:409 msgid ":: Account Login Details" msgstr "" -#: src/Core/etsis_Email.php:427 +#: src/Core/etsis_Email.php:431 msgid "

Dear Admissions:

" msgstr "" -#: src/Core/etsis_Email.php:428 +#: src/Core/etsis_Email.php:432 msgid "" "

A new application has been submitted via myetSIS self service " "portal.

" msgstr "" -#: src/Core/etsis_Email.php:429 +#: src/Core/etsis_Email.php:433 msgid "" "

Click on the link below and log into your account in order to view this " "new application.

" msgstr "" -#: src/Core/etsis_Email.php:430 +#: src/Core/etsis_Email.php:434 #, php-format msgid "

Applicant: %s

" msgstr "" -#: src/Core/etsis_Email.php:431 +#: src/Core/etsis_Email.php:435 #, php-format msgid "

Applicant's ID: %s

" msgstr "" -#: src/Core/etsis_Email.php:437 src/Core/etsis_Email.php:441 +#: src/Core/etsis_Email.php:441 src/Core/etsis_Email.php:449 msgid "Application for Admissions" msgstr "" -#: src/Core/etsis_Email.php:466 +#: src/Core/etsis_Email.php:474 msgid "

Dear Registrar:

" msgstr "" -#: src/Core/etsis_Email.php:467 +#: src/Core/etsis_Email.php:475 msgid "

This is a receipt for the following student's registration.

" msgstr "" -#: src/Core/etsis_Email.php:468 +#: src/Core/etsis_Email.php:476 #, php-format msgid "

Student Name: %s

" msgstr "" -#: src/Core/etsis_Email.php:469 +#: src/Core/etsis_Email.php:477 #, php-format msgid "

Student ID: %s

" msgstr "" -#: src/Core/etsis_Email.php:470 +#: src/Core/etsis_Email.php:478 +msgid "

Courses:
" +msgstr "" + +#: src/Core/etsis_Email.php:479 #, php-format -msgid "

Courses: %s

" +msgid "%s

" msgstr "" -#: src/Core/etsis_Email.php:471 +#: src/Core/etsis_Email.php:480 msgid "" "

Click on the link below and log into your account in order to verify this " "student's registration.

" msgstr "" -#: src/Core/etsis_Email.php:477 src/Core/etsis_Email.php:481 +#: src/Core/etsis_Email.php:486 src/Core/etsis_Email.php:494 #: views/section/rrsr.php:36 msgid "Course Registration" msgstr "" @@ -1362,7 +1794,11 @@ msgstr "" #: views/_layouts/myetsis/clean.layout.php:84 #: views/_layouts/myetsis/default.layout.php:148 views/course/prrl.php:192 #: views/dashboard/core-admin-bar.php:245 views/dashboard/menu.php:230 -#: views/form/alst.php:198 views/form/clvr.php:196 views/form/stld.php:203 +#: views/financial/btrl.php:109 views/financial/view-payments.php:235 +#: views/financial/view-refunds.php:226 views/form/alst.php:198 +#: views/form/clvr.php:196 views/form/import.php:102 views/form/stld.php:203 +#: views/section/attendance.php:149 views/section/export-grades.php:46 +#: views/section/final-grade.php:48 views/section/grading.php:49 #: views/section/rrsr.php:197 views/section/section-fgrade.php:51 #: views/student/index.php:21 msgid "Student" @@ -1371,11 +1807,13 @@ msgstr "" #: views/_layouts/myetsis/clean.layout.php:86 #: views/_layouts/myetsis/default.layout.php:150 #: views/dashboard/core-admin-bar.php:181 views/dashboard/menu.php:300 +#: views/section/timetable.php:77 views/section/timetable.php:80 +#: views/student/timetable.php:79 msgid "Timetable" msgstr "" #: views/_layouts/myetsis/clean.layout.php:87 -#: views/_layouts/myetsis/default.layout.php:151 +#: views/_layouts/myetsis/default.layout.php:151 views/student/bill.php:24 msgid "My Bills" msgstr "" @@ -1386,7 +1824,8 @@ msgstr "" #: views/_layouts/myetsis/clean.layout.php:89 #: views/_layouts/myetsis/default.layout.php:153 views/dashboard/menu.php:332 -#: views/section/view.php:280 views/student/fgrades.php:24 +#: views/section/courses.php:76 views/section/view.php:280 +#: views/student/fgrades.php:24 msgid "Final Grades" msgstr "" @@ -1396,21 +1835,11 @@ msgstr "" msgid "Forms" msgstr "" -#: views/_layouts/myetsis/clean.layout.php:108 -#: views/_layouts/myetsis/default.layout.php:171 -msgid "Change of Address Form" -msgstr "" - #: views/_layouts/myetsis/clean.layout.php:109 #: views/_layouts/myetsis/default.layout.php:172 msgid "Booking Request Form" msgstr "" -#: views/_layouts/myetsis/clean.layout.php:110 -#: views/_layouts/myetsis/default.layout.php:173 -msgid "School Photo" -msgstr "" - #: views/_layouts/myetsis/clean.layout.php:138 #: views/_layouts/myetsis/default.layout.php:200 msgid "Applications" @@ -1459,6 +1888,7 @@ msgstr "" #: views/_layouts/myetsis/clean.layout.php:183 #: views/_layouts/myetsis/default.layout.php:76 views/dashboard/index.php:23 +#: views/index/apply.php:188 msgid "Get Help" msgstr "" @@ -1469,7 +1899,7 @@ msgid "Sign in" msgstr "" #: views/_layouts/myetsis/clean.layout.php:198 -#: views/_layouts/myetsis/default.layout.php:93 +#: views/_layouts/myetsis/default.layout.php:93 views/index/apply.php:192 msgid "Apply" msgstr "" @@ -1478,66 +1908,101 @@ msgstr "" #: views/application/add-inst.php:20 views/application/add.php:20 #: views/application/index.php:20 views/application/inst-attended.php:39 #: views/application/inst.php:20 views/application/view-inst.php:20 -#: views/application/view.php:26 views/course/add.php:28 -#: views/course/addnl-info.php:26 views/course/index.php:19 -#: views/course/prrl.php:49 views/course/view.php:26 views/cron/index.php:20 -#: views/cron/new.php:40 views/cron/setting.php:20 views/cron/view.php:40 -#: views/dashboard/core-admin-bar.php:28 views/dashboard/ftp.php:34 -#: views/dashboard/index.php:22 views/dashboard/index.php:28 -#: views/dashboard/install-module.php:19 views/dashboard/menu.php:40 -#: views/dashboard/menu.php:42 views/dashboard/modules.php:20 -#: views/dashboard/sms.php:19 views/dashboard/support.php:24 -#: views/dashboard/system-snapshot.php:19 views/form/acad-year.php:20 -#: views/form/aclv.php:20 views/form/alst.php:35 views/form/building.php:20 -#: views/form/ccd.php:20 views/form/cip.php:20 views/form/clas.php:33 -#: views/form/clvr.php:35 views/form/degree.php:20 views/form/department.php:20 -#: views/form/grade-scale.php:20 views/form/location.php:20 -#: views/form/major.php:20 views/form/minor.php:20 views/form/rest.php:20 -#: views/form/room.php:20 views/form/school.php:20 views/form/semester.php:20 +#: views/application/view.php:26 views/calendar/booking-form.php:54 +#: views/calendar/events.php:20 views/calendar/index.php:76 +#: views/calendar/requests.php:21 views/calendar/setting.php:20 +#: views/calendar/view-event.php:21 views/calendar/view-request.php:72 +#: views/course/add.php:28 views/course/addnl-info.php:26 +#: views/course/atceq.php:54 views/course/extr.php:25 views/course/index.php:19 +#: views/course/prrl.php:49 views/course/tceq.php:19 views/course/tcre.php:68 +#: views/course/vextr.php:25 views/course/view.php:26 views/course/vtceq.php:19 +#: views/cron/index.php:20 views/cron/new.php:40 views/cron/setting.php:20 +#: views/cron/view.php:40 views/dashboard/core-admin-bar.php:28 +#: views/dashboard/ftp.php:34 views/dashboard/index.php:22 +#: views/dashboard/index.php:28 views/dashboard/install-module.php:19 +#: views/dashboard/menu.php:40 views/dashboard/menu.php:42 +#: views/dashboard/modules.php:20 views/dashboard/sms.php:19 +#: views/dashboard/support.php:24 views/dashboard/system-snapshot.php:19 +#: views/error/audit.php:20 views/error/logs.php:21 +#: views/financial/account-history.php:24 views/financial/add-jentry.php:90 +#: views/financial/add-payment.php:39 views/financial/batch.php:31 +#: views/financial/billing-table.php:20 views/financial/btrl.php:20 +#: views/financial/create-bill.php:39 views/financial/gl-accounts.php:20 +#: views/financial/gl-filter.php:20 views/financial/index.php:20 +#: views/financial/issue-refund.php:39 views/financial/jentry-filter.php:20 +#: views/financial/journal-entries.php:20 views/financial/payment-plan.php:39 +#: views/financial/paypal.php:20 views/financial/view-bill.php:23 +#: views/financial/view-btbl.php:20 views/financial/view-comments.php:27 +#: views/financial/view-payments.php:27 views/financial/view-refunds.php:27 +#: views/form/acad-year.php:20 views/form/aclv.php:20 views/form/alst.php:35 +#: views/form/building.php:20 views/form/ccd.php:20 views/form/cip.php:20 +#: views/form/clas.php:33 views/form/clvr.php:35 views/form/degree.php:20 +#: views/form/department.php:20 views/form/grade-scale.php:20 +#: views/form/import.php:20 views/form/location.php:20 views/form/major.php:20 +#: views/form/minor.php:20 views/form/rest.php:20 views/form/room.php:20 +#: views/form/school.php:20 views/form/semester.php:20 #: views/form/specialization.php:20 views/form/stld.php:34 #: views/form/subject.php:20 views/form/term.php:20 #: views/form/view-acad-year.php:20 views/form/view-aclv.php:20 #: views/form/view-building.php:20 views/form/view-ccd.php:20 -#: views/form/view-cip.php:20 views/form/view-clas.php:20 -#: views/form/view-degree.php:20 views/form/view-department.php:20 -#: views/form/view-grade-scale.php:20 views/form/view-location.php:20 -#: views/form/view-major.php:20 views/form/view-minor.php:20 -#: views/form/view-rest.php:20 views/form/view-room.php:20 -#: views/form/view-school.php:20 views/form/view-semester.php:20 -#: views/form/view-specialization.php:20 views/form/view-subject.php:20 -#: views/form/view-term.php:20 views/hr/add.php:21 views/hr/grades.php:20 -#: views/hr/index.php:21 views/hr/jobs.php:20 views/hr/positions.php:22 -#: views/hr/view.php:22 views/permission/add.php:21 -#: views/permission/index.php:21 views/permission/view.php:21 -#: views/person/add.php:59 views/person/addr-form.php:22 -#: views/person/addr.php:22 views/person/adsu.php:22 views/person/index.php:22 -#: views/person/perc.php:29 views/person/perms.php:21 views/person/role.php:21 -#: views/person/view.php:23 views/plugins/index.php:20 -#: views/plugins/install.php:19 views/program/add.php:20 -#: views/program/index.php:19 views/program/view.php:20 views/rlde/add.php:26 -#: views/rlde/index.php:20 views/rlde/view.php:26 views/role/add.php:20 -#: views/role/index.php:21 views/role/view.php:21 views/section/add.php:44 -#: views/section/addnl-info.php:19 views/section/catalog.php:19 +#: views/form/view-cip.php:20 views/form/view-degree.php:20 +#: views/form/view-department.php:20 views/form/view-grade-scale.php:20 +#: views/form/view-location.php:20 views/form/view-major.php:20 +#: views/form/view-minor.php:20 views/form/view-rest.php:20 +#: views/form/view-room.php:20 views/form/view-school.php:20 +#: views/form/view-semester.php:20 views/form/view-specialization.php:20 +#: views/form/view-subject.php:20 views/form/view-term.php:20 +#: views/hr/add.php:21 views/hr/grades.php:20 views/hr/index.php:21 +#: views/hr/jobs.php:20 views/hr/positions.php:22 views/hr/timesheets.php:20 +#: views/hr/view-timesheet.php:21 views/hr/view.php:22 views/mrkt/bounce.php:19 +#: views/mrkt/campaign/bounced.php:19 views/mrkt/campaign/clicked.php:19 +#: views/mrkt/campaign/create.php:128 views/mrkt/campaign/opened.php:19 +#: views/mrkt/campaign/report.php:19 views/mrkt/campaign/view.php:128 +#: views/mrkt/index.php:35 views/mrkt/list/create.php:19 +#: views/mrkt/list/index.php:19 views/mrkt/list/view.php:19 +#: views/mrkt/mailmerge.php:20 views/mrkt/template/create.php:128 +#: views/mrkt/template/index.php:19 views/mrkt/template/view.php:128 +#: views/permission/add.php:21 views/permission/index.php:21 +#: views/permission/view.php:21 views/person/add.php:59 +#: views/person/addr-form.php:22 views/person/addr.php:22 +#: views/person/adsu.php:22 views/person/index.php:22 views/person/perc.php:29 +#: views/person/perms.php:21 views/person/role.php:21 views/person/view.php:23 +#: views/plugins/index.php:20 views/plugins/install.php:19 +#: views/program/add.php:20 views/program/index.php:19 +#: views/program/view.php:20 views/rlde/add.php:26 views/rlde/index.php:20 +#: views/rlde/view.php:26 views/role/add.php:20 views/role/index.php:21 +#: views/role/view.php:21 views/section/add-assignment.php:19 +#: views/section/add.php:44 views/section/addnl-info.php:19 +#: views/section/assignments.php:19 views/section/attendance-report.php:19 +#: views/section/attendance.php:64 views/section/batch-register.php:36 +#: views/section/billing-info.php:19 views/section/booking-info.php:53 +#: views/section/catalog.php:19 views/section/courses.php:19 +#: views/section/export-grades.php:19 views/section/final-grade.php:19 +#: views/section/gradebook.php:19 views/section/grading.php:19 #: views/section/index.php:19 views/section/offering-info.php:19 #: views/section/register.php:66 views/section/rrsr.php:34 #: views/section/section-fgrade.php:20 views/section/sros.php:37 -#: views/section/view.php:43 views/setting/email.php:21 -#: views/setting/index.php:22 views/setting/registration.php:21 -#: views/setting/sms.php:21 views/setting/templates.php:137 -#: views/sql/index.php:46 views/staff/add.php:20 -#: views/staff/file-manager.php:34 views/staff/index.php:20 -#: views/staff/view.php:22 views/student/add-prog.php:39 -#: views/student/add.php:40 views/student/graduation.php:37 -#: views/student/index.php:19 views/student/sacd.php:20 -#: views/student/sacp.php:26 views/student/shis.php:28 -#: views/student/stac.php:20 views/student/stal.php:20 -#: views/student/sttr.php:20 views/student/tran.php:38 -#: views/student/view.php:23 +#: views/section/students.php:64 views/section/timetable.php:75 +#: views/section/view-assignment.php:19 views/section/view.php:43 +#: views/setting/email.php:21 views/setting/index.php:22 +#: views/setting/registration.php:21 views/setting/sms.php:21 +#: views/setting/templates.php:137 views/sql/add-query.php:31 +#: views/sql/csv-email.php:20 views/sql/index.php:46 +#: views/sql/saved-queries.php:20 views/sql/view-query.php:31 +#: views/staff/add.php:20 views/staff/file-manager.php:34 +#: views/staff/index.php:20 views/staff/timesheets.php:20 +#: views/staff/view-timesheet.php:20 views/staff/view.php:22 +#: views/student/add-prog.php:39 views/student/add.php:40 +#: views/student/graduation.php:37 views/student/index.php:19 +#: views/student/sacd.php:20 views/student/sacp.php:26 +#: views/student/shis.php:28 views/student/stac.php:20 +#: views/student/stal.php:20 views/student/sttr.php:20 +#: views/student/tran.php:38 views/student/view.php:23 msgid "Dashboard" msgstr "" #: views/_layouts/myetsis/clean.layout.php:204 -#: views/_layouts/myetsis/default.layout.php:107 +#: views/_layouts/myetsis/default.layout.php:107 views/admin/index.php:25 msgid "Admin" msgstr "" @@ -1552,136 +2017,155 @@ msgstr "" msgid "Switch Back to" msgstr "" -#: views/application/add-inst.php:19 views/application/add.php:19 -#: views/application/index.php:19 views/application/inst-attended.php:38 -#: views/application/inst.php:19 views/application/view-inst.php:19 -#: views/application/view.php:25 views/course/add.php:27 -#: views/course/addnl-info.php:25 views/course/index.php:18 -#: views/course/prrl.php:48 views/course/view.php:25 views/cron/index.php:19 -#: views/cron/new.php:39 views/cron/setting.php:19 views/cron/view.php:39 -#: views/dashboard/ftp.php:33 views/dashboard/index.php:21 -#: views/dashboard/install-module.php:18 views/dashboard/modules.php:19 -#: views/dashboard/sms.php:18 views/dashboard/support.php:23 -#: views/dashboard/system-snapshot.php:18 views/form/acad-year.php:19 -#: views/form/aclv.php:19 views/form/alst.php:34 views/form/building.php:19 -#: views/form/ccd.php:19 views/form/cip.php:19 views/form/clas.php:32 -#: views/form/clvr.php:34 views/form/degree.php:19 views/form/department.php:19 -#: views/form/grade-scale.php:19 views/form/location.php:19 -#: views/form/major.php:19 views/form/minor.php:19 views/form/rest.php:19 -#: views/form/room.php:19 views/form/school.php:19 views/form/semester.php:19 -#: views/form/specialization.php:19 views/form/stld.php:33 -#: views/form/subject.php:19 views/form/term.php:19 -#: views/form/view-acad-year.php:19 views/form/view-aclv.php:19 -#: views/form/view-building.php:19 views/form/view-ccd.php:19 -#: views/form/view-cip.php:19 views/form/view-clas.php:19 -#: views/form/view-degree.php:19 views/form/view-department.php:19 -#: views/form/view-grade-scale.php:19 views/form/view-location.php:19 -#: views/form/view-major.php:19 views/form/view-minor.php:19 -#: views/form/view-rest.php:19 views/form/view-room.php:19 -#: views/form/view-school.php:19 views/form/view-semester.php:19 -#: views/form/view-specialization.php:19 views/form/view-subject.php:19 -#: views/form/view-term.php:19 views/hr/add.php:20 views/hr/grades.php:19 -#: views/hr/index.php:20 views/hr/jobs.php:19 views/hr/positions.php:21 -#: views/hr/view.php:21 views/permission/add.php:20 -#: views/permission/index.php:20 views/permission/view.php:20 -#: views/person/add.php:58 views/person/addr-form.php:21 -#: views/person/addr.php:21 views/person/adsu.php:21 views/person/index.php:21 -#: views/person/perc.php:28 views/person/perms.php:20 views/person/role.php:20 -#: views/person/view.php:22 views/plugins/index.php:19 -#: views/plugins/install.php:18 views/program/add.php:19 -#: views/program/index.php:18 views/program/view.php:19 views/rlde/add.php:25 -#: views/rlde/index.php:19 views/rlde/view.php:25 views/role/add.php:19 -#: views/role/index.php:20 views/role/view.php:20 views/section/add.php:43 -#: views/section/addnl-info.php:18 views/section/catalog.php:18 -#: views/section/index.php:18 views/section/offering-info.php:18 -#: views/section/register.php:65 views/section/rrsr.php:33 -#: views/section/section-fgrade.php:19 views/section/sros.php:36 -#: views/section/view.php:42 views/setting/email.php:20 -#: views/setting/index.php:21 views/setting/registration.php:20 -#: views/setting/sms.php:20 views/setting/templates.php:136 -#: views/sql/index.php:45 views/staff/add.php:19 -#: views/staff/file-manager.php:33 views/staff/index.php:19 -#: views/staff/view.php:21 views/student/add-prog.php:38 -#: views/student/add.php:39 views/student/graduation.php:36 -#: views/student/index.php:18 views/student/sacd.php:19 -#: views/student/sacp.php:25 views/student/shis.php:27 -#: views/student/stac.php:19 views/student/stal.php:19 -#: views/student/sttr.php:19 views/student/tran.php:37 -#: views/student/view.php:22 -msgid "You are here" +#: views/admin/csseditor.php:50 views/admin/index.php:40 +msgid "CSS Editor" msgstr "" -#: views/application/add-inst.php:22 views/application/view-inst.php:22 -msgid "Search Institution" +#: views/admin/csseditor.php:54 views/application/view.php:495 +#: views/calendar/setting.php:111 views/course/add.php:233 +#: views/course/addnl-info.php:116 views/course/extr.php:277 +#: views/course/view.php:297 views/course/vtceq.php:167 views/cron/new.php:162 +#: views/cron/setting.php:96 views/cron/view.php:161 +#: views/financial/gl-accounts.php:143 views/financial/paypal.php:126 +#: views/form/aclv.php:123 views/form/alst.php:170 views/form/building.php:94 +#: views/form/ccd.php:76 views/form/cip.php:76 views/form/clas.php:114 +#: views/form/clvr.php:168 views/form/degree.php:76 +#: views/form/department.php:112 views/form/grade-scale.php:115 +#: views/form/location.php:76 views/form/major.php:76 views/form/minor.php:76 +#: views/form/rest.php:86 views/form/room.php:101 +#: views/form/specialization.php:76 views/form/stld.php:175 +#: views/form/subject.php:76 views/form/term.php:148 +#: views/form/view-acad-year.php:78 views/form/view-aclv.php:193 +#: views/form/view-building.php:96 views/form/view-ccd.php:78 +#: views/form/view-cip.php:78 views/form/view-degree.php:78 +#: views/form/view-department.php:114 views/form/view-grade-scale.php:117 +#: views/form/view-location.php:78 views/form/view-major.php:78 +#: views/form/view-minor.php:78 views/form/view-rest.php:88 +#: views/form/view-room.php:103 views/form/view-school.php:90 +#: views/form/view-semester.php:132 views/form/view-specialization.php:78 +#: views/form/view-subject.php:78 views/form/view-term.php:150 +#: views/hr/add.php:226 views/hr/view-timesheet.php:143 +#: views/hr/view-timesheet.php:239 views/hr/view.php:350 +#: views/index/index.php:96 views/mrkt/bounce.php:142 +#: views/mrkt/list/create.php:128 views/mrkt/list/view.php:146 +#: views/permission/add.php:79 views/permission/view.php:79 +#: views/person/add.php:375 views/person/addr-form.php:222 +#: views/person/addr.php:230 views/person/perc.php:141 +#: views/person/perms.php:70 views/person/role.php:85 views/person/view.php:345 +#: views/program/add.php:306 views/program/view.php:313 views/rlde/add.php:148 +#: views/role/view.php:81 views/section/add-assignment.php:86 +#: views/section/add.php:362 views/section/addnl-info.php:136 +#: views/section/billing-info.php:99 views/section/offering-info.php:180 +#: views/section/rrsr.php:169 views/section/view-assignment.php:91 +#: views/section/view.php:298 views/setting/email.php:126 +#: views/setting/index.php:321 views/setting/registration.php:153 +#: views/setting/sms.php:113 views/sql/add-query.php:129 +#: views/sql/view-query.php:128 views/staff/add.php:248 +#: views/staff/timesheets.php:173 views/staff/view-timesheet.php:168 +#: views/staff/view.php:264 views/student/add-prog.php:186 +#: views/student/add.php:253 views/student/sacd.php:243 +#: views/student/sacp.php:250 views/student/shis.php:185 +#: views/student/stal.php:158 views/student/view.php:147 +msgid "Save" msgstr "" -#: views/application/add-inst.php:24 views/application/add-inst.php:27 -msgid "Add Institution" +#: views/admin/index.php:32 +msgid "Manage Links" msgstr "" -#: views/application/add-inst.php:42 views/application/add.php:42 -#: views/application/inst-attended.php:61 views/application/view-inst.php:42 -#: views/application/view.php:48 views/form/acad-year.php:40 -#: views/form/school.php:40 views/form/semester.php:40 -#: views/form/view-acad-year.php:42 views/form/view-school.php:42 -#: views/form/view-semester.php:42 -msgid "Indicates field is required." +#: views/admin/index.php:36 +msgid "Manage News" msgstr "" -#: views/application/add-inst.php:56 views/application/inst.php:59 -#: views/application/view-inst.php:56 -msgid "FICE/CEEB Code" +#: views/admin/index.php:43 +msgid "" +"If you are having issues with results not updating after changes have been " +"made, click the clear cache button below." msgstr "" -#: views/application/add-inst.php:63 views/application/view-inst.php:63 -#: views/person/adsu.php:86 -msgid "Type" +#: views/admin/index.php:45 +msgid "Clear Cache" msgstr "" -#: views/application/add-inst.php:67 -msgid "High School" +#: views/admin/links.php:19 views/admin/links.php:32 +msgid "Add Link" msgstr "" -#: views/application/add-inst.php:68 -msgid "College" +#: views/admin/links.php:37 views/admin/links.php:137 views/admin/news.php:39 +#: views/admin/news.php:140 views/admin/pages.php:39 views/admin/pages.php:146 +#: views/application/add-inst.php:42 views/application/add.php:42 +#: views/application/inst-attended.php:61 views/application/view-inst.php:42 +#: views/application/view.php:48 views/calendar/request-form.php:57 +#: views/form/acad-year.php:40 views/form/address.php:23 +#: views/form/request-form.php:57 views/form/school.php:40 +#: views/form/semester.php:40 views/form/view-acad-year.php:42 +#: views/form/view-school.php:42 views/form/view-semester.php:42 +#: views/index/apply.php:26 +msgid "Indicates field is required." msgstr "" -#: views/application/add-inst.php:69 -msgid "University" +#: views/admin/links.php:41 views/admin/links.php:85 views/admin/links.php:141 +msgid "Link Title" msgstr "" -#: views/application/add-inst.php:77 views/application/inst.php:61 -#: views/application/view-inst.php:77 views/setting/index.php:67 -msgid "Institution Name" +#: views/admin/links.php:45 views/admin/links.php:86 views/admin/links.php:145 +msgid "Link Source" msgstr "" -#: views/application/add-inst.php:90 views/application/view-inst.php:90 -#: views/index/profile.php:97 views/person/add.php:229 -#: views/person/addr-form.php:92 views/person/addr.php:96 -#: views/person/view.php:185 -msgid "City" +#: views/admin/links.php:49 views/admin/links.php:87 views/admin/links.php:149 +#: views/admin/news.php:51 views/admin/news.php:88 views/admin/news.php:152 +#: views/admin/pages.php:51 views/admin/pages.php:94 views/admin/pages.php:158 +#: views/application/appls.php:35 views/course/extr.php:67 +#: views/course/extr.php:214 views/course/index.php:60 +#: views/course/vextr.php:140 views/course/view.php:202 views/cron/index.php:60 +#: views/cron/new.php:139 views/cron/view.php:139 +#: views/financial/billing-table.php:98 views/financial/billing-table.php:147 +#: views/financial/view-btbl.php:100 views/form/grade-scale.php:166 +#: views/form/semester.php:158 views/form/term.php:175 +#: views/hr/view-timesheet.php:101 views/hr/view.php:302 +#: views/mrkt/campaign/view.php:220 views/mrkt/index.php:58 +#: views/mrkt/list/create.php:90 views/mrkt/list/create.php:151 +#: views/mrkt/list/index.php:45 views/mrkt/list/view.php:90 +#: views/mrkt/list/view.php:173 views/person/addr-form.php:140 +#: views/person/addr.php:148 views/person/adsu.php:81 views/person/view.php:236 +#: views/program/index.php:60 views/section/index.php:61 +#: views/staff/add.php:210 views/staff/view-timesheet.php:52 +#: views/staff/view.php:199 views/student/add-prog.php:98 +#: views/student/add.php:193 views/student/sacd.php:208 +#: views/student/sacp.php:143 views/student/stac.php:61 +#: views/student/view.php:71 views/student/view.php:125 +msgid "Status" msgstr "" -#: views/application/add-inst.php:97 views/application/view-inst.php:97 -#: views/index/profile.php:101 views/person/add.php:233 -#: views/person/addr-form.php:96 views/person/addr.php:100 -#: views/person/view.php:189 -msgid "State" -msgstr "" - -#: views/application/add-inst.php:109 views/application/view-inst.php:104 -#: views/person/add.php:244 views/person/addr-form.php:107 -#: views/person/addr.php:111 views/person/view.php:197 -msgid "Country" +#: views/admin/links.php:57 views/admin/links.php:157 views/admin/pages.php:59 +#: views/admin/pages.php:166 +msgid "Sort" msgstr "" +#: views/admin/links.php:66 views/admin/links.php:167 views/admin/news.php:65 +#: views/admin/news.php:166 views/admin/pages.php:71 views/admin/pages.php:176 #: views/application/add-inst.php:129 views/application/add.php:280 #: views/application/inst-attended.php:172 views/application/view-inst.php:125 -#: views/course/prrl.php:211 views/dashboard/install-module.php:89 -#: views/form/acad-year.php:76 views/form/alst.php:235 views/form/clvr.php:233 -#: views/form/school.php:88 views/form/semester.php:131 views/form/stld.php:253 -#: views/hr/grades.php:120 views/hr/jobs.php:138 views/person/perc.php:220 +#: views/calendar/view-event.php:217 views/course/atceq.php:212 +#: views/course/prrl.php:211 views/course/tcre.php:300 +#: views/dashboard/install-module.php:89 views/financial/add-jentry.php:254 +#: views/financial/add-payment.php:189 views/financial/batch.php:197 +#: views/financial/billing-table.php:121 views/financial/btrl.php:128 +#: views/financial/create-bill.php:176 views/financial/gl-filter.php:101 +#: views/financial/issue-refund.php:168 views/financial/jentry-filter.php:101 +#: views/financial/payment-plan.php:174 views/financial/view-btbl.php:123 +#: views/financial/view-payments.php:312 views/financial/view-refunds.php:282 +#: views/form/acad-year.php:76 views/form/address.php:77 +#: views/form/alst.php:235 views/form/clvr.php:233 views/form/import.php:124 +#: views/form/photo.php:52 views/form/school.php:88 views/form/semester.php:131 +#: views/form/stld.php:253 views/hr/grades.php:120 views/hr/jobs.php:138 +#: views/mrkt/campaign/create.php:274 views/mrkt/campaign/view.php:308 +#: views/mrkt/mailmerge.php:99 views/mrkt/template/create.php:218 +#: views/mrkt/template/view.php:233 views/person/perc.php:220 #: views/plugins/install.php:87 views/role/add.php:78 +#: views/section/attendance.php:241 views/section/batch-register.php:122 +#: views/section/booking-info.php:254 views/section/booking-info.php:439 +#: views/section/final-grade.php:87 views/section/grading.php:78 #: views/section/rrsr.php:233 views/section/section-fgrade.php:90 #: views/section/sros.php:123 views/setting/sms.php:230 views/sql/index.php:138 #: views/student/graduation.php:118 views/student/shis.php:259 @@ -1689,19 +2173,35 @@ msgstr "" msgid "Submit" msgstr "" +#: views/admin/links.php:67 views/admin/links.php:168 views/admin/links.php:195 +#: views/admin/news.php:66 views/admin/news.php:167 views/admin/news.php:194 +#: views/admin/pages.php:72 views/admin/pages.php:177 views/admin/pages.php:204 #: views/application/add-inst.php:130 views/application/add.php:281 #: views/application/appls.php:120 views/application/inst-attended.php:173 #: views/application/view-inst.php:126 views/application/view.php:323 #: views/application/view.php:342 views/application/view.php:496 -#: views/course/addnl-info.php:117 views/course/ajax.php:132 -#: views/course/ajax.php:223 views/course/prrl.php:140 +#: views/calendar/booking-form.php:252 views/calendar/requests.php:87 +#: views/calendar/setting.php:112 views/calendar/view-event.php:81 +#: views/calendar/view-event.php:218 views/calendar/view-event.php:246 +#: views/calendar/view-request.php:272 views/course/addnl-info.php:117 +#: views/course/ajax.php:132 views/course/ajax.php:223 +#: views/course/extr.php:240 views/course/prrl.php:140 +#: views/course/vextr.php:166 views/course/vextr.php:211 #: views/course/view.php:298 views/cron/new.php:187 views/cron/setting.php:121 -#: views/cron/setting.php:141 views/cron/view.php:186 views/form/alst.php:127 -#: views/form/alst.php:171 views/form/clas.php:115 views/form/clvr.php:126 -#: views/form/clvr.php:169 views/form/stld.php:129 views/form/stld.php:176 -#: views/form/view-acad-year.php:79 views/form/view-aclv.php:194 -#: views/form/view-building.php:97 views/form/view-ccd.php:79 -#: views/form/view-cip.php:79 views/form/view-clas.php:106 +#: views/cron/setting.php:141 views/cron/view.php:186 +#: views/financial/btrl.php:80 views/financial/gl-accounts.php:144 +#: views/financial/gl-accounts.php:204 views/financial/payment-plan.php:336 +#: views/financial/view-bill.php:158 views/financial/view-bill.php:256 +#: views/financial/view-btbl.php:124 views/financial/view-comments.php:133 +#: views/financial/view-payments.php:135 views/financial/view-payments.php:155 +#: views/financial/view-payments.php:177 views/financial/view-payments.php:313 +#: views/financial/view-refunds.php:126 views/financial/view-refunds.php:146 +#: views/financial/view-refunds.php:168 views/financial/view-refunds.php:283 +#: views/form/alst.php:127 views/form/alst.php:171 views/form/clas.php:115 +#: views/form/clvr.php:126 views/form/clvr.php:169 views/form/stld.php:129 +#: views/form/stld.php:176 views/form/view-acad-year.php:79 +#: views/form/view-aclv.php:194 views/form/view-building.php:97 +#: views/form/view-ccd.php:79 views/form/view-cip.php:79 #: views/form/view-degree.php:79 views/form/view-department.php:115 #: views/form/view-grade-scale.php:118 views/form/view-location.php:79 #: views/form/view-major.php:79 views/form/view-minor.php:79 @@ -1710,8 +2210,14 @@ msgstr "" #: views/form/view-specialization.php:79 views/form/view-subject.php:79 #: views/form/view-term.php:151 views/hr/add.php:227 views/hr/grades.php:121 #: views/hr/grades.php:176 views/hr/jobs.php:139 views/hr/jobs.php:210 -#: views/hr/positions.php:266 views/hr/view.php:351 views/index/index.php:97 -#: views/index/login.php:148 views/permission/add.php:80 +#: views/hr/positions.php:266 views/hr/view-timesheet.php:144 +#: views/hr/view-timesheet.php:240 views/hr/view.php:351 +#: views/index/index.php:97 views/index/login.php:148 +#: views/mrkt/campaign/bounced.php:73 views/mrkt/campaign/clicked.php:105 +#: views/mrkt/campaign/create.php:275 views/mrkt/campaign/opened.php:105 +#: views/mrkt/campaign/report.php:121 views/mrkt/campaign/view.php:310 +#: views/mrkt/list/view.php:153 views/mrkt/template/create.php:219 +#: views/mrkt/template/view.php:234 views/permission/add.php:80 #: views/permission/view.php:80 views/person/add.php:331 #: views/person/add.php:349 views/person/add.php:367 views/person/add.php:376 #: views/person/addr-form.php:223 views/person/addr.php:231 @@ -1725,10 +2231,19 @@ msgstr "" #: views/program/ajax.php:709 views/program/ajax.php:802 #: views/program/ajax.php:895 views/program/view.php:314 #: views/rlde/index.php:93 views/rlde/view.php:157 views/role/add.php:79 -#: views/role/view.php:82 views/section/addnl-info.php:137 +#: views/role/view.php:82 views/section/add-assignment.php:87 +#: views/section/add-assignment.php:110 views/section/addnl-info.php:137 #: views/section/ajax.php:132 views/section/ajax.php:219 +#: views/section/assignments.php:85 views/section/attendance-report.php:96 +#: views/section/attendance.php:242 views/section/billing-info.php:100 +#: views/section/booking-info.php:255 views/section/booking-info.php:304 +#: views/section/booking-info.php:440 views/section/booking-info.php:468 +#: views/section/export-grades.php:72 views/section/final-grade.php:88 +#: views/section/gradebook.php:82 views/section/grading.php:79 #: views/section/offering-info.php:181 views/section/rrsr.php:131 #: views/section/rrsr.php:170 views/section/section-fgrade.php:92 +#: views/section/students.php:200 views/section/students.php:226 +#: views/section/students.php:310 views/section/view-assignment.php:92 #: views/section/view.php:299 views/setting/email.php:151 #: views/setting/email.php:171 views/setting/email.php:191 #: views/setting/email.php:211 views/setting/email.php:231 @@ -1740,17 +2255,346 @@ msgstr "" #: views/setting/templates.php:255 views/setting/templates.php:276 #: views/setting/templates.php:297 views/setting/templates.php:318 #: views/setting/templates.php:339 views/setting/templates.php:360 -#: views/setting/templates.php:379 views/staff/add.php:249 -#: views/staff/view.php:265 views/student/add-prog.php:187 -#: views/student/add.php:254 views/student/sacd.php:244 -#: views/student/sacp.php:206 views/student/sacp.php:252 -#: views/student/shis.php:188 views/student/shis.php:260 -#: views/student/stac.php:107 views/student/stac.php:138 -#: views/student/stal.php:159 views/student/sttr.php:98 +#: views/setting/templates.php:379 views/sql/add-query.php:130 +#: views/sql/add-query.php:157 views/sql/add-query.php:176 +#: views/sql/saved-queries.php:90 views/sql/view-query.php:129 +#: views/sql/view-query.php:156 views/staff/add.php:249 +#: views/staff/timesheets.php:174 views/staff/view-timesheet.php:169 +#: views/staff/view.php:265 views/student/account-history.php:139 +#: views/student/add-prog.php:187 views/student/add.php:254 +#: views/student/sacd.php:244 views/student/sacp.php:206 +#: views/student/sacp.php:252 views/student/shis.php:188 +#: views/student/shis.php:260 views/student/stac.php:107 +#: views/student/stac.php:138 views/student/stal.php:159 +#: views/student/sttr.php:98 views/student/vbill.php:225 #: views/student/view.php:148 views/student/view.php:203 msgid "Cancel" msgstr "" +#: views/admin/links.php:88 views/admin/links.php:102 views/admin/news.php:89 +#: views/admin/news.php:105 views/admin/pages.php:95 views/admin/pages.php:111 +#: views/application/appls.php:36 views/application/index.php:64 +#: views/application/index.php:79 views/application/inst.php:62 +#: views/application/inst.php:76 views/calendar/events.php:50 +#: views/calendar/requests.php:51 views/calendar/setting.php:63 +#: views/calendar/view-event.php:50 views/calendar/view-event.php:104 +#: views/course/extr.php:70 views/course/extr.php:87 views/course/index.php:63 +#: views/course/index.php:79 views/course/tceq.php:63 views/course/tceq.php:79 +#: views/financial/gl-accounts.php:60 views/financial/index.php:64 +#: views/financial/index.php:79 views/financial/journal-entries.php:58 +#: views/financial/journal-entries.php:75 views/financial/payment-plan.php:203 +#: views/financial/payment-plan.php:220 views/form/acad-year.php:101 +#: views/form/acad-year.php:114 views/form/aclv.php:148 views/form/aclv.php:161 +#: views/form/alst.php:74 views/form/building.php:117 +#: views/form/building.php:130 views/form/ccd.php:101 views/form/ccd.php:114 +#: views/form/cip.php:99 views/form/cip.php:112 views/form/clas.php:65 +#: views/form/clvr.php:74 views/form/degree.php:99 views/form/degree.php:112 +#: views/form/department.php:140 views/form/department.php:156 +#: views/form/grade-scale.php:167 views/form/location.php:101 +#: views/form/location.php:114 views/form/major.php:101 +#: views/form/major.php:114 views/form/minor.php:101 views/form/minor.php:114 +#: views/form/rest.php:112 views/form/rest.php:126 views/form/room.php:127 +#: views/form/room.php:141 views/form/school.php:115 views/form/school.php:129 +#: views/form/semester.php:159 views/form/semester.php:174 +#: views/form/specialization.php:101 views/form/specialization.php:114 +#: views/form/stld.php:73 views/form/subject.php:101 views/form/subject.php:114 +#: views/form/term.php:176 views/form/term.php:192 views/hr/grades.php:48 +#: views/hr/index.php:66 views/hr/index.php:82 views/hr/jobs.php:49 +#: views/hr/positions.php:115 views/hr/view-timesheet.php:102 +#: views/person/index.php:66 views/person/index.php:81 +#: views/program/index.php:63 views/program/index.php:79 +#: views/rlde/index.php:52 views/rlde/index.php:67 +#: views/section/assignments.php:47 views/section/assignments.php:61 +#: views/section/booking-info.php:274 views/section/booking-info.php:326 +#: views/section/catalog.php:45 views/section/catalog.php:59 +#: views/section/courses.php:43 views/section/courses.php:57 +#: views/section/index.php:63 views/section/index.php:79 +#: views/section/rrsr.php:83 views/setting/templates.php:174 +#: views/sql/saved-queries.php:57 views/staff/index.php:64 +#: views/staff/index.php:79 views/staff/timesheets.php:62 +#: views/student/bill.php:39 views/student/bill.php:52 +#: views/student/index.php:61 views/student/index.php:76 +#: views/student/shis.php:69 views/student/stac.php:66 +#: views/student/stac.php:84 +msgid "Actions" +msgstr "" + +#: views/admin/links.php:105 views/admin/news.php:108 views/admin/pages.php:114 +#: views/application/index.php:82 views/application/inst.php:79 +#: views/course/extr.php:90 views/course/index.php:82 views/course/tceq.php:82 +#: views/financial/index.php:82 views/financial/journal-entries.php:78 +#: views/financial/payment-plan.php:223 views/form/acad-year.php:117 +#: views/form/aclv.php:164 views/form/building.php:133 views/form/ccd.php:117 +#: views/form/cip.php:115 views/form/degree.php:115 +#: views/form/department.php:159 views/form/location.php:117 +#: views/form/major.php:117 views/form/minor.php:117 views/form/rest.php:129 +#: views/form/room.php:144 views/form/school.php:132 +#: views/form/semester.php:177 views/form/specialization.php:117 +#: views/form/subject.php:117 views/form/term.php:195 views/hr/index.php:85 +#: views/person/index.php:84 views/program/index.php:82 views/rlde/index.php:70 +#: views/section/assignments.php:64 views/section/catalog.php:62 +#: views/section/courses.php:60 views/section/index.php:82 +#: views/staff/index.php:82 views/staff/timesheets.php:65 +#: views/student/bill.php:55 views/student/index.php:79 +#: views/student/stac.php:87 +msgid "Toggle Dropdown" +msgstr "" + +#: views/admin/links.php:108 views/admin/news.php:111 views/admin/pages.php:117 +#: views/index/index.php:42 views/permission/index.php:46 +#: views/role/index.php:45 +msgid "Edit" +msgstr "" + +#: views/admin/links.php:109 views/admin/links.php:194 views/admin/news.php:112 +#: views/admin/news.php:193 views/admin/pages.php:118 views/admin/pages.php:203 +#: views/calendar/requests.php:86 views/calendar/view-event.php:80 +#: views/calendar/view-event.php:245 views/course/extr.php:94 +#: views/error/logs.php:45 views/financial/journal-entries.php:82 +#: views/financial/payment-plan.php:227 views/financial/payment-plan.php:435 +#: views/financial/view-bill.php:157 views/financial/view-bill.php:290 +#: views/financial/view-payments.php:154 views/financial/view-refunds.php:145 +#: views/form/alst.php:126 views/form/clvr.php:125 views/form/stld.php:128 +#: views/rlde/index.php:74 views/rlde/index.php:92 +#: views/section/booking-info.php:303 views/section/booking-info.php:467 +#: views/section/rrsr.php:130 views/sql/saved-queries.php:89 +#: views/student/shis.php:162 views/student/stac.php:91 +#: views/student/stac.php:137 +msgid "Delete" +msgstr "" + +#: views/admin/links.php:189 +msgid "Are you sure you want to delete this quick link?" +msgstr "" + +#: views/admin/news.php:21 +msgid "Add News" +msgstr "" + +#: views/admin/news.php:34 +msgid "Add News & Announcement" +msgstr "" + +#: views/admin/news.php:43 views/admin/pages.php:43 views/admin/pages.php:150 +#: views/calendar/view-event.php:194 views/course/atceq.php:87 +#: views/course/atceq.php:122 views/course/extr.php:65 +#: views/course/extr.php:178 views/course/vextr.php:104 +#: views/course/vtceq.php:52 views/course/vtceq.php:82 +#: views/courses/cart.php:37 views/courses/index.php:75 +#: views/financial/jentries.php:59 views/financial/journal-entries.php:54 +#: views/financial/view-jentry.php:53 views/hr/jobs.php:106 +#: views/hr/jobs.php:178 views/program/add.php:64 views/program/view.php:68 +#: views/section/add-assignment.php:63 views/section/assignments.php:45 +#: views/section/booking-info.php:416 views/section/catalog-pdf.php:52 +#: views/section/register.php:146 views/section/view-assignment.php:65 +#: views/staff/view.php:127 views/student/fgrades.php:38 +#: views/student/schedule.php:37 views/student/stac.php:60 +msgid "Title" +msgstr "" + +#: views/admin/news.php:47 views/admin/news.php:148 views/admin/pages.php:47 +#: views/admin/pages.php:154 +msgid "Details" +msgstr "" + +#: views/admin/news.php:54 views/admin/news.php:155 views/admin/pages.php:54 +#: views/admin/pages.php:161 +msgid "Draft" +msgstr "" + +#: views/admin/news.php:55 views/admin/news.php:156 views/admin/pages.php:55 +#: views/admin/pages.php:162 +msgid "Publish" +msgstr "" + +#: views/admin/news.php:84 views/admin/news.php:144 views/index/news.php:31 +msgid "News Title" +msgstr "" + +#: views/admin/news.php:85 views/admin/pages.php:91 +#: views/dashboard/modules.php:59 views/index/news.php:32 +msgid "Author" +msgstr "" + +#: views/admin/news.php:86 views/admin/pages.php:92 +#: views/mrkt/template/create.php:184 views/mrkt/template/index.php:44 +msgid "Created" +msgstr "" + +#: views/admin/news.php:87 views/admin/pages.php:93 +msgid "Last Modified" +msgstr "" + +#: views/admin/news.php:188 +msgid "Are you sure you want to delete this news posting?" +msgstr "" + +#: views/admin/pages.php:21 views/admin/pages.php:34 +msgid "Add Page" +msgstr "" + +#: views/admin/pages.php:90 +msgid "Page Title" +msgstr "" + +#: views/admin/pages.php:198 +msgid "Are you sure you want to delete this page?" +msgstr "" + +#: views/application/add-inst.php:19 views/application/add.php:19 +#: views/application/index.php:19 views/application/inst-attended.php:38 +#: views/application/inst.php:19 views/application/view-inst.php:19 +#: views/application/view.php:25 views/calendar/booking-form.php:53 +#: views/calendar/events.php:19 views/calendar/index.php:75 +#: views/calendar/requests.php:20 views/calendar/setting.php:19 +#: views/calendar/view-event.php:20 views/calendar/view-request.php:71 +#: views/course/add.php:27 views/course/addnl-info.php:25 +#: views/course/atceq.php:53 views/course/extr.php:24 views/course/index.php:18 +#: views/course/prrl.php:48 views/course/tceq.php:18 views/course/tcre.php:67 +#: views/course/vextr.php:24 views/course/view.php:25 views/course/vtceq.php:18 +#: views/cron/index.php:19 views/cron/new.php:39 views/cron/setting.php:19 +#: views/cron/view.php:39 views/dashboard/ftp.php:33 +#: views/dashboard/index.php:21 views/dashboard/install-module.php:18 +#: views/dashboard/modules.php:19 views/dashboard/sms.php:18 +#: views/dashboard/support.php:23 views/dashboard/system-snapshot.php:18 +#: views/error/audit.php:19 views/error/logs.php:20 +#: views/financial/account-history.php:23 views/financial/add-jentry.php:89 +#: views/financial/add-payment.php:38 views/financial/batch.php:30 +#: views/financial/billing-table.php:19 views/financial/btrl.php:19 +#: views/financial/create-bill.php:38 views/financial/gl-accounts.php:19 +#: views/financial/gl-filter.php:19 views/financial/index.php:19 +#: views/financial/issue-refund.php:38 views/financial/jentry-filter.php:19 +#: views/financial/journal-entries.php:19 views/financial/payment-plan.php:38 +#: views/financial/paypal.php:19 views/financial/view-bill.php:22 +#: views/financial/view-btbl.php:19 views/financial/view-comments.php:26 +#: views/financial/view-payments.php:26 views/financial/view-refunds.php:26 +#: views/form/acad-year.php:19 views/form/aclv.php:19 views/form/alst.php:34 +#: views/form/building.php:19 views/form/ccd.php:19 views/form/cip.php:19 +#: views/form/clas.php:32 views/form/clvr.php:34 views/form/degree.php:19 +#: views/form/department.php:19 views/form/grade-scale.php:19 +#: views/form/import.php:19 views/form/location.php:19 views/form/major.php:19 +#: views/form/minor.php:19 views/form/rest.php:19 views/form/room.php:19 +#: views/form/school.php:19 views/form/semester.php:19 +#: views/form/specialization.php:19 views/form/stld.php:33 +#: views/form/subject.php:19 views/form/term.php:19 +#: views/form/view-acad-year.php:19 views/form/view-aclv.php:19 +#: views/form/view-building.php:19 views/form/view-ccd.php:19 +#: views/form/view-cip.php:19 views/form/view-degree.php:19 +#: views/form/view-department.php:19 views/form/view-grade-scale.php:19 +#: views/form/view-location.php:19 views/form/view-major.php:19 +#: views/form/view-minor.php:19 views/form/view-rest.php:19 +#: views/form/view-room.php:19 views/form/view-school.php:19 +#: views/form/view-semester.php:19 views/form/view-specialization.php:19 +#: views/form/view-subject.php:19 views/form/view-term.php:19 +#: views/hr/add.php:20 views/hr/grades.php:19 views/hr/index.php:20 +#: views/hr/jobs.php:19 views/hr/positions.php:21 views/hr/timesheets.php:19 +#: views/hr/view-timesheet.php:20 views/hr/view.php:21 views/mrkt/bounce.php:18 +#: views/mrkt/campaign/bounced.php:18 views/mrkt/campaign/clicked.php:18 +#: views/mrkt/campaign/create.php:127 views/mrkt/campaign/opened.php:18 +#: views/mrkt/campaign/report.php:18 views/mrkt/campaign/view.php:127 +#: views/mrkt/index.php:34 views/mrkt/list/create.php:18 +#: views/mrkt/list/index.php:18 views/mrkt/list/view.php:18 +#: views/mrkt/mailmerge.php:19 views/mrkt/template/create.php:127 +#: views/mrkt/template/index.php:18 views/mrkt/template/view.php:127 +#: views/permission/add.php:20 views/permission/index.php:20 +#: views/permission/view.php:20 views/person/add.php:58 +#: views/person/addr-form.php:21 views/person/addr.php:21 +#: views/person/adsu.php:21 views/person/index.php:21 views/person/perc.php:28 +#: views/person/perms.php:20 views/person/role.php:20 views/person/view.php:22 +#: views/plugins/index.php:19 views/plugins/install.php:18 +#: views/program/add.php:19 views/program/index.php:18 +#: views/program/view.php:19 views/rlde/add.php:25 views/rlde/index.php:19 +#: views/rlde/view.php:25 views/role/add.php:19 views/role/index.php:20 +#: views/role/view.php:20 views/section/add-assignment.php:18 +#: views/section/add.php:43 views/section/addnl-info.php:18 +#: views/section/assignments.php:18 views/section/attendance-report.php:18 +#: views/section/attendance.php:63 views/section/batch-register.php:35 +#: views/section/billing-info.php:18 views/section/booking-info.php:52 +#: views/section/catalog.php:18 views/section/courses.php:18 +#: views/section/export-grades.php:18 views/section/final-grade.php:18 +#: views/section/gradebook.php:18 views/section/grading.php:18 +#: views/section/index.php:18 views/section/offering-info.php:18 +#: views/section/register.php:65 views/section/rrsr.php:33 +#: views/section/section-fgrade.php:19 views/section/sros.php:36 +#: views/section/students.php:63 views/section/timetable.php:74 +#: views/section/view-assignment.php:18 views/section/view.php:42 +#: views/setting/email.php:20 views/setting/index.php:21 +#: views/setting/registration.php:20 views/setting/sms.php:20 +#: views/setting/templates.php:136 views/sql/add-query.php:30 +#: views/sql/csv-email.php:19 views/sql/index.php:45 +#: views/sql/saved-queries.php:19 views/sql/view-query.php:30 +#: views/staff/add.php:19 views/staff/file-manager.php:33 +#: views/staff/index.php:19 views/staff/timesheets.php:19 +#: views/staff/view-timesheet.php:19 views/staff/view.php:21 +#: views/student/add-prog.php:38 views/student/add.php:39 +#: views/student/graduation.php:36 views/student/index.php:18 +#: views/student/sacd.php:19 views/student/sacp.php:25 +#: views/student/shis.php:27 views/student/stac.php:19 +#: views/student/stal.php:19 views/student/sttr.php:19 +#: views/student/tran.php:37 views/student/view.php:22 +msgid "You are here" +msgstr "" + +#: views/application/add-inst.php:22 views/application/view-inst.php:22 +msgid "Search Institution" +msgstr "" + +#: views/application/add-inst.php:24 views/application/add-inst.php:27 +msgid "Add Institution" +msgstr "" + +#: views/application/add-inst.php:56 views/application/inst.php:59 +#: views/application/view-inst.php:56 +msgid "FICE/CEEB Code" +msgstr "" + +#: views/application/add-inst.php:63 views/application/view-inst.php:63 +#: views/financial/billing-table.php:70 views/financial/gl-accounts.php:58 +#: views/financial/gl-summary.php:59 views/financial/view-btbl.php:72 +#: views/person/adsu.php:86 +msgid "Type" +msgstr "" + +#: views/application/add-inst.php:67 +msgid "High School" +msgstr "" + +#: views/application/add-inst.php:68 +msgid "College" +msgstr "" + +#: views/application/add-inst.php:69 +msgid "University" +msgstr "" + +#: views/application/add-inst.php:77 views/application/inst.php:61 +#: views/application/view-inst.php:77 views/setting/index.php:67 +msgid "Institution Name" +msgstr "" + +#: views/application/add-inst.php:90 views/application/view-inst.php:90 +#: views/form/address.php:45 views/index/apply.php:83 +#: views/index/profile.php:97 views/person/add.php:229 +#: views/person/addr-form.php:92 views/person/addr.php:96 +#: views/person/view.php:185 +msgid "City" +msgstr "" + +#: views/application/add-inst.php:97 views/application/view-inst.php:97 +#: views/form/address.php:49 views/index/apply.php:113 +#: views/index/profile.php:101 views/person/add.php:233 +#: views/person/addr-form.php:96 views/person/addr.php:100 +#: views/person/view.php:189 +msgid "State" +msgstr "" + +#: views/application/add-inst.php:109 views/application/view-inst.php:104 +#: views/form/address.php:64 views/index/apply.php:120 views/person/add.php:244 +#: views/person/addr-form.php:107 views/person/addr.php:111 +#: views/person/view.php:197 +msgid "Country" +msgstr "" + #: views/application/add.php:22 views/application/index.php:25 #: views/application/inst-attended.php:41 views/application/view.php:28 msgid "Search Application" @@ -1775,6 +2619,7 @@ msgid "Permanent Address" msgstr "" #: views/application/add.php:90 views/application/view.php:96 +#: views/index/apply.php:125 msgid "DOB" msgstr "" @@ -1783,8 +2628,8 @@ msgid "Age" msgstr "" #: views/application/add.php:118 views/application/view.php:128 -#: views/index/profile.php:77 views/person/add.php:141 -#: views/person/view.php:117 +#: views/index/apply.php:154 views/index/profile.php:77 +#: views/person/add.php:141 views/person/view.php:117 msgid "Gender" msgstr "" @@ -1804,19 +2649,21 @@ msgstr "" #: views/application/add.php:171 views/application/appls.php:33 #: views/application/appls.php:69 views/application/view.php:194 #: views/dashboard/core-admin-bar.php:158 views/dashboard/menu.php:243 -#: views/student/stal.php:24 views/student/view.php:69 +#: views/financial/batch.php:93 views/form/import.php:93 +#: views/index/apply.php:164 views/student/stal.php:24 +#: views/student/view.php:69 msgid "Academic Program" msgstr "" #: views/application/add.php:183 views/application/appls.php:34 #: views/application/appls.php:65 views/application/index.php:63 -#: views/application/view.php:206 views/student/add.php:160 -#: views/student/stal.php:118 +#: views/application/view.php:206 views/index/apply.php:85 +#: views/student/add.php:160 views/student/stal.php:118 msgid "Start Term" msgstr "" #: views/application/add.php:195 views/application/view.php:218 -#: views/student/view.php:73 +#: views/index/apply.php:169 views/student/view.php:73 msgid "Admit Status" msgstr "" @@ -1836,66 +2683,22 @@ msgstr "" msgid "My Applications" msgstr "" -#: views/application/appls.php:35 views/course/index.php:60 -#: views/course/view.php:202 views/cron/index.php:60 views/cron/new.php:139 -#: views/cron/view.php:139 views/form/grade-scale.php:166 -#: views/form/semester.php:158 views/form/term.php:175 views/hr/view.php:302 -#: views/person/addr-form.php:140 views/person/addr.php:148 -#: views/person/adsu.php:81 views/person/view.php:236 -#: views/program/index.php:60 views/section/index.php:61 -#: views/staff/add.php:210 views/staff/view.php:199 -#: views/student/add-prog.php:98 views/student/add.php:193 -#: views/student/sacd.php:208 views/student/sacp.php:143 -#: views/student/stac.php:61 views/student/view.php:71 -#: views/student/view.php:125 -msgid "Status" -msgstr "" - -#: views/application/appls.php:36 views/application/index.php:64 -#: views/application/index.php:79 views/application/inst.php:62 -#: views/application/inst.php:76 views/course/index.php:63 -#: views/course/index.php:79 views/form/acad-year.php:101 -#: views/form/acad-year.php:114 views/form/aclv.php:148 views/form/aclv.php:161 -#: views/form/alst.php:74 views/form/building.php:117 -#: views/form/building.php:130 views/form/ccd.php:101 views/form/ccd.php:114 -#: views/form/cip.php:99 views/form/cip.php:112 views/form/clas.php:65 -#: views/form/clvr.php:74 views/form/degree.php:99 views/form/degree.php:112 -#: views/form/department.php:140 views/form/department.php:156 -#: views/form/grade-scale.php:167 views/form/location.php:101 -#: views/form/location.php:114 views/form/major.php:101 -#: views/form/major.php:114 views/form/minor.php:101 views/form/minor.php:114 -#: views/form/rest.php:112 views/form/rest.php:126 views/form/room.php:127 -#: views/form/room.php:141 views/form/school.php:115 views/form/school.php:129 -#: views/form/semester.php:159 views/form/semester.php:174 -#: views/form/specialization.php:101 views/form/specialization.php:114 -#: views/form/stld.php:73 views/form/subject.php:101 views/form/subject.php:114 -#: views/form/term.php:176 views/form/term.php:192 views/hr/grades.php:48 -#: views/hr/index.php:66 views/hr/index.php:82 views/hr/jobs.php:49 -#: views/hr/positions.php:115 views/person/index.php:66 -#: views/person/index.php:81 views/program/index.php:63 -#: views/program/index.php:79 views/rlde/index.php:52 views/rlde/index.php:67 -#: views/section/catalog.php:45 views/section/catalog.php:59 -#: views/section/index.php:63 views/section/index.php:79 -#: views/section/rrsr.php:83 views/setting/templates.php:174 -#: views/staff/index.php:64 views/staff/index.php:79 views/student/index.php:61 -#: views/student/index.php:76 views/student/shis.php:69 -#: views/student/stac.php:66 views/student/stac.php:84 -msgid "Actions" -msgstr "" - #: views/application/appls.php:49 views/application/index.php:85 -#: views/application/inst.php:82 views/course/index.php:85 -#: views/form/acad-year.php:120 views/form/aclv.php:167 -#: views/form/building.php:136 views/form/ccd.php:120 views/form/cip.php:118 -#: views/form/degree.php:118 views/form/department.php:162 -#: views/form/location.php:120 views/form/major.php:120 -#: views/form/minor.php:120 views/form/rest.php:132 views/form/room.php:147 -#: views/form/school.php:135 views/form/semester.php:180 -#: views/form/specialization.php:120 views/form/subject.php:120 -#: views/form/term.php:198 views/hr/index.php:88 views/person/index.php:87 -#: views/program/index.php:85 views/rlde/index.php:73 -#: views/section/index.php:85 views/staff/index.php:85 -#: views/student/index.php:82 +#: views/application/inst.php:82 views/course/extr.php:93 +#: views/course/index.php:85 views/course/tceq.php:85 +#: views/financial/index.php:85 views/financial/journal-entries.php:81 +#: views/financial/payment-plan.php:226 views/form/acad-year.php:120 +#: views/form/aclv.php:167 views/form/building.php:136 views/form/ccd.php:120 +#: views/form/cip.php:118 views/form/degree.php:118 +#: views/form/department.php:162 views/form/location.php:120 +#: views/form/major.php:120 views/form/minor.php:120 views/form/rest.php:132 +#: views/form/room.php:147 views/form/school.php:135 +#: views/form/semester.php:180 views/form/specialization.php:120 +#: views/form/subject.php:120 views/form/term.php:198 views/hr/index.php:88 +#: views/person/index.php:87 views/program/index.php:85 views/rlde/index.php:73 +#: views/section/assignments.php:67 views/section/index.php:85 +#: views/staff/index.php:85 views/staff/timesheets.php:68 +#: views/student/bill.php:58 views/student/index.php:82 msgid "View" msgstr "" @@ -1903,31 +2706,37 @@ msgstr "" msgid "Admission Status" msgstr "" -#: views/application/appls.php:77 +#: views/application/appls.php:77 views/index/apply.php:90 msgid "PSAT Verbal" msgstr "" -#: views/application/appls.php:81 +#: views/application/appls.php:81 views/index/apply.php:171 msgid "PSAT Math" msgstr "" -#: views/application/appls.php:85 +#: views/application/appls.php:85 views/index/apply.php:92 msgid "SAT Verbal" msgstr "" -#: views/application/appls.php:89 +#: views/application/appls.php:89 views/index/apply.php:173 msgid "SAT Math" msgstr "" -#: views/application/appls.php:93 +#: views/application/appls.php:93 views/index/apply.php:94 msgid "ACT English" msgstr "" -#: views/application/appls.php:97 +#: views/application/appls.php:97 views/index/apply.php:175 msgid "ACT Math" msgstr "" -#: views/application/appls.php:111 views/person/perc.php:64 +#: views/application/appls.php:111 views/course/extr.php:223 +#: views/course/extr.php:232 views/course/vextr.php:149 +#: views/course/vextr.php:158 views/financial/create-bill.php:194 +#: views/financial/payment-plan.php:154 views/financial/payment-plan.php:306 +#: views/financial/payment-plan.php:400 views/financial/view-bill.php:52 +#: views/financial/view-comments.php:56 views/financial/view-payments.php:56 +#: views/financial/view-refunds.php:56 views/person/perc.php:64 #: views/person/perc.php:105 views/person/perc.php:162 #: views/section/add.php:344 views/section/view.php:271 #: views/student/sacp.php:189 views/student/sacp.php:198 @@ -1937,7 +2746,8 @@ msgid "Comments" msgstr "" #: views/application/index.php:22 views/dashboard/core-admin-bar.php:256 -#: views/dashboard/menu.php:365 views/setting/index.php:138 +#: views/dashboard/menu.php:365 views/form/import.php:99 +#: views/setting/index.php:138 msgid "Application" msgstr "" @@ -1947,30 +2757,18 @@ msgstr "" msgid "Image" msgstr "" -#: views/application/index.php:62 views/form/aclv.php:147 -#: views/form/department.php:136 views/hr/index.php:63 +#: views/application/index.php:62 views/financial/billing-table.php:54 +#: views/financial/billing-table.php:144 views/financial/gl-accounts.php:57 +#: views/financial/payment-plan.php:198 views/financial/view-btbl.php:56 +#: views/form/aclv.php:147 views/form/department.php:136 views/hr/index.php:63 +#: views/mrkt/list/index.php:44 views/mrkt/template/create.php:166 +#: views/mrkt/template/index.php:43 views/mrkt/template/view.php:166 #: views/permission/add.php:57 views/permission/index.php:45 #: views/permission/view.php:57 views/role/index.php:44 #: views/section/templates/roster/default.template.php:84 msgid "Name" msgstr "" -#: views/application/index.php:82 views/application/inst.php:79 -#: views/course/index.php:82 views/form/acad-year.php:117 -#: views/form/aclv.php:164 views/form/building.php:133 views/form/ccd.php:117 -#: views/form/cip.php:115 views/form/degree.php:115 -#: views/form/department.php:159 views/form/location.php:117 -#: views/form/major.php:117 views/form/minor.php:117 views/form/rest.php:129 -#: views/form/room.php:144 views/form/school.php:132 -#: views/form/semester.php:177 views/form/specialization.php:117 -#: views/form/subject.php:117 views/form/term.php:195 views/hr/index.php:85 -#: views/person/index.php:84 views/program/index.php:82 views/rlde/index.php:70 -#: views/section/catalog.php:62 views/section/index.php:82 -#: views/staff/index.php:82 views/student/index.php:79 -#: views/student/stac.php:87 -msgid "Toggle Dropdown" -msgstr "" - #: views/application/index.php:87 msgid "Create Student" msgstr "" @@ -1982,6 +2780,7 @@ msgstr "" #: views/application/inst-attended.php:43 #: views/application/inst-attended.php:46 #: views/dashboard/core-admin-bar.php:259 views/dashboard/menu.php:368 +#: views/form/import.php:101 msgid "Institution Attended" msgstr "" @@ -1991,7 +2790,10 @@ msgstr "" #: views/application/inst-attended.php:85 views/application/inst.php:22 #: views/application/inst.php:25 views/application/view.php:378 +#: views/course/extr.php:66 views/course/extr.php:133 views/course/vextr.php:60 #: views/dashboard/core-admin-bar.php:200 views/dashboard/menu.php:342 +#: views/financial/account-history.php:62 views/financial/ah-pdf.php:75 +#: views/form/import.php:100 views/student/account-history.php:51 msgid "Institution" msgstr "" @@ -2004,9 +2806,11 @@ msgid "Attend To Date" msgstr "" #: views/application/inst-attended.php:127 views/application/view.php:381 -#: views/form/major.php:22 views/form/major.php:25 views/form/view-major.php:22 -#: views/program/add.php:212 views/program/ajax.php:496 -#: views/program/view.php:217 views/student/add.php:103 +#: views/financial/batch.php:81 views/financial/batch.php:105 +#: views/form/import.php:82 views/form/major.php:22 views/form/major.php:25 +#: views/form/view-major.php:22 views/program/add.php:212 +#: views/program/ajax.php:496 views/program/view.php:217 +#: views/student/add.php:103 #: views/student/templates/transcript/default.template.php:166 msgid "Major" msgstr "" @@ -2017,7 +2821,7 @@ msgid "GPA" msgstr "" #: views/application/inst-attended.php:145 views/application/view.php:383 -#: views/form/degree.php:22 views/form/degree.php:25 +#: views/form/degree.php:22 views/form/degree.php:25 views/form/import.php:81 #: views/form/view-degree.php:22 views/program/add.php:186 #: views/program/ajax.php:303 views/program/view.php:191 #: views/student/templates/transcript/default.template.php:165 @@ -2052,8 +2856,10 @@ msgstr "" msgid "View Application" msgstr "" -#: views/application/view.php:155 views/index/login.php:117 -#: views/index/profile.php:33 views/person/add.php:89 views/person/view.php:69 +#: views/application/view.php:155 views/error/audit.php:43 +#: views/index/apply.php:43 views/index/login.php:117 +#: views/index/profile.php:33 views/mrkt/bounce.php:63 views/person/add.php:89 +#: views/person/view.php:69 msgid "Username" msgstr "" @@ -2061,7 +2867,7 @@ msgstr "" msgid "Application Status" msgstr "" -#: views/application/view.php:231 +#: views/application/view.php:231 views/hr/view-timesheet.php:122 msgid "Pending" msgstr "" @@ -2082,7 +2888,8 @@ msgstr "" msgid "Applicant Comments" msgstr "" -#: views/application/view.php:304 +#: views/application/view.php:304 views/financial/view-bill.php:236 +#: views/financial/view-comments.php:114 msgid "Staff Comments" msgstr "" @@ -2103,158 +2910,457 @@ msgid "Grad Date" msgstr "" #: views/application/view.php:385 views/courses/cart.php:42 -#: views/cron/index.php:61 views/plugins/index.php:42 +#: views/cron/index.php:61 views/error/audit.php:40 +#: views/financial/billing-table.php:149 views/hr/timesheets.php:45 +#: views/mrkt/index.php:62 views/mrkt/list/index.php:47 +#: views/mrkt/template/index.php:45 views/plugins/index.php:42 +#: views/staff/timesheets.php:48 msgid "Action" msgstr "" -#: views/application/view.php:495 views/course/add.php:233 -#: views/course/addnl-info.php:116 views/course/view.php:297 -#: views/cron/new.php:162 views/cron/setting.php:96 views/cron/view.php:161 -#: views/form/aclv.php:123 views/form/alst.php:170 views/form/building.php:94 -#: views/form/ccd.php:76 views/form/cip.php:76 views/form/clas.php:114 -#: views/form/clvr.php:168 views/form/degree.php:76 -#: views/form/department.php:112 views/form/grade-scale.php:115 -#: views/form/location.php:76 views/form/major.php:76 views/form/minor.php:76 -#: views/form/rest.php:86 views/form/room.php:101 -#: views/form/specialization.php:76 views/form/stld.php:175 -#: views/form/subject.php:76 views/form/term.php:148 -#: views/form/view-acad-year.php:78 views/form/view-aclv.php:193 -#: views/form/view-building.php:96 views/form/view-ccd.php:78 -#: views/form/view-cip.php:78 views/form/view-clas.php:105 -#: views/form/view-degree.php:78 views/form/view-department.php:114 -#: views/form/view-grade-scale.php:117 views/form/view-location.php:78 -#: views/form/view-major.php:78 views/form/view-minor.php:78 -#: views/form/view-rest.php:88 views/form/view-room.php:103 -#: views/form/view-school.php:90 views/form/view-semester.php:132 -#: views/form/view-specialization.php:78 views/form/view-subject.php:78 -#: views/form/view-term.php:150 views/hr/add.php:226 views/hr/view.php:350 -#: views/index/index.php:96 views/permission/add.php:79 -#: views/permission/view.php:79 views/person/add.php:375 -#: views/person/addr-form.php:222 views/person/addr.php:230 -#: views/person/perc.php:141 views/person/perms.php:70 views/person/role.php:85 -#: views/person/view.php:345 views/program/add.php:306 -#: views/program/view.php:313 views/rlde/add.php:148 views/role/view.php:81 -#: views/section/add.php:362 views/section/addnl-info.php:136 -#: views/section/offering-info.php:180 views/section/rrsr.php:169 -#: views/section/view.php:298 views/setting/email.php:126 -#: views/setting/index.php:321 views/setting/registration.php:153 -#: views/setting/sms.php:113 views/staff/add.php:248 views/staff/view.php:264 -#: views/student/add-prog.php:186 views/student/add.php:253 -#: views/student/sacd.php:243 views/student/sacp.php:250 -#: views/student/shis.php:185 views/student/stal.php:158 -#: views/student/view.php:147 -msgid "Save" -msgstr "" - #: views/application/view.php:519 msgid "These comments will be shown to the applicant in myetSIS." msgstr "" -#: views/course/add.php:30 views/course/addnl-info.php:28 -#: views/course/view.php:28 -msgid "Search Course" +#: views/calendar/booking-form.php:56 views/calendar/events.php:22 +#: views/calendar/index.php:78 views/calendar/index.php:81 +#: views/calendar/requests.php:23 views/calendar/setting.php:22 +#: views/calendar/view-event.php:23 views/calendar/view-request.php:74 +#: views/dashboard/core-admin-bar.php:120 views/dashboard/menu.php:122 +msgid "Events Calendar" msgstr "" -#: views/course/add.php:32 -msgid "Create Course" +#: views/calendar/booking-form.php:58 views/calendar/booking-form.php:61 +msgid "Room / Event Booking Form" msgstr "" -#: views/course/add.php:35 -msgid "Add Course" +#: views/calendar/booking-form.php:75 +msgid "" +"It is recommended that you check the availability of a room before " +"submitting the form. An email will be sent to the requestor confirming the " +"booking of a room or event." msgstr "" -#: views/course/add.php:50 views/course/addnl-info.php:50 -#: views/course/view.php:53 views/cron/new.php:70 views/cron/setting.php:50 -#: views/cron/view.php:70 views/dashboard/install-module.php:56 -#: views/dashboard/sms.php:39 views/form/aclv.php:44 views/form/building.php:40 -#: views/form/ccd.php:40 views/form/cip.php:40 views/form/degree.php:40 -#: views/form/department.php:40 views/form/grade-scale.php:40 -#: views/form/location.php:40 views/form/major.php:40 views/form/minor.php:40 -#: views/form/rest.php:40 views/form/room.php:40 -#: views/form/specialization.php:40 views/form/subject.php:40 -#: views/form/term.php:40 views/form/view-aclv.php:46 -#: views/form/view-building.php:42 views/form/view-ccd.php:42 -#: views/form/view-cip.php:42 views/form/view-clas.php:42 -#: views/form/view-degree.php:42 views/form/view-department.php:42 -#: views/form/view-grade-scale.php:42 views/form/view-location.php:42 -#: views/form/view-major.php:42 views/form/view-minor.php:42 -#: views/form/view-rest.php:42 views/form/view-room.php:42 -#: views/form/view-specialization.php:42 views/form/view-subject.php:42 -#: views/form/view-term.php:42 views/hr/add.php:92 views/hr/view.php:93 -#: views/permission/add.php:43 views/permission/view.php:43 -#: views/person/add.php:79 views/person/addr-form.php:48 -#: views/person/addr.php:52 views/person/view.php:55 -#: views/plugins/install.php:54 views/program/add.php:42 -#: views/program/view.php:46 views/rlde/add.php:54 views/rlde/index.php:37 -#: views/rlde/view.php:56 views/role/add.php:42 views/role/view.php:43 -#: views/section/add.php:66 views/section/addnl-info.php:43 -#: views/section/offering-info.php:43 views/section/register.php:86 -#: views/section/sros.php:57 views/section/view.php:65 -#: views/setting/email.php:41 views/setting/index.php:42 -#: views/setting/registration.php:41 views/setting/sms.php:46 -#: views/sql/index.php:79 views/staff/add.php:40 views/staff/view.php:93 -#: views/student/add-prog.php:64 views/student/add.php:60 -#: views/student/graduation.php:57 views/student/sacp.php:51 -#: views/student/tran.php:58 -msgid "Indicates field is required" +#: views/calendar/booking-form.php:95 views/calendar/events.php:48 +#: views/calendar/requests.php:49 views/calendar/view-request.php:113 +msgid "Requestor" msgstr "" -#: views/course/add.php:63 views/course/ajax.php:66 views/course/view.php:66 -#: views/form/department.php:22 views/form/department.php:25 -#: views/form/rest.php:67 views/form/rest.php:111 -#: views/form/view-department.php:22 views/form/view-rest.php:69 -#: views/hr/index.php:64 views/hr/view.php:211 views/person/perc.php:63 -#: views/program/add.php:113 views/program/ajax.php:74 -#: views/program/view.php:117 views/rlde/add.php:82 views/rlde/index.php:49 -#: views/rlde/view.php:84 views/section/add.php:119 views/section/ajax.php:66 -#: views/section/view.php:132 views/staff/add.php:162 views/staff/view.php:181 -#: views/student/sacd.php:117 -msgid "Department" +#: views/calendar/booking-form.php:107 views/calendar/request-form.php:83 +#: views/calendar/view-request.php:125 views/form/request-form.php:83 +msgid "Request Type" msgstr "" -#: views/course/add.php:76 views/course/ajax.php:192 views/course/view.php:79 -#: views/form/subject.php:22 views/form/subject.php:25 -#: views/form/view-subject.php:22 views/student/sacd.php:87 -msgid "Subject" +#: views/calendar/booking-form.php:111 views/calendar/request-form.php:86 +#: views/calendar/view-request.php:129 views/form/request-form.php:86 +msgid "Meeting" msgstr "" -#: views/course/add.php:89 views/course/view.php:101 views/section/add.php:145 -#: views/section/view.php:157 -msgid "Course Level" +#: views/calendar/booking-form.php:112 views/calendar/request-form.php:87 +#: views/calendar/view-request.php:130 views/form/request-form.php:87 +msgid "Event" msgstr "" -#: views/course/add.php:101 views/course/index.php:59 views/course/view.php:113 -#: views/section/add.php:169 views/section/index.php:60 -#: views/section/view.php:181 views/student/sacd.php:69 -msgid "Short Title" +#: views/calendar/booking-form.php:120 views/calendar/events.php:46 +#: views/calendar/request-form.php:91 views/calendar/requests.php:47 +#: views/calendar/setting.php:61 views/calendar/setting.php:91 +#: views/calendar/view-request.php:138 views/form/request-form.php:91 +msgid "Category" msgstr "" -#: views/course/add.php:108 views/course/view.php:122 views/student/sacd.php:78 -msgid "Long Title" +#: views/calendar/booking-form.php:132 views/calendar/events.php:44 +#: views/calendar/request-form.php:98 views/calendar/requests.php:45 +#: views/calendar/view-request.php:150 views/form/request-form.php:98 +msgid "Event Name" msgstr "" -#: views/course/add.php:115 views/course/view.php:92 -msgid "Course Number" +#: views/calendar/booking-form.php:141 views/calendar/request-form.php:102 +#: views/calendar/view-event.php:203 views/calendar/view-request.php:159 +#: views/dashboard/modules.php:58 views/financial/account-history.php:90 +#: views/financial/add-jentry.php:169 views/financial/ah-pdf.php:103 +#: views/financial/jentries.php:60 views/financial/journal-entries.php:55 +#: views/financial/view-jentry.php:62 views/form/department.php:139 +#: views/form/request-form.php:102 views/form/rest.php:61 +#: views/form/rest.php:110 views/form/view-rest.php:63 +#: views/plugins/index.php:41 views/rlde/add.php:68 views/rlde/index.php:51 +#: views/rlde/view.php:70 views/section/booking-info.php:425 +#: views/setting/templates.php:173 views/student/account-history.php:79 +msgid "Description" msgstr "" -#: views/course/add.php:140 views/course/view.php:143 views/program/add.php:167 -#: views/program/view.php:172 -msgid "Effective / End Date" +#: views/calendar/booking-form.php:150 views/calendar/events.php:47 +#: views/calendar/request-form.php:106 views/calendar/requests.php:48 +#: views/calendar/view-event.php:49 views/calendar/view-event.php:103 +#: views/calendar/view-event.php:134 views/calendar/view-request.php:168 +#: views/form/import.php:89 views/form/request-form.php:106 +#: views/form/room.php:22 views/form/room.php:25 views/form/view-room.php:22 +#: views/section/booking-info.php:356 views/section/catalog-pdf.php:59 +#: views/student/schedule.php:39 +msgid "Room" msgstr "" -#: views/course/add.php:159 views/course/view.php:181 views/courses/cart.php:40 -#: views/courses/index.php:79 views/section/catalog-pdf.php:54 -#: views/section/register.php:155 views/student/stac.php:62 -msgid "Credits" +#: views/calendar/booking-form.php:168 views/calendar/request-form.php:120 +#: views/calendar/view-request.php:186 views/form/request-form.php:120 +#: views/section/booking-info.php:162 +msgid "First Day" msgstr "" -#: views/course/add.php:178 views/program/add.php:82 views/program/view.php:86 -#: views/section/add.php:313 views/section/view.php:230 +#: views/calendar/booking-form.php:180 views/calendar/request-form.php:113 +#: views/calendar/view-request.php:198 views/form/request-form.php:113 +#: views/section/booking-info.php:180 +msgid "Last Day" +msgstr "" + +#: views/calendar/booking-form.php:192 views/calendar/request-form.php:134 +#: views/calendar/view-event.php:158 views/calendar/view-request.php:210 +#: views/form/request-form.php:134 views/hr/view-timesheet.php:97 +#: views/hr/view-timesheet.php:204 views/section/add.php:266 +#: views/section/booking-info.php:192 views/section/booking-info.php:380 +#: views/section/offering-info.php:136 views/staff/timesheets.php:136 +#: views/staff/view-timesheet.php:48 views/staff/view-timesheet.php:131 +msgid "Start Time" +msgstr "" + +#: views/calendar/booking-form.php:204 views/calendar/request-form.php:127 +#: views/calendar/view-event.php:182 views/calendar/view-request.php:222 +#: views/form/request-form.php:127 views/hr/view-timesheet.php:98 +#: views/hr/view-timesheet.php:216 views/section/add.php:278 +#: views/section/booking-info.php:204 views/section/booking-info.php:404 +#: views/section/offering-info.php:148 views/staff/timesheets.php:148 +#: views/staff/view-timesheet.php:49 views/staff/view-timesheet.php:143 +msgid "End Time" +msgstr "" + +#: views/calendar/booking-form.php:216 views/calendar/request-form.php:141 +#: views/calendar/view-request.php:234 views/form/request-form.php:141 +#: views/section/booking-info.php:216 +msgid "Repeat?" +msgstr "" + +#: views/calendar/booking-form.php:225 views/calendar/request-form.php:147 +#: views/calendar/view-request.php:243 views/form/request-form.php:147 +#: views/section/booking-info.php:225 +msgid "Repeat Occurrence" +msgstr "" + +#: views/calendar/booking-form.php:228 views/calendar/request-form.php:149 +#: views/calendar/view-request.php:246 views/form/request-form.php:149 +#: views/section/booking-info.php:228 +msgid "Every Day" +msgstr "" + +#: views/calendar/booking-form.php:231 views/calendar/request-form.php:152 +#: views/calendar/view-request.php:249 views/financial/payment-plan.php:97 +#: views/financial/payment-plan.php:264 views/form/request-form.php:152 +#: views/section/booking-info.php:231 +msgid "Weekly" +msgstr "" + +#: views/calendar/booking-form.php:234 views/calendar/request-form.php:155 +#: views/calendar/view-request.php:252 views/form/request-form.php:155 +#: views/section/booking-info.php:234 +msgid "Biweekly" +msgstr "" + +#: views/calendar/booking-form.php:250 views/calendar/request-form.php:163 +#: views/calendar/view-request.php:269 views/form/request-form.php:163 +#: views/section/booking-info.php:253 +msgid "Check Availability" +msgstr "" + +#: views/calendar/booking-form.php:251 views/calendar/view-request.php:270 +msgid "Book It" +msgstr "" + +#: views/calendar/events.php:24 views/calendar/events.php:27 +#: views/calendar/view-event.php:25 +msgid "Events List" +msgstr "" + +#: views/calendar/events.php:45 views/calendar/requests.php:46 +msgid "Event Type" +msgstr "" + +#: views/calendar/events.php:49 views/calendar/requests.php:50 +#: views/calendar/view-event.php:101 views/section/booking-info.php:323 +msgid "Start Date/Time" +msgstr "" + +#: views/calendar/index.php:95 views/section/timetable.php:95 +#: views/student/timetable.php:89 +msgid "Month" +msgstr "" + +#: views/calendar/index.php:96 views/section/timetable.php:96 +#: views/student/timetable.php:90 +msgid "Week" +msgstr "" + +#: views/calendar/index.php:97 views/section/timetable.php:97 +#: views/student/timetable.php:91 +msgid "Day" +msgstr "" + +#: views/calendar/index.php:98 views/section/timetable.php:98 +#: views/student/timetable.php:92 +msgid "Today" +msgstr "" + +#: views/calendar/request-form.php:55 views/form/request-form.php:55 +msgid "Room/Event Request Form" +msgstr "" + +#: views/calendar/request-form.php:69 views/form/request-form.php:69 +msgid "" +"It is recommended that you check the availability of your request before " +"submitting the form. Once the form is submitted, an email will be sent to " +"the room scheduler. If there are no issues, when the room scheduler approves " +"your request, you will receive a confirmation email." +msgstr "" + +#: views/calendar/request-form.php:164 views/dashboard/sms.php:92 +#: views/form/request-form.php:164 views/index/login.php:147 +#: views/mrkt/campaign/view.php:336 views/sql/csv-email.php:105 +msgid "Send" +msgstr "" + +#: views/calendar/requests.php:25 views/calendar/requests.php:28 +#: views/dashboard/core-admin-bar.php:125 views/dashboard/menu.php:128 +msgid "Pending Requests" +msgstr "" + +#: views/calendar/requests.php:81 +msgid "Are you sure you want to delete this booking request?" +msgstr "" + +#: views/calendar/setting.php:24 views/calendar/setting.php:27 +msgid "Room Request Settings" +msgstr "" + +#: views/calendar/setting.php:37 +msgid "" +"If you would like to change the background colors, please refer to the online color picker." +msgstr "" + +#: views/calendar/setting.php:47 views/course/add.php:50 +#: views/course/addnl-info.php:50 views/course/atceq.php:74 +#: views/course/extr.php:120 views/course/tcre.php:88 views/course/vextr.php:47 +#: views/course/view.php:53 views/course/vtceq.php:39 views/cron/new.php:70 +#: views/cron/setting.php:50 views/cron/view.php:70 +#: views/dashboard/install-module.php:56 views/dashboard/sms.php:39 +#: views/financial/add-jentry.php:120 views/financial/add-payment.php:57 +#: views/financial/batch.php:49 views/financial/billing-table.php:40 +#: views/financial/create-bill.php:57 views/financial/issue-refund.php:57 +#: views/financial/payment-plan.php:57 views/financial/paypal.php:40 +#: views/financial/view-btbl.php:42 views/form/aclv.php:44 +#: views/form/building.php:40 views/form/ccd.php:40 views/form/cip.php:40 +#: views/form/degree.php:40 views/form/department.php:40 +#: views/form/grade-scale.php:40 views/form/import.php:40 +#: views/form/location.php:40 views/form/major.php:40 views/form/minor.php:40 +#: views/form/rest.php:40 views/form/room.php:40 +#: views/form/specialization.php:40 views/form/subject.php:40 +#: views/form/term.php:40 views/form/view-aclv.php:46 +#: views/form/view-building.php:42 views/form/view-ccd.php:42 +#: views/form/view-cip.php:42 views/form/view-degree.php:42 +#: views/form/view-department.php:42 views/form/view-grade-scale.php:42 +#: views/form/view-location.php:42 views/form/view-major.php:42 +#: views/form/view-minor.php:42 views/form/view-rest.php:42 +#: views/form/view-room.php:42 views/form/view-specialization.php:42 +#: views/form/view-subject.php:42 views/form/view-term.php:42 +#: views/hr/add.php:92 views/hr/view.php:93 views/mrkt/bounce.php:41 +#: views/mrkt/campaign/create.php:150 views/mrkt/campaign/view.php:150 +#: views/mrkt/list/create.php:43 views/mrkt/list/view.php:43 +#: views/mrkt/mailmerge.php:40 views/mrkt/template/create.php:152 +#: views/mrkt/template/view.php:152 views/permission/add.php:43 +#: views/permission/view.php:43 views/person/add.php:79 +#: views/person/addr-form.php:48 views/person/addr.php:52 +#: views/person/view.php:55 views/plugins/install.php:54 +#: views/program/add.php:42 views/program/view.php:46 views/rlde/add.php:54 +#: views/rlde/index.php:37 views/rlde/view.php:56 views/role/add.php:42 +#: views/role/view.php:43 views/section/add-assignment.php:41 +#: views/section/add.php:66 views/section/addnl-info.php:43 +#: views/section/batch-register.php:56 views/section/offering-info.php:43 +#: views/section/register.php:86 views/section/sros.php:57 +#: views/section/view-assignment.php:43 views/section/view.php:65 +#: views/setting/email.php:41 views/setting/index.php:42 +#: views/setting/registration.php:41 views/setting/sms.php:46 +#: views/sql/add-query.php:53 views/sql/csv-email.php:40 views/sql/index.php:79 +#: views/sql/view-query.php:53 views/staff/add.php:40 views/staff/view.php:93 +#: views/student/add-prog.php:64 views/student/add.php:60 +#: views/student/graduation.php:57 views/student/sacp.php:51 +#: views/student/tran.php:58 +msgid "Indicates field is required" +msgstr "" + +#: views/calendar/setting.php:62 views/calendar/setting.php:100 +msgid "Background Color" +msgstr "" + +#: views/calendar/setting.php:84 +msgid "Edit Category" +msgstr "" + +#: views/calendar/view-event.php:45 views/calendar/view-event.php:100 +#: views/section/booking-info.php:270 views/section/booking-info.php:322 +msgid "Meeting Day" +msgstr "" + +#: views/calendar/view-event.php:46 views/courses/cart.php:39 +#: views/courses/index.php:77 views/section/booking-info.php:271 +#: views/section/catalog-pdf.php:56 views/student/schedule.php:41 +msgid "Time" +msgstr "" + +#: views/calendar/view-event.php:47 +msgid "Event Title" +msgstr "" + +#: views/calendar/view-event.php:48 +msgid "Event Description" +msgstr "" + +#: views/calendar/view-event.php:75 views/calendar/view-event.php:240 +msgid "Are you sure you want to delete this booking?" +msgstr "" + +#: views/calendar/view-event.php:102 views/section/booking-info.php:324 +msgid "End Date/Time" +msgstr "" + +#: views/calendar/view-event.php:125 views/section/booking-info.php:347 +msgid "Edit Event Meta" +msgstr "" + +#: views/calendar/view-event.php:146 views/course/extr.php:154 +#: views/course/tceq.php:60 views/financial/payment-plan.php:201 +#: views/form/semester.php:86 views/form/semester.php:156 +#: views/form/term.php:93 views/form/term.php:173 +#: views/form/view-semester.php:88 views/form/view-term.php:95 +#: views/hr/add.php:183 views/hr/positions.php:113 views/hr/positions.php:235 +#: views/hr/view.php:274 views/person/addr-form.php:126 +#: views/person/addr.php:130 views/person/perc.php:61 views/person/perc.php:186 +#: views/section/booking-info.php:368 views/staff/add.php:186 +#: views/student/add-prog.php:146 views/student/shis.php:66 +#: views/student/shis.php:225 views/student/sttr.php:64 +msgid "Start Date" +msgstr "" + +#: views/calendar/view-event.php:170 views/course/extr.php:69 +#: views/course/extr.php:166 views/course/index.php:62 views/course/tceq.php:61 +#: views/financial/payment-plan.php:202 views/form/semester.php:98 +#: views/form/semester.php:157 views/form/term.php:105 views/form/term.php:174 +#: views/form/view-semester.php:100 views/form/view-term.php:107 +#: views/hr/add.php:195 views/hr/positions.php:114 views/hr/positions.php:247 +#: views/hr/view.php:286 views/person/addr-form.php:133 +#: views/person/addr.php:137 views/person/perc.php:62 views/person/perc.php:196 +#: views/program/index.php:62 views/section/booking-info.php:392 +#: views/staff/add.php:198 views/student/add-prog.php:158 +#: views/student/shis.php:67 views/student/shis.php:235 +#: views/student/sttr.php:65 +msgid "End Date" +msgstr "" + +#: views/calendar/view-request.php:93 +msgid "" +"It is recommended that you check the availability of a room before " +"submitting the form. If there are changes to the original request, you need " +"to make the changes and click \"Update\" before processing the request." +msgstr "" + +#: views/calendar/view-request.php:271 views/course/prrl.php:133 +#: views/course/vextr.php:210 views/financial/btrl.php:73 +#: views/financial/gl-accounts.php:203 views/financial/payment-plan.php:335 +#: views/financial/view-bill.php:255 views/financial/view-comments.php:132 +#: views/financial/view-payments.php:175 views/financial/view-refunds.php:166 +#: views/hr/grades.php:175 views/hr/jobs.php:209 views/hr/positions.php:265 +#: views/index/password.php:57 views/rlde/view.php:150 +#: views/setting/templates.php:254 views/setting/templates.php:275 +#: views/setting/templates.php:296 views/setting/templates.php:317 +#: views/setting/templates.php:338 views/setting/templates.php:359 +#: views/setting/templates.php:378 +msgid "Update" +msgstr "" + +#: views/course/add.php:30 views/course/addnl-info.php:28 +#: views/course/view.php:28 +msgid "Search Course" +msgstr "" + +#: views/course/add.php:32 +msgid "Create Course" +msgstr "" + +#: views/course/add.php:35 +msgid "Add Course" +msgstr "" + +#: views/course/add.php:63 views/course/ajax.php:66 views/course/tcre.php:202 +#: views/course/view.php:66 views/form/department.php:22 +#: views/form/department.php:25 views/form/import.php:79 views/form/rest.php:67 +#: views/form/rest.php:111 views/form/view-department.php:22 +#: views/form/view-rest.php:69 views/hr/index.php:64 views/hr/view.php:211 +#: views/person/perc.php:63 views/program/add.php:113 views/program/ajax.php:74 +#: views/program/view.php:117 views/rlde/add.php:82 views/rlde/index.php:49 +#: views/rlde/view.php:84 views/section/add.php:119 views/section/ajax.php:66 +#: views/section/view.php:132 views/staff/add.php:162 views/staff/view.php:181 +#: views/student/sacd.php:117 +msgid "Department" +msgstr "" + +#: views/course/add.php:76 views/course/ajax.php:192 views/course/tcre.php:180 +#: views/course/view.php:79 views/form/import.php:80 views/form/subject.php:22 +#: views/form/subject.php:25 views/form/view-subject.php:22 +#: views/mrkt/campaign/report.php:57 views/mrkt/index.php:57 +#: views/student/sacd.php:87 +msgid "Subject" +msgstr "" + +#: views/course/add.php:89 views/course/atceq.php:124 views/course/view.php:101 +#: views/course/vtceq.php:84 views/section/add.php:145 +#: views/section/view.php:157 +msgid "Course Level" +msgstr "" + +#: views/course/add.php:101 views/course/index.php:59 views/course/tcre.php:162 +#: views/course/view.php:113 views/section/add.php:169 +#: views/section/courses.php:42 views/section/index.php:60 +#: views/section/view.php:181 views/student/sacd.php:69 +msgid "Short Title" +msgstr "" + +#: views/course/add.php:108 views/course/tcre.php:171 views/course/view.php:122 +#: views/student/sacd.php:78 +msgid "Long Title" +msgstr "" + +#: views/course/add.php:115 views/course/view.php:92 +msgid "Course Number" +msgstr "" + +#: views/course/add.php:140 views/course/view.php:143 views/program/add.php:167 +#: views/program/view.php:172 +msgid "Effective / End Date" +msgstr "" + +#: views/course/add.php:159 views/course/atceq.php:88 +#: views/course/atceq.php:123 views/course/extr.php:185 +#: views/course/tcre.php:102 views/course/vextr.php:111 +#: views/course/view.php:181 views/course/vtceq.php:53 +#: views/course/vtceq.php:83 views/courses/cart.php:40 +#: views/courses/index.php:78 views/section/catalog-pdf.php:54 +#: views/section/register.php:155 views/student/stac.php:62 +msgid "Credits" +msgstr "" + +#: views/course/add.php:178 views/program/add.php:82 views/program/view.php:86 +#: views/section/add.php:313 views/section/view.php:230 msgid "Status / Date" msgstr "" -#: views/course/add.php:202 views/course/view.php:228 views/program/add.php:95 -#: views/program/view.php:99 views/section/add.php:326 +#: views/course/add.php:202 views/course/extr.php:256 +#: views/course/vextr.php:182 views/course/view.php:228 +#: views/program/add.php:95 views/program/view.php:99 views/section/add.php:326 #: views/section/view.php:253 msgid "Approval Person" msgstr "" @@ -2335,9 +3441,11 @@ msgstr "" #: views/course/ajax.php:123 views/form/department.php:97 #: views/form/grade-scale.php:101 views/form/view-department.php:99 -#: views/form/view-grade-scale.php:103 views/program/add.php:73 -#: views/program/ajax.php:131 views/program/view.php:77 -#: views/section/ajax.php:123 +#: views/form/view-grade-scale.php:103 views/mrkt/list/create.php:81 +#: views/mrkt/list/view.php:75 views/mrkt/list/view.php:112 +#: views/mrkt/template/create.php:175 views/mrkt/template/view.php:175 +#: views/program/add.php:73 views/program/ajax.php:131 +#: views/program/view.php:77 views/section/ajax.php:123 msgid "Short Description" msgstr "" @@ -2367,6 +3475,103 @@ msgstr "" msgid "Subject Name" msgstr "" +#: views/course/atceq.php:56 views/course/atceq.php:59 +msgid "New Transfer Course Equivalency" +msgstr "" + +#: views/course/atceq.php:86 views/course/tcre.php:100 +#: views/course/vtceq.php:51 +msgid "Transfer Course" +msgstr "" + +#: views/course/atceq.php:89 views/course/vtceq.php:54 +msgid "Min Grade" +msgstr "" + +#: views/course/atceq.php:121 views/course/tceq.php:59 +#: views/course/tcre.php:101 views/course/vtceq.php:81 +msgid "Equivalent Course" +msgstr "" + +#: views/course/atceq.php:161 views/course/vtceq.php:116 +#: views/financial/payment-plan.php:117 views/financial/payment-plan.php:275 +#: views/section/view.php:113 views/student/sacp.php:166 +msgid "Start / End Date" +msgstr "" + +#: views/course/atceq.php:180 views/course/tceq.php:62 +#: views/course/tcre.php:103 views/course/vtceq.php:135 +#: views/form/grade-scale.php:54 views/form/grade-scale.php:163 +#: views/form/view-grade-scale.php:56 views/hr/grades.php:45 +#: views/hr/grades.php:90 views/hr/grades.php:146 +#: views/section/export-grades.php:47 views/section/final-grade.php:49 +#: views/section/grading.php:50 views/section/section-fgrade.php:52 +#: views/student/fgrades.php:39 views/student/stac.php:65 +#: views/student/templates/transcript/default.template.php:90 +msgid "Grade" +msgstr "" + +#: views/course/atceq.php:195 views/course/vtceq.php:150 +#: views/financial/add-payment.php:171 views/financial/create-bill.php:158 +#: views/financial/issue-refund.php:150 views/financial/view-payments.php:298 +#: views/financial/view-refunds.php:268 views/person/perc.php:206 +#: views/rlde/add.php:115 views/rlde/view.php:117 +#: views/section/attendance.php:153 views/student/shis.php:245 +msgid "Comment" +msgstr "" + +#: views/course/extr.php:27 views/course/extr.php:30 views/course/tceq.php:58 +#: views/dashboard/menu.php:270 +msgid "External Course" +msgstr "" + +#: views/course/extr.php:64 views/course/extr.php:145 views/course/vextr.php:72 +#: views/student/stac.php:59 +msgid "Course Name" +msgstr "" + +#: views/course/extr.php:68 views/course/index.php:61 +#: views/program/index.php:61 +msgid "Effective Date" +msgstr "" + +#: views/course/extr.php:192 views/course/vextr.php:118 +msgid "Minimum Grade" +msgstr "" + +#: views/course/extr.php:207 views/course/vextr.php:127 +#: views/financial/add-payment.php:98 views/financial/batch.php:177 +#: views/financial/billing-table.php:89 views/financial/billing-table.php:148 +#: views/financial/create-bill.php:140 views/financial/index.php:63 +#: views/financial/issue-refund.php:98 views/financial/payment-plan.php:142 +#: views/financial/payment-plan.php:294 views/financial/payment-plan.php:376 +#: views/financial/view-btbl.php:91 views/financial/view-comments.php:89 +#: views/financial/view-payments.php:244 views/financial/view-refunds.php:235 +#: views/form/import.php:70 views/form/stld.php:231 views/form/term.php:22 +#: views/form/term.php:25 views/form/term.php:73 views/form/term.php:171 +#: views/form/view-term.php:22 views/form/view-term.php:75 +#: views/section/add.php:88 views/section/batch-register.php:83 +#: views/section/catalog.php:42 views/section/courses.php:40 +#: views/section/index.php:62 views/section/register.php:115 +#: views/section/sros.php:70 views/section/view.php:101 +#: views/student/bill.php:38 views/student/fgrades.php:36 +#: views/student/stac.php:64 +#: views/student/templates/transcript/default.template.php:94 +#: views/student/terms.php:36 views/student/vbill.php:70 +msgid "Term" +msgstr "" + +#: views/course/extr.php:249 views/course/vextr.php:175 +#: views/student/view.php:72 +msgid "Status Date" +msgstr "" + +#: views/course/extr.php:263 views/course/vextr.php:189 views/hr/view.php:315 +#: views/person/addr-form.php:208 views/person/addr.php:216 +#: views/staff/view.php:230 views/student/add.php:235 +msgid "Add Date" +msgstr "" + #: views/course/index.php:21 views/section/catalog.php:44 #: views/student/terms.php:37 msgid "Courses" @@ -2381,22 +3586,6 @@ msgstr "" msgid "Course Code" msgstr "" -#: views/course/index.php:61 views/program/index.php:61 -msgid "Effective Date" -msgstr "" - -#: views/course/index.php:62 views/form/semester.php:98 -#: views/form/semester.php:157 views/form/term.php:105 views/form/term.php:174 -#: views/form/view-semester.php:100 views/form/view-term.php:107 -#: views/hr/add.php:195 views/hr/positions.php:114 views/hr/positions.php:247 -#: views/hr/view.php:286 views/person/addr-form.php:133 -#: views/person/addr.php:137 views/person/perc.php:62 views/person/perc.php:196 -#: views/program/index.php:62 views/staff/add.php:198 -#: views/student/add-prog.php:158 views/student/shis.php:67 -#: views/student/shis.php:235 views/student/sttr.php:65 -msgid "End Date" -msgstr "" - #: views/course/index.php:86 msgid "Clone" msgstr "" @@ -2423,24 +3612,20 @@ msgstr "" msgid "Print Text" msgstr "" -#: views/course/prrl.php:133 views/hr/grades.php:175 views/hr/jobs.php:209 -#: views/hr/positions.php:265 views/index/password.php:57 -#: views/rlde/view.php:150 views/setting/templates.php:254 -#: views/setting/templates.php:275 views/setting/templates.php:296 -#: views/setting/templates.php:317 views/setting/templates.php:338 -#: views/setting/templates.php:359 views/setting/templates.php:378 -msgid "Update" -msgstr "" - -#: views/course/prrl.php:135 views/rlde/add.php:150 views/rlde/view.php:152 +#: views/course/prrl.php:135 views/financial/btrl.php:75 +#: views/mrkt/list/create.php:130 views/mrkt/list/view.php:148 +#: views/rlde/add.php:150 views/rlde/view.php:152 msgid "Reset" msgstr "" -#: views/course/prrl.php:136 views/rlde/add.php:151 views/rlde/view.php:153 +#: views/course/prrl.php:136 views/financial/btrl.php:76 +#: views/mrkt/list/create.php:131 views/mrkt/list/view.php:149 +#: views/rlde/add.php:151 views/rlde/view.php:153 msgid "Load Rule" msgstr "" -#: views/course/prrl.php:138 views/rlde/view.php:155 +#: views/course/prrl.php:138 views/financial/btrl.php:78 +#: views/mrkt/list/view.php:151 views/rlde/view.php:155 msgid "Clear" msgstr "" @@ -2448,12 +3633,64 @@ msgstr "" msgid "Test Prerequisite Rule" msgstr "" -#: views/course/view.php:131 views/student/sacd.php:129 +#: views/course/tceq.php:21 views/course/tceq.php:24 +msgid "Search Transfer Course Equivalency" +msgstr "" + +#: views/course/tcre.php:70 views/course/tcre.php:73 +#: views/dashboard/menu.php:273 views/student/stac.php:124 +msgid "Transfer Credit" +msgstr "" + +#: views/course/tcre.php:149 +msgid "CRSE ID/Name" +msgstr "" + +#: views/course/tcre.php:189 views/student/sacd.php:99 +msgid "Acad Lvl/Crse Lvl" +msgstr "" + +#: views/course/tcre.php:217 views/course/view.php:131 +#: views/student/sacd.php:129 msgid "Credit Type" msgstr "" -#: views/course/view.php:246 views/hr/view.php:333 views/person/view.php:280 -#: views/staff/view.php:248 views/student/sacp.php:233 +#: views/course/tcre.php:226 views/student/sacd.php:167 +msgid "Term/Rpt Term" +msgstr "" + +#: views/course/tcre.php:242 views/student/sacd.php:183 +msgid "Att/Comp Cred" +msgstr "" + +#: views/course/tcre.php:255 views/student/sacd.php:195 +msgid "Grade/Grd Pts" +msgstr "" + +#: views/course/tcre.php:268 views/student/sacd.php:217 +msgid "Status Date/Time" +msgstr "" + +#: views/course/tcre.php:281 views/financial/add-payment.php:82 +#: views/financial/create-bill.php:82 views/financial/issue-refund.php:82 +#: views/financial/payment-plan.php:82 views/section/register.php:99 +#: views/student/graduation.php:70 views/student/tran.php:71 +msgid "Student ID/Name" +msgstr "" + +#: views/course/vextr.php:27 +msgid "Search / Add External Course" +msgstr "" + +#: views/course/vextr.php:81 views/student/sacd.php:148 +#: views/student/stal.php:130 +msgid "Start/End Date" +msgstr "" + +#: views/course/vextr.php:196 views/course/view.php:246 +#: views/financial/payment-plan.php:325 views/hr/view.php:333 +#: views/person/view.php:280 views/staff/view.php:248 +#: views/student/sacp.php:233 msgid "Last Update" msgstr "" @@ -2462,50 +3699,46 @@ msgid "Prerequisite" msgstr "" #: views/course/view.php:264 views/section/addnl-info.php:51 +#: views/section/billing-info.php:45 views/section/booking-info.php:83 #: views/section/offering-info.php:51 views/section/view.php:73 msgid "Additional Info" msgstr "" +#: views/course/vtceq.php:21 views/course/vtceq.php:24 +msgid "View Transfer Course Equivalency" +msgstr "" + #: views/courses/cart.php:19 msgid "Shopping Cart" msgstr "" -#: views/courses/cart.php:36 views/courses/index.php:75 -#: views/dashboard/core-admin-bar.php:175 views/section/catalog-pdf.php:51 +#: views/courses/cart.php:36 views/courses/index.php:74 +#: views/dashboard/core-admin-bar.php:175 views/form/import.php:92 +#: views/section/batch-register.php:92 views/section/booking-info.php:272 +#: views/section/catalog-pdf.php:51 views/section/final-grade.php:47 #: views/section/register.php:124 views/section/section-fgrade.php:50 #: views/student/fgrades.php:37 msgid "Course Section" msgstr "" -#: views/courses/cart.php:37 views/courses/index.php:76 views/hr/jobs.php:106 -#: views/hr/jobs.php:178 views/program/add.php:64 views/program/view.php:68 -#: views/section/catalog-pdf.php:52 views/section/register.php:146 -#: views/staff/view.php:127 views/student/fgrades.php:38 -#: views/student/schedule.php:37 views/student/stac.php:60 -msgid "Title" +#: views/courses/cart.php:38 views/courses/index.php:76 +#: views/section/booking-info.php:135 +msgid "Meeting Day(s)" msgstr "" -#: views/courses/cart.php:38 views/courses/index.php:77 -msgid "Meeting Day(s)" -msgstr "" - -#: views/courses/cart.php:39 views/courses/index.php:78 -#: views/section/catalog-pdf.php:56 views/student/schedule.php:41 -msgid "Time" -msgstr "" - -#: views/courses/cart.php:41 views/courses/index.php:80 -#: views/form/building.php:74 views/form/location.php:22 -#: views/form/location.php:25 views/form/view-building.php:76 -#: views/form/view-location.php:22 views/program/add.php:276 -#: views/program/ajax.php:868 views/program/view.php:281 -#: views/section/add.php:178 views/section/ajax.php:192 -#: views/section/catalog-pdf.php:57 views/section/view.php:207 -#: views/student/add.php:112 -msgid "Location" +#: views/courses/cart.php:41 views/courses/index.php:79 +#: views/form/building.php:74 views/form/import.php:87 +#: views/form/location.php:22 views/form/location.php:25 +#: views/form/view-building.php:76 views/form/view-location.php:22 +#: views/program/add.php:276 views/program/ajax.php:868 +#: views/program/view.php:281 views/section/add.php:178 +#: views/section/ajax.php:192 views/section/catalog-pdf.php:57 +#: views/section/view.php:207 views/student/add.php:112 +msgid "Location" msgstr "" #: views/courses/cart.php:62 views/dashboard/install-module.php:73 +#: views/form/import.php:57 views/form/photo.php:44 #: views/plugins/install.php:71 msgid "Remove" msgstr "" @@ -2515,50 +3748,50 @@ msgstr "" msgid "Register" msgstr "" -#: views/courses/index.php:57 +#: views/courses/index.php:56 msgid "" "You have a hold on your account which is currently restricting you from " "registering for a course(s). Please contact the following office(s)/" "department(s) to inquire about the hold(s) on your account: " msgstr "" -#: views/courses/index.php:81 +#: views/courses/index.php:80 msgid "Info" msgstr "" -#: views/courses/index.php:83 +#: views/courses/index.php:82 msgid "Select" msgstr "" -#: views/courses/index.php:110 +#: views/courses/index.php:109 msgid "Section Info" msgstr "" -#: views/courses/index.php:118 +#: views/courses/index.php:117 msgid "Instructor:" msgstr "" -#: views/courses/index.php:122 +#: views/courses/index.php:121 msgid "Description:" msgstr "" -#: views/courses/index.php:126 +#: views/courses/index.php:125 msgid "Comment:" msgstr "" -#: views/courses/index.php:130 +#: views/courses/index.php:129 msgid "Course Fee:" msgstr "" -#: views/courses/index.php:134 +#: views/courses/index.php:133 msgid "Lab Fee:" msgstr "" -#: views/courses/index.php:138 +#: views/courses/index.php:137 msgid "Material Fee:" msgstr "" -#: views/courses/index.php:179 +#: views/courses/index.php:178 msgid "Add to Cart" msgstr "" @@ -2676,10 +3909,6 @@ msgstr "" msgid "Email Templates" msgstr "" -#: views/dashboard/core-admin-bar.php:57 views/dashboard/menu.php:65 -msgid "Importer" -msgstr "" - #: views/dashboard/core-admin-bar.php:59 msgid "(MPRM) Manage Perm" msgstr "" @@ -2689,10 +3918,12 @@ msgid "(MRLE) Manage Role" msgstr "" #: views/dashboard/core-admin-bar.php:61 views/dashboard/menu.php:75 +#: views/error/logs.php:23 views/error/logs.php:26 msgid "Error Log" msgstr "" #: views/dashboard/core-admin-bar.php:62 views/dashboard/menu.php:78 +#: views/error/audit.php:22 views/error/audit.php:25 msgid "Audit Trail" msgstr "" @@ -2825,10 +4056,6 @@ msgstr "" msgid "File Manager" msgstr "" -#: views/dashboard/core-admin-bar.php:120 views/dashboard/menu.php:122 -msgid "Events Calendar" -msgstr "" - #: views/dashboard/core-admin-bar.php:122 views/dashboard/menu.php:124 msgid "Calendar" msgstr "" @@ -2841,10 +4068,6 @@ msgstr "" msgid "Manage Events" msgstr "" -#: views/dashboard/core-admin-bar.php:125 views/dashboard/menu.php:128 -msgid "Pending Requests" -msgstr "" - #: views/dashboard/core-admin-bar.php:133 views/dashboard/menu.php:139 msgid "Employees" msgstr "" @@ -2862,6 +4085,9 @@ msgstr "" #: views/dashboard/core-admin-bar.php:136 #: views/dashboard/core-admin-bar.php:140 views/dashboard/menu.php:143 #: views/dashboard/menu.php:149 views/dashboard/menu.php:151 +#: views/hr/timesheets.php:22 views/hr/timesheets.php:25 +#: views/hr/view-timesheet.php:23 views/staff/timesheets.php:22 +#: views/staff/timesheets.php:26 views/staff/view-timesheet.php:22 msgid "Timesheets" msgstr "" @@ -2870,7 +4096,9 @@ msgid "SQL" msgstr "" #: views/dashboard/core-admin-bar.php:147 views/dashboard/menu.php:159 -#: views/sql/index.php:48 views/sql/index.php:51 views/sql/index.php:86 +#: views/sql/add-query.php:60 views/sql/csv-email.php:47 views/sql/index.php:48 +#: views/sql/index.php:51 views/sql/index.php:86 views/sql/saved-queries.php:38 +#: views/sql/view-query.php:60 msgid "SQL Interface" msgstr "" @@ -2883,6 +4111,7 @@ msgid "Queries" msgstr "" #: views/dashboard/core-admin-bar.php:150 views/dashboard/menu.php:165 +#: views/sql/csv-email.php:22 views/sql/csv-email.php:25 msgid "CSV to Email Report" msgstr "" @@ -2899,6 +4128,7 @@ msgid "(APRG) - New Program" msgstr "" #: views/dashboard/core-admin-bar.php:167 views/dashboard/menu.php:254 +#: views/form/import.php:91 #: views/student/templates/transcript/default.template.php:88 msgid "Course" msgstr "" @@ -2933,6 +4163,8 @@ msgid "Course Catalogs" msgstr "" #: views/dashboard/core-admin-bar.php:183 views/dashboard/menu.php:307 +#: views/section/attendance-report.php:21 views/section/attendance.php:66 +#: views/section/courses.php:24 msgid "My Course Sections" msgstr "" @@ -2976,15 +4208,8 @@ msgstr "" msgid "Lists" msgstr "" -#: views/dashboard/core-admin-bar.php:212 views/dashboard/menu.php:358 -msgid "Templates" -msgstr "" - -#: views/dashboard/core-admin-bar.php:213 views/dashboard/menu.php:359 -msgid "Campaigns" -msgstr "" - #: views/dashboard/core-admin-bar.php:214 views/dashboard/menu.php:360 +#: views/mrkt/mailmerge.php:24 views/mrkt/mailmerge.php:27 msgid "Mail Merge" msgstr "" @@ -3021,7 +4246,7 @@ msgid "Person Management" msgstr "" #: views/dashboard/core-admin-bar.php:235 views/dashboard/menu.php:172 -#: views/person/index.php:24 +#: views/form/import.php:94 views/person/index.php:24 msgid "Person" msgstr "" @@ -3067,6 +4292,9 @@ msgid "Account Chart" msgstr "" #: views/dashboard/core-admin-bar.php:270 views/dashboard/menu.php:379 +#: views/financial/gl-accounts.php:42 views/financial/gl-filter.php:42 +#: views/financial/jentry-filter.php:42 views/financial/journal-entries.php:22 +#: views/financial/journal-entries.php:25 msgid "Journal Entries" msgstr "" @@ -3075,10 +4303,12 @@ msgid "Student Accounts" msgstr "" #: views/dashboard/core-admin-bar.php:277 views/dashboard/menu.php:387 +#: views/financial/btrl.php:22 msgid "Billing Tables" msgstr "" -#: views/dashboard/core-admin-bar.php:278 +#: views/dashboard/core-admin-bar.php:278 views/financial/view-comments.php:29 +#: views/financial/view-refunds.php:29 msgid "Search Bill" msgstr "" @@ -3086,11 +4316,18 @@ msgstr "" msgid "Create Bill/Add Fees" msgstr "" -#: views/dashboard/core-admin-bar.php:280 +#: views/dashboard/core-admin-bar.php:280 views/financial/add-payment.php:65 +#: views/financial/batch.php:33 views/financial/batch.php:36 +#: views/financial/batch.php:57 views/financial/create-bill.php:65 +#: views/financial/issue-refund.php:65 views/financial/payment-plan.php:65 msgid "Batch Fees" msgstr "" -#: views/dashboard/core-admin-bar.php:281 +#: views/dashboard/core-admin-bar.php:281 views/financial/add-payment.php:41 +#: views/financial/add-payment.php:44 views/financial/add-payment.php:66 +#: views/financial/batch.php:58 views/financial/create-bill.php:66 +#: views/financial/issue-refund.php:66 views/financial/payment-plan.php:66 +#: views/financial/view-payments.php:176 views/financial/view-payments.php:227 msgid "Add Payment" msgstr "" @@ -3099,6 +4336,11 @@ msgid "Issue a Refund" msgstr "" #: views/dashboard/core-admin-bar.php:283 +#: views/financial/account-history.php:133 views/financial/add-payment.php:68 +#: views/financial/batch.php:60 views/financial/create-bill.php:68 +#: views/financial/issue-refund.php:68 views/financial/payment-plan.php:41 +#: views/financial/payment-plan.php:44 views/financial/payment-plan.php:68 +#: views/form/import.php:75 views/student/account-history.php:122 msgid "Payment Plan" msgstr "" @@ -3134,11 +4376,15 @@ msgid "" "you need to visit this screen." msgstr "" -#: views/dashboard/install-module.php:73 views/plugins/install.php:71 +#: views/dashboard/install-module.php:73 views/form/import.php:57 +#: views/form/photo.php:44 views/plugins/install.php:71 +#: views/section/students.php:191 views/section/students.php:301 msgid "Select file" msgstr "" -#: views/dashboard/install-module.php:73 views/plugins/install.php:71 +#: views/dashboard/install-module.php:73 views/form/import.php:57 +#: views/form/photo.php:44 views/plugins/install.php:71 +#: views/section/students.php:191 views/section/students.php:301 msgid "Change" msgstr "" @@ -3238,10 +4484,6 @@ msgstr "" msgid "Transfer" msgstr "" -#: views/dashboard/menu.php:270 -msgid "External Course" -msgstr "" - #: views/dashboard/menu.php:271 msgid "New Tran. Equiv." msgstr "" @@ -3250,12 +4492,9 @@ msgstr "" msgid "Tran. Crse. Equiv." msgstr "" -#: views/dashboard/menu.php:273 views/student/stac.php:124 -msgid "Transfer Credit" -msgstr "" - #: views/dashboard/menu.php:281 views/section/add.php:79 -#: views/section/sros.php:85 views/section/view.php:92 +#: views/section/courses.php:41 views/section/sros.php:85 +#: views/section/view.php:92 msgid "Section" msgstr "" @@ -3273,26 +4512,35 @@ msgid "(SROS) - Stu. Roster" msgstr "" #: views/dashboard/menu.php:305 views/dashboard/menu.php:325 +#: views/form/import.php:109 views/section/courses.php:65 +#: views/section/gradebook.php:23 msgid "Gradebook" msgstr "" -#: views/dashboard/menu.php:310 +#: views/dashboard/menu.php:310 views/section/attendance.php:68 +#: views/section/attendance.php:71 views/section/courses.php:71 msgid "Attendance" msgstr "" -#: views/dashboard/menu.php:312 +#: views/dashboard/menu.php:312 views/section/attendance-report.php:23 +#: views/section/attendance-report.php:26 views/section/courses.php:73 msgid "Attendance Report" msgstr "" -#: views/dashboard/menu.php:316 +#: views/dashboard/menu.php:316 views/section/add-assignment.php:23 +#: views/section/courses.php:63 msgid "Add Assignment" msgstr "" -#: views/dashboard/menu.php:319 +#: views/dashboard/menu.php:319 views/section/assignments.php:23 +#: views/section/assignments.php:26 views/section/courses.php:68 +#: views/section/export-grades.php:23 views/section/grading.php:23 +#: views/section/view-assignment.php:23 msgid "Assignments" msgstr "" -#: views/dashboard/menu.php:331 +#: views/dashboard/menu.php:331 views/section/courses.php:75 +#: views/section/students.php:68 msgid "Email Students" msgstr "" @@ -3304,7 +4552,9 @@ msgstr "" msgid "(APPL) - Application" msgstr "" -#: views/dashboard/menu.php:388 +#: views/dashboard/menu.php:388 views/financial/account-history.php:26 +#: views/financial/index.php:25 views/financial/view-bill.php:25 +#: views/financial/view-payments.php:29 msgid "Bill Lookup" msgstr "" @@ -3326,17 +4576,6 @@ msgstr "" msgid "Module" msgstr "" -#: views/dashboard/modules.php:58 views/form/department.php:139 -#: views/form/rest.php:61 views/form/rest.php:110 views/form/view-rest.php:63 -#: views/plugins/index.php:41 views/rlde/add.php:68 views/rlde/index.php:51 -#: views/rlde/view.php:70 views/setting/templates.php:173 -msgid "Description" -msgstr "" - -#: views/dashboard/modules.php:59 -msgid "Author" -msgstr "" - #: views/dashboard/modules.php:60 msgid "Module URI" msgstr "" @@ -3373,10 +4612,6 @@ msgstr "" msgid "Text" msgstr "" -#: views/dashboard/sms.php:92 views/index/login.php:147 -msgid "Send" -msgstr "" - #: views/dashboard/support.php:26 views/dashboard/support.php:29 msgid "Online Documenation" msgstr "" @@ -3415,822 +4650,1942 @@ msgstr "" msgid "Let us know" msgstr "" -#: views/error/screen-error.php:28 -msgid "Error!" +#: views/error/audit.php:41 +msgid "Process" msgstr "" -#: views/form/acad-year.php:22 views/form/acad-year.php:25 -#: views/form/acad-year.php:100 views/form/semester.php:54 -#: views/form/view-acad-year.php:22 views/form/view-semester.php:56 -#: views/program/ajax.php:206 -msgid "Academic Year" +#: views/error/audit.php:42 +msgid "Record" msgstr "" -#: views/form/acad-year.php:54 views/form/acad-year.php:61 -#: views/form/view-acad-year.php:56 views/form/view-acad-year.php:63 -msgid "Acad Year" +#: views/error/audit.php:44 +msgid "Action Date" msgstr "" -#: views/form/acad-year.php:99 -msgid "Academic Year Code" +#: views/error/audit.php:45 +msgid "Expire Date" msgstr "" -#: views/form/aclv.php:22 views/form/aclv.php:25 -msgid "Academic Level (ACLV)" +#: views/error/logs.php:41 +msgid "Error Type" msgstr "" -#: views/form/aclv.php:58 views/form/view-aclv.php:60 -msgid "ACLV Code" +#: views/error/logs.php:42 +msgid "String" msgstr "" -#: views/form/aclv.php:65 views/form/view-aclv.php:67 -msgid "ACLV Name" +#: views/error/logs.php:43 +msgid "File" msgstr "" -#: views/form/aclv.php:72 views/form/view-aclv.php:74 -msgid "HT / FT / OVR" +#: views/error/logs.php:44 +msgid "Line Number" msgstr "" -#: views/form/aclv.php:95 views/form/view-aclv.php:97 -msgid "Grad. Level" +#: views/error/screen-error.php:28 +msgid "Error!" msgstr "" -#: views/form/aclv.php:108 views/form/view-aclv.php:110 -msgid "Comp. Months" +#: views/financial/account-history.php:28 views/financial/index.php:86 +#: views/student/bill.php:59 +msgid "Account History" msgstr "" -#: views/form/aclv.php:146 views/form/department.php:135 views/form/rest.php:54 -#: views/form/rest.php:109 views/form/view-rest.php:56 views/rlde/index.php:50 -msgid "Code" +#: views/financial/account-history.php:49 views/student/account-history.php:38 +msgid "Print history" msgstr "" -#: views/form/aclv.php:191 views/form/view-aclv.php:212 -msgid "Academic Level (ACLV) Screen" +#: views/financial/account-history.php:50 views/student/account-history.php:39 +msgid "Save as PDF" msgstr "" -#: views/form/alst.php:28 views/form/alst.php:98 views/form/alst.php:150 -msgid "Good" +#: views/financial/account-history.php:66 views/financial/ah-pdf.php:79 +#: views/student/account-history.php:55 +msgid "e-mail" msgstr "" -#: views/form/alst.php:28 views/form/alst.php:99 views/form/alst.php:151 -msgid "Probation" +#: views/financial/account-history.php:67 +#: views/financial/account-history.php:76 views/financial/ah-pdf.php:80 +#: views/financial/ah-pdf.php:89 views/student/account-history.php:56 +#: views/student/account-history.php:65 +msgid "phone" msgstr "" -#: views/form/alst.php:41 views/form/alst.php:44 -msgid "Academic Level Standing Rules (ALST)" +#: views/financial/account-history.php:71 views/financial/ah-pdf.php:84 +#: views/student/account-history.php:60 +msgid "Student information" msgstr "" -#: views/form/alst.php:72 views/form/clvr.php:72 views/form/stld.php:71 -#: views/rlde/add.php:75 views/rlde/view.php:77 views/section/rrsr.php:81 -msgid "Rule Code" +#: views/financial/account-history.php:75 views/financial/ah-pdf.php:88 +#: views/student/account-history.php:64 +msgid "e-mail:" msgstr "" -#: views/form/alst.php:73 views/form/clvr.php:73 views/form/stld.php:72 -#: views/section/rrsr.php:82 -msgid "Value" +#: views/financial/account-history.php:89 views/financial/add-jentry.php:133 +#: views/financial/ah-pdf.php:102 views/financial/jentries.php:57 +#: views/financial/journal-entries.php:52 views/financial/view-jentry.php:71 +#: views/index/news.php:33 views/student/account-history.php:78 +msgid "Date" msgstr "" -#: views/form/alst.php:121 views/form/clvr.php:120 views/form/stld.php:123 -#: views/section/rrsr.php:125 -msgid "Are you sure you want to delete this record from your rule set?" +#: views/financial/account-history.php:91 views/financial/ah-pdf.php:104 +#: views/student/account-history.php:80 +msgid "Charges" msgstr "" -#: views/form/alst.php:126 views/form/clvr.php:125 views/form/stld.php:128 -#: views/rlde/index.php:74 views/rlde/index.php:92 views/section/rrsr.php:130 -#: views/student/shis.php:162 views/student/stac.php:91 -#: views/student/stac.php:137 -msgid "Delete" +#: views/financial/account-history.php:93 views/financial/ah-pdf.php:106 +#: views/financial/view-bill.php:50 views/financial/view-comments.php:54 +#: views/financial/view-payments.php:54 views/financial/view-refunds.php:54 +#: views/student/account-history.php:82 +msgid "Payments" msgstr "" -#: views/form/alst.php:188 -msgid "Test Academic Level Standing Rule" +#: views/financial/account-history.php:94 views/financial/ah-pdf.php:107 +#: views/student/account-history.php:83 +msgid "Method" msgstr "" -#: views/form/alst.php:212 views/form/clvr.php:210 views/form/stld.php:217 -#: views/section/rrsr.php:211 -msgid "Rule" +#: views/financial/account-history.php:95 views/financial/ah-pdf.php:108 +#: views/financial/gl-accounts.php:59 views/financial/view-bill.php:214 +#: views/financial/view-jentry.php:112 views/student/account-history.php:84 +#: views/student/vbill.php:155 +msgid "Balance" msgstr "" -#: views/form/building.php:22 views/form/building.php:25 views/form/room.php:54 -#: views/form/room.php:124 views/form/school.php:68 views/form/school.php:114 -#: views/form/view-building.php:22 views/form/view-room.php:56 -#: views/form/view-school.php:70 views/hr/view.php:166 -#: views/section/catalog-pdf.php:58 views/section/offering-info.php:70 -#: views/staff/add.php:111 views/staff/view.php:136 -#: views/student/schedule.php:38 -msgid "Building" +#: views/financial/account-history.php:114 views/financial/ah-pdf.php:125 +#: views/student/account-history.php:103 +msgid "Term:" msgstr "" -#: views/form/building.php:54 views/form/building.php:115 -#: views/form/view-building.php:56 -msgid "Building Code" +#: views/financial/account-history.php:134 +#: views/student/account-history.php:123 +msgid "Agreement Date:" msgstr "" -#: views/form/building.php:61 views/form/building.php:116 -#: views/form/view-building.php:63 -msgid "Building Name" +#: views/financial/account-history.php:135 +#: views/student/account-history.php:124 +msgid "Payment:" msgstr "" -#: views/form/ccd.php:22 views/form/ccd.php:25 views/form/view-ccd.php:22 -#: views/program/add.php:199 views/program/ajax.php:402 -#: views/program/view.php:204 -#: views/student/templates/transcript/default.template.php:169 -msgid "CCD" +#: views/financial/account-history.php:136 +#: views/student/account-history.php:125 +msgid "Agreement Ends:" msgstr "" -#: views/form/ccd.php:54 views/form/ccd.php:99 views/form/view-ccd.php:56 -msgid "CCD Code" +#: views/financial/account-history.php:136 views/mrkt/list/create.php:94 +#: views/mrkt/list/view.php:94 views/student/account-history.php:125 +msgid "Open" msgstr "" -#: views/form/ccd.php:61 views/form/ccd.php:100 views/form/view-ccd.php:63 -msgid "CCD Name" +#: views/financial/account-history.php:137 +#: views/student/account-history.php:126 +msgid "Comments:" msgstr "" -#: views/form/cip.php:22 views/form/cip.php:25 views/form/view-cip.php:22 -#: views/program/add.php:263 views/program/ajax.php:775 -#: views/program/view.php:268 -msgid "CIP" +#: views/financial/account-history.php:161 views/financial/view-bill.php:337 +#: views/financial/view-comments.php:156 views/financial/view-payments.php:200 +#: views/financial/view-refunds.php:191 views/student/add-prog.php:210 +#: views/student/sacd.php:267 views/student/sacp.php:300 +#: views/student/shis.php:282 views/student/stac.php:159 +#: views/student/stal.php:182 views/student/sttr.php:120 +#: views/student/view.php:171 +msgid "" +"\"FERPA gives parents certain rights with respect to their children's " +"education records. \n" +" These rights transfer to the student when he or she " +"reaches the age of 18 or attends a school beyond \n" +" the high school level. Students to whom the rights have " +"transferred are 'eligible students.'\"" msgstr "" -#: views/form/cip.php:54 views/form/cip.php:97 views/form/view-cip.php:56 -#: views/program/ajax.php:787 -msgid "CIP Code" +#: views/financial/account-history.php:164 views/financial/view-bill.php:340 +#: views/financial/view-comments.php:159 views/financial/view-payments.php:203 +#: views/financial/view-refunds.php:194 views/student/add-prog.php:213 +#: views/student/sacd.php:270 views/student/sacp.php:303 +#: views/student/shis.php:285 views/student/stac.php:162 +#: views/student/stal.php:185 views/student/sttr.php:123 +#: views/student/view.php:174 +msgid "" +"If the FERPA restriction states \"Yes\", then the student has requested that " +"none of their \n" +" information be given out without their permission. To " +"get a better understanding of FERPA, visit \n" +" the U.S. DOE's website @ " msgstr "" -#: views/form/cip.php:61 views/form/cip.php:98 views/form/view-cip.php:63 -#: views/program/ajax.php:794 -msgid "CIP Name" +#: views/financial/add-jentry.php:92 views/financial/add-jentry.php:95 +msgid "Add Journal Entry" msgstr "" -#: views/form/clas.php:42 views/form/view-clas.php:22 -#: views/form/view-clas.php:24 -msgid "Class Level" +#: views/financial/add-jentry.php:111 views/financial/journal-entries.php:38 +msgid "Entries" msgstr "" -#: views/form/clas.php:63 views/form/view-clas.php:56 -msgid "CLAS Code" +#: views/financial/add-jentry.php:112 views/financial/journal-entries.php:39 +msgid "Add Entry" msgstr "" -#: views/form/clas.php:64 views/form/view-clas.php:63 -msgid "CLAS Name" +#: views/financial/add-jentry.php:145 +msgid "Entry Title" msgstr "" -#: views/form/clvr.php:41 views/form/clvr.php:44 -msgid "Class Level Rules (CLVR)" +#: views/financial/add-jentry.php:160 views/financial/jentries.php:58 +#: views/financial/journal-entries.php:53 views/financial/view-jentry.php:49 +msgid "Manual ID" msgstr "" -#: views/form/clvr.php:186 -msgid "Test Class Rule" +#: views/financial/add-jentry.php:193 +msgid "Include -(minus) symbol before the credit amount." msgstr "" -#: views/form/degree.php:54 views/form/degree.php:97 -#: views/form/view-degree.php:56 views/program/ajax.php:315 -msgid "Degree Code" +#: views/financial/add-jentry.php:198 +msgid "GL Account" msgstr "" -#: views/form/degree.php:61 views/form/degree.php:98 -#: views/form/view-degree.php:63 views/program/ajax.php:324 -msgid "Degree Name" +#: views/financial/add-jentry.php:199 views/financial/gl-accounts.php:135 +#: views/financial/gl-accounts.php:194 views/financial/view-jentry.php:83 +msgid "Memo" msgstr "" -#: views/form/department.php:90 views/form/view-department.php:92 -msgid "Department Phone #" +#: views/financial/add-jentry.php:200 views/financial/billing-table.php:61 +#: views/financial/billing-table.php:146 views/financial/jentries.php:62 +#: views/financial/journal-entries.php:57 views/financial/payment-plan.php:199 +#: views/financial/view-btbl.php:63 views/financial/view-jentry.php:84 +msgid "Amount" msgstr "" -#: views/form/department.php:137 views/index/login.php:99 -#: views/index/profile.php:53 views/setting/email.php:50 -#: views/setting/index.php:51 views/setting/registration.php:50 -#: views/setting/sms.php:55 views/setting/templates.php:157 -#: views/staff/view.php:221 -msgid "Email" +#: views/financial/add-jentry.php:230 +msgid "Debit: " msgstr "" -#: views/form/department.php:138 views/hr/index.php:65 -#: views/index/profile.php:57 views/person/add.php:257 -#: views/person/view.php:207 -msgid "Phone" +#: views/financial/add-jentry.php:231 +msgid "Credit: " msgstr "" -#: views/form/grade-scale.php:22 views/form/grade-scale.php:25 -msgid "Grade Scale" +#: views/financial/add-jentry.php:232 +msgid "Balance:" msgstr "" -#: views/form/grade-scale.php:54 views/form/grade-scale.php:163 -#: views/form/view-grade-scale.php:56 views/hr/grades.php:45 -#: views/hr/grades.php:90 views/hr/grades.php:146 -#: views/section/section-fgrade.php:52 views/student/fgrades.php:39 -#: views/student/stac.php:65 -#: views/student/templates/transcript/default.template.php:90 -msgid "Grade" +#: views/financial/add-payment.php:64 views/financial/batch.php:56 +#: views/financial/create-bill.php:64 views/financial/issue-refund.php:64 +#: views/financial/payment-plan.php:64 +msgid "Generate Bill/Add Fee" msgstr "" -#: views/form/grade-scale.php:61 views/form/grade-scale.php:164 -#: views/form/view-grade-scale.php:63 -msgid "Percent" +#: views/financial/add-payment.php:67 views/financial/batch.php:59 +#: views/financial/create-bill.php:67 views/financial/issue-refund.php:41 +#: views/financial/issue-refund.php:44 views/financial/issue-refund.php:67 +#: views/financial/payment-plan.php:67 views/financial/view-refunds.php:167 +#: views/financial/view-refunds.php:218 +msgid "Issue Refund" msgstr "" -#: views/form/grade-scale.php:68 views/form/view-grade-scale.php:70 -msgid "Points" +#: views/financial/add-payment.php:123 views/financial/view-payments.php:147 +#: views/financial/view-payments.php:256 views/form/import.php:74 +msgid "Payment" msgstr "" -#: views/form/grade-scale.php:75 views/form/grade-scale.php:135 -#: views/form/view-grade-scale.php:77 views/form/view-grade-scale.php:136 -msgid "Count in GPA" +#: views/financial/add-payment.php:132 views/financial/view-payments.php:265 +msgid "Payment Date" msgstr "" -#: views/form/grade-scale.php:140 views/form/view-grade-scale.php:141 -msgid "Should this be applied and calculated in the GPA?" +#: views/financial/add-payment.php:144 views/financial/view-payments.php:277 +msgid "Payment Type" msgstr "" -#: views/form/grade-scale.php:165 -#: views/student/templates/transcript/default.template.php:93 -msgid "Grade Points" +#: views/financial/add-payment.php:156 views/financial/view-payments.php:289 +msgid "Check Number" msgstr "" -#: views/form/location.php:54 views/form/location.php:99 -#: views/form/view-location.php:56 views/program/ajax.php:414 -#: views/program/ajax.php:880 views/section/ajax.php:204 -msgid "Location Code" +#: views/financial/batch.php:74 +msgid "Population" msgstr "" -#: views/form/location.php:61 views/form/location.php:100 -#: views/form/view-location.php:63 views/program/ajax.php:421 -#: views/program/ajax.php:887 views/section/ajax.php:211 -msgid "Location Name" +#: views/financial/batch.php:78 views/student/add-prog.php:77 +#: views/student/add.php:82 views/student/sacp.php:64 views/student/stal.php:52 +msgid "Program" msgstr "" -#: views/form/major.php:54 views/form/major.php:99 views/form/view-major.php:56 -#: views/program/ajax.php:508 -msgid "Major Code" +#: views/financial/batch.php:135 views/financial/create-bill.php:98 +msgid "Bill / Fee Date" msgstr "" -#: views/form/major.php:61 views/form/major.php:100 -#: views/form/view-major.php:63 views/program/ajax.php:515 -msgid "Major Name" +#: views/financial/batch.php:160 views/financial/create-bill.php:123 +msgid "Fees" msgstr "" -#: views/form/minor.php:22 views/form/minor.php:25 views/form/view-minor.php:22 -#: views/program/add.php:225 views/program/ajax.php:589 -#: views/program/view.php:230 -#: views/student/templates/transcript/default.template.php:167 -msgid "Minor" +#: views/financial/billing-table.php:22 views/financial/billing-table.php:25 +#: views/financial/view-btbl.php:22 views/form/import.php:73 +msgid "Billing Table" msgstr "" -#: views/form/minor.php:54 views/form/minor.php:99 views/form/view-minor.php:56 -#: views/program/ajax.php:601 -msgid "Minor Code" +#: views/financial/billing-table.php:74 views/financial/view-btbl.php:76 +msgid "Fee" msgstr "" -#: views/form/minor.php:61 views/form/minor.php:100 -#: views/form/view-minor.php:63 views/program/ajax.php:608 -msgid "Minor Name" +#: views/financial/billing-table.php:75 views/financial/view-bill.php:118 +#: views/financial/view-bill.php:128 views/financial/view-btbl.php:77 +#: views/form/import.php:78 views/student/vbill.php:92 +#: views/student/vbill.php:101 +msgid "Tuition" msgstr "" -#: views/form/rest.php:22 views/form/rest.php:25 views/form/view-rest.php:22 -#: views/person/perc.php:59 views/person/perc.php:169 -msgid "Restriction" +#: views/financial/billing-table.php:145 +msgid "Fee Type" msgstr "" -#: views/form/room.php:22 views/form/room.php:25 views/form/view-room.php:22 -#: views/section/catalog-pdf.php:59 views/student/schedule.php:39 -msgid "Room" +#: views/financial/btrl.php:27 views/form/alst.php:212 views/form/clvr.php:210 +#: views/form/stld.php:217 views/section/rrsr.php:211 +msgid "Rule" msgstr "" -#: views/form/room.php:66 views/form/view-room.php:68 -msgid "Room Code" +#: views/financial/btrl.php:99 +msgid "Test Financial Rule" msgstr "" -#: views/form/room.php:79 views/form/room.php:125 views/form/view-room.php:81 -msgid "Room Number" +#: views/financial/create-bill.php:41 views/financial/create-bill.php:44 +msgid "Create Bill" msgstr "" -#: views/form/school.php:22 views/form/school.php:25 -#: views/form/view-school.php:22 views/hr/view.php:199 -#: views/program/add.php:126 views/program/view.php:130 views/staff/add.php:144 -#: views/staff/view.php:169 views/student/add-prog.php:89 -#: views/student/add.php:121 views/student/sacp.php:73 -msgid "School" +#: views/financial/create-bill.php:199 +msgid "" +"Comments will only be posted when a bill is initially created. If you are " +"adding a fee to an already existing bill and want to add a comment about the " +"new addition, you can do so when viewing the student's bill. Unlike other " +"system comments, these comments will be seen by students." msgstr "" -#: views/form/school.php:54 views/form/school.php:112 -#: views/form/view-school.php:56 -msgid "School Code" +#: views/financial/gl-accounts.php:22 views/financial/gl-accounts.php:41 +#: views/financial/gl-filter.php:41 views/financial/jentry-filter.php:41 +msgid "GL Accounts" msgstr "" -#: views/form/school.php:61 views/form/school.php:113 -#: views/form/view-school.php:63 -msgid "School Name" +#: views/financial/gl-accounts.php:26 +msgid "Chart of Accounts" msgstr "" -#: views/form/semester.php:22 views/form/semester.php:25 -#: views/form/semester.php:73 views/form/semester.php:155 -#: views/form/term.php:54 views/form/term.php:172 -#: views/form/view-semester.php:22 views/form/view-semester.php:75 -#: views/form/view-term.php:56 -msgid "Semester" +#: views/financial/gl-accounts.php:43 views/financial/gl-filter.php:43 +#: views/financial/gl-summary.php:22 views/financial/gl-summary.php:33 +#: views/financial/jentry-filter.php:43 +msgid "General Ledger Summary" msgstr "" -#: views/form/semester.php:66 views/form/view-semester.php:68 -msgid "Semester Code" +#: views/financial/gl-accounts.php:56 +msgid "Account Number" msgstr "" -#: views/form/semester.php:86 views/form/semester.php:156 -#: views/form/term.php:93 views/form/term.php:173 -#: views/form/view-semester.php:88 views/form/view-term.php:95 -#: views/hr/add.php:183 views/hr/positions.php:113 views/hr/positions.php:235 -#: views/hr/view.php:274 views/person/addr-form.php:126 -#: views/person/addr.php:130 views/person/perc.php:61 views/person/perc.php:186 -#: views/staff/add.php:186 views/student/add-prog.php:146 -#: views/student/shis.php:66 views/student/shis.php:225 -#: views/student/sttr.php:64 -msgid "Start Date" +#: views/financial/gl-accounts.php:102 views/financial/gl-accounts.php:161 +#: views/financial/view-jentry.php:82 +msgid "Account" msgstr "" -#: views/form/specialization.php:22 views/form/specialization.php:25 -#: views/program/add.php:238 views/program/ajax.php:682 -#: views/program/view.php:243 -#: views/student/templates/transcript/default.template.php:168 -msgid "Specialization" +#: views/financial/gl-accounts.php:108 views/financial/gl-accounts.php:167 +msgid "Account #" msgstr "" -#: views/form/specialization.php:54 views/form/specialization.php:99 -#: views/form/view-specialization.php:56 views/program/ajax.php:694 -msgid "Specialization Code" +#: views/financial/gl-accounts.php:117 views/financial/gl-accounts.php:176 +msgid "Account Name" msgstr "" -#: views/form/specialization.php:61 views/form/specialization.php:100 -#: views/form/view-specialization.php:63 views/program/ajax.php:701 -msgid "Specialization Name" +#: views/financial/gl-accounts.php:126 views/financial/gl-accounts.php:185 +msgid "Account Type" msgstr "" -#: views/form/stld.php:27 views/form/stld.php:97 views/form/stld.php:152 -msgid "L - Less than half time" +#: views/financial/gl-filter.php:22 views/financial/gl-filter.php:25 +msgid "Search General Ledger" msgstr "" -#: views/form/stld.php:27 views/form/stld.php:98 views/form/stld.php:153 -msgid "H - Half time" +#: views/financial/gl-filter.php:50 views/financial/jentry-filter.php:50 +msgid "Select statement period" msgstr "" -#: views/form/stld.php:27 views/form/stld.php:99 views/form/stld.php:154 -msgid "Q - Quarter Time" +#: views/financial/gl-filter.php:63 views/financial/jentry-filter.php:63 +msgid "From" msgstr "" -#: views/form/stld.php:27 views/form/stld.php:100 views/form/stld.php:155 -msgid "F - Full time" +#: views/financial/gl-filter.php:81 views/financial/jentry-filter.php:81 +msgid "To" msgstr "" -#: views/form/stld.php:27 views/form/stld.php:101 views/form/stld.php:156 -msgid "O - Overload" +#: views/financial/gl-summary.php:41 views/financial/jentries.php:41 +msgid "Today's Date" msgstr "" -#: views/form/stld.php:40 views/form/stld.php:43 -msgid "Student Load Rules (STLD)" +#: views/financial/gl-summary.php:46 views/financial/jentries.php:46 +msgid "Statement Period" msgstr "" -#: views/form/stld.php:193 -msgid "Test Student Load Rule" +#: views/financial/gl-summary.php:57 +msgid "GL Number" msgstr "" -#: views/form/stld.php:231 views/form/term.php:22 views/form/term.php:25 -#: views/form/term.php:73 views/form/term.php:171 views/form/view-term.php:22 -#: views/form/view-term.php:75 views/section/add.php:88 -#: views/section/catalog.php:42 views/section/index.php:62 -#: views/section/register.php:115 views/section/sros.php:70 -#: views/section/view.php:101 views/student/fgrades.php:36 -#: views/student/stac.php:64 -#: views/student/templates/transcript/default.template.php:94 -#: views/student/terms.php:36 -msgid "Term" +#: views/financial/gl-summary.php:58 +msgid "Account Title" msgstr "" -#: views/form/term.php:66 views/form/view-term.php:68 -msgid "Term Code" +#: views/financial/gl-summary.php:60 +msgid "Opening" msgstr "" -#: views/form/term.php:80 views/form/view-term.php:82 -msgid "Reporting Term" +#: views/financial/gl-summary.php:61 views/financial/view-jentry.php:104 +msgid "Debit" msgstr "" -#: views/form/term.php:117 views/form/view-term.php:119 -msgid "Drop/Add End Date" -msgstr "" - -#: views/form/view-acad-year.php:24 views/form/view-acad-year.php:27 -msgid "View Academic Year" -msgstr "" - -#: views/form/view-aclv.php:131 -msgid "ALST" -msgstr "" - -#: views/form/view-aclv.php:146 -msgid "STLD" -msgstr "" - -#: views/form/view-aclv.php:161 -msgid "CLAS" +#: views/financial/gl-summary.php:62 views/financial/view-jentry.php:108 +msgid "Credit" msgstr "" -#: views/form/view-aclv.php:176 views/form/view-clas.php:88 -msgid "CLVR" +#: views/financial/gl-summary.php:63 +msgid "Closing" msgstr "" -#: views/form/view-building.php:24 -msgid "View Building" +#: views/financial/gl-summary.php:84 +msgid "Total" msgstr "" -#: views/form/view-building.php:27 views/form/view-ccd.php:27 -#: views/form/view-cip.php:27 views/form/view-location.php:27 -#: views/form/view-major.php:27 views/form/view-minor.php:27 -#: views/form/view-room.php:27 views/form/view-specialization.php:27 -#: views/form/view-subject.php:27 -msgid "Viewing " +#: views/financial/gl-summary.php:94 views/financial/jentries.php:88 +#: views/financial/view-jentry.php:118 +msgid "This computer generated statement does not need signature." msgstr "" -#: views/form/view-ccd.php:24 -msgid "View CCD" +#: views/financial/index.php:22 views/student/vbill.php:26 +msgid "Bill" msgstr "" -#: views/form/view-cip.php:24 -msgid "View CIP" +#: views/financial/index.php:60 views/financial/view-bill.php:76 +#: views/financial/view-comments.php:71 views/student/vbill.php:52 +msgid "Invoice #" msgstr "" -#: views/form/view-clas.php:27 -msgid "Viewing" +#: views/financial/index.php:61 views/index/apply.php:71 +#: views/index/profile.php:45 views/person/add.php:119 +#: views/person/addr-form.php:66 views/person/addr.php:70 +#: views/person/index.php:64 views/person/view.php:95 views/staff/index.php:62 +#: views/student/index.php:59 +msgid "Last Name" msgstr "" -#: views/form/view-clas.php:76 -msgid "Acad. Level" +#: views/financial/index.php:62 views/index/apply.php:69 +#: views/index/profile.php:41 views/person/add.php:115 +#: views/person/addr-form.php:62 views/person/addr.php:66 +#: views/person/index.php:65 views/person/view.php:91 views/staff/index.php:63 +#: views/student/index.php:60 +msgid "First Name" msgstr "" -#: views/form/view-degree.php:24 views/form/view-degree.php:27 -msgid "View Degree" +#: views/financial/index.php:111 +msgid "Bill Search" msgstr "" -#: views/form/view-department.php:24 views/form/view-department.php:27 -msgid "View Department" +#: views/financial/issue-refund.php:123 views/financial/view-refunds.php:247 +msgid "Refund Amount" msgstr "" -#: views/form/view-grade-scale.php:22 -msgid "Grading Scale" +#: views/financial/issue-refund.php:132 views/financial/view-refunds.php:256 +msgid "Refund Date" msgstr "" -#: views/form/view-grade-scale.php:24 views/form/view-grade-scale.php:27 -msgid "Edit Grade" +#: views/financial/jentries.php:22 +msgid "General Journal Entries" msgstr "" -#: views/form/view-location.php:24 -msgid "View Location" +#: views/financial/jentries.php:33 +msgid "Journal Entry Summary" msgstr "" -#: views/form/view-major.php:24 -msgid "View Major" +#: views/financial/jentries.php:61 views/financial/view-jentry.php:66 +msgid "Posted by" msgstr "" -#: views/form/view-minor.php:24 -msgid "View Minor" +#: views/financial/jentries.php:81 +msgid "Total Amount" msgstr "" -#: views/form/view-rest.php:24 views/form/view-rest.php:27 -msgid "Edit Restriction" +#: views/financial/jentry-filter.php:22 views/financial/jentry-filter.php:25 +msgid "Search Journal Entries" msgstr "" -#: views/form/view-room.php:24 -msgid "View Room" +#: views/financial/journal-entries.php:56 views/financial/payment-plan.php:316 +msgid "Posted By" msgstr "" -#: views/form/view-school.php:24 views/form/view-school.php:27 -msgid "View School" +#: views/financial/payment-plan.php:92 views/financial/payment-plan.php:259 +msgid "Payment Frequency" msgstr "" -#: views/form/view-semester.php:24 views/form/view-semester.php:27 -msgid "View Semester" +#: views/financial/payment-plan.php:96 views/financial/payment-plan.php:263 +msgid "Daily" msgstr "" -#: views/form/view-specialization.php:22 -msgid "Specialization List" +#: views/financial/payment-plan.php:98 views/financial/payment-plan.php:265 +msgid "Bi-Weekly" msgstr "" -#: views/form/view-specialization.php:24 -msgid "View Specialization" +#: views/financial/payment-plan.php:99 views/financial/payment-plan.php:266 +msgid "Monthly" msgstr "" -#: views/form/view-subject.php:24 -msgid "View Subject" +#: views/financial/payment-plan.php:100 views/financial/payment-plan.php:267 +msgid "Yearly" msgstr "" -#: views/form/view-term.php:24 views/form/view-term.php:27 -msgid "View Term" +#: views/financial/payment-plan.php:108 +msgid "Frequency Amount" msgstr "" -#: views/hr/add.php:23 views/hr/index.php:26 views/hr/positions.php:24 -#: views/hr/view.php:24 -msgid "Search Employee" +#: views/financial/payment-plan.php:197 views/section/attendance-report.php:58 +#: views/section/students.php:92 +msgid "Student ID" msgstr "" -#: views/hr/add.php:25 views/hr/add.php:102 views/hr/index.php:90 -#: views/hr/jobs.php:85 views/hr/jobs.php:157 views/hr/positions.php:94 -#: views/hr/view.php:103 views/staff/view.php:103 -msgid "Add Position" +#: views/financial/payment-plan.php:200 +msgid "Pay Frequency" msgstr "" -#: views/hr/add.php:57 views/hr/positions.php:58 views/hr/view.php:58 -#: views/staff/view.php:58 -msgid "Title:" +#: views/financial/payment-plan.php:352 +msgid "Start and End Date" msgstr "" -#: views/hr/add.php:58 views/hr/positions.php:59 views/hr/view.php:59 -#: views/staff/view.php:59 -msgid "Dept:" +#: views/financial/payment-plan.php:357 +msgid "" +"The start date will act as the date the student and the institution agreed " +"upon said payment plan. Start date is a required field but End date is " +"optional." msgstr "" -#: views/hr/add.php:59 views/hr/positions.php:60 views/hr/view.php:60 -#: views/staff/view.php:60 -msgid "Office:" +#: views/financial/payment-plan.php:381 +msgid "" +"Ignore this field if the payment plan is not associated with a particular " +"term." msgstr "" -#: views/hr/add.php:65 views/hr/positions.php:66 views/hr/view.php:66 -#: views/staff/view.php:66 -msgid "Office Phone:" +#: views/financial/payment-plan.php:405 +msgid "" +"Place any notes and or instructions for the student. This will appear on the " +"account history screen for both the student as well as student accounts." msgstr "" -#: views/hr/add.php:100 views/hr/positions.php:92 views/hr/view.php:101 -#: views/staff/view.php:101 -msgid "Staff Record" +#: views/financial/payment-plan.php:425 +msgid "Payment Plan:" msgstr "" -#: views/hr/add.php:101 views/hr/index.php:92 views/hr/positions.php:93 -#: views/hr/view.php:102 views/staff/view.php:102 -msgid "View Positions" +#: views/financial/payment-plan.php:430 +msgid "Are you sure you want to delete this payment plan?" msgstr "" -#: views/hr/add.php:116 views/hr/positions.php:174 views/hr/view.php:117 -#: views/staff/add.php:62 -msgid "Employment Type" +#: views/financial/paypal.php:22 views/financial/paypal.php:25 +msgid "Paypal Settings" msgstr "" -#: views/hr/add.php:128 views/hr/positions.php:186 views/hr/view.php:129 -#: views/staff/add.php:74 -msgid "Staff Type" +#: views/financial/paypal.php:53 +msgid "Enable?" msgstr "" -#: views/hr/add.php:132 views/hr/positions.php:190 views/hr/view.php:133 -#: views/staff/add.php:78 -msgid "Faculty" +#: views/financial/paypal.php:66 +msgid "Post Over SSL?" msgstr "" -#: views/hr/add.php:133 views/hr/positions.php:191 views/hr/view.php:134 -#: views/staff/add.php:53 views/staff/add.php:79 views/staff/index.php:22 -msgid "Staff" +#: views/financial/paypal.php:79 views/financial/paypal.php:152 +msgid "Business Email" msgstr "" -#: views/hr/add.php:141 views/hr/positions.php:199 views/hr/view.php:142 -#: views/staff/add.php:87 -msgid "Supervisor" +#: views/financial/paypal.php:94 +msgid "Currency Code" msgstr "" -#: views/hr/add.php:153 views/hr/jobs.php:46 views/hr/positions.php:108 -#: views/hr/positions.php:211 views/hr/view.php:154 views/staff/add.php:99 -msgid "Job Title" +#: views/financial/paypal.php:98 +msgid "US Dollar" msgstr "" -#: views/hr/add.php:171 views/hr/positions.php:112 views/hr/positions.php:223 -#: views/hr/view.php:262 views/staff/add.php:174 -msgid "Hire Date" +#: views/financial/paypal.php:99 +msgid "Austrailian Dollar" msgstr "" -#: views/hr/add.php:207 views/hr/view.php:324 views/person/add.php:310 -#: views/person/view.php:272 views/staff/add.php:232 views/staff/view.php:239 -#: views/student/add-prog.php:170 views/student/add.php:226 -#: views/student/sacp.php:224 -msgid "Approved By" +#: views/financial/paypal.php:100 +msgid "Euro" msgstr "" -#: views/hr/grades.php:46 views/hr/grades.php:99 views/hr/grades.php:155 -msgid "Starting Salary" +#: views/financial/paypal.php:108 +msgid "Testing?" msgstr "" -#: views/hr/grades.php:47 views/hr/grades.php:108 views/hr/grades.php:164 -msgid "Ending Salary" +#: views/financial/paypal.php:134 +msgid "IPN URL to enter into PayPal settings:" msgstr "" -#: views/hr/grades.php:83 views/hr/grades.php:139 -msgid "Add Pay Grade" +#: views/financial/paypal.php:136 +msgid "" +"There is no need to enable IPN in PayPal. eduTrac SIS will automatically let " +"PayPal know to use the above URL." msgstr "" -#: views/hr/index.php:23 -msgid "Employee" +#: views/financial/paypal.php:157 +msgid "" +"Set this to the email that is specified on your Paypal account. If you are " +"in testing mode, make sure to set this to the email address in your Sandbox " +"account." msgstr "" -#: views/hr/index.php:62 views/index/profile.php:29 -#: views/permission/index.php:43 views/person/index.php:63 -#: views/role/index.php:43 -#: views/section/templates/roster/default.template.php:83 -#: views/staff/index.php:61 views/student/index.php:58 -msgid "ID" +#: views/financial/paypal.php:176 +msgid "Sandbox Mode" msgstr "" -#: views/hr/index.php:119 -msgid "Employee Search" +#: views/financial/paypal.php:181 +msgid "" +"If you are testing to make sure that the communication between your site and " +"Paypal is working, set this to 'Yes' otherwise set it to 'No' for Live " +"production." msgstr "" -#: views/hr/jobs.php:45 views/hr/jobs.php:94 views/hr/jobs.php:166 -#: views/hr/positions.php:107 -msgid "Pay Grade" +#: views/financial/view-bill.php:27 views/financial/view-comments.php:31 +msgid "View Bill" msgstr "" -#: views/hr/jobs.php:47 views/hr/jobs.php:115 views/hr/jobs.php:187 -#: views/hr/positions.php:109 views/hr/view.php:223 -msgid "Hourly Wage" +#: views/financial/view-bill.php:51 views/financial/view-comments.php:55 +#: views/financial/view-payments.php:55 views/financial/view-refunds.php:55 +msgid "Refunds" msgstr "" -#: views/hr/jobs.php:48 views/hr/jobs.php:124 views/hr/jobs.php:196 -msgid "Hours Per Week" +#: views/financial/view-bill.php:67 +msgid "Delete Bill / Invoice" msgstr "" -#: views/hr/positions.php:26 -msgid "Positions" +#: views/financial/view-bill.php:85 +msgid "Invoice Date / Term" msgstr "" -#: views/hr/positions.php:110 views/hr/view.php:241 -msgid "Weekly Hours" +#: views/financial/view-bill.php:105 views/student/vbill.php:80 +msgid "Tuition / Adjusted" msgstr "" -#: views/hr/positions.php:111 views/hr/view.php:250 -msgid "Monthly Salary" +#: views/financial/view-bill.php:154 +msgid "Are you sure you want to delete this fee?" msgstr "" -#: views/hr/positions.php:133 -msgid "Not Set" +#: views/financial/view-bill.php:188 views/student/vbill.php:129 +msgid "Begin / End Balance" msgstr "" -#: views/hr/positions.php:162 -msgid "Edit Position" +#: views/financial/view-bill.php:200 views/student/vbill.php:141 +msgid "Credit / Refund Totals" msgstr "" -#: views/hr/view.php:26 -msgid "View Employee" +#: views/financial/view-bill.php:225 views/financial/view-comments.php:104 +#: views/student/vbill.php:166 +msgid "Student Comments" msgstr "" -#: views/hr/view.php:178 views/staff/add.php:123 views/staff/view.php:148 -msgid "Office" +#: views/financial/view-bill.php:258 +msgid "Previous" msgstr "" -#: views/hr/view.php:190 views/staff/add.php:135 views/staff/view.php:160 -msgid "Office Phone" +#: views/financial/view-bill.php:261 +msgid "Next" msgstr "" -#: views/hr/view.php:307 views/staff/add.php:215 views/staff/view.php:204 -msgid "I Inactive" +#: views/financial/view-bill.php:280 +msgid "Delete Invoice: " msgstr "" -#: views/hr/view.php:315 views/person/addr-form.php:208 -#: views/person/addr.php:216 views/staff/view.php:230 views/student/add.php:235 -msgid "Add Date" +#: views/financial/view-bill.php:285 +msgid "" +"There is no undoing this, so are you sure you want to delete this bill / " +"invoice." msgstr "" -#: views/index/index.php:42 views/permission/index.php:46 -#: views/role/index.php:45 -msgid "Edit" +#: views/financial/view-bill.php:306 +msgid "Bill / Invoice Term" msgstr "" -#: views/index/index.php:50 -msgid "News & Announcements" +#: views/financial/view-bill.php:311 +msgid "" +"A bill/invoice is connected to a term and there is ONE bill per/term, per/" +"student. It is strongly encouraged to not change the term on a student's " +"bill. If you do change the term, make sure to change it to a term where a " +"bill does not currently exists. If you update the bill to a term where a " +"bill already exists for a student, this will have disastrous effects and it " +"cannot be undone." msgstr "" -#: views/index/index.php:59 -msgid "by" +#: views/financial/view-bill.php:312 +msgid "" +"Moreover, if you created the bill using the wrong term, and you need to move " +"the bill to a term where a current bill *does not* exist " +"for the student, you first need to change/update the term on fees, payments, " +"and refunds first, and then change/update the term on the bill." msgstr "" -#: views/index/index.php:63 -msgid "read more" +#: views/financial/view-comments.php:80 +msgid "Invoice Date" msgstr "" -#: views/index/index.php:80 -msgid "Welcome Message" +#: views/financial/view-jentry.php:22 views/financial/view-jentry.php:33 +msgid "General Journal Entry" msgstr "" -#: views/index/login.php:42 -msgid "Username / Email" +#: views/financial/view-jentry.php:45 +msgid "Journal ID" msgstr "" -#: views/index/login.php:44 -msgid "Password" +#: views/financial/view-payments.php:31 +msgid "View Bill Payments" msgstr "" -#: views/index/login.php:48 -msgid "Remember me" +#: views/financial/view-payments.php:71 views/financial/view-refunds.php:71 +msgid "Invoice # / Date / Term" msgstr "" -#: views/index/login.php:63 -msgid "Request Password Reset" +#: views/financial/view-payments.php:94 +msgid "Date / Type / Check / Term / Payment" msgstr "" -#: views/index/login.php:95 -msgid "" -"If you've forgotten your password, send a request to the administrator to " -"have it reset." +#: views/financial/view-payments.php:126 +msgid "Payment Note:" msgstr "" -#: views/index/login.php:108 -msgid "Full Name" +#: views/financial/view-payments.php:151 +msgid "Are you sure you want to delete this payment?" msgstr "" -#: views/index/login.php:126 -msgid "Student / Staff ID" +#: views/financial/view-refunds.php:31 +msgid "View Bill Refunds" msgstr "" -#: views/index/login.php:135 views/setting/sms.php:211 -msgid "Message" +#: views/financial/view-refunds.php:94 +msgid "Date / Term / Refund" msgstr "" -#: views/index/offline.php:29 views/setting/index.php:121 -msgid "Offline" +#: views/financial/view-refunds.php:117 +msgid "Refund Note:" msgstr "" -#: views/index/password.php:35 -msgid "Current Password" +#: views/financial/view-refunds.php:138 views/form/import.php:76 +msgid "Refund" msgstr "" -#: views/index/password.php:39 -msgid "New Password" +#: views/financial/view-refunds.php:142 +msgid "Are you sure you want to delete this refund?" msgstr "" -#: views/index/profile.php:19 -msgid "My Profile" +#: views/form/acad-year.php:22 views/form/acad-year.php:25 +#: views/form/acad-year.php:100 views/form/import.php:71 +#: views/form/semester.php:54 views/form/view-acad-year.php:22 +#: views/form/view-semester.php:56 views/program/ajax.php:206 +msgid "Academic Year" msgstr "" -#: views/index/profile.php:37 views/person/add.php:104 views/person/view.php:77 -msgid "Prefix" +#: views/form/acad-year.php:54 views/form/acad-year.php:61 +#: views/form/view-acad-year.php:56 views/form/view-acad-year.php:63 +msgid "Acad Year" msgstr "" -#: views/index/profile.php:41 views/person/add.php:115 -#: views/person/addr-form.php:62 views/person/addr.php:66 -#: views/person/index.php:65 views/person/view.php:91 views/staff/index.php:63 -#: views/student/index.php:60 -msgid "First Name" +#: views/form/acad-year.php:99 +msgid "Academic Year Code" msgstr "" -#: views/index/profile.php:45 views/person/add.php:119 -#: views/person/addr-form.php:66 views/person/addr.php:70 -#: views/person/index.php:64 views/person/view.php:95 views/staff/index.php:62 -#: views/student/index.php:59 -msgid "Last Name" +#: views/form/aclv.php:22 views/form/aclv.php:25 +msgid "Academic Level (ACLV)" msgstr "" -#: views/index/profile.php:49 -msgid "Middle Name" +#: views/form/aclv.php:58 views/form/view-aclv.php:60 +msgid "ACLV Code" msgstr "" -#: views/index/profile.php:61 -msgid "SSN" +#: views/form/aclv.php:65 views/form/view-aclv.php:67 +msgid "ACLV Name" msgstr "" -#: views/index/profile.php:65 -msgid "Veteran" +#: views/form/aclv.php:72 views/form/view-aclv.php:74 +msgid "HT / FT / OVR" msgstr "" -#: views/index/profile.php:69 -msgid "Ethnicity" +#: views/form/aclv.php:95 views/form/view-aclv.php:97 +msgid "Grad. Level" msgstr "" -#: views/index/profile.php:73 views/person/add.php:134 -#: views/person/view.php:110 -msgid "Date of Birth" +#: views/form/aclv.php:108 views/form/view-aclv.php:110 +msgid "Comp. Months" msgstr "" -#: views/index/profile.php:81 views/person/add.php:199 -#: views/person/view.php:155 -msgid "Emergency Contact" +#: views/form/aclv.php:146 views/form/department.php:135 views/form/rest.php:54 +#: views/form/rest.php:109 views/form/view-rest.php:56 +#: views/mrkt/list/create.php:57 views/mrkt/list/index.php:43 +#: views/mrkt/list/view.php:57 views/rlde/index.php:50 +msgid "Code" msgstr "" -#: views/index/profile.php:85 views/person/add.php:206 -#: views/person/view.php:162 -msgid "Emergency Contact's Phone" +#: views/form/aclv.php:191 views/form/view-aclv.php:212 +msgid "Academic Level (ACLV) Screen" msgstr "" +#: views/form/address.php:37 views/index/apply.php:79 #: views/index/profile.php:89 views/person/add.php:219 #: views/person/addr-form.php:82 views/person/addr.php:86 #: views/person/view.php:175 msgid "Address1" msgstr "" +#: views/form/address.php:41 views/index/apply.php:81 #: views/index/profile.php:93 views/person/add.php:223 #: views/person/addr-form.php:86 views/person/addr.php:90 #: views/person/view.php:179 msgid "Address2" msgstr "" +#: views/form/address.php:56 views/index/apply.php:118 #: views/index/profile.php:105 msgid "Zip" msgstr "" -#: views/index/spam.php:23 -msgid "Spam Registration" +#: views/form/address.php:60 views/index/apply.php:77 +msgid "Phone #" msgstr "" -#: views/index/spam.php:25 -msgid "We don't allows spammers the ability to apply for admissions." +#: views/form/address.php:71 views/form/department.php:137 +#: views/index/apply.php:75 views/index/login.php:99 views/index/profile.php:53 +#: views/setting/email.php:50 views/setting/index.php:51 +#: views/setting/registration.php:50 views/setting/sms.php:55 +#: views/setting/templates.php:157 views/staff/view.php:221 +msgid "Email" +msgstr "" + +#: views/form/alst.php:28 views/form/alst.php:98 views/form/alst.php:150 +msgid "Good" +msgstr "" + +#: views/form/alst.php:28 views/form/alst.php:99 views/form/alst.php:151 +msgid "Probation" +msgstr "" + +#: views/form/alst.php:41 views/form/alst.php:44 +msgid "Academic Level Standing Rules (ALST)" +msgstr "" + +#: views/form/alst.php:72 views/form/clvr.php:72 views/form/stld.php:71 +#: views/rlde/add.php:75 views/rlde/view.php:77 views/section/rrsr.php:81 +msgid "Rule Code" +msgstr "" + +#: views/form/alst.php:73 views/form/clvr.php:73 views/form/stld.php:72 +#: views/section/rrsr.php:82 +msgid "Value" +msgstr "" + +#: views/form/alst.php:121 views/form/clvr.php:120 views/form/stld.php:123 +#: views/section/rrsr.php:125 +msgid "Are you sure you want to delete this record from your rule set?" +msgstr "" + +#: views/form/alst.php:188 +msgid "Test Academic Level Standing Rule" +msgstr "" + +#: views/form/building.php:22 views/form/building.php:25 +#: views/form/import.php:88 views/form/room.php:54 views/form/room.php:124 +#: views/form/school.php:68 views/form/school.php:114 +#: views/form/view-building.php:22 views/form/view-room.php:56 +#: views/form/view-school.php:70 views/hr/view.php:166 +#: views/section/catalog-pdf.php:58 views/section/offering-info.php:70 +#: views/staff/add.php:111 views/staff/view.php:136 +#: views/student/schedule.php:38 +msgid "Building" +msgstr "" + +#: views/form/building.php:54 views/form/building.php:115 +#: views/form/view-building.php:56 +msgid "Building Code" +msgstr "" + +#: views/form/building.php:61 views/form/building.php:116 +#: views/form/view-building.php:63 +msgid "Building Name" +msgstr "" + +#: views/form/ccd.php:22 views/form/ccd.php:25 views/form/import.php:84 +#: views/form/view-ccd.php:22 views/program/add.php:199 +#: views/program/ajax.php:402 views/program/view.php:204 +#: views/student/templates/transcript/default.template.php:169 +msgid "CCD" +msgstr "" + +#: views/form/ccd.php:54 views/form/ccd.php:99 views/form/view-ccd.php:56 +msgid "CCD Code" +msgstr "" + +#: views/form/ccd.php:61 views/form/ccd.php:100 views/form/view-ccd.php:63 +msgid "CCD Name" +msgstr "" + +#: views/form/cip.php:22 views/form/cip.php:25 views/form/import.php:86 +#: views/form/view-cip.php:22 views/program/add.php:263 +#: views/program/ajax.php:775 views/program/view.php:268 +msgid "CIP" +msgstr "" + +#: views/form/cip.php:54 views/form/cip.php:97 views/form/view-cip.php:56 +#: views/program/ajax.php:787 +msgid "CIP Code" +msgstr "" + +#: views/form/cip.php:61 views/form/cip.php:98 views/form/view-cip.php:63 +#: views/program/ajax.php:794 +msgid "CIP Name" +msgstr "" + +#: views/form/clas.php:42 +msgid "Class Level" +msgstr "" + +#: views/form/clas.php:63 +msgid "CLAS Code" +msgstr "" + +#: views/form/clas.php:64 +msgid "CLAS Name" +msgstr "" + +#: views/form/clvr.php:41 views/form/clvr.php:44 +msgid "Class Level Rules (CLVR)" +msgstr "" + +#: views/form/clvr.php:186 +msgid "Test Class Rule" +msgstr "" + +#: views/form/degree.php:54 views/form/degree.php:97 +#: views/form/view-degree.php:56 views/program/ajax.php:315 +msgid "Degree Code" +msgstr "" + +#: views/form/degree.php:61 views/form/degree.php:98 +#: views/form/view-degree.php:63 views/program/ajax.php:324 +msgid "Degree Name" +msgstr "" + +#: views/form/department.php:90 views/form/view-department.php:92 +msgid "Department Phone #" +msgstr "" + +#: views/form/department.php:138 views/hr/index.php:65 +#: views/index/profile.php:57 views/person/add.php:257 +#: views/person/view.php:207 +msgid "Phone" +msgstr "" + +#: views/form/grade-scale.php:22 views/form/grade-scale.php:25 +msgid "Grade Scale" +msgstr "" + +#: views/form/grade-scale.php:61 views/form/grade-scale.php:164 +#: views/form/view-grade-scale.php:63 +msgid "Percent" +msgstr "" + +#: views/form/grade-scale.php:68 views/form/view-grade-scale.php:70 +msgid "Points" +msgstr "" + +#: views/form/grade-scale.php:75 views/form/grade-scale.php:135 +#: views/form/view-grade-scale.php:77 views/form/view-grade-scale.php:136 +msgid "Count in GPA" +msgstr "" + +#: views/form/grade-scale.php:140 views/form/view-grade-scale.php:141 +msgid "Should this be applied and calculated in the GPA?" +msgstr "" + +#: views/form/grade-scale.php:165 +#: views/student/templates/transcript/default.template.php:93 +msgid "Grade Points" +msgstr "" + +#: views/form/import.php:22 views/form/import.php:25 +msgid "Quick Importer" +msgstr "" + +#: views/form/import.php:65 +msgid "Database Table" +msgstr "" + +#: views/form/import.php:69 views/form/semester.php:22 +#: views/form/semester.php:25 views/form/semester.php:73 +#: views/form/semester.php:155 views/form/term.php:54 views/form/term.php:172 +#: views/form/view-semester.php:22 views/form/view-semester.php:75 +#: views/form/view-term.php:56 +msgid "Semester" +msgstr "" + +#: views/form/import.php:72 +msgid "Student Bill/Invoice" +msgstr "" + +#: views/form/import.php:77 +msgid "Student Fee" +msgstr "" + +#: views/form/import.php:83 views/form/minor.php:22 views/form/minor.php:25 +#: views/form/view-minor.php:22 views/program/add.php:225 +#: views/program/ajax.php:589 views/program/view.php:230 +#: views/student/templates/transcript/default.template.php:167 +msgid "Minor" +msgstr "" + +#: views/form/import.php:85 views/form/specialization.php:22 +#: views/form/specialization.php:25 views/program/add.php:238 +#: views/program/ajax.php:682 views/program/view.php:243 +#: views/student/templates/transcript/default.template.php:168 +msgid "Specialization" +msgstr "" + +#: views/form/import.php:90 views/form/school.php:22 views/form/school.php:25 +#: views/form/view-school.php:22 views/hr/view.php:199 +#: views/program/add.php:126 views/program/view.php:130 views/staff/add.php:144 +#: views/staff/view.php:169 views/student/add-prog.php:89 +#: views/student/add.php:121 views/student/sacp.php:73 +msgid "School" +msgstr "" + +#: views/form/import.php:95 views/person/adsu.php:51 views/staff/view.php:117 +msgid "Address" +msgstr "" + +#: views/form/import.php:96 +msgid "Job" +msgstr "" + +#: views/form/import.php:97 views/hr/add.php:133 views/hr/positions.php:191 +#: views/hr/view.php:134 views/staff/add.php:53 views/staff/add.php:79 +#: views/staff/index.php:22 +msgid "Staff" +msgstr "" + +#: views/form/import.php:98 +msgid "Staff Meta" +msgstr "" + +#: views/form/import.php:103 +msgid "Student Academic Cred" +msgstr "" + +#: views/form/import.php:104 +msgid "Student Academic Level" +msgstr "" + +#: views/form/import.php:105 +msgid "Student Course Section" +msgstr "" + +#: views/form/import.php:106 +msgid "Student Program" +msgstr "" + +#: views/form/import.php:107 +msgid "Student Term" +msgstr "" + +#: views/form/import.php:108 views/section/view-assignment.php:25 +msgid "Assignment" +msgstr "" + +#: views/form/location.php:54 views/form/location.php:99 +#: views/form/view-location.php:56 views/program/ajax.php:414 +#: views/program/ajax.php:880 views/section/ajax.php:204 +msgid "Location Code" +msgstr "" + +#: views/form/location.php:61 views/form/location.php:100 +#: views/form/view-location.php:63 views/program/ajax.php:421 +#: views/program/ajax.php:887 views/section/ajax.php:211 +msgid "Location Name" +msgstr "" + +#: views/form/major.php:54 views/form/major.php:99 views/form/view-major.php:56 +#: views/program/ajax.php:508 +msgid "Major Code" +msgstr "" + +#: views/form/major.php:61 views/form/major.php:100 +#: views/form/view-major.php:63 views/program/ajax.php:515 +msgid "Major Name" +msgstr "" + +#: views/form/minor.php:54 views/form/minor.php:99 views/form/view-minor.php:56 +#: views/program/ajax.php:601 +msgid "Minor Code" +msgstr "" + +#: views/form/minor.php:61 views/form/minor.php:100 +#: views/form/view-minor.php:63 views/program/ajax.php:608 +msgid "Minor Name" +msgstr "" + +#: views/form/photo.php:21 +msgid "Upload School Photo" +msgstr "" + +#: views/form/photo.php:34 +msgid "" +"If you decide later on that you'd rather use the Gravatar service instead of " +"the photo you uploaded, click the photo to delete it." +msgstr "" + +#: views/form/rest.php:22 views/form/rest.php:25 views/form/view-rest.php:22 +#: views/person/perc.php:59 views/person/perc.php:169 +msgid "Restriction" +msgstr "" + +#: views/form/room.php:66 views/form/view-room.php:68 +msgid "Room Code" +msgstr "" + +#: views/form/room.php:79 views/form/room.php:125 views/form/view-room.php:81 +msgid "Room Number" +msgstr "" + +#: views/form/school.php:54 views/form/school.php:112 +#: views/form/view-school.php:56 +msgid "School Code" +msgstr "" + +#: views/form/school.php:61 views/form/school.php:113 +#: views/form/view-school.php:63 +msgid "School Name" +msgstr "" + +#: views/form/semester.php:66 views/form/view-semester.php:68 +msgid "Semester Code" +msgstr "" + +#: views/form/specialization.php:54 views/form/specialization.php:99 +#: views/form/view-specialization.php:56 views/program/ajax.php:694 +msgid "Specialization Code" +msgstr "" + +#: views/form/specialization.php:61 views/form/specialization.php:100 +#: views/form/view-specialization.php:63 views/program/ajax.php:701 +msgid "Specialization Name" +msgstr "" + +#: views/form/stld.php:27 views/form/stld.php:97 views/form/stld.php:152 +msgid "L - Less than half time" +msgstr "" + +#: views/form/stld.php:27 views/form/stld.php:98 views/form/stld.php:153 +msgid "H - Half time" +msgstr "" + +#: views/form/stld.php:27 views/form/stld.php:99 views/form/stld.php:154 +msgid "Q - Quarter Time" +msgstr "" + +#: views/form/stld.php:27 views/form/stld.php:100 views/form/stld.php:155 +msgid "F - Full time" +msgstr "" + +#: views/form/stld.php:27 views/form/stld.php:101 views/form/stld.php:156 +msgid "O - Overload" +msgstr "" + +#: views/form/stld.php:40 views/form/stld.php:43 +msgid "Student Load Rules (STLD)" +msgstr "" + +#: views/form/stld.php:193 +msgid "Test Student Load Rule" +msgstr "" + +#: views/form/term.php:66 views/form/view-term.php:68 +msgid "Term Code" +msgstr "" + +#: views/form/term.php:80 views/form/view-term.php:82 +msgid "Reporting Term" +msgstr "" + +#: views/form/term.php:117 views/form/view-term.php:119 +msgid "Drop/Add End Date" +msgstr "" + +#: views/form/view-acad-year.php:24 views/form/view-acad-year.php:27 +msgid "View Academic Year" +msgstr "" + +#: views/form/view-aclv.php:131 +msgid "ALST" +msgstr "" + +#: views/form/view-aclv.php:146 +msgid "STLD" +msgstr "" + +#: views/form/view-aclv.php:161 +msgid "CLAS" +msgstr "" + +#: views/form/view-aclv.php:176 +msgid "CLVR" +msgstr "" + +#: views/form/view-building.php:24 +msgid "View Building" +msgstr "" + +#: views/form/view-building.php:27 views/form/view-ccd.php:27 +#: views/form/view-cip.php:27 views/form/view-location.php:27 +#: views/form/view-major.php:27 views/form/view-minor.php:27 +#: views/form/view-room.php:27 views/form/view-specialization.php:27 +#: views/form/view-subject.php:27 +msgid "Viewing " +msgstr "" + +#: views/form/view-ccd.php:24 +msgid "View CCD" +msgstr "" + +#: views/form/view-cip.php:24 +msgid "View CIP" +msgstr "" + +#: views/form/view-degree.php:24 views/form/view-degree.php:27 +msgid "View Degree" +msgstr "" + +#: views/form/view-department.php:24 views/form/view-department.php:27 +msgid "View Department" +msgstr "" + +#: views/form/view-grade-scale.php:22 +msgid "Grading Scale" +msgstr "" + +#: views/form/view-grade-scale.php:24 views/form/view-grade-scale.php:27 +msgid "Edit Grade" +msgstr "" + +#: views/form/view-location.php:24 +msgid "View Location" +msgstr "" + +#: views/form/view-major.php:24 +msgid "View Major" +msgstr "" + +#: views/form/view-minor.php:24 +msgid "View Minor" +msgstr "" + +#: views/form/view-rest.php:24 views/form/view-rest.php:27 +msgid "Edit Restriction" +msgstr "" + +#: views/form/view-room.php:24 +msgid "View Room" +msgstr "" + +#: views/form/view-school.php:24 views/form/view-school.php:27 +msgid "View School" +msgstr "" + +#: views/form/view-semester.php:24 views/form/view-semester.php:27 +msgid "View Semester" +msgstr "" + +#: views/form/view-specialization.php:22 +msgid "Specialization List" +msgstr "" + +#: views/form/view-specialization.php:24 +msgid "View Specialization" +msgstr "" + +#: views/form/view-subject.php:24 +msgid "View Subject" +msgstr "" + +#: views/form/view-term.php:24 views/form/view-term.php:27 +msgid "View Term" +msgstr "" + +#: views/hr/add.php:23 views/hr/index.php:26 views/hr/positions.php:24 +#: views/hr/view.php:24 +msgid "Search Employee" +msgstr "" + +#: views/hr/add.php:25 views/hr/add.php:102 views/hr/index.php:90 +#: views/hr/jobs.php:85 views/hr/jobs.php:157 views/hr/positions.php:94 +#: views/hr/view.php:103 views/staff/view.php:103 +msgid "Add Position" +msgstr "" + +#: views/hr/add.php:57 views/hr/positions.php:58 views/hr/view-timesheet.php:57 +#: views/hr/view.php:58 views/staff/view.php:58 +msgid "Title:" +msgstr "" + +#: views/hr/add.php:58 views/hr/positions.php:59 views/hr/view-timesheet.php:58 +#: views/hr/view.php:59 views/staff/view.php:59 +msgid "Dept:" +msgstr "" + +#: views/hr/add.php:59 views/hr/positions.php:60 views/hr/view-timesheet.php:59 +#: views/hr/view.php:60 views/staff/view.php:60 +msgid "Office:" +msgstr "" + +#: views/hr/add.php:65 views/hr/positions.php:66 views/hr/view-timesheet.php:65 +#: views/hr/view.php:66 views/staff/view.php:66 +msgid "Office Phone:" +msgstr "" + +#: views/hr/add.php:100 views/hr/positions.php:92 views/hr/view.php:101 +#: views/staff/view.php:101 +msgid "Staff Record" +msgstr "" + +#: views/hr/add.php:101 views/hr/index.php:92 views/hr/positions.php:93 +#: views/hr/view.php:102 views/staff/view.php:102 +msgid "View Positions" +msgstr "" + +#: views/hr/add.php:116 views/hr/positions.php:174 views/hr/view.php:117 +#: views/staff/add.php:62 +msgid "Employment Type" +msgstr "" + +#: views/hr/add.php:128 views/hr/positions.php:186 views/hr/view.php:129 +#: views/staff/add.php:74 +msgid "Staff Type" +msgstr "" + +#: views/hr/add.php:132 views/hr/positions.php:190 views/hr/view.php:133 +#: views/staff/add.php:78 +msgid "Faculty" +msgstr "" + +#: views/hr/add.php:141 views/hr/positions.php:199 views/hr/view.php:142 +#: views/staff/add.php:87 +msgid "Supervisor" +msgstr "" + +#: views/hr/add.php:153 views/hr/jobs.php:46 views/hr/positions.php:108 +#: views/hr/positions.php:211 views/hr/timesheets.php:42 +#: views/hr/view-timesheet.php:171 views/hr/view.php:154 views/staff/add.php:99 +#: views/staff/timesheets.php:46 views/staff/timesheets.php:103 +#: views/staff/view-timesheet.php:98 +msgid "Job Title" +msgstr "" + +#: views/hr/add.php:171 views/hr/positions.php:112 views/hr/positions.php:223 +#: views/hr/view.php:262 views/staff/add.php:174 +msgid "Hire Date" +msgstr "" + +#: views/hr/add.php:207 views/hr/view.php:324 views/person/add.php:310 +#: views/person/view.php:272 views/staff/add.php:232 views/staff/view.php:239 +#: views/student/add-prog.php:170 views/student/add.php:226 +#: views/student/sacp.php:224 +msgid "Approved By" +msgstr "" + +#: views/hr/grades.php:46 views/hr/grades.php:99 views/hr/grades.php:155 +msgid "Starting Salary" +msgstr "" + +#: views/hr/grades.php:47 views/hr/grades.php:108 views/hr/grades.php:164 +msgid "Ending Salary" +msgstr "" + +#: views/hr/grades.php:83 views/hr/grades.php:139 +msgid "Add Pay Grade" +msgstr "" + +#: views/hr/index.php:23 views/hr/timesheets.php:41 +msgid "Employee" +msgstr "" + +#: views/hr/index.php:62 views/index/profile.php:29 +#: views/permission/index.php:43 views/person/index.php:63 +#: views/role/index.php:43 +#: views/section/templates/roster/default.template.php:83 +#: views/staff/index.php:61 views/student/index.php:58 +msgid "ID" +msgstr "" + +#: views/hr/index.php:119 +msgid "Employee Search" +msgstr "" + +#: views/hr/jobs.php:45 views/hr/jobs.php:94 views/hr/jobs.php:166 +#: views/hr/positions.php:107 +msgid "Pay Grade" +msgstr "" + +#: views/hr/jobs.php:47 views/hr/jobs.php:115 views/hr/jobs.php:187 +#: views/hr/positions.php:109 views/hr/view.php:223 +msgid "Hourly Wage" +msgstr "" + +#: views/hr/jobs.php:48 views/hr/jobs.php:124 views/hr/jobs.php:196 +msgid "Hours Per Week" +msgstr "" + +#: views/hr/positions.php:26 +msgid "Positions" +msgstr "" + +#: views/hr/positions.php:110 views/hr/view.php:241 +msgid "Weekly Hours" +msgstr "" + +#: views/hr/positions.php:111 views/hr/view.php:250 +msgid "Monthly Salary" +msgstr "" + +#: views/hr/positions.php:133 +msgid "Not Set" +msgstr "" + +#: views/hr/positions.php:162 +msgid "Edit Position" +msgstr "" + +#: views/hr/timesheets.php:40 views/hr/view-timesheet.php:96 +#: views/staff/timesheets.php:45 views/staff/view-timesheet.php:47 +msgid "Work Week" +msgstr "" + +#: views/hr/timesheets.php:43 +msgid "Hours" +msgstr "" + +#: views/hr/timesheets.php:44 +msgid "Pay" +msgstr "" + +#: views/hr/view-timesheet.php:25 views/staff/view-timesheet.php:24 +#: views/staff/view-timesheet.php:28 +msgid "View Timesheet" +msgstr "" + +#: views/hr/view-timesheet.php:99 views/staff/timesheets.php:47 +#: views/staff/timesheets.php:95 views/staff/view-timesheet.php:50 +#: views/staff/view-timesheet.php:90 +msgid "Work Hours" +msgstr "" + +#: views/hr/view-timesheet.php:100 views/hr/view-timesheet.php:228 +#: views/staff/timesheets.php:160 views/staff/view-timesheet.php:51 +#: views/staff/view-timesheet.php:155 +msgid "Note" +msgstr "" + +#: views/hr/view-timesheet.php:123 +msgid "Rejected" +msgstr "" + +#: views/hr/view-timesheet.php:124 +msgid "Approved" +msgstr "" + +#: views/hr/view-timesheet.php:164 +msgid "Timesheet Entry" +msgstr "" + +#: views/hr/view-timesheet.php:180 views/staff/timesheets.php:112 +#: views/staff/view-timesheet.php:107 +msgid "Work Week Start" +msgstr "" + +#: views/hr/view-timesheet.php:192 views/staff/timesheets.php:124 +#: views/staff/view-timesheet.php:119 +msgid "Work Day" +msgstr "" + +#: views/hr/view.php:26 +msgid "View Employee" +msgstr "" + +#: views/hr/view.php:178 views/staff/add.php:123 views/staff/view.php:148 +msgid "Office" +msgstr "" + +#: views/hr/view.php:190 views/staff/add.php:135 views/staff/view.php:160 +msgid "Office Phone" +msgstr "" + +#: views/hr/view.php:307 views/staff/add.php:215 views/staff/view.php:204 +msgid "I Inactive" +msgstr "" + +#: views/index/apply.php:24 +msgid "Apply for Admissions" +msgstr "" + +#: views/index/apply.php:45 views/index/login.php:44 views/mrkt/bounce.php:72 +msgid "Password" +msgstr "" + +#: views/index/apply.php:60 views/index/profile.php:37 views/person/add.php:104 +#: views/person/view.php:77 +msgid "Prefix" +msgstr "" + +#: views/index/apply.php:63 views/person/add.php:107 views/person/view.php:80 +msgid "Ms." +msgstr "" + +#: views/index/apply.php:64 views/person/add.php:108 views/person/view.php:81 +msgid "Miss." +msgstr "" + +#: views/index/apply.php:65 views/person/add.php:109 views/person/view.php:82 +msgid "Mrs." +msgstr "" + +#: views/index/apply.php:66 views/person/add.php:110 views/person/view.php:83 +msgid "Mr." +msgstr "" + +#: views/index/apply.php:67 views/person/add.php:111 views/person/view.php:84 +msgid "Dr." +msgstr "" + +#: views/index/apply.php:73 views/person/add.php:123 +#: views/person/addr-form.php:70 views/person/addr.php:74 +#: views/person/view.php:99 +msgid "Middle Initial" +msgstr "" + +#: views/index/apply.php:130 views/index/profile.php:61 +msgid "SSN" +msgstr "" + +#: views/index/apply.php:132 views/index/profile.php:65 +msgid "Veteran" +msgstr "" + +#: views/index/apply.php:138 views/index/profile.php:69 +msgid "Ethnicity" +msgstr "" + +#: views/index/apply.php:141 views/person/add.php:180 views/person/view.php:136 +msgid "White, Non-Hispanic" +msgstr "" + +#: views/index/apply.php:142 views/person/add.php:181 views/person/view.php:137 +msgid "Black, Non-Hispanic" +msgstr "" + +#: views/index/apply.php:143 views/person/add.php:182 views/person/view.php:138 +msgid "Hispanic" +msgstr "" + +#: views/index/apply.php:144 views/person/add.php:183 views/person/view.php:139 +msgid "Native American" +msgstr "" + +#: views/index/apply.php:145 views/person/add.php:184 views/person/view.php:140 +msgid "Native Alaskan" +msgstr "" + +#: views/index/apply.php:146 views/person/add.php:185 views/person/view.php:141 +msgid "Pacific Islander" +msgstr "" + +#: views/index/apply.php:147 views/person/add.php:186 views/person/view.php:142 +msgid "Asian" +msgstr "" + +#: views/index/apply.php:148 views/person/add.php:187 views/person/view.php:143 +msgid "Indian" +msgstr "" + +#: views/index/apply.php:149 views/person/add.php:188 views/person/view.php:144 +msgid "Middle Eastern" +msgstr "" + +#: views/index/apply.php:150 views/person/add.php:189 views/person/view.php:145 +msgid "African" +msgstr "" + +#: views/index/apply.php:151 views/person/add.php:190 views/person/view.php:146 +msgid "Mixed Race" +msgstr "" + +#: views/index/apply.php:152 views/person/add.php:191 views/person/view.php:147 +msgid "Other" +msgstr "" + +#: views/index/apply.php:160 views/index/profile.php:81 +#: views/person/add.php:199 views/person/view.php:155 +msgid "Emergency Contact" +msgstr "" + +#: views/index/apply.php:162 +msgid "Emergency Contact Phone" +msgstr "" + +#: views/index/apply.php:188 +msgid "Having troubles?" +msgstr "" + +#: views/index/index.php:50 +msgid "News & Announcements" +msgstr "" + +#: views/index/index.php:59 views/index/view-news.php:24 +msgid "by" +msgstr "" + +#: views/index/index.php:63 +msgid "read more" +msgstr "" + +#: views/index/index.php:80 +msgid "Welcome Message" +msgstr "" + +#: views/index/login.php:42 +msgid "Username / Email" +msgstr "" + +#: views/index/login.php:48 +msgid "Remember me" +msgstr "" + +#: views/index/login.php:63 +msgid "Request Password Reset" +msgstr "" + +#: views/index/login.php:95 +msgid "" +"If you've forgotten your password, send a request to the administrator to " +"have it reset." +msgstr "" + +#: views/index/login.php:108 +msgid "Full Name" +msgstr "" + +#: views/index/login.php:126 +msgid "Student / Staff ID" +msgstr "" + +#: views/index/login.php:135 views/setting/sms.php:211 +msgid "Message" +msgstr "" + +#: views/index/offline.php:29 views/setting/index.php:121 +msgid "Offline" +msgstr "" + +#: views/index/password.php:35 +msgid "Current Password" +msgstr "" + +#: views/index/password.php:39 +msgid "New Password" +msgstr "" + +#: views/index/profile.php:19 +msgid "My Profile" +msgstr "" + +#: views/index/profile.php:49 +msgid "Middle Name" +msgstr "" + +#: views/index/profile.php:73 views/person/add.php:134 +#: views/person/view.php:110 +msgid "Date of Birth" +msgstr "" + +#: views/index/profile.php:85 views/person/add.php:206 +#: views/person/view.php:162 +msgid "Emergency Contact's Phone" +msgstr "" + +#: views/index/spam.php:23 +msgid "Spam Registration" +msgstr "" + +#: views/index/spam.php:25 +msgid "We don't allows spammers the ability to apply for admissions." +msgstr "" + +#: views/index/view-news.php:29 +msgid "Last Update:" +msgstr "" + +#: views/mrkt/bounce.php:23 views/mrkt/bounce.php:26 +msgid "Bounce Email Settings" +msgstr "" + +#: views/mrkt/bounce.php:54 +msgid "Host" +msgstr "" + +#: views/mrkt/bounce.php:81 +msgid "Mailbox" +msgstr "" + +#: views/mrkt/bounce.php:96 +msgid "Port" +msgstr "" + +#: views/mrkt/bounce.php:105 +msgid "Service" +msgstr "" + +#: views/mrkt/bounce.php:109 +msgid "Imap" +msgstr "" + +#: views/mrkt/bounce.php:110 +msgid "Pop3" +msgstr "" + +#: views/mrkt/bounce.php:118 +msgid "Service Option" +msgstr "" + +#: views/mrkt/bounce.php:122 +msgid "None" +msgstr "" + +#: views/mrkt/bounce.php:123 +msgid "TLS" +msgstr "" + +#: views/mrkt/bounce.php:124 +msgid "NOTLS" +msgstr "" + +#: views/mrkt/bounce.php:125 +msgid "SSL" +msgstr "" + +#: views/mrkt/campaign/bounced.php:25 views/mrkt/campaign/bounced.php:28 +msgid "Bounce Report" +msgstr "" + +#: views/mrkt/campaign/bounced.php:44 views/mrkt/campaign/clicked.php:76 +msgid "URL" +msgstr "" + +#: views/mrkt/campaign/bounced.php:45 views/mrkt/campaign/clicked.php:77 +#: views/mrkt/campaign/opened.php:76 views/sql/csv-email.php:66 +msgid "Recipient" +msgstr "" + +#: views/mrkt/campaign/bounced.php:46 views/mrkt/campaign/clicked.php:78 +msgid "First Clicked" +msgstr "" + +#: views/mrkt/campaign/bounced.php:47 views/mrkt/campaign/clicked.php:79 +msgid "Times Clicked" +msgstr "" + +#: views/mrkt/campaign/bounced.php:48 views/mrkt/campaign/clicked.php:80 +msgid "Last Clicked" +msgstr "" + +#: views/mrkt/campaign/clicked.php:25 views/mrkt/campaign/clicked.php:28 +msgid "URLs Clicked Report" +msgstr "" + +#: views/mrkt/campaign/create.php:164 views/mrkt/campaign/view.php:164 +msgid "Email Subject" +msgstr "" + +#: views/mrkt/campaign/create.php:173 views/mrkt/campaign/view.php:173 +msgid "From Name" +msgstr "" + +#: views/mrkt/campaign/create.php:182 views/mrkt/campaign/view.php:182 +msgid "From Email" +msgstr "" + +#: views/mrkt/campaign/create.php:197 views/mrkt/campaign/view.php:191 +#: views/mrkt/index.php:59 +msgid "Send Start" +msgstr "" + +#: views/mrkt/campaign/create.php:207 views/mrkt/campaign/view.php:201 +msgid "Archive?" +msgstr "" + +#: views/mrkt/campaign/create.php:220 views/mrkt/campaign/view.php:236 +msgid "List" +msgstr "" + +#: views/mrkt/campaign/create.php:240 views/mrkt/campaign/view.php:274 +msgid "Compose Message" +msgstr "" + +#: views/mrkt/campaign/create.php:257 views/mrkt/campaign/view.php:291 +msgid "Footer" +msgstr "" + +#: views/mrkt/campaign/opened.php:25 views/mrkt/campaign/opened.php:28 +msgid "Open Report" +msgstr "" + +#: views/mrkt/campaign/opened.php:77 +msgid "First Viewed" +msgstr "" + +#: views/mrkt/campaign/opened.php:78 +msgid "Response Time" +msgstr "" + +#: views/mrkt/campaign/opened.php:79 +msgid "Times Viewed" +msgstr "" + +#: views/mrkt/campaign/opened.php:80 +msgid "Last Viewed" +msgstr "" + +#: views/mrkt/campaign/report.php:23 views/mrkt/campaign/report.php:26 +msgid "Report" +msgstr "" + +#: views/mrkt/campaign/report.php:62 +msgid "Date Entered" +msgstr "" + +#: views/mrkt/campaign/report.php:67 +msgid "Date Sent" +msgstr "" + +#: views/mrkt/campaign/report.php:72 +msgid "Date Finished" +msgstr "" + +#: views/mrkt/campaign/report.php:77 views/mrkt/campaign/view.php:228 +msgid "Sent" +msgstr "" + +#: views/mrkt/campaign/report.php:82 +msgid "Bounced" +msgstr "" + +#: views/mrkt/campaign/report.php:88 +msgid "% Bounced" +msgstr "" + +#: views/mrkt/campaign/report.php:93 +msgid "Opened" +msgstr "" + +#: views/mrkt/campaign/report.php:98 +msgid "% Opened" +msgstr "" + +#: views/mrkt/campaign/report.php:103 +msgid "Clicked" +msgstr "" + +#: views/mrkt/campaign/report.php:108 +msgid "% Clicked" +msgstr "" + +#: views/mrkt/campaign/view.php:224 +msgid "Ready" +msgstr "" + +#: views/mrkt/campaign/view.php:225 +msgid "Processing" +msgstr "" + +#: views/mrkt/campaign/view.php:226 +msgid "Paused" +msgstr "" + +#: views/mrkt/campaign/view.php:227 +msgid "Resume" +msgstr "" + +#: views/mrkt/campaign/view.php:248 views/mrkt/list/view.php:103 +#: views/mrkt/template/view.php:190 +msgid "Owner" +msgstr "" + +#: views/mrkt/campaign/view.php:257 views/mrkt/template/view.php:199 +msgid "Modified" +msgstr "" + +#: views/mrkt/campaign/view.php:329 +msgid "Send Test Email" +msgstr "" + +#: views/mrkt/index.php:60 +msgid "Send Finish" +msgstr "" + +#: views/mrkt/index.php:61 +msgid "Recipients" +msgstr "" + +#: views/mrkt/index.php:143 +msgid "Are you sure you want to delete this campaign?" +msgstr "" + +#: views/mrkt/index.php:147 views/mrkt/list/index.php:85 +#: views/mrkt/template/index.php:97 +msgid "Confirm" +msgstr "" + +#: views/mrkt/list/create.php:23 views/mrkt/list/index.php:23 +#: views/mrkt/list/index.php:26 views/mrkt/list/view.php:23 +msgid "Email Lists" +msgstr "" + +#: views/mrkt/list/create.php:66 views/mrkt/list/view.php:66 +msgid "List Name" +msgstr "" + +#: views/mrkt/list/create.php:95 views/mrkt/list/view.php:95 +msgid "Closed" +msgstr "" + +#: views/mrkt/list/create.php:106 views/mrkt/list/view.php:124 +msgid "List Rule" +msgstr "" + +#: views/mrkt/list/create.php:154 views/mrkt/list/view.php:176 +msgid "Email can only be sent to lists that are open." +msgstr "" + +#: views/mrkt/list/index.php:46 +msgid "Records" +msgstr "" + +#: views/mrkt/list/index.php:81 +msgid "Are you sure you want to delete this email list?" +msgstr "" + +#: views/mrkt/list/index.php:106 +msgid "Create List" +msgstr "" + +#: views/mrkt/mailmerge.php:54 views/section/batch-register.php:102 +#: views/sql/csv-email.php:84 views/sql/index.php:104 +#: views/sql/saved-queries.php:25 views/student/graduation.php:86 +msgid "Saved Query" +msgstr "" + +#: views/mrkt/mailmerge.php:72 +msgid "Avery Label" +msgstr "" + +#: views/mrkt/template/create.php:201 views/mrkt/template/view.php:216 +msgid "HTML Message" +msgstr "" + +#: views/mrkt/template/index.php:93 +msgid "Are you sure you want to delete this template?" msgstr "" #: views/permission/add.php:23 views/permission/index.php:26 @@ -4277,31 +6632,6 @@ msgstr "" msgid "Person Type" msgstr "" -#: views/person/add.php:107 views/person/view.php:80 -msgid "Ms." -msgstr "" - -#: views/person/add.php:108 views/person/view.php:81 -msgid "Miss." -msgstr "" - -#: views/person/add.php:109 views/person/view.php:82 -msgid "Mrs." -msgstr "" - -#: views/person/add.php:110 views/person/view.php:83 -msgid "Mr." -msgstr "" - -#: views/person/add.php:111 views/person/view.php:84 -msgid "Dr." -msgstr "" - -#: views/person/add.php:123 views/person/addr-form.php:70 -#: views/person/addr.php:74 views/person/view.php:99 -msgid "Middle Initial" -msgstr "" - #: views/person/add.php:127 views/person/view.php:103 msgid "Social Security #" msgstr "" @@ -4314,54 +6644,6 @@ msgstr "" msgid "Ethnicity?" msgstr "" -#: views/person/add.php:180 views/person/view.php:136 -msgid "White, Non-Hispanic" -msgstr "" - -#: views/person/add.php:181 views/person/view.php:137 -msgid "Black, Non-Hispanic" -msgstr "" - -#: views/person/add.php:182 views/person/view.php:138 -msgid "Hispanic" -msgstr "" - -#: views/person/add.php:183 views/person/view.php:139 -msgid "Native American" -msgstr "" - -#: views/person/add.php:184 views/person/view.php:140 -msgid "Native Alaskan" -msgstr "" - -#: views/person/add.php:185 views/person/view.php:141 -msgid "Pacific Islander" -msgstr "" - -#: views/person/add.php:186 views/person/view.php:142 -msgid "Asian" -msgstr "" - -#: views/person/add.php:187 views/person/view.php:143 -msgid "Indian" -msgstr "" - -#: views/person/add.php:188 views/person/view.php:144 -msgid "Middle Eastern" -msgstr "" - -#: views/person/add.php:189 views/person/view.php:145 -msgid "African" -msgstr "" - -#: views/person/add.php:190 views/person/view.php:146 -msgid "Mixed Race" -msgstr "" - -#: views/person/add.php:191 views/person/view.php:147 -msgid "Other" -msgstr "" - #: views/person/add.php:202 views/person/view.php:158 msgid "Emergency Contact's Name" msgstr "" @@ -4504,10 +6786,6 @@ msgstr "" msgid "ID#: " msgstr "" -#: views/person/adsu.php:51 views/staff/view.php:117 -msgid "Address" -msgstr "" - #: views/person/index.php:90 msgid "Switch to User" msgstr "" @@ -4533,11 +6811,6 @@ msgstr "" msgid "Severity" msgstr "" -#: views/person/perc.php:206 views/rlde/add.php:115 views/rlde/view.php:117 -#: views/student/shis.php:245 -msgid "Comment" -msgstr "" - #: views/person/perms.php:27 msgid "Manage Person Permissions" msgstr "" @@ -4738,7 +7011,33 @@ msgstr "" msgid "Edit Role" msgstr "" +#: views/section/add-assignment.php:21 views/section/assignments.php:21 +#: views/section/courses.php:21 views/section/export-grades.php:21 +#: views/section/final-grade.php:21 views/section/gradebook.php:21 +#: views/section/grading.php:21 views/section/students.php:66 +#: views/section/view-assignment.php:21 +msgid "Course Sections" +msgstr "" + +#: views/section/add-assignment.php:54 views/section/add-assignment.php:103 +#: views/section/assignments.php:44 views/section/view-assignment.php:56 +msgid "Short Name" +msgstr "" + +#: views/section/add-assignment.php:72 views/section/assignments.php:46 +#: views/section/view-assignment.php:74 +msgid "Due Date" +msgstr "" + +#: views/section/add-assignment.php:107 +msgid "" +"Short Name should be no more than 6 characters. This is used as column " +"heading on the gradebook. Once you have submitted the form, you will not be " +"able to change this later." +msgstr "" + #: views/section/add.php:46 views/section/addnl-info.php:21 +#: views/section/billing-info.php:21 views/section/booking-info.php:55 #: views/section/offering-info.php:21 views/section/section-fgrade.php:22 msgid "Search Section" msgstr "" @@ -4804,14 +7103,6 @@ msgstr "" msgid "Saturday" msgstr "" -#: views/section/add.php:266 views/section/offering-info.php:136 -msgid "Start Time" -msgstr "" - -#: views/section/add.php:278 views/section/offering-info.php:148 -msgid "End Time" -msgstr "" - #: views/section/add.php:290 views/section/offering-info.php:160 msgid "Register Online" msgstr "" @@ -4820,17 +7111,20 @@ msgstr "" msgid "View Section" msgstr "" -#: views/section/addnl-info.php:52 views/section/offering-info.php:25 +#: views/section/addnl-info.php:52 views/section/billing-info.php:46 +#: views/section/booking-info.php:84 views/section/offering-info.php:25 #: views/section/offering-info.php:52 views/section/view.php:74 msgid "Offering Info" msgstr "" -#: views/section/addnl-info.php:53 views/section/offering-info.php:53 -#: views/section/view.php:75 +#: views/section/addnl-info.php:53 views/section/billing-info.php:25 +#: views/section/billing-info.php:47 views/section/booking-info.php:85 +#: views/section/offering-info.php:53 views/section/view.php:75 msgid "Billing Info" msgstr "" -#: views/section/addnl-info.php:55 views/section/offering-info.php:55 +#: views/section/addnl-info.php:55 views/section/billing-info.php:49 +#: views/section/booking-info.php:87 views/section/offering-info.php:55 #: views/section/view.php:77 msgid "Booking Info" msgstr "" @@ -4848,6 +7142,90 @@ msgstr "" msgid "Instructor Load" msgstr "" +#: views/section/assignments.php:68 +msgid "Grading" +msgstr "" + +#: views/section/assignments.php:69 +msgid "Export Grades" +msgstr "" + +#: views/section/attendance-report.php:59 views/section/students.php:93 +#: views/student/add.php:73 +msgid "Student Name" +msgstr "" + +#: views/section/attendance-report.php:60 views/section/attendance.php:150 +msgid "Present" +msgstr "" + +#: views/section/attendance-report.php:61 views/section/attendance.php:151 +msgid "Absent" +msgstr "" + +#: views/section/attendance-report.php:62 views/section/attendance.php:152 +msgid "Tardy" +msgstr "" + +#: views/section/batch-register.php:38 views/section/batch-register.php:41 +msgid "Batch Registration" +msgstr "" + +#: views/section/batch-register.php:67 +msgid "" +"Use the batch registration process if you need to register a group of " +"students into a particular course section. This screen comes in handy when " +"you need to create a saved query from a course section you need to cancel. " +"The best way is to create your saved query by selecting the student id's in " +"the old course section with an 'A' or 'N' status. Register them into the new " +"course section and then cancel the old course section." +msgstr "" + +#: views/section/billing-info.php:64 +msgid "Course Fee" +msgstr "" + +#: views/section/billing-info.php:73 +msgid "Lab Fee" +msgstr "" + +#: views/section/billing-info.php:82 +msgid "Course Materials Fee" +msgstr "" + +#: views/section/booking-info.php:59 +msgid "Classroom Booking" +msgstr "" + +#: views/section/booking-info.php:102 +msgid "Main Classroom" +msgstr "" + +#: views/section/booking-info.php:111 views/section/booking-info.php:123 +#: views/section/booking-info.php:273 views/section/booking-info.php:325 +msgid "Classroom" +msgstr "" + +#: views/section/booking-info.php:144 views/section/register.php:188 +msgid "Meeting Time" +msgstr "" + +#: views/section/booking-info.php:153 +msgid "Term Dates" +msgstr "" + +#: views/section/booking-info.php:155 +msgid "to" +msgstr "" + +#: views/section/booking-info.php:298 +msgid "Are you sure you want to delete this classroom booking?" +msgstr "" + +#: views/section/booking-info.php:462 +msgid "Are you sure you want to delete this entry?" +msgstr "" + #: views/section/catalog-pdf.php:55 msgid "Days" msgstr "" @@ -4860,6 +7238,31 @@ msgstr "" msgid "PDF Export" msgstr "" +#: views/section/export-grades.php:25 views/section/grading.php:25 +#: views/student/schedule.php:45 +msgid "Grades" +msgstr "" + +#: views/section/final-grade.php:23 views/section/gradebook.php:51 +msgid "Final Grade" +msgstr "" + +#: views/section/final-grade.php:26 +msgid "Final Grade for " +msgstr "" + +#: views/section/gradebook.php:26 +msgid "Gradebook for " +msgstr "" + +#: views/section/gradebook.php:42 +msgid "Students" +msgstr "" + +#: views/section/gradebook.php:52 +msgid "FG" +msgstr "" + #: views/section/index.php:21 msgid "Sections" msgstr "" @@ -4880,11 +7283,6 @@ msgstr "" msgid "Course Registration (RGN)" msgstr "" -#: views/section/register.php:99 views/student/graduation.php:70 -#: views/student/tran.php:71 -msgid "Student ID/Name" -msgstr "" - #: views/section/register.php:138 msgid "Course Section Info" msgstr "" @@ -4897,10 +7295,6 @@ msgstr "" msgid "Meeting Place" msgstr "" -#: views/section/register.php:188 -msgid "Meeting Time" -msgstr "" - #: views/section/register.php:219 msgid "RRSR" msgstr "" @@ -4938,6 +7332,52 @@ msgstr "" msgid "Template" msgstr "" +#: views/section/students.php:72 +msgid "Email Students in" +msgstr "" + +#: views/section/students.php:94 views/section/students.php:123 +#: views/section/students.php:201 views/section/students.php:250 +#: views/section/students.php:311 +msgid "Send Email" +msgstr "" + +#: views/section/students.php:121 views/section/students.php:248 +msgid "back" +msgstr "" + +#: views/section/students.php:130 views/section/students.php:257 +msgid "To:" +msgstr "" + +#: views/section/students.php:135 +msgid "CC/BCC" +msgstr "" + +#: views/section/students.php:142 +msgid "Cc:" +msgstr "" + +#: views/section/students.php:148 +msgid "Bcc:" +msgstr "" + +#: views/section/students.php:155 views/section/students.php:265 +msgid "From:" +msgstr "" + +#: views/section/students.php:163 views/section/students.php:273 +msgid "Subject:" +msgstr "" + +#: views/section/students.php:188 views/section/students.php:298 +msgid "File Upload" +msgstr "" + +#: views/section/students.php:260 +msgid "Students in" +msgstr "" + #: views/section/templates/roster/default.template.php:85 #: views/student/sttr.php:62 msgid "Acad Level" @@ -4957,10 +7397,6 @@ msgstr "" msgid "Advisor" msgstr "" -#: views/section/view.php:113 views/student/sacp.php:166 -msgid "Start / End Date" -msgstr "" - #: views/setting/email.php:48 views/setting/index.php:49 #: views/setting/registration.php:48 views/setting/sms.php:53 #: views/setting/templates.php:155 @@ -5388,30 +7824,64 @@ msgstr "" msgid "User Login Details" msgstr "" -#: views/sql/index.php:64 -msgid "Choose a saved query from the drop down list or enter a custom query." +#: views/sql/add-query.php:33 views/sql/add-query.php:62 +#: views/sql/csv-email.php:49 views/sql/index.php:88 +#: views/sql/saved-queries.php:22 views/sql/saved-queries.php:40 +#: views/sql/view-query.php:33 views/sql/view-query.php:62 +msgid "Saved Queries" msgstr "" -#: views/sql/index.php:87 -msgid "Create Saved Query" +#: views/sql/add-query.php:35 views/sql/add-query.php:38 +msgid "Create Save Query" msgstr "" -#: views/sql/index.php:88 -msgid "Saved Queries" +#: views/sql/add-query.php:61 views/sql/csv-email.php:48 views/sql/index.php:87 +#: views/sql/saved-queries.php:39 views/sql/view-query.php:61 +msgid "Create Saved Query" msgstr "" -#: views/sql/index.php:89 +#: views/sql/add-query.php:63 views/sql/csv-email.php:50 views/sql/index.php:89 +#: views/sql/saved-queries.php:41 views/sql/view-query.php:63 msgid "CSV to Email" msgstr "" -#: views/sql/index.php:104 views/student/graduation.php:86 -msgid "Saved Query" +#: views/sql/add-query.php:78 views/sql/view-query.php:79 +msgid "Save Query Name" msgstr "" -#: views/sql/index.php:116 +#: views/sql/add-query.php:87 views/sql/index.php:116 +#: views/sql/view-query.php:88 msgid "Query" msgstr "" +#: views/sql/add-query.php:96 views/sql/add-query.php:150 +#: views/sql/view-query.php:97 views/sql/view-query.php:149 +msgid "Auto Purge" +msgstr "" + +#: views/sql/add-query.php:112 views/sql/add-query.php:169 +#: views/sql/view-query.php:113 +msgid "Share" +msgstr "" + +#: views/sql/add-query.php:154 views/sql/view-query.php:153 +msgid "" +"If enabled, saved queries get purged every 30 days. If you use your saved " +"query on a regular basis, you should set this option to no." +msgstr "" + +#: views/sql/add-query.php:173 +msgid "" +"You can share your saved queries with other faculty and staff. On any screen " +"that has a dropdown list of saved queries, any shared queries will appear in " +"the list for that particular faculty or staff member. This setting does not " +"grant access to edit or delete your saved query." +msgstr "" + +#: views/sql/index.php:64 +msgid "Choose a saved query from the drop down list or enter a custom query." +msgstr "" + #: views/sql/index.php:157 msgid "Successly Executed - " msgstr "" @@ -5420,6 +7890,26 @@ msgstr "" msgid "Query is : " msgstr "" +#: views/sql/saved-queries.php:54 +msgid "Saved Query Name" +msgstr "" + +#: views/sql/saved-queries.php:55 +msgid "Creation Date" +msgstr "" + +#: views/sql/saved-queries.php:56 +msgid "Shared" +msgstr "" + +#: views/sql/saved-queries.php:84 +msgid "Are you sure you want to delete this saved query?" +msgstr "" + +#: views/sql/view-query.php:35 views/sql/view-query.php:38 +msgid "View Saved Query" +msgstr "" + #: views/staff/add.php:22 views/staff/view.php:24 msgid "Search Staff" msgstr "" @@ -5436,6 +7926,10 @@ msgstr "" msgid "View Staff" msgstr "" +#: views/student/account-history.php:24 +msgid "Student Account History" +msgstr "" + #: views/student/add-prog.php:41 views/student/add.php:42 #: views/student/index.php:24 views/student/sacd.php:22 #: views/student/sacp.php:28 views/student/shis.php:30 @@ -5448,11 +7942,6 @@ msgstr "" msgid "Add Student Program" msgstr "" -#: views/student/add-prog.php:77 views/student/add.php:82 -#: views/student/sacp.php:64 views/student/stal.php:52 -msgid "Program" -msgstr "" - #: views/student/add-prog.php:119 views/student/add.php:169 #: views/student/sacp.php:112 msgid "Catalog Year" @@ -5462,39 +7951,10 @@ msgstr "" msgid "Ant Grad Date" msgstr "" -#: views/student/add-prog.php:210 views/student/sacd.php:267 -#: views/student/sacp.php:300 views/student/shis.php:282 -#: views/student/stac.php:159 views/student/stal.php:182 -#: views/student/sttr.php:120 views/student/view.php:171 -msgid "" -"\"FERPA gives parents certain rights with respect to their children's " -"education records. \n" -" These rights transfer to the student when he or she " -"reaches the age of 18 or attends a school beyond \n" -" the high school level. Students to whom the rights have " -"transferred are 'eligible students.'\"" -msgstr "" - -#: views/student/add-prog.php:213 views/student/sacd.php:270 -#: views/student/sacp.php:303 views/student/shis.php:285 -#: views/student/stac.php:162 views/student/stal.php:185 -#: views/student/sttr.php:123 views/student/view.php:174 -msgid "" -"If the FERPA restriction states \"Yes\", then the student has requested that " -"none of their \n" -" information be given out without their permission. To " -"get a better understanding of FERPA, visit \n" -" the U.S. DOE's website @ " -msgstr "" - #: views/student/add.php:44 views/student/add.php:47 msgid "Add Student" msgstr "" -#: views/student/add.php:73 -msgid "Student Name" -msgstr "" - #: views/student/add.php:130 msgid "Prog Start Date" msgstr "" @@ -5507,6 +7967,14 @@ msgstr "" msgid "L Leave of Absence" msgstr "" +#: views/student/bill.php:37 +msgid "Bill ID" +msgstr "" + +#: views/student/grades.php:24 +msgid "Grades for " +msgstr "" + #: views/student/graduation.php:98 views/student/sacp.php:153 msgid "Graduation Date" msgstr "" @@ -5523,40 +7991,40 @@ msgstr "" msgid "Student Search" msgstr "" -#: views/student/sacd.php:24 -msgid "Academic Credits" +#: views/student/payment-cancel.php:26 +msgid "Cancelled Payment" msgstr "" -#: views/student/sacd.php:26 -msgid "View Academic Credits (SACD)" +#: views/student/payment-cancel.php:28 +msgid "Your payment was cancelled and nothing was posted to your account." msgstr "" -#: views/student/sacd.php:52 -msgid "CRSE ID/Name/Sec" +#: views/student/payment-success.php:26 +msgid "Payment Success" msgstr "" -#: views/student/sacd.php:99 -msgid "Acad Lvl/Crse Lvl" +#: views/student/payment-success.php:28 +msgid "Your payment went through successfully and was posted to your account." msgstr "" -#: views/student/sacd.php:148 views/student/stal.php:130 -msgid "Start/End Date" +#: views/student/paypal-ipn.php:106 +msgid "IPN Fraud Warning" msgstr "" -#: views/student/sacd.php:167 -msgid "Term/Rpt Term" +#: views/student/paypal-ipn.php:130 +msgid "Invalid IPN" msgstr "" -#: views/student/sacd.php:183 -msgid "Att/Comp Cred" +#: views/student/sacd.php:24 +msgid "Academic Credits" msgstr "" -#: views/student/sacd.php:195 -msgid "Grade/Grd Pts" +#: views/student/sacd.php:26 +msgid "View Academic Credits (SACD)" msgstr "" -#: views/student/sacd.php:217 -msgid "Status Date/Time" +#: views/student/sacd.php:52 +msgid "CRSE ID/Name/Sec" msgstr "" #: views/student/sacp.php:32 @@ -5589,10 +8057,6 @@ msgstr "" msgid "Day(s) of the Week" msgstr "" -#: views/student/schedule.php:45 -msgid "Grades" -msgstr "" - #: views/student/shis.php:32 views/student/stac.php:24 #: views/student/sttr.php:24 msgid "Student Profile" @@ -5648,10 +8112,6 @@ msgstr "" msgid "Are you sure you want to delete this student's hiatus status?" msgstr "" -#: views/student/stac.php:59 -msgid "Course Name" -msgstr "" - #: views/student/stac.php:63 msgid "CEU's" msgstr "" @@ -5780,12 +8240,12 @@ msgstr "" msgid "Tran Type" msgstr "" -#: views/student/view.php:27 -msgid "(SPRO)" +#: views/student/vbill.php:61 +msgid "Billing Date" msgstr "" -#: views/student/view.php:72 -msgid "Status Date" +#: views/student/view.php:27 +msgid "(SPRO)" msgstr "" #: views/student/view.php:200 diff --git a/app/migrations/20170719105649_virtual_stac.php b/app/migrations/20170719105649_virtual_stac.php new file mode 100644 index 00000000..4dc59d11 --- /dev/null +++ b/app/migrations/20170719105649_virtual_stac.php @@ -0,0 +1,109 @@ +execute("SET FOREIGN_KEY_CHECKS=0;"); + + $this->execute( + "INSERT IGNORE INTO sttr (stuID,termCode,acadLevelCode,attCred,compCred,gradePoints,gpa,created) + SELECT stac.stuID,stac.termCode,stac.acadLevelCode,COALESCE(SUM(stac.attCred),0),COALESCE(SUM(stac.compCred),0),COALESCE(SUM(stac.gradePoints),0),COALESCE(SUM(stac.gradePoints),0)/COALESCE(SUM(stac.attCred),0),NOW() + FROM stac + LEFT JOIN grade_scale ON stac.grade = grade_scale.grade + WHERE stac.creditType = 'I' + AND grade_scale.count_in_gpa = '1' + AND (stac.grade IS NOT NULL OR stac.grade <> '') + GROUP BY stac.stuID,stac.termCode,stac.acadLevelCode" + ); + + if ($this->hasTable('v_stac')) : + $this->execute('DROP TABLE IF EXISTS v_stac'); + endif; + + if (!$this->hasTable('v_stac')) : + $this->execute( + "CREATE VIEW v_stac AS + SELECT stac.stuID,stac.acadLevelCode,SUM(stac.attCred) attempted,SUM(stac.compCred) completed, + SUM(stac.gradePoints) points,SUM(stac.gradePoints)/SUM(stac.attCred) AS gpa + FROM stac + LEFT JOIN grade_scale ON stac.grade = grade_scale.grade + WHERE grade_scale.count_in_gpa = '1' + AND (stac.grade IS NOT NULL + OR stac.grade <> '') + AND stac.creditType = 'I' + GROUP BY stac.stuID,stac.acadLevelCode;" + ); + endif; + + if ($this->hasTable('v_scrd')) : + $this->execute('DROP TABLE IF EXISTS v_scrd'); + endif; + + if (!$this->hasTable('v_scrd')) : + $this->execute( + "CREATE VIEW v_scrd AS + SELECT + sttr.stuID,sttr.acadLevelCode AS acadLevel,sacp.acadProgCode AS prog,v_stac.attempted, + v_stac.completed,v_stac.points,v_stac.gpa, + v_stld.stuLoad AS enrollmentStatus,sacp.catYearCode AS year,v_sttr.termCode AS term + FROM + sttr + JOIN + sacp + ON + sttr.stuID = sacp.stuID + JOIN + acad_program + ON + sacp.acadProgCode = acad_program.acadProgCode + JOIN + v_stld + ON + sttr.stuID = v_stld.stuID AND sttr.acadLevelCode = v_stld.acadLevelCode + JOIN + v_sttr + ON + sttr.stuID = v_sttr.stuID AND sttr.acadLevelCode = v_sttr.acadLevelCode + JOIN + v_stac + ON + sttr.stuID = v_stac.stuID AND sttr.acadLevelCode = v_stac.acadLevelCode + WHERE + sttr.stuID = sacp.stuID + AND + sttr.acadLevelCode = acad_program.acadLevelCode + AND + sacp.currStatus = 'A' + GROUP BY sttr.stuID,sttr.acadLevelCode + ORDER BY sttr.stuID;" + ); + endif; + + $this->execute("SET FOREIGN_KEY_CHECKS=1;"); + } +} diff --git a/app/routers/cron.router.php b/app/routers/cron.router.php index cbde888a..1df28a5e 100644 --- a/app/routers/cron.router.php +++ b/app/routers/cron.router.php @@ -776,16 +776,20 @@ $app->get('/updateSTTR/', function () use($app) { try { $terms = $app->db->query("SELECT - SUM(stac.attCred) AS stacAttCreds,SUM(stac.compCred) AS stacCompCreds, - stac.stuID,stac.termCode,stac.acadLevelCode,SUM(stac.gradePoints) AS stacPoints, + COALESCE(SUM(stac.attCred),0) AS stacAttCreds,COALESCE(SUM(stac.compCred),0) AS stacCompCreds, + stac.stuID,stac.termCode,stac.acadLevelCode,COALESCE(SUM(stac.gradePoints),0) AS stacPoints, sttr.attCred AS sttrAttCreds,sttr.gradePoints AS sttrPoints, sttr.gpa FROM stac LEFT JOIN sttr ON stac.stuID = sttr.stuID + LEFT JOIN grade_scale ON stac.grade = grade_scale.grade WHERE stac.termCode = sttr.termCode AND stac.acadLevelCode = sttr.acadLevelCode + AND stac.creditType = 'I' + AND grade_scale.count_in_gpa = '1' + AND (stac.grade IS NOT NULL OR stac.grade <> '') GROUP BY stac.stuID,stac.termCode,stac.acadLevelCode - HAVING SUM(stac.gradePoints) > 0"); + HAVING COALESCE(SUM(stac.gradePoints),0) > 0"); $q = $terms->find(function ($data) { $array = []; foreach ($data as $d) { @@ -860,8 +864,12 @@ $gpa = $app->db->stac() ->select('SUM(stac.gradePoints)/SUM(stac.attCred) AS gpa') + ->_join('grade_scale','stac.grade = grade_scale.grade') + ->where('grade_scale.count_in_gpa = "1"')->_and_() ->where('stac.stuID = ?', _h($r['stuID']))->_and_() + ->where('(stac.grade IS NOT NULL OR stac.grade <> "")')->_and_() ->where('stac.acadLevelCode = ?', _h($r['acadLevelCode'])) + ->groupBy('stac.stuID,stac.acadLevelCode') ->findOne(); $sacp = $app->db->sacp() diff --git a/app/src/Core/etsis_Email.php b/app/src/Core/etsis_Email.php index 60f3f3a3..5c2ac3fe 100755 --- a/app/src/Core/etsis_Email.php +++ b/app/src/Core/etsis_Email.php @@ -400,6 +400,10 @@ public function myetsisRegConfirm($id, $password) $msg = process_email_html($message, _t(" Account Login Details")); $headers[] = sprintf("From: %s ", _t('myetSIS::') . _h(get_option('institution_name')), get_domain_name()); + if(!function_exists('etsis_smtp')) { + $headers[] = 'Content-Type: text/html; charset="UTF-8"'; + $headers[] = sprintf("X-Mailer: eduTrac SIS %s", RELEASE_TAG); + } try { $this->etsisMail(_h($nae->email), _h(get_option('institution_name')) . _t(":: Account Login Details"), $msg, $headers); @@ -436,6 +440,10 @@ public function myetsisApplication($id, $applID) $msg = process_email_html($message, _t("Application for Admissions")); $headers[] = sprintf("From: %s ", _t('myetSIS::') . _h(get_option('institution_name')), get_domain_name()); + if(!function_exists('etsis_smtp')) { + $headers[] = 'Content-Type: text/html; charset="UTF-8"'; + $headers[] = sprintf("X-Mailer: eduTrac SIS %s", RELEASE_TAG); + } try { $this->etsisMail(_h(get_option('admissions_email')), _t("Application for Admissions"), $msg, $headers); @@ -467,7 +475,8 @@ public function crseRGNEmail($id, $courses) $message .= _t("

This is a receipt for the following student's registration.

"); $message .= sprintf(_t('

Student Name: %s

'), concat_ws(', ', _h($nae->lname), _h($nae->fname))); $message .= sprintf(_t('

Student ID: %s

'), get_alt_id($id)); - $message .= sprintf(_t('

Courses: %s

'), str_replace(',', ', ', $courses)); + $message .= _t('

Courses:
'); + $message .= sprintf(_t('%s

'), str_replace(',', '
', $courses)); $message .= _t("

Click on the link below and log into your account in order to verify this student's registration.

"); $message .= sprintf(_t('

%s

'), $redirect_to, $redirect_to); $message .= '______________________________________________________
'; @@ -476,6 +485,10 @@ public function crseRGNEmail($id, $courses) $msg = process_email_html($message, _t("Course Registration")); $headers[] = sprintf("From: %s ", _h(get_option('institution_name')), get_domain_name()); + if(!function_exists('etsis_smtp')) { + $headers[] = 'Content-Type: text/html; charset="UTF-8"'; + $headers[] = sprintf("X-Mailer: eduTrac SIS %s", RELEASE_TAG); + } try { $this->etsisMail(_h($nae->email), _t('Course Registration'), $msg, $headers); diff --git a/app/views/courses/index.php b/app/views/courses/index.php index e80b0078..72d81227 100755 --- a/app/views/courses/index.php +++ b/app/views/courses/index.php @@ -34,7 +34,6 @@
-
showMessage();?> @@ -184,6 +183,8 @@
+ +