xref: /plugin/bez/lang/en/lang.php (revision ff14b1073c2dab2f863cab3b8baf8b1a01f7993a)
165cfcae3Sghi<?php
208e8ea12Sghi$lang['bez'] = "Risk Elimination Base";
308e8ea12Sghi$lang['bez_short'] = "BEZ";
465cfcae3Sghi$lang['bds_timeline'] = "History";
565cfcae3Sghi$lang['bds_issues'] = "Registers";
665cfcae3Sghi$lang['bds_issue_report'] = "Report a problem";
7ecefc57aSghi$lang['bds_task_report'] = "Add a task";
8260e885eSghi$lang['report'] = "Report";
997183698Sghi$lang['report_open'] = 'Raport of opened';
10c9044e56Sghi$lang['bez_tasks'] = 'Tasks';
1165cfcae3Sghi
1265cfcae3Sghi$lang['issues'] = "Problems";
1365cfcae3Sghi$lang['tasks'] = "Tasks";
1465cfcae3Sghi$lang['reports'] = 'Registers';
1565cfcae3Sghi
16f01326efSghi$lang['issue'] = 'Issue';
17f01326efSghi$lang['task'] = 'Task';
18f01326efSghi
1965cfcae3Sghi$lang['report_issue'] = "Report a problem";
2065cfcae3Sghi$lang['id'] = "No";
2165cfcae3Sghi$lang['_id'] = "No";
2265cfcae3Sghi$lang['type'] = "Type of problem";
23e51d1175Sghi$lang['just_type'] = 'Type';
2465cfcae3Sghi$lang['title'] = "Title";
2565cfcae3Sghi$lang['state'] = "Status";
2665cfcae3Sghi$lang['reporter'] = "Person reporting the problem";
2765cfcae3Sghi$lang['executor'] = "Performer";
2865cfcae3Sghi$lang['coordinator'] = "Coordinator";
2965cfcae3Sghi$lang['description'] = "Description";
3065cfcae3Sghi$lang['date'] = "Reported";
3165cfcae3Sghi$lang['last_mod_date'] = "last change";
3265cfcae3Sghi$lang['opened_for'] = "Open since";
3305c9d3bcSghi$lang['last_modified'] = "Last change";
3465cfcae3Sghi$lang['last_modified_by'] = "Last changed by";
3565cfcae3Sghi$lang['opened_tasks'] = "Open tasks";
3665cfcae3Sghi
3765cfcae3Sghi$lang['entity'] = "Source of report";
383cc1f839Sghi$lang['entities'] = "Sources of report (one per line)";
39e51d1175Sghi$lang['entities_confirm'] = 'New sources of report saved.';
4065cfcae3Sghi
4165cfcae3Sghi$lang['opinion'] = "Effectiveness evaluation";
4265cfcae3Sghi$lang['root_cause'] = "Cause category";
433a6ce6fbSghi$lang['causes'] = "Causes";
4465cfcae3Sghi
4565cfcae3Sghi$lang['save'] = "Save";
4665cfcae3Sghi$lang['proposal'] = "Proposal";
4765cfcae3Sghi$lang['reported_by'] = "Reported by";
4865cfcae3Sghi$lang['executor_not_specified'] = "Unspecified";
4965cfcae3Sghi$lang['account_removed'] = "Removed account";
5065cfcae3Sghi$lang['none'] = "none";
5165cfcae3Sghi
5265cfcae3Sghi$lang['changes_history'] = "Change history";
5365cfcae3Sghi$lang['add_comment'] = "Add comment";
5465cfcae3Sghi$lang['add_task'] = "Add task";
5565cfcae3Sghi$lang['change_issue'] = "Change the report of problem ";
5665cfcae3Sghi
5765cfcae3Sghi$lang['changed'] = "It has been changed";
5865cfcae3Sghi$lang['changed_field'] = "It has been changed";
593a6ce6fbSghi$lang['by'] = "by";
603a6ce6fbSghi$lang['from'] = "from";
613a6ce6fbSghi$lang['to'] = "to";
6265cfcae3Sghi$lang['diff'] = "Differences";
63e8827d73SSzymon Olewniczak$lang['comment'] = "Skomentuj";
6465cfcae3Sghi$lang['replay'] = "Reply";
6565cfcae3Sghi$lang['edit'] = "Edit";
6665cfcae3Sghi$lang['change_task_state'] = "Change a status of task";
6765cfcae3Sghi$lang['replay_to'] = "Reply to";
6865cfcae3Sghi$lang['quoted_in'] = "Replies";
6965cfcae3Sghi
7065cfcae3Sghi$lang['error_issue_id_not_specifed'] = "You didn't provide the row number, you are trying to read. ";
7165cfcae3Sghi$lang['error_issue_id_unknown'] = "Row you want to read does not exist.";
7265cfcae3Sghi$lang['error_db_connection'] = "Cannot connect to the database.";
7365cfcae3Sghi$lang['error_issue_insert'] = "The problem cannot be added. ";
7465cfcae3Sghi$lang['error_task_add'] = "You cannot add tasks. Access denied.";
7565cfcae3Sghi$lang['error_table_unknown'] = "The table dosn't exist.";
7665cfcae3Sghi$lang['error_report_unknown'] = "The report dosn't exist";
77da9ebf75Sghi$lang['error_issue_report'] = 'You cannot add new issues.';
783cc1f839Sghi$lang['error_entity'] = 'You cannot add new soruces of report.';
7985f5e5e7Sghi$lang['error_issues'] = 'You cannot view issues.';
80eb950a4cSghi$lang['error_no_permission'] = 'You do not have permission to view this page.';
8165cfcae3Sghi
823a6ce6fbSghi$lang['vald_root_cause'] = "Select cause category.";
833a6ce6fbSghi
8465cfcae3Sghi$lang['vald_type_required'] = "Specify a type of the problem";
85395c0b57Sghi$lang['vald_entity_required'] = "Choose a source of report from the list";
8665cfcae3Sghi$lang['vald_title_required'] = "Provide a title.";
8765cfcae3Sghi$lang['vald_title_too_long'] = "Title is too long, max: %d  characters.";
882f89dd93Sghi$lang['vald_title_wrong_chars'] = "Forbidden characters in the title. Only letters, numbers, spaces, dashes, floors, points and commas are allowed.";
89eb950a4cSghi
9065cfcae3Sghi$lang['vald_executor_required'] = "Choose the existing user or leave a problem unspecified.";
91da9ebf75Sghi$lang['vald_coordinator_required'] = "Coordinator has to be wiki user.";
9265cfcae3Sghi
9365cfcae3Sghi$lang['vald_desc_required'] = "Describe a problem";
9465cfcae3Sghi$lang['vald_desc_too_long'] = "Too long description, max %d  characters.";
9565cfcae3Sghi$lang['vald_opinion_too_long'] = "Effectiveness of evaluation is too long, max: %d characters.";
96a42d0169Sghi$lang['vald_opinion_required'] = 'Effectiveness of evaluation is required.';
9765cfcae3Sghi$lang['vald_cannot_give_opinion'] = "You cannot evaluate effectiveness when a problem is still open.";
9865cfcae3Sghi$lang['vald_cannot_give_reason'] = "You didn't change a status of the task.";
9965cfcae3Sghi
10065cfcae3Sghi$lang['vald_content_required'] = "Insert a text";
10165cfcae3Sghi$lang['vald_content_too_long'] = "Text is too long, max: %d";
10265cfcae3Sghi$lang['vald_replay_to_not_exists'] = "Comment dosn't exist";
10365cfcae3Sghi$lang['vald_state_required'] = "Specified a status of problem";
1042f530577Sghi$lang['vald_state_tasks_not_closed'] = 'You cannot change issue state unless all tasks are closed.';
10565cfcae3Sghi
10665cfcae3Sghi$lang['vald_task_state_required'] = "Specified a status of task";
10765cfcae3Sghi$lang['vald_task_state_tasks_not_closed'] = "You cannot close the problem before closing all the tasks. Open tasks: %t";
10865cfcae3Sghi
10929e1374dSghi$lang['vald_executor_not_exists'] = "Specified performer is nor a user of REB.";
11065cfcae3Sghi$lang['vald_cost_too_big'] = "Cost is too high, max: %d";
11112fd0ef2Sghi$lang['vald_cost_wrong_format'] = "Cost should be integer.";
112a45cff15Sghi$lang['vald_action_required'] = "Provide an action of the task";
11365cfcae3Sghi
11465cfcae3Sghi$lang['vald_days_should_be_numeric'] = "Days have to be decimal.";
11565cfcae3Sghi
1163cc1f839Sghi$lang['vald_entity_too_long'] = 'Single source of report can have not have more than %d characters.';
117d00bbb0cSghi$lang['vald_entity_no_ascii'] = 'Source of report contains non-ASCII charters.';
1183cc1f839Sghi
119eb950a4cSghi
120eb950a4cSghi$lang['vald_type_wrong_chars'] = 'Type has to contain only numbers and letters.';
121eb950a4cSghi$lang['vald_type_required'] = 'You must provide type name in both languages.';
122eb950a4cSghi
123c9044e56Sghi$lang['priority_marginal'] = 'marginal';
124c9044e56Sghi$lang['priority_important'] = 'important';
125c9044e56Sghi$lang['priority_crucial'] = 'crucial';
12665cfcae3Sghi
12765cfcae3Sghi$lang['type_complaint'] = "complaint";
12865cfcae3Sghi$lang['type_noneconformity'] = "nonconformity";
129e51d1175Sghi$lang['type_noneconformity_internal'] = 'internal noneconformity';
130e51d1175Sghi$lang['type_noneconformity_customer'] = 'customer noneconformity';
131e51d1175Sghi$lang['type_noneconformity_supplier'] = 'supplier noneconformity';
132c9044e56Sghi$lang['type_opportunity'] = 'opportunity';
133c9044e56Sghi$lang['type_threat'] = 'threat';
13465cfcae3Sghi
13565cfcae3Sghi$lang['state_proposal'] = "proposal";
13665cfcae3Sghi$lang['state_opened'] = "open";
137ecefc57aSghi$lang['state_done'] = "done";
13865cfcae3Sghi$lang['state_rejected'] = "rejected";
13929e1374dSghi$lang['state_closed'] = "closed";
14065cfcae3Sghi
1416e94bebdSghi$lang['reject_issue'] = 'Reject';
142e8827d73SSzymon Olewniczak$lang['js']['close_issue'] = 'Close issue';
143e8827d73SSzymon Olewniczak$lang['js']['comment_and_close_issue'] = 'Close and comment';
144e8827d73SSzymon Olewniczak
145e8827d73SSzymon Olewniczak$lang['js']['reject_issue'] = 'Reject issue';
146e8827d73SSzymon Olewniczak$lang['js']['comment_and_reject_issue'] = 'Comment and reject';
147e8827d73SSzymon Olewniczak
148e8827d73SSzymon Olewniczak$lang['js']['reopen_issue'] = 'Reopen issue';
149e8827d73SSzymon Olewniczak$lang['js']['comment_and_reopen_issue'] = 'Reopen and comment';
150e8827d73SSzymon Olewniczak
151e8827d73SSzymon Olewniczak
152e8827d73SSzymon Olewniczak$lang['js']['do_task'] = 'Do task';
153e8827d73SSzymon Olewniczak$lang['js']['comment_and_do_task'] = 'Do and comment';
154e8827d73SSzymon Olewniczak$lang['js']['reopen_task'] = 'Reopen task';
155e8827d73SSzymon Olewniczak$lang['js']['comment_and_reopen_task'] = 'Reopen and comment';
15665cfcae3Sghi
15765cfcae3Sghi$lang['just_now'] = "minute before";
15865cfcae3Sghi$lang['seconds'] = "seconds";
15965cfcae3Sghi$lang['minutes'] = "minutes";
16065cfcae3Sghi$lang['hours'] = "hours";
16165cfcae3Sghi$lang['days'] = "days";
16265cfcae3Sghi$lang['ago'] = "ago";
16365cfcae3Sghi
1642f530577Sghi$lang['issue_closed_com'] = "Problem was closed %d, futhure changes are disabled.";
16565cfcae3Sghi$lang['reopen_issue'] = "Change a status of the problem";
16665cfcae3Sghi$lang['add'] = "Add";
16765cfcae3Sghi
168168ecf58Sghi$lang['class'] = 'Task type';
16905c9d3bcSghi
170a45cff15Sghi$lang['action'] = "Action";
17165cfcae3Sghi
17265cfcae3Sghi$lang['open'] = "Open";
17365cfcae3Sghi$lang['closed'] = "Closed";
17465cfcae3Sghi
17565cfcae3Sghi$lang['cost'] = "Cost (PLN)";
17665cfcae3Sghi$lang['executor'] = "Performer";
17765cfcae3Sghi
17865cfcae3Sghi$lang['task_state'] = "Status";
1792f530577Sghi$lang['reason'] = "Rejection reason";
18065cfcae3Sghi
18165cfcae3Sghi$lang['task_added'] = "Task has been added";
18265cfcae3Sghi$lang['task_changed'] = "Task has been changed";
18365cfcae3Sghi$lang['task_rejected_header'] = "Task has been rejected";
18465cfcae3Sghi$lang['task_closed'] = "Task has been completed";
18565cfcae3Sghi$lang['task_reopened'] = "Task has been reopend";
186f2c81100SSzymon Olewniczak$lang['comment_added'] = "commented";
18765cfcae3Sghi$lang['comment_changed'] = "Comment has been changed";
18865cfcae3Sghi
189f2c81100SSzymon Olewniczak$lang['cause_added'] = 'added cause';
1903a6ce6fbSghi$lang['cause_noun'] = "Cause";
1913a6ce6fbSghi$lang['change_cause_button'] = "Correct the cause";
19227712358Sghi$lang['added'] = 'Added';
1933a6ce6fbSghi
1943a6ce6fbSghi
19565cfcae3Sghi$lang['replay_by_task'] = "Add task in replay";
19665cfcae3Sghi$lang['change_made'] = "Change has been made";
19765cfcae3Sghi
19865cfcae3Sghi$lang['change_comment'] = "Correct the comment";
19965cfcae3Sghi$lang['change_comment_button'] = "Correct the comment";
20065cfcae3Sghi$lang['change_task'] = "Change the task";
20165cfcae3Sghi$lang['change_task_button'] = "Change the task";
20265cfcae3Sghi
20365cfcae3Sghi$lang['preview'] = "preview";
20465cfcae3Sghi$lang['next'] = "next";
20565cfcae3Sghi
20665cfcae3Sghi$lang['version'] = "Version";
20765cfcae3Sghi
20865cfcae3Sghi$lang['comment_noun'] = "Comment";
20965cfcae3Sghi$lang['change'] = "Change";
21065cfcae3Sghi$lang['task'] = "Task";
21165cfcae3Sghi
21265cfcae3Sghi$lang['change_state_button'] = "Change the status";
21365cfcae3Sghi
21465cfcae3Sghi
21565cfcae3Sghi$lang['correction'] = "Correction";
216510f3b21Sghi$lang['correction_h'] = 'Correction';
21765cfcae3Sghi$lang['corrective_action'] = "Corrective action";
21865cfcae3Sghi$lang['preventive_action'] = "Preventive action";
21965cfcae3Sghi
220*ff14b107SSzymon Olewniczak$lang['correction_add'] = 'Add task';
22127712358Sghi$lang['corrective_action_add'] = 'Add corrective action';
22227712358Sghi$lang['preventive_action_add'] = 'Add preventive action';
22327712358Sghi
224489061b8Sghi$lang['show_all_tasks'] = 'Show all tasks';
22527712358Sghi
22665cfcae3Sghi$lang['none_comment'] = "none(comment)";
22765cfcae3Sghi$lang['manpower'] = "Manpower";
22865cfcae3Sghi$lang['method'] = "Method";
22965cfcae3Sghi$lang['machine'] = "Machine";
23065cfcae3Sghi$lang['material'] = "Material";
23165cfcae3Sghi$lang['managment'] = "Management";
23265cfcae3Sghi$lang['measurement'] = "Measurement";
23365cfcae3Sghi$lang['money'] = "Money";
23465cfcae3Sghi$lang['environment'] = "Environment";
23580487b8aSghi$lang['communication'] = "Communication";
23665cfcae3Sghi
23765cfcae3Sghi$lang['task_opened'] = "Open";
23824f91664SSzymon Olewniczak$lang ['task_outdated'] = 'Outdated';
23965cfcae3Sghi$lang ['task_done'] = "Done";
240fc2a4337Sghi$lang ['task_plan'] = "Plan";
24165cfcae3Sghi$lang ['task_rejected'] = "Rejected";
24265cfcae3Sghi
243489061b8Sghi$lang ['task_do'] = 'Done';
244489061b8Sghi$lang ['task_reject'] = 'Reject';
2455c4f5b95SSzymon Olewniczak$lang ['task_reopen'] = 'Reopen';
24660fa9366Sghi
24765cfcae3Sghi$lang['reason_reopen'] = "Reason for reopening ";
24865cfcae3Sghi$lang['reason_done']  = "Reason for closing";
24965cfcae3Sghi$lang['reason_reject'] = "Reason for rejecting";
25065cfcae3Sghi
25165cfcae3Sghi$lang['issue_created'] = "Reported";
25265cfcae3Sghi
25365cfcae3Sghi$lang['issue_closed'] = "Problem has been closed";
25465cfcae3Sghi$lang['issue_reopened'] = "Problem has been reopened";
25565cfcae3Sghi
2566e94bebdSghi$lang['issue_reopen'] = 'Reopen issue';
2576e94bebdSghi
25865cfcae3Sghi$lang['today'] = "Today";
25965cfcae3Sghi$lang['yesterday'] = "Yesterday";
26065cfcae3Sghi
26165cfcae3Sghi$lang['task_for'] = "for";
26265cfcae3Sghi$lang['content'] = "Description";
26365cfcae3Sghi
26405c9d3bcSghi$lang['8d_report'] = "8D Report";
26565cfcae3Sghi$lang['8d_report_for'] = "for";
26665cfcae3Sghi$lang['open_date'] = "Open date";
267e2b0e8caSSzymon Olewniczak$lang['1d'] = "Team";
268e2b0e8caSSzymon Olewniczak$lang['2d'] = "Problem";
269e2b0e8caSSzymon Olewniczak$lang['3d'] = "Correction";
270e2b0e8caSSzymon Olewniczak$lang['4d'] = "Real causes";
271e2b0e8caSSzymon Olewniczak$lang['5d'] = "Corrective action";
272e2b0e8caSSzymon Olewniczak$lang['6d'] = "Potential causes";
273e2b0e8caSSzymon Olewniczak$lang['7d'] = "Preventive action";
274e2b0e8caSSzymon Olewniczak$lang['8d'] = "Effectiveness evaluation";
27565cfcae3Sghi
27665cfcae3Sghi$lang['number'] = 'Quantity';
27765cfcae3Sghi$lang['true_date'] = "Date";
27865cfcae3Sghi
27965cfcae3Sghi
280d21fa58cSghi$lang['report_issues'] = 'Issues';
281d21fa58cSghi$lang['report_tasks'] = 'Tasks';
282d21fa58cSghi$lang['report_causes'] = 'Causes';
283d21fa58cSghi$lang['report_priority'] = 'Raction time';
2847050d94cSghi$lang['report_subhead'] = 'for closed issues and tasks';
28565cfcae3Sghi
286d21fa58cSghi$lang['priority'] = 'Priority';
287d21fa58cSghi$lang['average'] = 'Average';
28865cfcae3Sghi
289d21fa58cSghi$lang['totalcost'] = 'Value';
290d21fa58cSghi$lang['report_total'] = 'Total';
29165cfcae3Sghi
29265cfcae3Sghi$lang['show'] = "show";
29365cfcae3Sghi
29465cfcae3Sghi$lang['by_last_activity'] = "Open, from latest to earliest";
29565cfcae3Sghi$lang['issues_by_last_activity'] = "Open problems, from latest to earliest";
29665cfcae3Sghi
29765cfcae3Sghi$lang['ns'] = "NA";
29865cfcae3Sghi
29965cfcae3Sghi$lang['ended'] = "Completed";
30065cfcae3Sghi
30165cfcae3Sghi//Mail
30265cfcae3Sghi$lang['new_task'] = "New task";
30365cfcae3Sghi$lang['new_issue'] = "New issue";
30465cfcae3Sghi$lang['send_mail'] = "Send";
30565cfcae3Sghi
30665cfcae3Sghi$lang['average_days'] = "Average time of task closing(days)";
30765cfcae3Sghi
30865cfcae3Sghi$lang['bds_switch_lang'] = "Wersja polska";
30929e1374dSghi
31029e1374dSghi$lang['comments'] = 'Comments';
3115536eef6Sghi
3125536eef6Sghi$lang['delete'] = 'Delete';
31312fd0ef2Sghi$lang['info_no_causes_added'] = 'You have to add cause in order to add corrective and preventive actions.';
3142f530577Sghi$lang['info_no_all_tasks_closed'] = 'You have to close all tasks before closing the problem.';
31512fd0ef2Sghi
31638b5c5c4Sghi$lang['types_manage'] = 'Types of issues';
3173cc1f839Sghi
3183cc1f839Sghi$lang['sort'] = 'Sort';
3193cc1f839Sghi$lang['cancel'] = 'Cancel';
320a6dcc2a9Sghi
321a6dcc2a9Sghi$lang['menu_close_task'] = 'My tasks (%d)';
322a6dcc2a9Sghi$lang['menu_close_issue'] = 'My issues(%d)';
323a6dcc2a9Sghi$lang['menu_comment_issue'] = 'Opened issues (%d)';
324a6dcc2a9Sghi
325a6dcc2a9Sghi$lang['do_you_want_remove'] = 'Do you really want to remove this row?';
326a6dcc2a9Sghi$lang['yes'] = 'Yes';
327a6dcc2a9Sghi$lang['no'] = 'No';
32805c9d3bcSghi
32905c9d3bcSghi$lang['all'] = 'everything';
33085f5e5e7Sghi$lang['year'] = 'Year';
3317f853d3aSghi$lang['in_year'] = 'in year';
33285f5e5e7Sghi$lang['filter'] = 'Filter';
3338ce39bb5Sghi
3348ce39bb5Sghi$lang['close_issues'] = 'My issues';
3358ce39bb5Sghi$lang['close_tasks'] = 'My tasks';
3368ce39bb5Sghi
3378ce39bb5Sghi$lang['proposals'] = 'Proposals';
338eb950a4cSghi
339eb950a4cSghi$lang['show_tasks_hidden'] = 'Show closed and rejected tasks';
340eb950a4cSghi$lang['add_task'] = 'Add new task';
341127ad254Sghi
342127ad254Sghi$lang['save_without_changing_date'] = 'Save without changing date';
34375280174Sghi
34475280174Sghi$lang['sort_by_open_date'] = 'Sort by open date';
3452e8f2263Sghi
346510f3b21Sghi$lang['casue_cant_remove'] = 'You cannot remove cause with related tasks.';
34727712358Sghi
34827712358Sghi$lang['add_cause'] = 'Add cause';
34927712358Sghi$lang['add_correction'] = 'Add correction';
35027712358Sghi
35127712358Sghi$lang['cause'] = 'cause';
35227712358Sghi$lang['pontential_cause'] = 'potential cause';
35327712358Sghi
35427712358Sghi$lang['cause_type'] = 'Cause type';
35527712358Sghi
356e8827d73SSzymon Olewniczak$lang['cause_real'] = 'real';
357e8827d73SSzymon Olewniczak$lang['cause_potential'] = 'potential';
3589a30fd19Sghi
35976473fecSghi$lang['evaluation'] = 'Ocena';
3609a30fd19Sghi
36176473fecSghi$lang['rr_report'] = 'RR Report';
3629a30fd19Sghi
36376473fecSghi$lang['rr_team'] = 'Risk evaluation team';
36476473fecSghi$lang['rr_desc'] = 'Risk description';
36576473fecSghi$lang['rr_eval'] = 'Risk evaluacion';
36676473fecSghi$lang['rr_suceval'] = 'Effectiveness evalutation';
3679fbfe943Sghi
36876473fecSghi$lang['correction_nav'] = 'Corrections';
36976473fecSghi$lang['closed_tasks'] = 'Closed tasks';
37076473fecSghi$lang['root_causes'] = 'Cause categories';
371ea5c5471Sghi
37276473fecSghi$lang['version'] = 'version';
37376473fecSghi
37476473fecSghi$lang['issues_juxtaposition'] = 'Juxtaposition of issues';
37576473fecSghi$lang['tasks_juxtaposition'] = 'Juxtaposition of tasks';
3766e94bebdSghi
3776e94bebdSghi$lang['issue_unclosed_tasks'] = 'You cannot close issues until some tasks are not closed.';
378a99642a4SSzymon Olewniczak$lang['issue_is_proposal'] = 'You cannot add tasks until the issue is proposal.';
379489061b8Sghi$lang['issue_no_tasks'] = 'You cannot close the issue until it has no tasks.';
380ac36b828Sghi$lang['cause_without_task'] = 'You cannot close the issue if you have some causes without tasks.';
381fc2a4337Sghi
382fc2a4337Sghi$lang['number_of_open'] = 'Number of open';
383fc2a4337Sghi$lang['number_of_close'] = 'Number of closed';
384d2894507SSzymon Olewniczak$lang['number_of_close_on_time'] = 'Number of closed on time';
385d2894507SSzymon Olewniczak$lang['number_of_close_off_time'] = 'Number of closed off time';
386fc2a4337Sghi$lang['diffirence'] = 'Diffirence';
387fc2a4337Sghi
388fc2a4337Sghi$lang['cost_of_open'] = 'Cost of open';
389fc2a4337Sghi
390fc2a4337Sghi$lang['average_of_close'] = 'Avarage close time';
391fc2a4337Sghi
392fc2a4337Sghi$lang['plan_date'] = 'Plan date';
393fc2a4337Sghi$lang['all_day_event'] = 'All day event';
394fc2a4337Sghi$lang['start_time'] = 'Start time';
395fc2a4337Sghi$lang['finish_time'] = 'Finish time';
396fc2a4337Sghi
397fc2a4337Sghi$lang['vald_valid_date_required'] = 'Valid date required.';
398fc2a4337Sghi$lang['vald_valid_start_hour_required'] = 'Valid start time required.';
399fc2a4337Sghi$lang['vald_valid_finish_hour_required'] = 'Valid finish time required.';
400fc2a4337Sghi
401168ecf58Sghi$lang['download_in_icalendar'] = 'iCalendar';
402168ecf58Sghi
403168ecf58Sghi$lang['task_types'] = 'Task types';
404168ecf58Sghi$lang['task_type'] = 'Typ zadań';
405168ecf58Sghi
406168ecf58Sghi$lang['programme'] = 'Programme';
407168ecf58Sghi
408168ecf58Sghi$lang['tasks_no_type'] = '--- without type ---';
409168ecf58Sghi
410168ecf58Sghi$lang ['plan'] = "Plan";
411168ecf58Sghi
412168ecf58Sghi$lang ['task_plan'] = "Plan";
413168ecf58Sghi$lang ['task_realization'] = "Realization";
414168ecf58Sghi
415168ecf58Sghi$lang ['month'] = "Month";
416168ecf58Sghi
417168ecf58Sghi$lang ['report_date'] = "Report date";
418168ecf58Sghi$lang ['close_date'] = "Close date";
419168ecf58Sghi
420168ecf58Sghi$lang['jan'] = 'January';
421168ecf58Sghi$lang['feb'] = 'February';
422168ecf58Sghi$lang['mar'] = 'March';
423168ecf58Sghi$lang['apr'] = 'April';
424168ecf58Sghi$lang['may'] = 'May';
425168ecf58Sghi$lang['june'] = 'June';
426168ecf58Sghi$lang['july'] = 'July';
427168ecf58Sghi$lang['aug'] = 'August';
428168ecf58Sghi$lang['sept'] = 'September';
429168ecf58Sghi$lang['oct'] = 'October';
430168ecf58Sghi$lang['nov'] = 'November';
431168ecf58Sghi$lang['dec'] = 'December';
432168ecf58Sghi
433f2c81100SSzymon Olewniczak$lang['mon1_a'] = 'January';
434f2c81100SSzymon Olewniczak$lang['mon2_a'] = 'February';
435f2c81100SSzymon Olewniczak$lang['mon3_a'] = 'March';
436f2c81100SSzymon Olewniczak$lang['mon4_a'] = 'April';
437f2c81100SSzymon Olewniczak$lang['mon5_a'] = 'May';
438f2c81100SSzymon Olewniczak$lang['mon6_a'] = 'June';
439f2c81100SSzymon Olewniczak$lang['mon7_a'] = 'July';
440f2c81100SSzymon Olewniczak$lang['mon8_a'] = 'August';
441f2c81100SSzymon Olewniczak$lang['mon9_a'] = 'September';
442f2c81100SSzymon Olewniczak$lang['mon10_a'] = 'October';
443f2c81100SSzymon Olewniczak$lang['mon11_a'] = 'November';
444f2c81100SSzymon Olewniczak$lang['mon12_a'] = 'December';
445f2c81100SSzymon Olewniczak
446f2c81100SSzymon Olewniczak$lang['at_hour'] = 'at';
447f2c81100SSzymon Olewniczak
448168ecf58Sghi$lang['hours_no'] = 'Number of hours';
449168ecf58Sghi
450168ecf58Sghi$lang['show_desc'] = 'Show descriptions';
451168ecf58Sghi$lang['show_desc_and_eval'] = 'Show descrpitions and evaluations';
452168ecf58Sghi
453168ecf58Sghi$lang['hide_desc'] = 'Hide descripitons';
454168ecf58Sghi$lang['hide_desc_and_eval'] = 'Hide descripitons and evaluations';
455d6002863Sghi
456d6002863Sghi$lang['users'] = 'users';
457d6002863Sghi$lang['groups'] = 'groups';
4582c7864e8Sghi
4592c7864e8Sghi$lang['duplicate'] = 'Duplicate';
4605c5b6101SSzymon Olewniczak
4615c5b6101SSzymon Olewniczak$lang['show_issue'] = 'Show issue';
462c54650bdSSzymon Olewniczak
463c54650bdSSzymon Olewniczak$lang['select'] = 'select';
4649f68d181SSzymon Olewniczak
4659f68d181SSzymon Olewniczak$lang['not_relevant'] = 'not relevant';
4665c4f5b95SSzymon Olewniczak
4675c4f5b95SSzymon Olewniczak$lang['validate_is_null'] = 'cannot be empty.';
4685c4f5b95SSzymon Olewniczak$lang['validate_validate_iso_date'] = 'bad date format.';
469157c9989SSzymon Olewniczak$lang['validate_must_be_0'] = 'must be 0.';
470157c9989SSzymon Olewniczak$lang['refs'] = 'References';
47161645219SSzymon Olewniczak
47261645219SSzymon Olewniczak$lang['comment_last_activity'] = 'Last activity';
47361645219SSzymon Olewniczak$lang['comment_participants'] = 'Participants';
47461645219SSzymon Olewniczak
475085d47f1SSzymon Olewniczak$lang['issue_type_no_specified'] = 'type no specified';
4767c304d96SSzymon Olewniczak
4777c304d96SSzymon Olewniczak$lang['involvement'] = 'Involvement';
4787c304d96SSzymon Olewniczak$lang['commentator'] = 'Commentator';
4797c304d96SSzymon Olewniczak
4807c304d96SSzymon Olewniczak$lang['activity_report'] = 'Activity report';
4817c304d96SSzymon Olewniczak
4827c304d96SSzymon Olewniczak$lang['user'] = 'User';
483b2c9de2bSSzymon Olewniczak
484b2c9de2bSSzymon Olewniczak$lang['activity_in_issues'] = 'Activity in issues';
485b2c9de2bSSzymon Olewniczak
486b2c9de2bSSzymon Olewniczak$lang['activity_in_tasks'] = 'Activity in tasks';
487b2c9de2bSSzymon Olewniczak
488b2c9de2bSSzymon Olewniczak$lang['rejected_tasks'] = 'Rejected tasks';
489b2c9de2bSSzymon Olewniczak
49067bf4d0dSSzymon Olewniczak$lang['subscribe'] = 'Subscribe';
49167bf4d0dSSzymon Olewniczak
492a99642a4SSzymon Olewniczak$lang['subscribent'] = 'Subscribent';
493a99642a4SSzymon Olewniczak
49467bf4d0dSSzymon Olewniczak$lang['unsubscribe'] = 'Unsubscribe';
49567bf4d0dSSzymon Olewniczak
49667bf4d0dSSzymon Olewniczak$lang['subscribed_info'] = "You're receiving notifications about changes in this problem.";
49767bf4d0dSSzymon Olewniczak
49867bf4d0dSSzymon Olewniczak$lang['not_subscribed_info'] = "You're not receiving notifications about changes in this problem.";
49967bf4d0dSSzymon Olewniczak
500e8827d73SSzymon Olewniczak$lang['task_subscribed_info'] = "You're receiving notifications about changes in this task.";
501e8827d73SSzymon Olewniczak
502e8827d73SSzymon Olewniczak$lang['task_not_subscribed_info'] = "You're not receiving notifications about changes in this task.";
503e8827d73SSzymon Olewniczak
50467bf4d0dSSzymon Olewniczak$lang['show_comments'] = 'Show comments';
50567bf4d0dSSzymon Olewniczak$lang['hide_comments'] = 'Hide comments';
506a99642a4SSzymon Olewniczak
507a99642a4SSzymon Olewniczak$lang['correct'] = 'Correct';
508a99642a4SSzymon Olewniczak
509a99642a4SSzymon Olewniczak$lang['from_hour'] = 'from';
510a99642a4SSzymon Olewniczak$lang['to_hour'] = 'to';
511aa89e6f8SSzymon Olewniczak
512aa89e6f8SSzymon Olewniczak$lang['next_open'] = 'Next open';
513aa89e6f8SSzymon Olewniczak$lang['prev_open'] = 'Previous open';
514aa89e6f8SSzymon Olewniczak
515aa89e6f8SSzymon Olewniczak$lang['js']['remove_confirm'] = 'Do you realy want to delete this item?';
516f2c81100SSzymon Olewniczak
517f2c81100SSzymon Olewniczak$lang['unsubscribed_com'] = 'You’ve been unsubscribed from this problem.';
518d29be7a0SSzymon Olewniczak
519d29be7a0SSzymon Olewniczak$lang['issue_added'] = 'Issue added';
520d29be7a0SSzymon Olewniczak
521d29be7a0SSzymon Olewniczak$lang['timeline_cause_added'] = 'Cause added';
522d29be7a0SSzymon Olewniczak$lang['timeline_comment_added'] = 'Comment added';
523d29be7a0SSzymon Olewniczak
524d29be7a0SSzymon Olewniczak$lang['issue_invite_header'] = 'Invite user';
525d29be7a0SSzymon Olewniczak$lang['issue_invite_button'] = 'Invite';
52644189046SSzymon Olewniczak
52744189046SSzymon Olewniczak$lang['mail_mail_notify_invite_action'] = 'invited you to take part in the discussion';
52844189046SSzymon Olewniczak$lang['mail_mail_notify_invite_subject'] = 'Problem invitation';
52944189046SSzymon Olewniczak
53044189046SSzymon Olewniczak$lang['mail_mail_inform_coordinator_action'] = 'has assigned you as coordinator';
53144189046SSzymon Olewniczak$lang['mail_mail_inform_coordinator_subject'] = 'Assignment to the problem';
53244189046SSzymon Olewniczak
53344189046SSzymon Olewniczak$lang['mail_mail_notify_change_state_action'] = 'has changed state';
53444189046SSzymon Olewniczak$lang['mail_mail_notify_change_state_subject'] = 'State change in the problem';
53544189046SSzymon Olewniczak
53644189046SSzymon Olewniczak$lang['js']['combobox_show_all_items'] = 'Show All Items';
53744189046SSzymon Olewniczak$lang['js']['combobox_did_not_match'] = "didn't match any item";
53844189046SSzymon Olewniczak
53960c2063dSSzymon Olewniczak$lang['invitation_has_been_send'] = 'Invitation has been sent to';
54060c2063dSSzymon Olewniczak
541ef159648SSzymon Olewniczak$lang['no_evaluation'] = 'No evaluation';
542c45b82bdSSzymon Olewniczak
543c45b82bdSSzymon Olewniczak$lang['edit_metadata'] = 'Edit metadata';
544c45b82bdSSzymon Olewniczak
545c45b82bdSSzymon Olewniczak$lang['metadata_edit_header'] = 'Edit metadata';
54604f149d4SSzymon Olewniczak
54704f149d4SSzymon Olewniczak$lang['unsubscribed_task_com'] = 'You\'ve been unsubscribed from this task.';
5488a638198SSzymon Olewniczak
5498a638198SSzymon Olewniczak$lang['task_type_correction'] = 'Correction';
5508a638198SSzymon Olewniczak$lang['task_type_corrective'] = 'Corrective';
5518a638198SSzymon Olewniczak$lang['task_type_preventive'] = 'Preventive';
5528a638198SSzymon Olewniczak$lang['task_type_program'] = 'Program';
553e8827d73SSzymon Olewniczak
554e8827d73SSzymon Olewniczak$lang['nav my_activities'] = 'My activities';
555e8827d73SSzymon Olewniczak$lang['nav projects'] = 'Projects';
556e8827d73SSzymon Olewniczak
557e8827d73SSzymon Olewniczak$lang['user_did_task'] = '%s did task %s';
558e8827d73SSzymon Olewniczak
559e8827d73SSzymon Olewniczak$lang['user_closed_issue'] = '%s closed issue %s';
560e8827d73SSzymon Olewniczak$lang['user_rejected_issue'] = '%s rejected issue %s';