Refactoring in localization files.
[timetracker.git] / WEB-INF / resources / sl.lang.php
1 <?php
2 // +----------------------------------------------------------------------+
3 // | Anuko Time Tracker
4 // +----------------------------------------------------------------------+
5 // | Copyright (c) Anuko International Ltd. (https://www.anuko.com)
6 // +----------------------------------------------------------------------+
7 // | LIBERAL FREEWARE LICENSE: This source code document may be used
8 // | by anyone for any purpose, and freely redistributed alone or in
9 // | combination with other software, provided that the license is obeyed.
10 // |
11 // | There are only two ways to violate the license:
12 // |
13 // | 1. To redistribute this code in source form, with the copyright
14 // |    notice or license removed or altered. (Distributing in compiled
15 // |    forms without embedded copyright notices is permitted).
16 // |
17 // | 2. To redistribute modified versions of this code in *any* form
18 // |    that bears insufficient indications that the modifications are
19 // |    not the work of the original author(s).
20 // |
21 // | This license applies to this document only, not any other software
22 // | that it may be combined with.
23 // |
24 // +----------------------------------------------------------------------+
25 // | Contributors:
26 // | https://www.anuko.com/time_tracker/credits.htm
27 // +----------------------------------------------------------------------+
28
29 // Note: escape apostrophes with THREE backslashes, like here:  choisir l\\\'option.
30 // Other characters (such as double-quotes in http links, etc.) do not have to be escaped.
31
32 // Note to translators: Please use proper capitalization rules for your language.
33
34 $i18n_language = 'Slovenščina';
35 $i18n_months = array('januar', 'februar', 'marec', 'april', 'maj', 'junij', 'julij', 'avgust', 'september', 'oktober', 'november', 'december');
36 $i18n_weekdays = array('nedelja', 'ponedeljek', 'torek', 'sreda', 'četrtek', 'petek', 'sobota');
37 $i18n_weekdays_short = array('ned', 'pon', 'tor', 'sre', 'čet', 'pet', 'sob');
38 // format mm/dd
39 $i18n_holidays = array('01/01', '01/02', '02/08', '04/12', '04/13', '04/27', '05/01', '05/02', '06/25', '10/31', '11/01', '12/25', '12/26');
40
41 $i18n_key_words = array(
42
43 // Menus.
44 'menu.login' => 'Prijava',
45 'menu.logout' => 'Odjava',
46 // TODO: translate the following.
47 // 'menu.forum' => 'Forum',
48 'menu.help' => 'Pomoč',
49 // Note to translators: menu.create_team needs a more accurate translation.
50 'menu.create_team' => 'Ustvari nov manager račun',
51 'menu.profile' => 'Profil',
52 'menu.time' => 'Moj čas', // TODO: Improve this, used to be "My time", now just "Time".
53 // TODO: translate the following.
54 // 'menu.expenses' => 'Expenses',
55 'menu.reports' => 'Poročila',
56 // TODO: translate the following.
57 // 'menu.charts' => 'Charts',
58 'menu.projects' => 'Projekti',
59 // TODO: translate the following.
60 // 'menu.tasks' => 'Tasks',
61 // 'menu.users' => 'Users',
62 'menu.teams' => 'Timi',
63 // TODO: translate the following.
64 // 'menu.export' => 'Export',
65 'menu.clients' => 'Stranke',
66 'menu.options' => 'Možnosti',
67
68 // Footer - strings on the bottom of most pages.
69 // TODO: translate the following.
70 // 'footer.contribute_msg' => 'You can contribute to Time Tracker in different ways.',
71 // 'footer.credits' => 'Credits',
72 // 'footer.license' => 'License',
73 // 'footer.improve' => 'Contribute', // Translators: this could mean "Improve", if it makes better sense in your language.
74                                      // This is a link to a webpage that describes how to contribute to the project.
75
76 // Error messages.
77 // TODO: translate the following.
78 // 'error.access_denied' => 'Access denied.',
79 // 'error.sys' => 'System error.',
80 // 'error.db' => 'Database error.',
81 // 'error.field' => 'Incorrect "{0}" data.',
82 // 'error.empty' => 'Field "{0}" is empty.',
83 // 'error.not_equal' => 'Field "{0}" is not equal to field "{1}".',
84 // 'error.interval' => 'Field "{0}" must be greater than "{1}".',
85 // 'error.project' => 'Select project.',
86 // 'error.task' => 'Select task.',
87 // 'error.client' => 'Select client.',
88 // 'error.report' => 'Select report.',
89 // 'error.auth' => 'Incorrect login or password.',
90 // 'error.user_exists' => 'User with this login already exists.',
91 // 'error.project_exists' => 'Project with this name already exists.',
92 // 'error.task_exists' => 'Task with this name already exists.',
93 // 'error.client_exists' => 'Client with this name already exists.',
94 // 'error.invoice_exists' => 'Invoice with this number already exists.',
95 // 'error.no_invoiceable_items' => 'There are no invoiceable items.',
96 // 'error.no_login' => 'No user with this login.',
97 // 'error.no_teams' => 'Your database is empty. Login as admin and create a new team.',
98 // 'error.upload' => 'File upload error.',
99 // 'error.range_locked' => 'Date range is locked.',
100 // 'error.mail_send' => 'Error sending mail.',
101 // 'error.no_email' => 'No email associated with this login.',
102 // 'error.uncompleted_exists' => 'Uncompleted entry already exists. Close or delete it.',
103 // 'error.goto_uncompleted' => 'Go to uncompleted entry.',
104 // 'error.overlap' => 'Time interval overlaps with existing records.',
105 // 'error.future_date' => 'Date is in future.',
106
107 // Labels for buttons.
108 'button.login' => 'prijava',
109 'button.now' => 'zdaj',
110 'button.save' => 'shrani',
111 'button.delete' => 'izbriši',
112 'button.cancel' => 'prekliči',
113 'button.submit' => 'potrdi',
114 'button.add_user' => 'dodaj uporabnika',
115 'button.add_project' => 'dodaj projekt',
116 'button.add_activity' => 'dodaj aktivnost',
117 'button.add_client' => 'dodaj stranko',
118 'button.add' => 'dodaj',
119 'button.generate' => 'ustvari',
120 // Note to translators: button.reset_password needs an improved translation.
121 'button.reset_password' => 'pojdi',
122 'button.send' => 'pošlji',
123 'button.send_by_email' => 'pošlji preko elektronske pošte',
124 'button.save_as_new' => 'shrani kot novo',
125 'button.create_team' => 'ustvari tim',
126 'button.export' => 'izvozi tim',
127 'button.import' => 'uvozi tim',
128 'button.apply' => 'uporabi',
129
130 // labels for controls on various forms
131 // TODO: translate label.team_name and the strings below.
132 // 'label.team_name' => 'team name',
133 // 'label.currency' => 'currency',
134 // 'label.manager_name' => 'manager name',
135 // 'label.manager_login' => 'manager login',
136 'label.password' => 'geslo',
137 // 'label.confirm_password' => 'confirm password',
138 'label.email' => 'Email',
139 'label.cc' => 'Cc',
140 // TODO: translate the following.
141 // 'label.bcc' => 'Bcc',
142 'label.subject' => 'Predmet',
143 'label.total' => 'total',
144 // TODO: translate the following.
145 // 'label.page' => 'Page',
146 // 'label.condition' => 'Condition',
147
148 // Form titles.
149 // TODO: the entire title section is missing here. See the English file.
150
151 "form.filter.project" => 'projekt',
152 "form.filter.filter" => 'favorite report',
153 "form.filter.filter_new" => 'save as favorite',
154 "form.filter.filter_confirm_delete" => 'are you sure you want to delete this favorite report?',
155
156 // login form attributes
157 "form.login.title" => 'prijava',
158 "form.login.login" => 'prijava',
159
160 // password reminder form attributes
161 "form.fpass.title" => 'razveljavi geslo',
162 "form.fpass.login" => 'prijava',
163 "form.fpass.send_pass_str" => 'zahteva za razveljavitev gesla je bila poslana',
164 "form.fpass.send_pass_subj" => 'Anuko Time Tracker zahteva za razveljavitev gesla',
165 // Note to translators: the ending of this tring below needs to be translated.
166 "form.fpass.send_pass_body" => "Spoštovani uporabnik,\n\nNekdo, najverjetneje vi, je zahteval razveljavitev vašega Anuko Time Tracker gesla. Prosimo obiščite to povezavo, če želite razveljaviti vaše geslo.\n\n%s\n\nAnuko Time Tracker is a simple, easy to use, open source time tracking system. Visit https://www.anuko.com for more information.\n\n",
167 "form.fpass.reset_comment" => "za razveljavitev gesla, prosimo vtipkajte geslo in kliknite gumb shrani",
168
169 // administrator form
170 "form.admin.title" => 'administrator',
171 "form.admin.duty_text" => 'create a new team by creating a new team manager account.<br>you can also import team data from an xml file from another Anuko Time Tracker server (no login collisions are allowed).',
172
173 "form.admin.change_pass" => 'change password of administrator account',
174 "form.admin.profile.title" => 'teams',
175 "form.admin.profile.noprofiles" => 'your database is empty. login as admin and create a new team.',
176 "form.admin.profile.comment" => 'delete team',
177 "form.admin.profile.th.id" => 'id',
178 "form.admin.profile.th.name" => 'name',
179 "form.admin.profile.th.edit" => 'edit',
180 "form.admin.profile.th.del" => 'delete',
181 "form.admin.profile.th.active" => 'active',
182 "form.admin.options" => 'options',
183 "form.admin.custom_date_format" => "date format",
184 "form.admin.custom_time_format" => "time format",
185 "form.admin.start_week" => "first day of week",
186
187 // my time form attributes
188 "form.mytime.title" => 'my time',
189 "form.mytime.edit_title" => 'editing time record',
190 "form.mytime.del_str" => 'deleting time record',
191 "form.mytime.time_form" => ' (hh:mm)',
192 "form.mytime.date" => 'date',
193 "form.mytime.project" => 'project',
194 "form.mytime.activity" => 'activity',
195 "form.mytime.start" => 'start',
196 "form.mytime.finish" => 'finish',
197 "form.mytime.duration" => 'duration',
198 "form.mytime.note" => 'note',
199 "form.mytime.behalf" => 'daily work for',
200 "form.mytime.daily" => 'daily work',
201 "form.mytime.total" => 'hours total: ',
202 "form.mytime.th.project" => 'project',
203 "form.mytime.th.activity" => 'activity',
204 "form.mytime.th.start" => 'start',
205 "form.mytime.th.finish" => 'finish',
206 "form.mytime.th.duration" => 'duration',
207 "form.mytime.th.note" => 'note',
208 "form.mytime.th.edit" => 'edit',
209 "form.mytime.th.delete" => 'delete',
210 "form.mytime.del_yes" => 'time record deleted successfully',
211 "form.mytime.no_finished_rec" => 'this record was saved with only start time. it is not an error. logout if you need to.',
212 "form.mytime.billable" => 'billable',
213 "form.mytime.warn_tozero_rec" => 'this time record must be deleted because this time period is locked',
214 "form.mytime.uncompleted" => 'uncompleted',
215
216 // profile form attributes
217 "form.profile.create_title" => 'creating team',
218 "form.profile.edit_title" => 'editing profile',
219 "form.profile.name" => 'name',
220 "form.profile.login" => 'login',
221
222 "form.profile.showchart" => 'show pie charts',
223 "form.profile.lang" => 'language',
224 "form.profile.custom_date_format" => "date format",
225 "form.profile.custom_time_format" => "time format",
226 "form.profile.default_format" => "(default)",
227 "form.profile.start_week" => "first day of week",
228
229 // people form attributes
230 "form.people.ppl_str" => 'people',
231 "form.people.createu_str" => 'creating new user',
232 "form.people.edit_str" => 'editing user',
233 "form.people.del_str" => 'deleting user',
234 "form.people.th.name" => 'name',
235 "form.people.th.login" => 'login',
236 "form.people.th.role" => 'role',
237 "form.people.th.edit" => 'edit',
238 "form.people.th.del" => 'delete',
239 "form.people.th.status" => 'status',
240 "form.people.th.project" => 'project',
241 "form.people.th.rate" => 'rate',
242 "form.people.manager" => 'manager',
243 "form.people.comanager" => 'comanager',
244 "form.people.empl" => 'user',
245 "form.people.name" => 'name',
246 "form.people.login" => 'login',
247
248 "form.people.rate" => 'default hourly rate',
249 "form.people.comanager" => 'co-manager',
250 "form.people.projects" => 'projects',
251
252 // projects form attributes
253 "form.project.proj_title" => 'projekti',
254 "form.project.edit_str" => 'urejanje projektov',
255 "form.project.add_str" => 'dodajanje novega projekta',
256 "form.project.del_str" => 'brisanje projekta',
257 "form.project.th.name" => 'ime',
258 "form.project.th.edit" => 'uredi',
259 "form.project.th.del" => 'izbriši',
260 "form.project.name" => 'ime',
261
262 // activities form attributes
263 "form.activity.act_title" => 'aktivnosti',
264 "form.activity.add_title" => 'dodajanje novih aktivnosti',
265 "form.activity.edit_str" => 'urejanje aktivnosti',
266 "form.activity.del_str" => 'brisanje aktivnosti',
267 "form.activity.name" => 'ime',
268 "form.activity.project" => 'projekt',
269 "form.activity.th.name" => 'ime',
270 "form.activity.th.project" => 'projekt',
271 "form.activity.th.edit" => 'uredi',
272 "form.activity.th.del" => 'izbriši',
273
274 // report attributes
275 "form.report.title" => 'reports',
276 "form.report.from" => 'start date',
277 "form.report.to" => 'end date',
278 "form.report.groupby_user" => 'user',
279 "form.report.groupby_project" => 'project',
280 "form.report.groupby_activity" => 'activity',
281 "form.report.duration" => 'duration',
282 "form.report.start" => 'start',
283 "form.report.activity" => 'activity',
284 "form.report.show_idle" => 'show idle',
285 "form.report.finish" => 'finish',
286 "form.report.note" => 'note',
287 "form.report.project" => 'project',
288 "form.report.totals_only" => 'totals only',
289 "form.report.total" => 'hours total',
290 "form.report.th.empllist" => 'user',
291 "form.report.th.date" => 'date',
292 "form.report.th.project" => 'project',
293 "form.report.th.activity" => 'activity',
294 "form.report.th.start" => 'start',
295 "form.report.th.finish" => 'finish',
296 "form.report.th.duration" => 'duration',
297 "form.report.th.note" => 'note',
298
299 // mail form attributes
300 "form.mail.from" => 'od',
301 "form.mail.to" => 'za',
302 "form.mail.comment" => 'komentar',
303 "form.mail.above" => 'pošlji to poročilo preko elektronske pošte',
304 // Note to translators: this string needs to be translated.
305 // "form.mail.footer_str" => 'Anuko Time Tracker is a simple, easy to use, open source<br>time tracking system. Visit <a href="https://www.anuko.com">www.anuko.com</a> for more information.',
306 "form.mail.sending_str" => '<b>sporočilo poslano</b>',
307
308 // invoice attributes
309 "form.invoice.title" => 'invoice',
310 "form.invoice.caption" => 'invoice',
311 "form.invoice.above" => 'additional information for invoice',
312 "form.invoice.select_cust" => 'select client',
313 "form.invoice.fillform" => 'fill the fields',
314 "form.invoice.date" => 'date',
315 "form.invoice.number" => 'invoice number',
316 "form.invoice.tax" => 'tax',
317 "form.invoice.comment" => 'comment ',
318 "form.invoice.th.username" => 'person',
319 "form.invoice.th.time" => 'hours',
320 "form.invoice.th.rate" => 'rate',
321 "form.invoice.th.summ" => 'amount',
322 "form.invoice.subtotal" => 'subtotal',
323 "form.invoice.customer" => 'client',
324 "form.invoice.mailinv_above" => 'send this invoice by e-mail',
325 "form.invoice.sending_str" => '<b>invoice sent</b>',
326
327 "form.migration.zip" => 'compression',
328 "form.migration.file" => 'select file',
329 "form.migration.import.title" => 'import data',
330 "form.migration.import.success" => 'import completed successfully',
331 "form.migration.import.text" => 'import team data from an xml file',
332 "form.migration.export.title" => 'export data',
333 "form.migration.export.success" => 'export completed successfully',
334 "form.migration.export.text" => 'you can export all team data into an xml file. this could be useful if you are migrating data to your own server.',
335 "form.migration.compression.none" => 'none',
336 "form.migration.compression.gzip" => 'gzip',
337 "form.migration.compression.bzip" => 'bzip',
338
339 "form.client.title" => 'clients',
340 "form.client.add_title" => 'add client',
341 "form.client.edit_title" => 'edit client',
342 "form.client.del_title" => 'delete client',
343 "form.client.th.name" => 'name',
344 "form.client.th.edit" => 'edit',
345 "form.client.th.del" => 'delete',
346 "form.client.name" => 'name',
347 "form.client.tax" => 'tax',
348 "form.client.comment" => 'comment ',
349
350 // miscellaneous strings
351 "forward.forgot_password" => 'forgot password?',
352 "forward.edit" => 'edit',
353 "forward.delete" => 'delete',
354 "forward.tocsvfile" => 'export data to .csv file',
355 "forward.toxmlfile" => 'export data to .xml file',
356 "forward.geninvoice" => 'generate invoice',
357 "forward.change" => 'configure clients',
358
359 // strings inside contols on forms
360 "controls.select.project" => '--- select project ---',
361 "controls.select.activity" => '--- select activity ---',
362 "controls.select.client" => '--- select client ---',
363 "controls.project_bind" => '--- all ---',
364 "controls.all" => '--- all ---',
365 "controls.notbind" => '--- no ---',
366 "controls.per_tm" => 'this month',
367 "controls.per_lm" => 'last month',
368 "controls.per_tw" => 'this week',
369 "controls.per_lw" => 'last week',
370 "controls.per_td" => 'this day',
371 "controls.per_at" => 'all time',
372 "controls.per_ty" => 'this year',
373 "controls.sel_period" => '--- select time period ---',
374 "controls.sel_groupby" => '--- no grouping ---',
375 "controls.inc_billable" => 'billable',
376 "controls.inc_nbillable" => 'not billable',
377 "controls.default" => '--- default ---',
378
379 // labels
380 "label.chart.title1" => 'aktivnosti uporabnika',
381 "label.chart.title2" => 'projekti uporabnika',
382 "label.chart.period" => 'graf za obdobje',
383
384 "label.pinfo" => '%s, %s',
385 "label.pinfo2" => '%s',
386 "label.pbehalf_info" => '%s %s <b>on behalf of %s</b>',
387 "label.pminfo" => ' (manager)',
388 "label.pcminfo" => ' (co-manager)',
389 "label.painfo" => ' (administrator)',
390 "label.time_noentry" => 'no entry',
391 "label.today" => 'today',
392 "label.req_fields" => '* required fields',
393 "label.sel_project" => 'select project',
394 "label.sel_activity" => 'select activity',
395 "label.sel_tp" => 'select time period',
396 "label.set_tp" => 'or set dates',
397 "label.fields" => 'show fields',
398 "label.group_title" => 'group by',
399 "label.include_title" => 'include records',
400 "label.inv_str" => 'invoice',
401 "label.sel_all" => 'select all',
402 "label.sel_none" => 'deselect all',
403 "label.or" => 'or',
404 "label.disable" => 'disable',
405 "label.enable" => 'enable',
406 "label.filter" => 'filter',
407 "label.timeweek" => 'weekly total',
408 "label.hrs" => 'hrs',
409 "label.errors" => 'errors',
410 "label.ldap_hint" => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
411 "label.calendar_today" => 'today',
412 "label.calendar_close" => 'close',
413
414 // login hello text
415 "login.hello.text" => "Anuko Time Tracker is a simple, easy to use, open source time tracking system.",
416 );