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'] = 'Action'; 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'] = "Comment has been added"; 174$lang['comment_changed'] = "Comment has been changed"; 175 176$lang['cause_added'] = "Cause added"; 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_done'] = "Done"; 226$lang ['task_rejected'] = "Rejected"; 227 228$lang ['task_do'] = 'Done'; 229$lang ['task_reject'] = 'Reject'; 230 231$lang['reason_reopen'] = "Reason for reopening "; 232$lang['reason_done'] = "Reason for closing"; 233$lang['reason_reject'] = "Reason for rejecting"; 234 235$lang['issue_created'] = "Reported"; 236 237$lang['issue_closed'] = "Problem has been closed"; 238$lang['issue_reopened'] = "Problem has been reopened"; 239 240$lang['issue_reopen'] = 'Reopen issue'; 241 242$lang['today'] = "Today"; 243$lang['yesterday'] = "Yesterday"; 244 245$lang['task_for'] = "for"; 246$lang['content'] = "Description"; 247 248$lang['8d_report'] = "8D Report"; 249$lang['8d_report_for'] = "for"; 250$lang['open_date'] = "Open date"; 251$lang['1d'] = "1D - Team"; 252$lang['2d'] = "2D - Problem"; 253$lang['3d'] = "3D - Correction"; 254$lang['4d'] = "4D - Cause"; 255$lang['5d'] = "5D - Corrective action"; 256$lang['6d'] = "6D - Preventive action"; 257$lang['7d'] = "7D - Effectiveness evaluation"; 258$lang['8d'] = "8D - Conclusion"; 259 260$lang['number'] = 'Quantity'; 261$lang['true_date'] = "Date"; 262 263 264$lang['report_issues'] = 'Issues'; 265$lang['report_tasks'] = 'Tasks'; 266$lang['report_causes'] = 'Causes'; 267$lang['report_priority'] = 'Raction time'; 268$lang['report_subhead'] = 'for closed issues and tasks'; 269 270$lang['priority'] = 'Priority'; 271$lang['average'] = 'Average'; 272 273$lang['totalcost'] = 'Value'; 274$lang['report_total'] = 'Total'; 275 276$lang['show'] = "show"; 277 278$lang['by_last_activity'] = "Open, from latest to earliest"; 279$lang['issues_by_last_activity'] = "Open problems, from latest to earliest"; 280 281$lang['ns'] = "NA"; 282 283$lang['ended'] = "Completed"; 284 285//Mail 286$lang['new_task'] = "New task"; 287$lang['new_issue'] = "New issue"; 288$lang['send_mail'] = "Send"; 289 290$lang['average_days'] = "Average time of task closing(days)"; 291 292$lang['bds_switch_lang'] = "Wersja polska"; 293 294$lang['comments'] = 'Comments'; 295 296$lang['delete'] = 'Delete'; 297$lang['info_no_causes_added'] = 'You have to add cause in order to add corrective and preventive actions.'; 298$lang['info_no_all_tasks_closed'] = 'You have to close all tasks before closing the problem.'; 299 300$lang['types_manage'] = 'Types of issues'; 301 302$lang['sort'] = 'Sort'; 303$lang['cancel'] = 'Cancel'; 304 305$lang['menu_close_task'] = 'My tasks (%d)'; 306$lang['menu_close_issue'] = 'My issues(%d)'; 307$lang['menu_comment_issue'] = 'Opened issues (%d)'; 308 309$lang['do_you_want_remove'] = 'Do you really want to remove this row?'; 310$lang['yes'] = 'Yes'; 311$lang['no'] = 'No'; 312 313$lang['all'] = 'everything'; 314$lang['year'] = 'Year'; 315$lang['in_year'] = 'in year'; 316$lang['filter'] = 'Filter'; 317 318$lang['close_issues'] = 'My issues'; 319$lang['close_tasks'] = 'My tasks'; 320 321$lang['proposals'] = 'Proposals'; 322 323$lang['show_tasks_hidden'] = 'Show closed and rejected tasks'; 324$lang['add_task'] = 'Add new task'; 325 326$lang['save_without_changing_date'] = 'Save without changing date'; 327 328$lang['sort_by_open_date'] = 'Sort by open date'; 329 330$lang['issue_is_proposal'] = 'You cannot add causes and tasks until this issue is porposal.'; 331 332$lang['casue_cant_remove'] = 'You cannot remove cause with related tasks.'; 333 334$lang['add_cause'] = 'Add cause'; 335$lang['add_correction'] = 'Add correction'; 336 337$lang['cause'] = 'cause'; 338$lang['pontential_cause'] = 'potential cause'; 339 340$lang['cause_type'] = 'Cause type'; 341 342$lang['type_default'] = 'normal'; 343$lang['type_potential'] = 'potential'; 344 345$lang['evaluation'] = 'Ocena'; 346 347$lang['rr_report'] = 'RR Report'; 348 349$lang['rr_team'] = 'Risk evaluation team'; 350$lang['rr_desc'] = 'Risk description'; 351$lang['rr_eval'] = 'Risk evaluacion'; 352$lang['rr_suceval'] = 'Effectiveness evalutation'; 353 354$lang['correction_nav'] = 'Corrections'; 355$lang['closed_tasks'] = 'Closed tasks'; 356$lang['root_causes'] = 'Cause categories'; 357 358$lang['version'] = 'version'; 359 360$lang['issues_juxtaposition'] = 'Juxtaposition of issues'; 361$lang['tasks_juxtaposition'] = 'Juxtaposition of tasks'; 362 363$lang['issue_unclosed_tasks'] = 'You cannot close issues until some tasks are not closed.'; 364$lang['issue_is_proposal'] = 'You cannot add causes and tasks until issue is proposal.'; 365$lang['issue_no_tasks'] = 'You cannot close the issue until it has no tasks.'; 366$lang['cause_without_task'] = 'You cannot close the issue if you have some causes without tasks.'; 367