| [ PHPXref.com ] | [ Generated: Sun Jul 20 19:54:26 2008 ] | [ phpScheduleIt 1.2.1 ] |
| [ Index ] [ Variables ] [ Functions ] [ Classes ] [ Constants ] [ Statistics ] | ||
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * Korean (ko) translation file 4 * 5 * @author Nick Korbel <lqqkout13@users.sourceforge.net> 6 * @translator Kim Taegon <gony@mygony.com> 7 * @version 05-14-06 8 * @package Languages 9 * 10 * Copyright (C) 2003 - 2006 phpScheduleIt 11 * License: GPL, see LICENSE 12 */ 13 /////////////////////////////////////////////////////////// 14 // INSTRUCTIONS 15 /////////////////////////////////////////////////////////// 16 // This file contains all of the strings that are used throughout phpScheduleit. 17 // Please save the translated file as '2 letter language code'.lang.php. For example, en.lang.php. 18 // 19 // To make phpScheduleIt available in another language, simply translate each 20 // of the following strings into the appropriate one for the language. If there 21 // is no direct translation, please provide the closest translation. Please be sure 22 // to make the proper additions the /config/langs.php file (instructions are in the file). 23 // Also, please add a help translation for your language using en.help.php as a base. 24 // 25 // You will probably keep all sprintf (%s) tags in their current place. These tags 26 // are there as a substitution placeholder. Please check the output after translating 27 // to be sure that the sentences make sense. 28 // 29 // + Please use single quotes ' around all $strings. If you need to use the ' character, please enter it as \' 30 // + Please use double quotes " around all $email. If you need to use the " character, please enter it as \" 31 // 32 // + For all $dates please use the PHP strftime() syntax 33 // http://us2.php.net/manual/en/function.strftime.php 34 // 35 // + Non-intuitive parts of this file will be explained with comments. If you 36 // have any questions, please email lqqkout13@users.sourceforge.net 37 // or post questions in the Developers forum on SourceForge 38 // http://sourceforge.net/forum/forum.php?forum_id=331297 39 /////////////////////////////////////////////////////////// 40 41 //////////////////////////////// 42 /* Do not modify this section */ 43 //////////////////////////////// 44 global $strings; // 45 global $email; // 46 global $dates; // 47 global $charset; // 48 global $letters; // 49 global $days_full; // 50 global $days_abbr; // 51 global $days_two; // 52 global $days_letter; // 53 global $months_full; // 54 global $months_abbr; // 55 global $days_letter; // 56 /******************************/ 57 58 // Charset for this language 59 // 'iso-8859-1' will work for most languages 60 $charset = 'iso-8859-1'; 61 62 /*** 63 DAY NAMES 64 All of these arrays MUST start with Sunday as the first element 65 and go through the seven day week, ending on Saturday 66 ***/ 67 // The full day name 68 $days_full = array('일요일', '월요일', '화요일', '수요일', '목요일', '금요일', '토요일'); 69 // The three letter abbreviation 70 $days_abbr = array('일', '월', '화', '수', '목', '금', '토'); 71 // The two letter abbreviation 72 $days_two = array('일', '월', '화', '수', '목', '금', '토'); 73 // The one letter abbreviation 74 $days_letter = array('S', 'M', 'T', 'W', 'T', 'F', 'S'); 75 76 /*** 77 MONTH NAMES 78 All of these arrays MUST start with January as the first element 79 and go through the twelve months of the year, ending on December 80 ***/ 81 // The full month name 82 $months_full = array('해오름달(1)', '시샘달(2)', '물오름달(3)', '잎새달(4)', '푸른달(5)', '누리달(6)', '견우직녀달(7)', '타오름달(8)', '열매달(9)', '하늘연달(10)', '미틈달(11)', '매듭달(12)'); 83 // The three letter month name 84 $months_abbr = array('1월', '2월', '3월', '4월', '5월', '6월', '7월', '8월', '9월', '10월', '11월', '12월'); 85 86 // All letters of the alphabet starting with A and ending with Z 87 $letters = array ('A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'); 88 89 /*** 90 DATE FORMATTING 91 All of the date formatting must use the PHP strftime() syntax 92 You can include any text/HTML formatting in the translation 93 ***/ 94 // General date formatting used for all date display unless otherwise noted 95 $dates['general_date'] = '%m/%d/%Y'; 96 // General datetime formatting used for all datetime display unless otherwise noted 97 // The hour:minute:second will always follow this format 98 $dates['general_datetime'] = '%m/%d/%Y @'; 99 // Date in the reservation notification popup and email 100 $dates['res_check'] = '%A %m/%d/%Y'; 101 // Date on the scheduler that appears above the resource links 102 $dates['schedule_daily'] = '%A,<br/>%m/%d/%Y'; 103 // Date on top-right of each page 104 $dates['header'] = '%A, %B %d, %Y'; 105 // Jump box format on bottom of the schedule page 106 // This must only include %m %d %Y in the proper order, 107 // other specifiers will be ignored and will corrupt the jump box 108 $dates['jumpbox'] = '%m %d %Y'; 109 110 /*** 111 STRING TRANSLATIONS 112 All of these strings should be translated from the English value (right side of the equals sign) to the new language. 113 - Please keep the keys (between the [] brackets) as they are. The keys will not always be the same as the value. 114 - Please keep the sprintf formatting (%s) placeholders where they are unless you are sure it needs to be moved. 115 - Please keep the HTML and punctuation as-is unless you know that you want to change it. 116 ***/ 117 $strings['hours'] = '시'; 118 $strings['minutes'] = '분'; 119 // The common abbreviation to hint that a user should enter the month as 2 digits 120 $strings['mm'] = 'mm'; 121 // The common abbreviation to hint that a user should enter the day as 2 digits 122 $strings['dd'] = 'dd'; 123 // The common abbreviation to hint that a user should enter the year as 4 digits 124 $strings['yyyy'] = 'yyyy'; 125 $strings['am'] = '오전'; 126 $strings['pm'] = '오후'; 127 128 $strings['Administrator'] = '관리자'; 129 $strings['Welcome Back'] = 'Welcome Back, %s'; 130 $strings['Log Out'] = '로그아웃'; 131 $strings['My Control Panel'] = '내 제어판'; 132 $strings['Help'] = '도움말'; 133 $strings['Manage Schedules'] = '스케줄 관리'; 134 $strings['Manage Users'] = '사용자 관리'; 135 $strings['Manage Resources'] = '자원 관리'; 136 $strings['Manage User Training'] = 'Manage User Training'; 137 $strings['Manage Reservations'] = '예약 관리'; 138 $strings['Email Users'] = '이메일 사용자'; 139 $strings['Export Database Data'] = 'DB 자료 내보내기'; 140 $strings['Reset Password'] = '패스워드 재설정'; 141 $strings['System Administration'] = '시스템 관리자'; 142 $strings['Successful update'] = '업데이트가 완료되었습니다'; 143 $strings['Update failed!'] = '업데이트를 하지 못했습니다!'; 144 $strings['Manage Blackout Times'] = 'Manage Blackout Times'; 145 $strings['Forgot Password'] = '패스워드 분실'; 146 $strings['Manage My Email Contacts'] = '내 이메일 연락처 관리'; 147 $strings['Choose Date'] = '날짜 선택'; 148 $strings['Modify My Profile'] = '내 프로필 수정'; 149 $strings['Register'] = '등록'; 150 $strings['Processing Blackout'] = 'Processing Blackout'; 151 $strings['Processing Reservation'] = '예약 실행'; 152 $strings['Online Scheduler [Read-only Mode]'] = '온라인 일정관리 [읽기전용]'; 153 $strings['Online Scheduler'] = '온라인 일정관리'; 154 $strings['phpScheduleIt Statistics'] = 'phpScheduleIt 통계'; 155 $strings['User Info'] = '사용자 정보:'; 156 157 $strings['Could not determine tool'] = 'Could not determine tool. Please return to My Control Panel and try again later.'; 158 $strings['This is only accessable to the administrator'] = '관리자만 사용할 수 있습니다'; 159 $strings['Back to My Control Panel'] = '내 제어판으로 돌아가기'; 160 $strings['That schedule is not available.'] = 'That schedule is not available.'; 161 $strings['You did not select any schedules to delete.'] = '삭제할 일정를 선택하세요.'; 162 $strings['You did not select any members to delete.'] = '삭제할 구성원을 선택하세요.'; 163 $strings['You did not select any resources to delete.'] = '삭제할 리소스를 선택하세요.'; 164 $strings['Schedule title is required.'] = '일정의 제목이 필요합니다.'; 165 $strings['Invalid start/end times'] = '시작/끝 시간이 올바르지 않습니다'; 166 $strings['View days is required'] = 'View days is required'; 167 $strings['Day offset is required'] = 'Day offset is required'; 168 $strings['Admin email is required'] = '관리자 이메일은 필수사항입니다'; 169 $strings['Resource name is required.'] = '자원 이름은 필수사항입니다'; 170 $strings['Valid schedule must be selected'] = 'Valid schedule must be selected'; 171 $strings['Minimum reservation length must be less than or equal to maximum reservation length.'] = 'Minimum reservation length must be less than or equal to maximum reservation length.'; 172 $strings['Your request was processed successfully.'] = 'Your request was processed successfully.'; 173 $strings['Go back to system administration'] = '시스템 관리로 돌아가기'; 174 $strings['Or wait to be automatically redirected there.'] = 'Or wait to be automatically redirected there.'; 175 $strings['There were problems processing your request.'] = 'There were problems processing your request.'; 176 $strings['Please go back and correct any errors.'] = 'Please go back and correct any errors.'; 177 $strings['Login to view details and place reservations'] = 'Login to view details and place reservations'; 178 $strings['Memberid is not available.'] = 'Memberid: %s is not available.'; 179 180 $strings['Schedule Title'] = '일정 제목'; 181 $strings['Start Time'] = '시작시각'; 182 $strings['End Time'] = '종료시각'; 183 $strings['Time Span'] = 'Time Span'; 184 $strings['Weekday Start'] = 'Weekday Start'; 185 $strings['Admin Email'] = '관리자 이메일'; 186 187 $strings['Default'] = '기본값'; 188 $strings['Reset'] = '재설정'; 189 $strings['Edit'] = '편집'; 190 $strings['Delete'] = '삭제'; 191 $strings['Cancel'] = '취소'; 192 $strings['View'] = '보기'; 193 $strings['Modify'] = '수정'; 194 $strings['Save'] = '저장'; 195 $strings['Back'] = '뒤로'; 196 $strings['Next'] = '다음'; 197 $strings['Close Window'] = '창 닫기'; 198 $strings['Search'] = '검색'; 199 $strings['Clear'] = 'Clear'; 200 201 $strings['Days to Show'] = 'Days to Show'; 202 $strings['Reservation Offset'] = 'Reservation Offset'; 203 $strings['Hidden'] = '감추기'; 204 $strings['Show Summary'] = '요약정보 보이기'; 205 $strings['Add Schedule'] = '일정 추가'; 206 $strings['Edit Schedule'] = '일정 편집'; 207 $strings['No'] = '아니오'; 208 $strings['Yes'] = '네'; 209 $strings['Name'] = '이름'; 210 $strings['First Name'] = '이름'; 211 $strings['Last Name'] = '성'; 212 $strings['Resource Name'] = '자원 이름'; 213 $strings['Email'] = '이메일'; 214 $strings['Institution'] = 'Institution'; 215 $strings['Phone'] = '전화'; 216 $strings['Password'] = '패스워드'; 217 $strings['Permissions'] = '권한'; 218 $strings['View information about'] = 'View information about %s %s'; 219 $strings['Send email to'] = 'Send email to %s %s'; 220 $strings['Reset password for'] = 'Reset password for %s %s'; 221 $strings['Edit permissions for'] = 'Edit permissions for %s %s'; 222 $strings['Position'] = 'Position'; 223 $strings['Password (6 char min)'] = 'Password (%s char min)'; 224 $strings['Re-Enter Password'] = '패스워드 재입력'; 225 226 $strings['Sort by descending last name'] = '성씨로 내림차순 정렬'; 227 $strings['Sort by descending email address'] = '이메일 주소로 내림차순 정렬'; 228 $strings['Sort by descending institution'] = 'institution으로 내림차순 정렬'; 229 $strings['Sort by ascending last name'] = '성씨로 오름차순 정렬'; 230 $strings['Sort by ascending email address'] = '이메일 주소로 오름차순 정렬'; 231 $strings['Sort by ascending institution'] = 'institution으로 오름차순 정렬'; 232 $strings['Sort by descending resource name'] = '자원 이름으로 내림차순 정렬'; 233 $strings['Sort by descending location'] = '위치로 내림차순 정렬'; 234 $strings['Sort by descending schedule title'] = '일정 제목으로 내림차순 정렬'; 235 $strings['Sort by ascending resource name'] = '자원 이름으로 오름차순 정렬'; 236 $strings['Sort by ascending location'] = '위치로 오름차순 정렬'; 237 $strings['Sort by ascending schedule title'] = '일정 제목으로 오름차순 정렬'; 238 $strings['Sort by descending date'] = '날짜로 내림차순 정렬'; 239 $strings['Sort by descending user name'] = '사용자 이름으로 내림차순 정렬'; 240 $strings['Sort by descending start time'] = '시작시각으로 내림차순 정렬'; 241 $strings['Sort by descending end time'] = '종료시각으로 내림차순 정렬'; 242 $strings['Sort by ascending date'] = '날짜로 오름차순 정렬'; 243 $strings['Sort by ascending user name'] = '사용자 이름으로 오름차순 정렬'; 244 $strings['Sort by ascending start time'] = '시작시각으로 오름차순 정렬'; 245 $strings['Sort by ascending end time'] = '종료시각으로 오름차순 정렬'; 246 $strings['Sort by descending created time'] = '등록일로 내림차순 정렬'; 247 $strings['Sort by ascending created time'] = '등록일로 오름차순 정렬'; 248 $strings['Sort by descending last modified time'] = '최종수정일로 내림차순 정렬'; 249 $strings['Sort by ascending last modified time'] = '최종수정일로 오름차순 정렬'; 250 251 $strings['Search Users'] = '사용자 찾기'; 252 $strings['Location'] = '위치'; 253 $strings['Schedule'] = '일정'; 254 $strings['Notes'] = '메모'; 255 $strings['Status'] = '상태'; 256 $strings['All Schedules'] = '모든 일정'; 257 $strings['All Resources'] = '모든 자원'; 258 $strings['All Users'] = '모든 사용자'; 259 260 $strings['Edit data for'] = '%s의 자료 수정'; 261 $strings['Active'] = '활성'; 262 $strings['Inactive'] = '비활성'; 263 $strings['Toggle this resource active/inactive'] = '이 자원을 활성/비활성(토글)'; 264 $strings['Minimum Reservation Time'] = '최소 예약 시간'; 265 $strings['Maximum Reservation Time'] = '최대 예약 시간'; 266 $strings['Auto-assign permission'] = '권한 자동할당'; 267 $strings['Add Resource'] = '자원 추가'; 268 $strings['Edit Resource'] = '자원 편집'; 269 $strings['Allowed'] = '허용'; 270 $strings['Notify user'] = 'Notify user'; 271 $strings['User Reservations'] = '사용자 예약'; 272 $strings['Date'] = '날짜'; 273 $strings['User'] = '사용자'; 274 $strings['Subject'] = '제목'; 275 $strings['Message'] = '메시지'; 276 $strings['Please select users'] = '사용자를 선택하세요'; 277 $strings['Send Email'] = '메일 보내기'; 278 $strings['problem sending email'] = '메일을 보내는데 오류가 발생했습니다. 다시 한번 시도해주시기 바랍니다.'; 279 $strings['The email sent successfully.'] = '메일을 발송했습니다.'; 280 $strings['do not refresh page'] = '이 페이지를 새로고침 <u>하지 마십시오.</u> 그렇지 않으면 메일이 다시 발송됩니다.'; 281 $strings['Return to email management'] = '이메일 관리로 돌아가기'; 282 $strings['Please select which tables and fields to export'] = '내보낼 테이블과 필드를 선택해주세요:'; 283 $strings['all fields'] = '- 모든 필드 -'; 284 $strings['HTML'] = 'HTML'; 285 $strings['Plain text'] = '일반 텍스트'; 286 $strings['XML'] = 'XML'; 287 $strings['CSV'] = 'CSV'; 288 $strings['Export Data'] = '데이타 내보내기'; 289 $strings['Reset Password for'] = '%s의 패스워드 재설정'; 290 $strings['Please edit your profile'] = '프로필을 편집해주세요'; 291 $strings['Please register'] = '등록해주세요'; 292 $strings['Email address (this will be your login)'] = '이메일 주소 (로그인 계정으로 사용됩니다)'; 293 $strings['Keep me logged in'] = '자동 로그인 <br/>(쿠키가 가능해야합니다)'; 294 $strings['Edit Profile'] = '프로필 편집'; 295 $strings['Please Log In'] = '로그인 해주세요'; 296 $strings['Email address'] = '이메일 주소'; 297 $strings['First time user'] = '처음 사용하십니까?'; 298 $strings['Click here to register'] = '등록하려면 여기를 클릭하세요'; 299 $strings['Register for phpScheduleIt'] = 'Register for phpScheduleIt'; 300 $strings['Log In'] = '로그인'; 301 $strings['View Schedule'] = '일정 보기'; 302 $strings['View a read-only version of the schedule'] = 'View a read-only version of the schedule'; 303 $strings['I Forgot My Password'] = '패스워드를 분실했습니다'; 304 $strings['Retreive lost password'] = 'Retreive lost password'; 305 $strings['Get online help'] = '온라인 도움말 보기'; 306 $strings['Language'] = '언어'; 307 $strings['(Default)'] = '(기본값)'; 308 309 $strings['My Announcements'] = 'My Announcements'; 310 $strings['My Reservations'] = '내 예약'; 311 $strings['My Permissions'] = '내 권한'; 312 $strings['My Quick Links'] = '내 빠른링크'; 313 $strings['Announcements as of'] = 'Announcements as of %s'; 314 $strings['There are no announcements.'] = 'There are no announcements.'; 315 $strings['Resource'] = '자원'; 316 $strings['Created'] = '등록일'; 317 $strings['Last Modified'] = '최종수정일'; 318 $strings['View this reservation'] = '이 예약 보기'; 319 $strings['Modify this reservation'] = '이 예약 수정'; 320 $strings['Delete this reservation'] = '이 예약 삭제'; 321 $strings['Bookings'] = 'Bookings'; 322 $strings['Change My Profile Information/Password'] = 'Change Profile'; // @since 1.2.0 323 $strings['Manage My Email Preferences'] = 'Email Preferences'; // @since 1.2.0 324 $strings['Mass Email Users'] = 'Mass Email Users'; 325 $strings['Search Scheduled Resource Usage'] = 'Search Reservations'; // @since 1.2.0 326 $strings['Export Database Content'] = 'DB 컨텐츠 내보내기'; 327 $strings['View System Stats'] = '시스템 통계 보기'; 328 $strings['Email Administrator'] = '이메일 관리자'; 329 330 $strings['Email me when'] = '이메일로 알림:'; 331 $strings['I place a reservation'] = 'I place a reservation'; 332 $strings['My reservation is modified'] = 'My reservation is modified'; 333 $strings['My reservation is deleted'] = 'My reservation is deleted'; 334 $strings['I prefer'] = 'I prefer:'; 335 $strings['Your email preferences were successfully saved'] = 'Your email preferences were successfully saved!'; 336 $strings['Return to My Control Panel'] = '내 제어판으로 돌아가기'; 337 338 $strings['Please select the starting and ending times'] = 'Please select the starting and ending times:'; 339 $strings['Please change the starting and ending times'] = 'Please change the starting and ending times:'; 340 $strings['Reserved time'] = 'Reserved time:'; 341 $strings['Minimum Reservation Length'] = 'Minimum Reservation Length:'; 342 $strings['Maximum Reservation Length'] = 'Maximum Reservation Length:'; 343 $strings['Reserved for'] = 'Reserved for:'; 344 $strings['Will be reserved for'] = 'Will be reserved for:'; 345 $strings['N/A'] = 'N/A'; 346 $strings['Update all recurring records in group'] = 'Update all recurring records in group?'; 347 $strings['Delete?'] = '삭제하시겠습니까?'; 348 $strings['Never'] = '-- Never --'; 349 $strings['Days'] = '일'; 350 $strings['Weeks'] = '주'; 351 $strings['Months (date)'] = '월 (date)'; 352 $strings['Months (day)'] = '월 (day)'; 353 $strings['First Days'] = 'First Days'; 354 $strings['Second Days'] = 'Second Days'; 355 $strings['Third Days'] = 'Third Days'; 356 $strings['Fourth Days'] = 'Fourth Days'; 357 $strings['Last Days'] = 'Last Days'; 358 $strings['Repeat every'] = 'Repeat every:'; 359 $strings['Repeat on'] = 'Repeat on:'; 360 $strings['Repeat until date'] = 'Repeat until date:'; 361 $strings['Summary'] = '요약'; 362 363 $strings['View schedule'] = 'View schedule:'; 364 $strings['My Reservations'] = 'My Reservations'; 365 $strings['My Past Reservations'] = 'My Past Reservations'; 366 $strings['Other Reservations'] = 'Other Reservations'; 367 $strings['Other Past Reservations'] = 'Other Past Reservations'; 368 $strings['Blacked Out Time'] = 'Blacked Out Time'; 369 $strings['Set blackout times'] = 'Set blackout times for %s on %s'; 370 $strings['Reserve on'] = 'Reserve %s on %s'; 371 $strings['Prev Week'] = '« Prev Week'; 372 $strings['Jump 1 week back'] = 'Jump 1 week back'; 373 $strings['Prev days'] = '‹ Prev %d days'; 374 $strings['Previous days'] = '‹ Previous %d days'; 375 $strings['This Week'] = 'This Week'; 376 $strings['Jump to this week'] = 'Jump to this week'; 377 $strings['Next days'] = 'Next %d days ›'; 378 $strings['Next Week'] = 'Next Week »'; 379 $strings['Jump To Date'] = 'Jump To Date'; 380 $strings['View Monthly Calendar'] = 'View Monthly Calendar'; 381 $strings['Open up a navigational calendar'] = 'Open up a navigational calendar'; 382 383 $strings['View stats for schedule'] = 'View stats for schedule:'; 384 $strings['At A Glance'] = 'At A Glance'; 385 $strings['Total Users'] = 'Total Users:'; 386 $strings['Total Resources'] = 'Total Resources:'; 387 $strings['Total Reservations'] = 'Total Reservations:'; 388 $strings['Max Reservation'] = 'Max Reservation:'; 389 $strings['Min Reservation'] = 'Min Reservation:'; 390 $strings['Avg Reservation'] = 'Avg Reservation:'; 391 $strings['Most Active Resource'] = 'Most Active Resource:'; 392 $strings['Most Active User'] = 'Most Active User:'; 393 $strings['System Stats'] = 'System Stats'; 394 $strings['phpScheduleIt version'] = 'phpScheduleIt version:'; 395 $strings['Database backend'] = 'Database backend:'; 396 $strings['Database name'] = 'Database name:'; 397 $strings['PHP version'] = 'PHP version:'; 398 $strings['Server OS'] = 'Server OS:'; 399 $strings['Server name'] = 'Server name:'; 400 $strings['phpScheduleIt root directory'] = 'phpScheduleIt root directory:'; 401 $strings['Using permissions'] = 'Using permissions:'; 402 $strings['Using logging'] = 'Using logging:'; 403 $strings['Log file'] = 'Log file:'; 404 $strings['Admin email address'] = 'Admin email address:'; 405 $strings['Tech email address'] = 'Tech email address:'; 406 $strings['CC email addresses'] = 'CC email addresses:'; 407 $strings['Reservation start time'] = 'Reservation start time:'; 408 $strings['Reservation end time'] = 'Reservation end time:'; 409 $strings['Days shown at a time'] = 'Days shown at a time:'; 410 $strings['Reservations'] = 'Reservations'; 411 $strings['Return to top'] = 'Return to top'; 412 $strings['for'] = 'for'; 413 414 $strings['Select Search Criteria'] = 'Select Search Criteria'; 415 $strings['Schedules'] = 'Schedules:'; 416 $strings['All Schedules'] = 'All Schedules'; 417 $strings['Hold CTRL to select multiple'] = 'Hold CTRL to select multiple'; 418 $strings['Users'] = 'Users:'; 419 $strings['All Users'] = 'All Users'; 420 $strings['Resources'] = 'Resources'; 421 $strings['All Resources'] = 'All Resources'; 422 $strings['Starting Date'] = 'Starting Date:'; 423 $strings['Ending Date'] = 'Ending Date:'; 424 $strings['Starting Time'] = 'Starting Time:'; 425 $strings['Ending Time'] = 'Ending Time:'; 426 $strings['Output Type'] = 'Output Type:'; 427 $strings['Manage'] = 'Manage'; 428 $strings['Total Time'] = 'Total Time'; 429 $strings['Total hours'] = 'Total hours:'; 430 $strings['% of total resource time'] = '% of total resource time'; 431 $strings['View these results as'] = 'View these results as:'; 432 $strings['Edit this reservation'] = 'Edit this reservation'; 433 $strings['Search Results'] = 'Search Results'; 434 $strings['Search Resource Usage'] = 'Search Resource Usage'; 435 $strings['Search Results found'] = 'Search Results: %d reservations found'; 436 $strings['Try a different search'] = 'Try a different search'; 437 $strings['Search Run On'] = 'Search Run On:'; 438 $strings['Member ID'] = 'Member ID'; 439 $strings['Previous User'] = '« Previous User'; 440 $strings['Next User'] = 'Next User »'; 441 442 $strings['No results'] = 'No results'; 443 $strings['That record could not be found.'] = 'That record could not be found.'; 444 $strings['This blackout is not recurring.'] = 'This blackout is not recurring.'; 445 $strings['This reservation is not recurring.'] = 'This reservation is not recurring.'; 446 $strings['There are no records in the table.'] = 'There are no records in the %s table.'; 447 $strings['You do not have any reservations scheduled.'] = 'You do not have any reservations scheduled.'; 448 $strings['You do not have permission to use any resources.'] = 'You do not have permission to use any resources.'; 449 $strings['No resources in the database.'] = 'No resources in the database.'; 450 $strings['There was an error executing your query'] = 'There was an error executing your query:'; 451 452 $strings['That cookie seems to be invalid'] = 'That cookie seems to be invalid'; 453 $strings['We could not find that email in our database.'] = 'We could not find that email in our database.'; 454 $strings['That password did not match the one in our database.'] = 'That password did not match the one in our database.'; 455 $strings['You can try'] = '<br />You can try:<br />Registering an email address.<br />Or:<br />Try logging in again.'; 456 $strings['A new user has been added'] = 'A new user has been added'; 457 $strings['You have successfully registered'] = 'You have successfully registered!'; 458 $strings['Continue'] = 'Continue...'; 459 $strings['Your profile has been successfully updated!'] = 'Your profile has been successfully updated!'; 460 $strings['Please return to My Control Panel'] = 'Please return to My Control Panel'; 461 $strings['Valid email address is required.'] = '- Valid email address is required.'; 462 $strings['First name is required.'] = '- First name is required.'; 463 $strings['Last name is required.'] = '- Last name is required.'; 464 $strings['Phone number is required.'] = '- Phone number is required.'; 465 $strings['That email is taken already.'] = '- That email is taken already.<br />Please try again with a different email address.'; 466 $strings['Min 6 character password is required.'] = '- Min %s character password is required.'; 467 $strings['Passwords do not match.'] = '- Passwords do not match.'; 468 469 $strings['Per page'] = 'Per page:'; 470 $strings['Page'] = 'Page:'; 471 472 $strings['Your reservation was successfully created'] = 'Your reservation was successfully created'; 473 $strings['Your reservation was successfully modified'] = 'Your reservation was successfully modified'; 474 $strings['Your reservation was successfully deleted'] = 'Your reservation was successfully deleted'; 475 $strings['Your blackout was successfully created'] = 'Your blackout was successfully created'; 476 $strings['Your blackout was successfully modified'] = 'Your blackout was successfully modified'; 477 $strings['Your blackout was successfully deleted'] = 'Your blackout was successfully deleted'; 478 $strings['for the follwing dates'] = 'for the follwing dates:'; 479 $strings['Start time must be less than end time'] = 'Start time must be less than end time.'; 480 $strings['Current start time is'] = 'Current start time is:'; 481 $strings['Current end time is'] = 'Current end time is:'; 482 $strings['Reservation length does not fall within this resource\'s allowed length.'] = 'Reservation length does not fall within this resource\'s allowed length.'; 483 $strings['Your reservation is'] = 'Your reservation is:'; 484 $strings['Minimum reservation length'] = 'Minimum reservation length:'; 485 $strings['Maximum reservation length'] = 'Maximum reservation length:'; 486 $strings['You do not have permission to use this resource.'] = 'You do not have permission to use this resource.'; 487 $strings['reserved or unavailable'] = '%s from %s to %s is reserved or unavailable.'; 488 $strings['Reservation created for'] = 'Reservation created for %s'; 489 $strings['Reservation modified for'] = 'Reservation modified for %s'; 490 $strings['Reservation deleted for'] = 'Reservation deleted for %s'; 491 $strings['created'] = 'created'; 492 $strings['modified'] = 'modified'; 493 $strings['deleted'] = 'deleted'; 494 $strings['Reservation #'] = 'Reservation #'; 495 $strings['Contact'] = 'Contact'; 496 $strings['Reservation created'] = 'Reservation created'; 497 $strings['Reservation modified'] = 'Reservation modified'; 498 $strings['Reservation deleted'] = 'Reservation deleted'; 499 500 $strings['Reservations by month'] = 'Reservations by month'; 501 $strings['Reservations by day of the week'] = 'Reservations by day of the week'; 502 $strings['Reservations per month'] = 'Reservations per month'; 503 $strings['Reservations per user'] = 'Reservations per user'; 504 $strings['Reservations per resource'] = 'Reservations per resource'; 505 $strings['Reservations per start time'] = 'Reservations per start time'; 506 $strings['Reservations per end time'] = 'Reservations per end time'; 507 $strings['[All Reservations]'] = '[All Reservations]'; 508 509 $strings['Permissions Updated'] = 'Permissions Updated'; 510 $strings['Your permissions have been updated'] = 'Your %s permissions have been updated'; 511 $strings['You now do not have permission to use any resources.'] = 'You now do not have permission to use any resources.'; 512 $strings['You now have permission to use the following resources'] = 'You now have permission to use the following resources:'; 513 $strings['Please contact with any questions.'] = 'Please contact %s with any questions.'; 514 $strings['Password Reset'] = 'Password Reset'; 515 516 $strings['This will change your password to a new, randomly generated one.'] = 'This will change your password to a new, randomly generated one.'; 517 $strings['your new password will be set'] = 'After entering your email address and clicking "Change Password", your new password will be set in the system and emailed to you.'; 518 $strings['Change Password'] = 'Change Password'; 519 $strings['Sorry, we could not find that user in the database.'] = 'Sorry, we could not find that user in the database.'; 520 $strings['Your New Password'] = 'Your New %s Password'; 521 $strings['Your new passsword has been emailed to you.'] = 'Success!<br />' 522 . 'Your new passsword has been emailed to you.<br />' 523 . 'Please check your mailbox for your new password, then <a href="index.php">Log In</a>' 524 . ' with this new password and promptly change it by clicking the "Change My Profile Information/Password"' 525 . ' link in My Control Panel.'; 526 527 $strings['You are not logged in!'] = 'You are not logged in!'; 528 529 $strings['Setup'] = 'Setup'; 530 $strings['Please log into your database'] = 'Please log into your database'; 531 $strings['Enter database root username'] = 'Enter database root username:'; 532 $strings['Enter database root password'] = 'Enter database root password:'; 533 $strings['Login to database'] = 'Login to database'; 534 $strings['Root user is not required. Any database user who has permission to create tables is acceptable.'] = 'Root user is <b>not</b> required. Any database user who has permission to create tables is acceptable.'; 535 $strings['This will set up all the necessary databases and tables for phpScheduleIt.'] = 'This will set up all the necessary databases and tables for phpScheduleIt.'; 536 $strings['It also populates any required tables.'] = 'It also populates any required tables.'; 537 $strings['Warning: THIS WILL ERASE ALL DATA IN PREVIOUS phpScheduleIt DATABASES!'] = 'Warning: THIS WILL ERASE ALL DATA IN PREVIOUS phpScheduleIt DATABASES!'; 538 $strings['Not a valid database type in the config.php file.'] = 'Not a valid database type in the config.php file.'; 539 $strings['Database user password is not set in the config.php file.'] = 'Database user password is not set in the config.php file.'; 540 $strings['Database name not set in the config.php file.'] = 'Database name not set in the config.php file.'; 541 $strings['Successfully connected as'] = 'Successfully connected as'; 542 $strings['Create tables'] = 'Create tables >'; 543 $strings['There were errors during the install.'] = 'There were errors during the install. It is possible that phpScheduleIt will still work if the errors were minor.<br/><br/>' 544 . 'Please post any questions to the forums on <a href="http://sourceforge.net/forum/?group_id=95547">SourceForge</a>.'; 545 $strings['You have successfully finished setting up phpScheduleIt and are ready to begin using it.'] = 'You have successfully finished setting up phpScheduleIt and are ready to begin using it.'; 546 $strings['Thank you for using phpScheduleIt'] = 'Please be sure to COMPLETELY REMOVE THE \'install\' DIRECTORY.' 547 . ' This is critical because it contains database passwords and other sensitive information.' 548 . ' Failing to do so leaves the door wide open for anyone to break into your database!' 549 . '<br /><br />' 550 . 'Thank you for using phpScheduleIt!'; 551 $strings['This will update your version of phpScheduleIt from 0.9.3 to 1.0.0.'] = 'This will update your version of phpScheduleIt from 0.9.3 to 1.0.0.'; 552 $strings['There is no way to undo this action'] = 'There is no way to undo this action!'; 553 $strings['Click to proceed'] = 'Click to proceed'; 554 $strings['This version has already been upgraded to 1.0.0.'] = 'This version has already been upgraded to 1.0.0.'; 555 $strings['Please delete this file.'] = 'Please delete this file.'; 556 $strings['Successful update'] = 'The update succeeded fully'; 557 $strings['Patch completed successfully'] = 'Patch completed successfully'; 558 $strings['This will populate the required fields for phpScheduleIt 1.0.0 and patch a data bug in 0.9.9.'] = 'This will populate the required fields for phpScheduleIt 1.0.0 and patch a data bug in 0.9.9.' 559 . '<br />It is only required to run this if you performed a manual SQL update or are upgrading from 0.9.9'; 560 561 // @since 1.0.0 RC1 562 $strings['If no value is specified, the default password set in the config file will be used.'] = 'If no value is specified, the default password set in the config file will be used.'; 563 $strings['Notify user that password has been changed?'] = 'Notify user that password has been changed?'; 564 // @since 1.1.0 565 $strings['This system requires that you have an email address.'] = 'This system requires that you have an email address.'; 566 $strings['Invalid User Name/Password.'] = 'Invalid User Name/Password.'; 567 $strings['Pending User Reservations'] = 'Pending User Reservations'; 568 $strings['Approve'] = 'Approve'; 569 $strings['Approve this reservation'] = 'Approve this reservation'; 570 $strings['Approve Reservations'] ='Approve Reservations'; 571 572 $strings['Announcement'] = 'Announcement'; 573 $strings['Number'] = 'Number'; 574 $strings['Add Announcement'] = 'Add Announcement'; 575 $strings['Edit Announcement'] = 'Edit Announcement'; 576 $strings['All Announcements'] = 'All Announcements'; 577 $strings['Delete Announcements'] = 'Delete Announcements'; 578 $strings['Use start date/time?'] = 'Use start date/time?'; 579 $strings['Use end date/time?'] = 'Use end date/time?'; 580 $strings['Announcement text is required.'] = 'Announcement text is required.'; 581 $strings['Announcement number is required.'] = 'Announcement number is required.'; 582 583 $strings['Pending Approval'] = 'Pending Approval'; 584 $strings['My reservation is approved'] = 'My reservation is approved'; 585 $strings['This reservation must be approved by the administrator.'] = 'This reservation must be approved by the administrator.'; 586 $strings['Approval Required'] = 'Approval Required'; 587 $strings['No reservations requiring approval'] = 'No reservations requiring approval'; 588 $strings['Your reservation was successfully approved'] = 'Your reservation was successfully approved'; 589 $strings['Reservation approved for'] = 'Reservation approved for %s'; 590 $strings['approved'] = 'approved'; 591 $strings['Reservation approved'] = 'Reservation approved'; 592 593 $strings['Valid username is required'] = 'Valid username is required'; 594 $strings['That logon name is taken already.'] = 'That logon name is taken already.'; 595 $strings['this will be your login'] = '(this will be your login)'; 596 $strings['Logon name'] = 'Logon name'; 597 $strings['Your logon name is'] = 'Your logon name is %s'; 598 599 $strings['Start'] = 'Start'; 600 $strings['End'] = 'End'; 601 $strings['Start date must be less than or equal to end date'] = 'Start date must be less than or equal to end date'; 602 $strings['That starting date has already passed'] = 'That starting date has already passed'; 603 $strings['Basic'] = 'Basic'; 604 $strings['Participants'] = 'Participants'; 605 $strings['Close'] = 'Close'; 606 $strings['Start Date'] = 'Start Date'; 607 $strings['End Date'] = 'End Date'; 608 $strings['Minimum'] = 'Minimum'; 609 $strings['Maximum'] = 'Maximum'; 610 $strings['Allow Multiple Day Reservations'] = 'Allow Multiple Day Reservations'; 611 $strings['Invited Users'] = 'Invited Users'; 612 $strings['Invite Users'] = 'Invite Users'; 613 $strings['Remove Participants'] = 'Remove Participants'; 614 $strings['Reservation Invitation'] = 'Reservation Invitation'; 615 $strings['Manage Invites'] = 'Manage Invites'; 616 $strings['No invite was selected'] = 'No invite was selected'; 617 $strings['reservation accepted'] = '%s Accepted Your Invitation on %s'; 618 $strings['reservation declined'] = '%s Declined Your Invitation on %s'; 619 $strings['Login to manage all of your invitiations'] = 'Login to manage all of your invitations'; 620 $strings['Reservation Participation Change'] = 'Reservation Participation Change'; 621 $strings['My Invitations'] = 'My Invitations'; 622 $strings['Accept'] = 'Accept'; 623 $strings['Decline'] = 'Decline'; 624 $strings['Accept or decline this reservation'] = 'Accept or decline this reservation'; 625 $strings['My Reservation Participation'] = 'My Reservation Participation'; 626 $strings['End Participation'] = 'End Participation'; 627 $strings['Owner'] = 'Owner'; 628 $strings['Particpating Users'] = 'Participating Users'; 629 $strings['No advanced options available'] = 'No advanced options available'; 630 $strings['Confirm reservation participation'] = 'Confirm reservation participation'; 631 $strings['Confirm'] = 'Confirm'; 632 $strings['Do for all reservations in the group?'] = 'Do for all reservations in the group?'; 633 634 $strings['My Calendar'] = 'My Calendar'; 635 $strings['View My Calendar'] = 'View My Calendar'; 636 $strings['Participant'] = 'Participant'; 637 $strings['Recurring'] = 'Recurring'; 638 $strings['Multiple Day'] = 'Multiple Day'; 639 $strings['[today]'] = '[today]'; 640 $strings['Day View'] = 'Day View'; 641 $strings['Week View'] = 'Week View'; 642 $strings['Month View'] = 'Month View'; 643 $strings['Resource Calendar'] = 'Resource Calendar'; 644 $strings['View Resource Calendar'] = 'Schedule Calendar'; // @since 1.2.0 645 $strings['Signup View'] = 'Signup View'; 646 647 $strings['Select User'] = 'Select User'; 648 $strings['Change'] = 'Change'; 649 650 $strings['Update'] = 'Update'; 651 $strings['phpScheduleIt Update is only available for versions 1.0.0 or later'] = 'phpScheduleIt Update is only available for versions 1.0.0 or later'; 652 $strings['phpScheduleIt is already up to date'] = 'phpScheduleIt is already up to date'; 653 $strings['Migrating reservations'] = 'Migrating reservations'; 654 655 $strings['Admin'] = 'Admin'; 656 $strings['Manage Announcements'] = 'Manage Announcements'; 657 $strings['There are no announcements'] = 'There are no announcements'; 658 // end since 1.1.0 659 660 // @since 1.2.0 661 $strings['Maximum Participant Capacity'] = 'Maximum Participant Capacity'; 662 $strings['Leave blank for unlimited'] = 'Leave blank for unlimited'; 663 $strings['Maximum of participants'] = 'This resource has a maximum capacity of %s participants'; 664 $strings['That reservation is at full capacity.'] = 'That reservation is at full capacity.'; 665 $strings['Allow registered users to join?'] = 'Allow registered users to join?'; 666 $strings['Allow non-registered users to join?'] = 'Allow non-registered users to join?'; 667 $strings['Join'] = 'Join'; 668 $strings['My Participation Options'] = 'My Participation Options'; 669 $strings['Join Reservation'] = 'Join Reservation'; 670 $strings['Join All Recurring'] = 'Join All Recurring'; 671 $strings['You are not participating on the following reservation dates because they are at full capacity.'] = 'You are not participating on the following reservation dates because they are at full capacity.'; 672 $strings['You are already invited to this reservation. Please follow participation instructions previously sent to your email.'] = 'You are already invited to this reservation. Please follow participation instructions previously sent to your email.'; 673 $strings['Additional Tools'] = 'Additional Tools'; 674 $strings['Create User'] = 'Create User'; 675 $strings['Check Availability'] = 'Check Availability'; 676 $strings['Manage Additional Resources'] = 'Manage Additional Resources'; 677 $strings['All Additional Resources'] = 'All Additional Resources'; 678 $strings['Number Available'] = 'Number Available'; 679 $strings['Unlimited'] = 'Unlimited'; 680 $strings['Add Additional Resource'] = 'Add Additional Resource'; 681 $strings['Edit Additional Resource'] = 'Edit Additional Resource'; 682 $strings['Checking'] = 'Checking'; 683 $strings['You did not select anything to delete.'] = 'You did not select anything to delete.'; 684 $strings['Added Resources'] = 'Added Resources'; 685 $strings['Additional resource is reserved'] = 'The additional resource %s only has %s available at a time'; 686 $strings['All Groups'] = 'All Groups'; 687 $strings['Group Name'] = 'Group Name'; 688 $strings['Delete Groups'] = 'Delete Groups'; 689 $strings['Manage Groups'] = 'Manage Groups'; 690 $strings['None'] = 'None'; 691 $strings['Group name is required.'] = 'Group name is required.'; 692 $strings['Groups'] = 'Groups'; 693 $strings['Current Groups'] = 'Current Groups'; 694 $strings['Group Administration'] = 'Group Administration'; 695 $strings['Reminder Subject'] = 'Reservation reminder- %s, %s %s'; 696 $strings['Reminder'] = 'Reminder'; 697 $strings['before reservation'] = 'before reservation'; 698 $strings['My Participation'] = 'My Participation'; 699 $strings['My Past Participation'] = 'My Past Participation'; 700 $strings['Timezone'] = 'Timezone'; 701 $strings['Export'] = 'Export'; 702 $strings['Select reservations to export'] = 'Select reservations to export'; 703 $strings['Export Format'] = 'Export Format'; 704 $strings['This resource cannot be reserved less than x hours in advance'] = 'This resource cannot be reserved less than %s hours in advance'; 705 $strings['This resource cannot be reserved more than x hours in advance'] = 'This resource cannot be reserved more than %s hours in advance'; 706 $strings['Minimum Booking Notice'] = 'Minimum Booking Notice'; 707 $strings['Maximum Booking Notice'] = 'Maximum Booking Notice'; 708 $strings['hours prior to the start time'] = 'hours prior to the start time'; 709 $strings['hours from the current time'] = 'hours from the current time'; 710 $strings['Contains'] = 'Contains'; 711 $strings['Begins with'] = 'Begins with'; 712 $strings['Minimum booking notice is required.'] = 'Minimum booking notice is required.'; 713 $strings['Maximum booking notice is required.'] = 'Maximum booking notice is required.'; 714 $strings['Accessory Name'] = 'Accessory Name'; 715 $strings['Accessories'] = 'Accessories'; 716 $strings['All Accessories'] = 'All Accessories'; 717 $strings['Added Accessories'] = 'Added Accessories'; 718 // end since 1.2.0 719 720 /*** 721 EMAIL MESSAGES 722 Please translate these email messages into your language. You should keep the sprintf (%s) placeholders 723 in their current position unless you know you need to move them. 724 All email messages should be surrounded by double quotes " 725 Each email message will be described below. 726 ***/ 727 // @since 1.1.0 728 // Email message that a user gets after they register 729 $email['register'] = "%s, %s \r\n" 730 . "You have successfully registered with the following information:\r\n" 731 . "Logon: %s\r\n" 732 . "Name: %s %s \r\n" 733 . "Phone: %s \r\n" 734 . "Institution: %s \r\n" 735 . "Position: %s \r\n\r\n" 736 . "Please log into the scheduler at this location:\r\n" 737 . "%s \r\n\r\n" 738 . "You can find links to the online scheduler and to edit your profile at My Control Panel.\r\n\r\n" 739 . "Please direct any resource or reservation based questions to %s"; 740 741 // Email message the admin gets after a new user registers 742 $email['register_admin'] = "Administrator,\r\n\r\n" 743 . "A new user has registered with the following information:\r\n" 744 . "Email: %s \r\n" 745 . "Name: %s %s \r\n" 746 . "Phone: %s \r\n" 747 . "Institution: %s \r\n" 748 . "Position: %s \r\n\r\n"; 749 750 // First part of the email that a user gets after they create/modify/delete a reservation 751 // 'reservation_activity_1' through 'reservation_activity_6' are all part of one email message 752 // that needs to be assembled depending on different options. Please translate all of them. 753 // @since 1.1.0 754 $email['reservation_activity_1'] = "%s,\r\n<br />" 755 . "You have successfully %s reservation #%s.\r\n\r\n<br/><br/>" 756 . "Please use this reservation number when contacting the administrator with any questions.\r\n\r\n<br/><br/>" 757 . "A reservation between %s %s and %s %s for %s" 758 . " located at %s has been %s.\r\n\r\n<br/><br/>"; 759 $email['reservation_activity_2'] = "This reservation has been repeated on the following dates:\r\n<br/>"; 760 $email['reservation_activity_3'] = "All recurring reservations in this group were also %s.\r\n\r\n<br/><br/>"; 761 $email['reservation_activity_4'] = "The following summary was provided for this reservation:\r\n<br/>%s\r\n\r\n<br/><br/>"; 762 $email['reservation_activity_5'] = "If this is a mistake, please contact the administrator at: %s" 763 . " or by calling %s.\r\n\r\n<br/><br/>" 764 . "You can view or modify your reservation information at any time by" 765 . " logging into %s at:\r\n<br/>" 766 . "<a href=\"%s\" target=\"_blank\">%s</a>.\r\n\r\n<br/><br/>"; 767 $email['reservation_activity_6'] = "Please direct all technical questions to <a href=\"mailto:%s\">%s</a>.\r\n\r\n<br/><br/>"; 768 // @since 1.1.0 769 $email['reservation_activity_7'] = "%s,\r\n<br />" 770 . "Reservation #%s has been approved.\r\n\r\n<br/><br/>" 771 . "Please use this reservation number when contacting the administrator with any questions.\r\n\r\n<br/><br/>" 772 . "A reservation between %s %s and %s %s for %s" 773 . " located at %s has been %s.\r\n\r\n<br/><br/>"; 774 775 // Email that the user gets when the administrator changes their password 776 $email['password_reset'] = "Your %s password has been reset by the administrator.\r\n\r\n" 777 . "Your temporary password is:\r\n\r\n %s\r\n\r\n" 778 . "Please use this temporary password (copy and paste to be sure it is correct) to log into %s at %s" 779 . " and immediately change it using the 'Change My Profile Information/Password' link in the My Quick Links table.\r\n\r\n" 780 . "Please contact %s with any questions."; 781 782 // Email that the user gets when they change their lost password using the 'Password Reset' form 783 $email['new_password'] = "%s,\r\n" 784 . "Your new password for your %s account is:\r\n\r\n" 785 . "%s\r\n\r\n" 786 . "Please Log In at %s " 787 . "with this new password " 788 . "(copy and paste it to ensure it is correct) " 789 . "and promptly change your password by clicking the " 790 . "Change My Profile Information/Password " 791 . "link in My Control Panel.\r\n\r\n" 792 . "Please direct any questions to %s."; 793 794 // @since 1.1.0 795 // Email that is sent to invite users to a reservation 796 $email['reservation_invite'] = "%s has invited you to participate in the following reservation:\r\n\r\n" 797 . "Resource: %s\r\n" 798 . "Start Date: %s\r\n" 799 . "Start Time: %s\r\n" 800 . "End Date: %s\r\n" 801 . "End Time: %s\r\n" 802 . "Summary: %s\r\n" 803 . "Repeated Dates (if present): %s\r\n\r\n" 804 . "To accept this invitation click this link (copy and paste if it is not highlighted) %s\r\n" 805 . "To decline this invitation click this link (copy and paste if it is not highlighted) %s\r\n" 806 . "To accept select dates or manage your invitations at a later time, please log into %s at %s"; 807 808 // @since 1.1.0 809 // Email that is sent when a user is removed from a reservation 810 $email['reservation_removal'] = "You have been removed from the following reservation:\r\n\r\n" 811 . "Resource: %s\r\n" 812 . "Start Date: %s\r\n" 813 . "Start Time: %s\r\n" 814 . "End Date: %s\r\n" 815 . "End Time: %s\r\n" 816 . "Summary: %s\r\n" 817 . "Repeated Dates (if present): %s\r\n\r\n"; 818 819 // @since 1.2.0 820 // Email body that is sent for reminders 821 $email['Reminder Body'] = "Your reservation for %s from %s %s to %s %s is approaching."; 822 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| [ Powered by PHPXref - Served by Debian GNU/Linux ] |