1<?php 2$lang['bez'] = "Risk Elimination Base"; 3$lang['bez_short'] = "BEZ"; 4$lang['bds_timeline'] = "History"; 5$lang['bds_issues'] = "Registers"; 6$lang['bds_issue_report'] = "Report a problem"; 7$lang['bds_task_report'] = "Add a task"; 8$lang['report'] = "Report"; 9$lang['report_open'] = 'Raport of opened'; 10$lang['bez_tasks'] = 'Tasks'; 11 12$lang['issues'] = "Problems"; 13$lang['tasks'] = "Tasks"; 14$lang['reports'] = 'Registers'; 15 16$lang['issue'] = 'Issue'; 17$lang['task'] = 'Task'; 18 19$lang['report_issue'] = "Report a problem"; 20$lang['id'] = "No"; 21$lang['_id'] = "No"; 22$lang['type'] = "Type of problem"; 23$lang['just_type'] = 'Type'; 24$lang['title'] = "Title"; 25$lang['state'] = "Status"; 26$lang['reporter'] = "Person reporting the problem"; 27$lang['executor'] = "Performer"; 28$lang['coordinator'] = "Coordinator"; 29$lang['description'] = "Description"; 30$lang['date'] = "Reported"; 31$lang['last_mod_date'] = "last change"; 32$lang['opened_for'] = "Open since"; 33$lang['last_modified'] = "Last change"; 34$lang['last_modified_by'] = "Last changed by"; 35$lang['opened_tasks'] = "Open tasks"; 36 37$lang['entity'] = "Source of report"; 38$lang['entities'] = "Sources of report (one per line)"; 39$lang['entities_confirm'] = 'New sources of report saved.'; 40 41$lang['opinion'] = "Effectiveness evaluation"; 42$lang['root_cause'] = "Cause category"; 43$lang['causes'] = "Causes"; 44 45$lang['save'] = "Save"; 46$lang['proposal'] = "Proposal"; 47$lang['reported_by'] = "Reported by"; 48$lang['executor_not_specified'] = "Unspecified"; 49$lang['account_removed'] = "Removed account"; 50$lang['none'] = "none"; 51 52$lang['changes_history'] = "Change history"; 53$lang['add_comment'] = "Add comment"; 54$lang['add_task'] = "Add task"; 55$lang['change_issue'] = "Change the report of problem "; 56 57$lang['changed'] = "It has been changed"; 58$lang['changed_field'] = "It has been changed"; 59$lang['by'] = "by"; 60$lang['from'] = "from"; 61$lang['to'] = "to"; 62$lang['diff'] = "Differences"; 63$lang['comment'] = "Add"; 64$lang['replay'] = "Reply"; 65$lang['edit'] = "Edit"; 66$lang['change_task_state'] = "Change a status of task"; 67$lang['replay_to'] = "Reply to"; 68$lang['quoted_in'] = "Replies"; 69 70$lang['error_issue_id_not_specifed'] = "You didn't provide the row number, you are trying to read. "; 71$lang['error_issue_id_unknown'] = "Row you want to read does not exist."; 72$lang['error_db_connection'] = "Cannot connect to the database."; 73$lang['error_issue_insert'] = "The problem cannot be added. "; 74$lang['error_task_add'] = "You cannot add tasks. Access denied."; 75$lang['error_table_unknown'] = "The table dosn't exist."; 76$lang['error_report_unknown'] = "The report dosn't exist"; 77$lang['error_issue_report'] = 'You cannot add new issues.'; 78$lang['error_entity'] = 'You cannot add new soruces of report.'; 79$lang['error_issues'] = 'You cannot view issues.'; 80$lang['error_no_permission'] = 'You do not have permission to view this page.'; 81 82$lang['vald_root_cause'] = "Select cause category."; 83 84$lang['vald_type_required'] = "Specify a type of the problem"; 85$lang['vald_entity_required'] = "Choose a source of report from the list"; 86$lang['vald_title_required'] = "Provide a title."; 87$lang['vald_title_too_long'] = "Title is too long, max: %d characters."; 88$lang['vald_title_wrong_chars'] = "Forbidden characters in the title. Only letters, numbers, spaces, dashes, floors, points and commas are allowed."; 89 90$lang['vald_executor_required'] = "Choose the existing user or leave a problem unspecified."; 91$lang['vald_coordinator_required'] = "Coordinator has to be wiki user."; 92 93$lang['vald_desc_required'] = "Describe a problem"; 94$lang['vald_desc_too_long'] = "Too long description, max %d characters."; 95$lang['vald_opinion_too_long'] = "Effectiveness of evaluation is too long, max: %d characters."; 96$lang['vald_opinion_required'] = 'Effectiveness of evaluation is required.'; 97$lang['vald_cannot_give_opinion'] = "You cannot evaluate effectiveness when a problem is still open."; 98$lang['vald_cannot_give_reason'] = "You didn't change a status of the task."; 99 100$lang['vald_content_required'] = "Insert a text"; 101$lang['vald_content_too_long'] = "Text is too long, max: %d"; 102$lang['vald_replay_to_not_exists'] = "Comment dosn't exist"; 103$lang['vald_state_required'] = "Specified a status of problem"; 104$lang['vald_state_tasks_not_closed'] = 'You cannot change issue state unless all tasks are closed.'; 105 106$lang['vald_task_state_required'] = "Specified a status of task"; 107$lang['vald_task_state_tasks_not_closed'] = "You cannot close the problem before closing all the tasks. Open tasks: %t"; 108 109$lang['vald_executor_not_exists'] = "Specified performer is nor a user of REB."; 110$lang['vald_cost_too_big'] = "Cost is too high, max: %d"; 111$lang['vald_cost_wrong_format'] = "Cost should be integer."; 112$lang['vald_action_required'] = "Provide an action of the task"; 113 114$lang['vald_days_should_be_numeric'] = "Days have to be decimal."; 115 116$lang['vald_entity_too_long'] = 'Single source of report can have not have more than %d characters.'; 117$lang['vald_entity_no_ascii'] = 'Source of report contains non-ASCII charters.'; 118 119 120$lang['vald_type_wrong_chars'] = 'Type has to contain only numbers and letters.'; 121$lang['vald_type_required'] = 'You must provide type name in both languages.'; 122 123$lang['priority_marginal'] = 'marginal'; 124$lang['priority_important'] = 'important'; 125$lang['priority_crucial'] = 'crucial'; 126 127$lang['type_complaint'] = "complaint"; 128$lang['type_noneconformity'] = "nonconformity"; 129$lang['type_noneconformity_internal'] = 'internal noneconformity'; 130$lang['type_noneconformity_customer'] = 'customer noneconformity'; 131$lang['type_noneconformity_supplier'] = 'supplier noneconformity'; 132$lang['type_opportunity'] = 'opportunity'; 133$lang['type_threat'] = 'threat'; 134 135$lang['state_proposal'] = "proposal"; 136$lang['state_opened'] = "open"; 137$lang['state_done'] = "done"; 138$lang['state_rejected'] = "rejected"; 139$lang['state_closed'] = "closed"; 140 141$lang['reject_issue'] = 'Reject'; 142$lang['close_issue'] = 'Close'; 143 144$lang['just_now'] = "minute before"; 145$lang['seconds'] = "seconds"; 146$lang['minutes'] = "minutes"; 147$lang['hours'] = "hours"; 148$lang['days'] = "days"; 149$lang['ago'] = "ago"; 150 151$lang['issue_closed_com'] = "Problem was closed %d, futhure changes are disabled."; 152$lang['reopen_issue'] = "Change a status of the problem"; 153$lang['add'] = "Add"; 154 155$lang['class'] = 'Task type'; 156 157$lang['action'] = "Action"; 158 159$lang['open'] = "Open"; 160$lang['closed'] = "Closed"; 161 162$lang['cost'] = "Cost (PLN)"; 163$lang['executor'] = "Performer"; 164 165$lang['task_state'] = "Status"; 166$lang['reason'] = "Rejection reason"; 167 168$lang['task_added'] = "Task has been added"; 169$lang['task_changed'] = "Task has been changed"; 170$lang['task_rejected_header'] = "Task has been rejected"; 171$lang['task_closed'] = "Task has been completed"; 172$lang['task_reopened'] = "Task has been reopend"; 173$lang['comment_added'] = "commented"; 174$lang['comment_changed'] = "Comment has been changed"; 175 176$lang['cause_added'] = 'added cause'; 177$lang['cause_noun'] = "Cause"; 178$lang['change_cause_button'] = "Correct the cause"; 179$lang['added'] = 'Added'; 180 181 182$lang['replay_by_task'] = "Add task in replay"; 183$lang['change_made'] = "Change has been made"; 184 185$lang['change_comment'] = "Correct the comment"; 186$lang['change_comment_button'] = "Correct the comment"; 187$lang['change_task'] = "Change the task"; 188$lang['change_task_button'] = "Change the task"; 189 190$lang['preview'] = "preview"; 191$lang['next'] = "next"; 192 193$lang['version'] = "Version"; 194 195$lang['comment_noun'] = "Comment"; 196$lang['change'] = "Change"; 197$lang['task'] = "Task"; 198 199$lang['change_state_button'] = "Change the status"; 200 201 202$lang['correction'] = "Correction"; 203$lang['correction_h'] = 'Correction'; 204$lang['corrective_action'] = "Corrective action"; 205$lang['preventive_action'] = "Preventive action"; 206 207$lang['correction_add'] = 'Add correction'; 208$lang['corrective_action_add'] = 'Add corrective action'; 209$lang['preventive_action_add'] = 'Add preventive action'; 210 211$lang['show_all_tasks'] = 'Show all tasks'; 212 213$lang['none_comment'] = "none(comment)"; 214$lang['manpower'] = "Manpower"; 215$lang['method'] = "Method"; 216$lang['machine'] = "Machine"; 217$lang['material'] = "Material"; 218$lang['managment'] = "Management"; 219$lang['measurement'] = "Measurement"; 220$lang['money'] = "Money"; 221$lang['environment'] = "Environment"; 222$lang['communication'] = "Communication"; 223 224$lang['task_opened'] = "Open"; 225$lang ['task_outdated'] = 'Outdated'; 226$lang ['task_done'] = "Done"; 227$lang ['task_plan'] = "Plan"; 228$lang ['task_rejected'] = "Rejected"; 229 230$lang ['task_do'] = 'Done'; 231$lang ['task_reject'] = 'Reject'; 232$lang ['task_reopen'] = 'Reopen'; 233 234$lang['reason_reopen'] = "Reason for reopening "; 235$lang['reason_done'] = "Reason for closing"; 236$lang['reason_reject'] = "Reason for rejecting"; 237 238$lang['issue_created'] = "Reported"; 239 240$lang['issue_closed'] = "Problem has been closed"; 241$lang['issue_reopened'] = "Problem has been reopened"; 242 243$lang['issue_reopen'] = 'Reopen issue'; 244 245$lang['today'] = "Today"; 246$lang['yesterday'] = "Yesterday"; 247 248$lang['task_for'] = "for"; 249$lang['content'] = "Description"; 250 251$lang['8d_report'] = "8D Report"; 252$lang['8d_report_for'] = "for"; 253$lang['open_date'] = "Open date"; 254$lang['1d'] = "1D - Team"; 255$lang['2d'] = "2D - Problem"; 256$lang['3d'] = "3D - Correction"; 257$lang['4d'] = "4D - Real causes"; 258$lang['5d'] = "5D - Corrective action"; 259$lang['6d'] = "6D - Potential causes"; 260$lang['7d'] = "7D - Preventive action"; 261$lang['8d'] = "8D - Effectiveness evaluation"; 262 263$lang['number'] = 'Quantity'; 264$lang['true_date'] = "Date"; 265 266 267$lang['report_issues'] = 'Issues'; 268$lang['report_tasks'] = 'Tasks'; 269$lang['report_causes'] = 'Causes'; 270$lang['report_priority'] = 'Raction time'; 271$lang['report_subhead'] = 'for closed issues and tasks'; 272 273$lang['priority'] = 'Priority'; 274$lang['average'] = 'Average'; 275 276$lang['totalcost'] = 'Value'; 277$lang['report_total'] = 'Total'; 278 279$lang['show'] = "show"; 280 281$lang['by_last_activity'] = "Open, from latest to earliest"; 282$lang['issues_by_last_activity'] = "Open problems, from latest to earliest"; 283 284$lang['ns'] = "NA"; 285 286$lang['ended'] = "Completed"; 287 288//Mail 289$lang['new_task'] = "New task"; 290$lang['new_issue'] = "New issue"; 291$lang['send_mail'] = "Send"; 292 293$lang['average_days'] = "Average time of task closing(days)"; 294 295$lang['bds_switch_lang'] = "Wersja polska"; 296 297$lang['comments'] = 'Comments'; 298 299$lang['delete'] = 'Delete'; 300$lang['info_no_causes_added'] = 'You have to add cause in order to add corrective and preventive actions.'; 301$lang['info_no_all_tasks_closed'] = 'You have to close all tasks before closing the problem.'; 302 303$lang['types_manage'] = 'Types of issues'; 304 305$lang['sort'] = 'Sort'; 306$lang['cancel'] = 'Cancel'; 307 308$lang['menu_close_task'] = 'My tasks (%d)'; 309$lang['menu_close_issue'] = 'My issues(%d)'; 310$lang['menu_comment_issue'] = 'Opened issues (%d)'; 311 312$lang['do_you_want_remove'] = 'Do you really want to remove this row?'; 313$lang['yes'] = 'Yes'; 314$lang['no'] = 'No'; 315 316$lang['all'] = 'everything'; 317$lang['year'] = 'Year'; 318$lang['in_year'] = 'in year'; 319$lang['filter'] = 'Filter'; 320 321$lang['close_issues'] = 'My issues'; 322$lang['close_tasks'] = 'My tasks'; 323 324$lang['proposals'] = 'Proposals'; 325 326$lang['show_tasks_hidden'] = 'Show closed and rejected tasks'; 327$lang['add_task'] = 'Add new task'; 328 329$lang['save_without_changing_date'] = 'Save without changing date'; 330 331$lang['sort_by_open_date'] = 'Sort by open date'; 332 333$lang['casue_cant_remove'] = 'You cannot remove cause with related tasks.'; 334 335$lang['add_cause'] = 'Add cause'; 336$lang['add_correction'] = 'Add correction'; 337 338$lang['cause'] = 'cause'; 339$lang['pontential_cause'] = 'potential cause'; 340 341$lang['cause_type'] = 'Cause type'; 342 343$lang['type_default'] = 'normal'; 344$lang['type_potential'] = 'potential'; 345 346$lang['evaluation'] = 'Ocena'; 347 348$lang['rr_report'] = 'RR Report'; 349 350$lang['rr_team'] = 'Risk evaluation team'; 351$lang['rr_desc'] = 'Risk description'; 352$lang['rr_eval'] = 'Risk evaluacion'; 353$lang['rr_suceval'] = 'Effectiveness evalutation'; 354 355$lang['correction_nav'] = 'Corrections'; 356$lang['closed_tasks'] = 'Closed tasks'; 357$lang['root_causes'] = 'Cause categories'; 358 359$lang['version'] = 'version'; 360 361$lang['issues_juxtaposition'] = 'Juxtaposition of issues'; 362$lang['tasks_juxtaposition'] = 'Juxtaposition of tasks'; 363 364$lang['issue_unclosed_tasks'] = 'You cannot close issues until some tasks are not closed.'; 365$lang['issue_is_proposal'] = 'You cannot add tasks until the issue is proposal.'; 366$lang['issue_no_tasks'] = 'You cannot close the issue until it has no tasks.'; 367$lang['cause_without_task'] = 'You cannot close the issue if you have some causes without tasks.'; 368 369$lang['number_of_open'] = 'Number of open'; 370$lang['number_of_close'] = 'Number of closed'; 371$lang['number_of_close_on_time'] = 'Number of closed on time'; 372$lang['number_of_close_off_time'] = 'Number of closed off time'; 373$lang['diffirence'] = 'Diffirence'; 374 375$lang['cost_of_open'] = 'Cost of open'; 376 377$lang['average_of_close'] = 'Avarage close time'; 378 379$lang['plan_date'] = 'Plan date'; 380$lang['all_day_event'] = 'All day event'; 381$lang['start_time'] = 'Start time'; 382$lang['finish_time'] = 'Finish time'; 383 384$lang['vald_valid_date_required'] = 'Valid date required.'; 385$lang['vald_valid_start_hour_required'] = 'Valid start time required.'; 386$lang['vald_valid_finish_hour_required'] = 'Valid finish time required.'; 387 388$lang['download_in_icalendar'] = 'iCalendar'; 389 390$lang['task_types'] = 'Task types'; 391$lang['task_type'] = 'Typ zadań'; 392 393$lang['programme'] = 'Programme'; 394 395$lang['tasks_no_type'] = '--- without type ---'; 396 397$lang ['plan'] = "Plan"; 398 399$lang ['task_plan'] = "Plan"; 400$lang ['task_realization'] = "Realization"; 401 402$lang ['month'] = "Month"; 403 404$lang ['report_date'] = "Report date"; 405$lang ['close_date'] = "Close date"; 406 407$lang['jan'] = 'January'; 408$lang['feb'] = 'February'; 409$lang['mar'] = 'March'; 410$lang['apr'] = 'April'; 411$lang['may'] = 'May'; 412$lang['june'] = 'June'; 413$lang['july'] = 'July'; 414$lang['aug'] = 'August'; 415$lang['sept'] = 'September'; 416$lang['oct'] = 'October'; 417$lang['nov'] = 'November'; 418$lang['dec'] = 'December'; 419 420$lang['mon1_a'] = 'January'; 421$lang['mon2_a'] = 'February'; 422$lang['mon3_a'] = 'March'; 423$lang['mon4_a'] = 'April'; 424$lang['mon5_a'] = 'May'; 425$lang['mon6_a'] = 'June'; 426$lang['mon7_a'] = 'July'; 427$lang['mon8_a'] = 'August'; 428$lang['mon9_a'] = 'September'; 429$lang['mon10_a'] = 'October'; 430$lang['mon11_a'] = 'November'; 431$lang['mon12_a'] = 'December'; 432 433$lang['at_hour'] = 'at'; 434 435$lang['hours_no'] = 'Number of hours'; 436 437$lang['show_desc'] = 'Show descriptions'; 438$lang['show_desc_and_eval'] = 'Show descrpitions and evaluations'; 439 440$lang['hide_desc'] = 'Hide descripitons'; 441$lang['hide_desc_and_eval'] = 'Hide descripitons and evaluations'; 442 443$lang['users'] = 'users'; 444$lang['groups'] = 'groups'; 445 446$lang['duplicate'] = 'Duplicate'; 447 448$lang['show_issue'] = 'Show issue'; 449 450$lang['select'] = 'select'; 451 452$lang['not_relevant'] = 'not relevant'; 453 454$lang['validate_is_null'] = 'cannot be empty.'; 455$lang['validate_validate_iso_date'] = 'bad date format.'; 456$lang['validate_must_be_0'] = 'must be 0.'; 457$lang['refs'] = 'References'; 458 459$lang['comment_last_activity'] = 'Last activity'; 460$lang['comment_participants'] = 'Participants'; 461 462$lang['issue_type_no_specified'] = 'type no specified'; 463 464$lang['involvement'] = 'Involvement'; 465$lang['commentator'] = 'Commentator'; 466 467$lang['activity_report'] = 'Activity report'; 468 469$lang['user'] = 'User'; 470 471$lang['activity_in_issues'] = 'Activity in issues'; 472 473$lang['activity_in_tasks'] = 'Activity in tasks'; 474 475$lang['rejected_tasks'] = 'Rejected tasks'; 476 477$lang['subscribe'] = 'Subscribe'; 478 479$lang['subscribent'] = 'Subscribent'; 480 481$lang['unsubscribe'] = 'Unsubscribe'; 482 483$lang['subscribed_info'] = "You're receiving notifications about changes in this problem."; 484 485$lang['not_subscribed_info'] = "You're not receiving notifications about changes in this problem."; 486 487$lang['show_comments'] = 'Show comments'; 488$lang['hide_comments'] = 'Hide comments'; 489 490$lang['correct'] = 'Correct'; 491 492$lang['from_hour'] = 'from'; 493$lang['to_hour'] = 'to'; 494 495$lang['next_open'] = 'Next open'; 496$lang['prev_open'] = 'Previous open'; 497 498$lang['js']['remove_confirm'] = 'Do you realy want to delete this item?'; 499 500$lang['unsubscribed_com'] = 'You’ve been unsubscribed from this problem.'; 501 502$lang['issue_added'] = 'Issue added'; 503 504$lang['timeline_cause_added'] = 'Cause added'; 505$lang['timeline_comment_added'] = 'Comment added'; 506 507$lang['issue_invite_header'] = 'Invite user'; 508$lang['issue_invite_button'] = 'Invite'; 509 510$lang['mail_mail_notify_invite_action'] = 'invited you to take part in the discussion'; 511$lang['mail_mail_notify_invite_subject'] = 'Problem invitation'; 512 513$lang['mail_mail_inform_coordinator_action'] = 'has assigned you as coordinator'; 514$lang['mail_mail_inform_coordinator_subject'] = 'Assignment to the problem'; 515 516$lang['mail_mail_notify_change_state_action'] = 'has changed state'; 517$lang['mail_mail_notify_change_state_subject'] = 'State change in the problem'; 518 519$lang['js']['combobox_show_all_items'] = 'Show All Items'; 520$lang['js']['combobox_did_not_match'] = "didn't match any item"; 521 522$lang['invitation_has_been_send'] = 'Invitation has been sent to'; 523 524