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.
 
  11 // | There are only two ways to violate the license:
 
  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).
 
  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).
 
  21 // | This license applies to this document only, not any other software
 
  22 // | that it may be combined with.
 
  24 // +----------------------------------------------------------------------+
 
  26 // | https://www.anuko.com/time_tracker/credits.htm
 
  27 // +----------------------------------------------------------------------+
 
  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.
 
  32 $i18n_language = 'English';
 
  33 $i18n_months = array('January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December');
 
  34 $i18n_weekdays = array('Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday');
 
  35 $i18n_weekdays_short = array('Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa');
 
  37 $i18n_holidays = array('01/01', '01/16', '02/20', '05/28', '07/04', '09/03', '10/10', '11/11', '11/24', '12/25');
 
  39 $i18n_key_words = array(
 
  41 // Menus - short selection strings that are displayed on the top of application web pages.
 
  42 // Example: https://timetracker.anuko.com (black menu on top).
 
  43 'menu.login' => 'Login',
 
  44 'menu.logout' => 'Logout',
 
  45 'menu.forum' => 'Forum',
 
  46 'menu.help' => 'Help',
 
  47 'menu.create_team' => 'Create Team',
 
  48 'menu.profile' => 'Profile',
 
  49 'menu.time' => 'Time',
 
  50 'menu.expenses' => 'Expenses',
 
  51 'menu.reports' => 'Reports',
 
  52 'menu.charts' => 'Charts',
 
  53 'menu.projects' => 'Projects',
 
  54 'menu.tasks' => 'Tasks',
 
  55 'menu.users' => 'Users',
 
  56 'menu.teams' => 'Teams',
 
  57 'menu.export' => 'Export',
 
  58 'menu.clients' => 'Clients',
 
  59 'menu.options' => 'Options',
 
  61 // Footer - strings on the bottom of most pages.
 
  62 'footer.contribute_msg' => 'You can contribute to Time Tracker in different ways.',
 
  63 'footer.credits' => 'Credits',
 
  64 'footer.license' => 'License',
 
  65 'footer.improve' => 'Contribute', // Translators: this could mean "Improve", if it makes better sense in your language.
 
  66                                   // This is a link to a webpage that describes how to contribute to the project.
 
  69 'error.access_denied' => 'Access denied.',
 
  70 'error.sys' => 'System error.',
 
  71 'error.db' => 'Database error.',
 
  72 'error.field' => 'Incorrect "{0}" data.',
 
  73 'error.empty' => 'Field "{0}" is empty.',
 
  74 'error.not_equal' => 'Field "{0}" is not equal to field "{1}".',
 
  75 'error.interval' => 'Field "{0}" must be greater than "{1}".',
 
  76 'error.project' => 'Select project.',
 
  77 'error.task' => 'Select task.',
 
  78 'error.client' => 'Select client.',
 
  79 'error.report' => 'Select report.',
 
  80 'error.auth' => 'Incorrect login or password.',
 
  81 'error.user_exists' => 'User with this login already exists.',
 
  82 'error.project_exists' => 'Project with this name already exists.',
 
  83 'error.task_exists' => 'Task with this name already exists.',
 
  84 'error.client_exists' => 'Client with this name already exists.',
 
  85 'error.invoice_exists' => 'Invoice with this number already exists.',
 
  86 'error.no_invoiceable_items' => 'There are no invoiceable items.',
 
  87 'error.no_login' => 'No user with this login.',
 
  88 'error.no_teams' => 'Your database is empty. Login as admin and create a new team.',
 
  89 'error.upload' => 'File upload error.',
 
  90 'error.range_locked' => 'Date range is locked.',
 
  91 'error.mail_send' => 'Error sending mail.',
 
  92 'error.no_email' => 'No email associated with this login.',
 
  93 'error.uncompleted_exists' => 'Uncompleted entry already exists. Close or delete it.',
 
  94 'error.goto_uncompleted' => 'Go to uncompleted entry.',
 
  95 'error.overlap' => 'Time interval overlaps with existing records.',
 
  96 'error.future_date' => 'Date is in future.',
 
  98 // Labels for buttons.
 
  99 'button.login' => 'Login',
 
 100 'button.now' => 'Now',
 
 101 'button.save' => 'Save',
 
 102 'button.copy' => 'Copy',
 
 103 'button.cancel' => 'Cancel',
 
 104 'button.submit' => 'Submit',
 
 105 'button.add_user' => 'Add user',
 
 106 'button.add_project' => 'Add project',
 
 107 'button.add_task' => 'Add task',
 
 108 'button.add_client' => 'Add client',
 
 109 'button.add_invoice' => 'Add invoice',
 
 110 'button.add_option' => 'Add option',
 
 111 'button.add' => 'Add',
 
 112 'button.generate' => 'Generate',
 
 113 'button.reset_password' => 'Reset password',
 
 114 'button.send' => 'Send',
 
 115 'button.send_by_email' => 'Send by e-mail',
 
 116 'button.create_team' => 'Create team',
 
 117 'button.export' => 'Export team',
 
 118 'button.import' => 'Import team',
 
 119 'button.close' => 'Close',
 
 120 'button.stop' => 'Stop',
 
 122 // Labels for controls on forms. Labels in this section are used on multiple forms.
 
 123 'label.team_name' => 'Team name',
 
 124 'label.address' => 'Address',
 
 125 'label.currency' => 'Currency',
 
 126 'label.manager_name' => 'Manager name',
 
 127 'label.manager_login' => 'Manager login',
 
 128 'label.person_name' => 'Name',
 
 129 'label.thing_name' => 'Name',
 
 130 'label.login' => 'Login',
 
 131 'label.password' => 'Password',
 
 132 'label.confirm_password' => 'Confirm password',
 
 133 'label.email' => 'Email',
 
 135 'label.bcc' => 'Bcc',
 
 136 'label.subject' => 'Subject',
 
 137 'label.date' => 'Date',
 
 138 'label.start_date' => 'Start date',
 
 139 'label.end_date' => 'End date',
 
 140 'label.user' => 'User',
 
 141 'label.users' => 'Users',
 
 142 'label.client' => 'Client',
 
 143 'label.clients' => 'Clients',
 
 144 'label.option' => 'Option',
 
 145 'label.invoice' => 'Invoice',
 
 146 'label.project' => 'Project',
 
 147 'label.projects' => 'Projects',
 
 148 'label.task' => 'Task',
 
 149 'label.tasks' => 'Tasks',
 
 150 'label.description' => 'Description',
 
 151 'label.start' => 'Start',
 
 152 'label.finish' => 'Finish',
 
 153 'label.duration' => 'Duration',
 
 154 'label.note' => 'Note',
 
 155 'label.notes' => 'Notes',
 
 156 'label.item' => 'Item',
 
 157 'label.cost' => 'Cost',
 
 158 'label.day_total' => 'Day total',
 
 159 'label.week_total' => 'Week total',
 
 160 'label.month_total' => 'Month total',
 
 161 'label.today' => 'Today',
 
 162 'label.total_hours' => 'Total hours',
 
 163 'label.total_cost' => 'Total cost',
 
 164 'label.view' => 'View',
 
 165 'label.edit' => 'Edit',
 
 166 'label.delete' => 'Delete',
 
 167 'label.configure' => 'Configure',
 
 168 'label.select_all' => 'Select all',
 
 169 'label.select_none' => 'Deselect all',
 
 170 'label.day_view' => 'Day view',
 
 171 'label.week_view' => 'Week view',
 
 173 'label.language' => 'Language',
 
 174 'label.decimal_mark' => 'Decimal mark',
 
 175 'label.date_format' => 'Date format',
 
 176 'label.time_format' => 'Time format',
 
 177 'label.week_start' => 'First day of week',
 
 178 'label.comment' => 'Comment',
 
 179 'label.status' => 'Status',
 
 180 'label.tax' => 'Tax',
 
 181 'label.subtotal' => 'Subtotal',
 
 182 'label.total' => 'Total',
 
 183 'label.client_name' => 'Client name',
 
 184 'label.client_address' => 'Client address',
 
 186 'label.error' => 'Error',
 
 187 'label.ldap_hint' => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
 
 188 'label.required_fields' => '* - required fields',
 
 189 'label.on_behalf' => 'on behalf of',
 
 190 'label.role_manager' => '(manager)',
 
 191 'label.role_comanager' => '(co-manager)',
 
 192 'label.role_admin' => '(administrator)',
 
 193 'label.page' => 'Page',
 
 194 'label.condition' => 'Condition',
 
 195 // Labels for plugins (extensions to Time Tracker that provide additional features).
 
 196 'label.custom_fields' => 'Custom fields',
 
 197 'label.monthly_quotas' => 'Monthly quotas',
 
 198 'label.type' => 'Type',
 
 199 'label.type_dropdown' => 'dropdown',
 
 200 'label.type_text' => 'text',
 
 201 'label.required' => 'Required',
 
 202 'label.fav_report' => 'Favorite report',
 
 203 'label.cron_schedule' => 'Cron schedule',
 
 204 'label.what_is_it' => 'What is it?',
 
 205 'label.expense' => 'Expense',
 
 206 'label.quantity' => 'Quantity',
 
 207 'label.paid_status' => 'Paid status',
 
 208 'label.paid' => 'Paid',
 
 211 'title.login' => 'Login',
 
 212 'title.teams' => 'Teams',
 
 213 'title.create_team' => 'Creating Team',
 
 214 'title.edit_team' => 'Editing Team',
 
 215 'title.delete_team' => 'Deleting Team',
 
 216 'title.reset_password' => 'Resetting Password',
 
 217 'title.change_password' => 'Changing Password',
 
 218 'title.time' => 'Time',
 
 219 'title.edit_time_record' => 'Editing Time Record',
 
 220 'title.delete_time_record' => 'Deleting Time Record',
 
 221 'title.expenses' => 'Expenses',
 
 222 'title.edit_expense' => 'Editing Expense Item',
 
 223 'title.delete_expense' => 'Deleting Expense Item',
 
 224 'title.predefined_expenses' => 'Predefined Expenses',
 
 225 'title.add_predefined_expense' => 'Adding Predefined Expense',
 
 226 'title.edit_predefined_expense' => 'Editing Predefined Expense',
 
 227 'title.delete_predefined_expense' => 'Deleting Predefined Expense',
 
 228 'title.reports' => 'Reports',
 
 229 'title.report' => 'Report',
 
 230 'title.send_report' => 'Sending Report',
 
 231 'title.invoice' => 'Invoice',
 
 232 'title.send_invoice' => 'Sending Invoice',
 
 233 'title.charts' => 'Charts',
 
 234 'title.projects' => 'Projects',
 
 235 'title.add_project' => 'Adding Project',
 
 236 'title.edit_project' => 'Editing Project',
 
 237 'title.delete_project' => 'Deleting Project',
 
 238 'title.tasks' => 'Tasks',
 
 239 'title.add_task' => 'Adding Task',
 
 240 'title.edit_task' => 'Editing Task',
 
 241 'title.delete_task' => 'Deleting Task',
 
 242 'title.users' => 'Users',
 
 243 'title.add_user' => 'Adding User',
 
 244 'title.edit_user' => 'Editing User',
 
 245 'title.delete_user' => 'Deleting User',
 
 246 'title.clients' => 'Clients',
 
 247 'title.add_client' => 'Adding Client',
 
 248 'title.edit_client' => 'Editing Client',
 
 249 'title.delete_client' => 'Deleting Client',
 
 250 'title.invoices' => 'Invoices',
 
 251 'title.add_invoice' => 'Adding Invoice',
 
 252 'title.view_invoice' => 'Viewing Invoice',
 
 253 'title.delete_invoice' => 'Deleting Invoice',
 
 254 'title.notifications' => 'Notifications',
 
 255 'title.add_notification' => 'Adding Notification',
 
 256 'title.edit_notification' => 'Editing Notification',
 
 257 'title.delete_notification' => 'Deleting Notification',
 
 258 'title.monthly_quotas' => 'Monthly Quotas',
 
 259 'title.export' => 'Exporting Team Data',
 
 260 'title.import' => 'Importing Team Data',
 
 261 'title.options' => 'Options',
 
 262 'title.profile' => 'Profile',
 
 263 'title.cf_custom_fields' => 'Custom Fields',
 
 264 'title.cf_add_custom_field' => 'Adding Custom Field',
 
 265 'title.cf_edit_custom_field' => 'Editing Custom Field',
 
 266 'title.cf_delete_custom_field' => 'Deleting Custom Field',
 
 267 'title.cf_dropdown_options' => 'Dropdown Options',
 
 268 'title.cf_add_dropdown_option' => 'Adding Option',
 
 269 'title.cf_edit_dropdown_option' => 'Editing Option',
 
 270 'title.cf_delete_dropdown_option' => 'Deleting Option',
 
 271 // NOTE TO TRANSLATORS: Locking is a feature to lock records from modifications (ex: weekly on Mondays we lock all previous weeks).
 
 272 // It is also a name for the Locking plugin on the Team profile page.
 
 273 'title.locking' => 'Locking',
 
 275 // Section for common strings inside combo boxes on forms. Strings shared between forms shall be placed here.
 
 276 // Strings that are used in a single form must go to the specific form section.
 
 277 'dropdown.all' => '--- all ---',
 
 278 'dropdown.no' => '--- no ---',
 
 279 'dropdown.current_day' => 'today',
 
 280 'dropdown.previous_day' => 'yesterday',
 
 281 'dropdown.selected_day' => 'day',
 
 282 'dropdown.current_week' => 'this week',
 
 283 'dropdown.previous_week' => 'previous week',
 
 284 'dropdown.selected_week' => 'week',
 
 285 'dropdown.current_month' => 'this month',
 
 286 'dropdown.previous_month' => 'previous month',
 
 287 'dropdown.selected_month' => 'month',
 
 288 'dropdown.current_year' => 'this year',
 
 289 'dropdown.previous_year' => 'previous year',
 
 290 'dropdown.selected_year' => 'year',
 
 291 'dropdown.all_time' => 'all time',
 
 292 'dropdown.projects' => 'projects',
 
 293 'dropdown.tasks' => 'tasks',
 
 294 'dropdown.clients' => 'clients',
 
 295 'dropdown.select' => '--- select ---',
 
 296 'dropdown.select_invoice' => '--- select invoice ---',
 
 297 'dropdown.status_active' => 'active',
 
 298 'dropdown.status_inactive' => 'inactive',
 
 299 'dropdown.delete'=>'delete',
 
 300 'dropdown.do_not_delete'=>'do not delete',
 
 301 'dropdown.paid' => 'paid',
 
 302 'dropdown.not_paid' => 'not paid',
 
 304 // Below is a section for strings that are used on individual forms. When a string is used only on one form it should be placed here.
 
 305 // One exception is for closely related forms such as "Time" and "Editing Time Record" with similar controls. In such cases
 
 306 // a string can be defined on the main form and used on related forms. The reasoning for this is to make translation effort easier.
 
 307 // Strings that are used on multiple unrelated forms should be placed in shared sections such as label.<stringname>, etc.
 
 309 // Login form. See example at https://timetracker.anuko.com/login.php.
 
 310 'form.login.forgot_password' => 'Forgot password?',
 
 311 'form.login.about' =>'Anuko <a href="https://www.anuko.com/lp/tt_2.htm" target="_blank">Time Tracker</a> is a simple, easy to use, open source time tracking system.',
 
 313 // Resetting Password form. See example at https://timetracker.anuko.com/password_reset.php.
 
 314 'form.reset_password.message' => 'Password reset request sent by email.',
 
 315 'form.reset_password.email_subject' => 'Anuko Time Tracker password reset request',
 
 316 'form.reset_password.email_body' => "Dear User,\n\nSomeone, possibly you, requested your Anuko Time Tracker password reset. Please visit this link if you want to reset your password.\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",
 
 318 // Changing Password form. See example at https://timetracker.anuko.com/password_change.php?ref=1.
 
 319 'form.change_password.tip' => 'Type new password and click on Save.',
 
 321 // Time form. See example at https://timetracker.anuko.com/time.php.
 
 322 'form.time.duration_format' => '(hh:mm or 0.0h)',
 
 323 'form.time.billable' => 'Billable',
 
 324 'form.time.uncompleted' => 'Uncompleted',
 
 325 'form.time.remaining_quota' => 'Remaining quota',
 
 326 'form.time.over_quota' => 'Over quota',
 
 328 // Editing Time Record form. See example at https://timetracker.anuko.com/time_edit.php (get there by editing an uncompleted time record).
 
 329 'form.time_edit.uncompleted' => 'This record was saved with only start time. It is not an error.',
 
 331 // Week view form. See example at https://timetracker.anuko.com/week.php.
 
 332 'form.week.new_entry' => 'New entry',
 
 334 // Reports form. See example at https://timetracker.anuko.com/reports.php
 
 335 'form.reports.save_as_favorite' => 'Save as favorite',
 
 336 'form.reports.confirm_delete' => 'Are you sure you want to delete this favorite report?',
 
 337 'form.reports.include_records' => 'Include records',
 
 338 'form.reports.include_billable' => 'billable',
 
 339 'form.reports.include_not_billable' => 'not billable',
 
 340 'form.reports.include_invoiced' => 'invoiced',
 
 341 'form.reports.include_not_invoiced' => 'not invoiced',
 
 342 'form.reports.select_period' => 'Select time period',
 
 343 'form.reports.set_period' => 'or set dates',
 
 344 'form.reports.show_fields' => 'Show fields',
 
 345 'form.reports.group_by' => 'Group by',
 
 346 'form.reports.group_by_no' => '--- no grouping ---',
 
 347 'form.reports.group_by_date' => 'date',
 
 348 'form.reports.group_by_user' => 'user',
 
 349 'form.reports.group_by_client' => 'client',
 
 350 'form.reports.group_by_project' => 'project',
 
 351 'form.reports.group_by_task' => 'task',
 
 352 'form.reports.totals_only' => 'Totals only',
 
 354 // Report form. See example at https://timetracker.anuko.com/report.php
 
 355 // (after generating a report at https://timetracker.anuko.com/reports.php).
 
 356 'form.report.export' => 'Export',
 
 358 // Invoice form. See example at https://timetracker.anuko.com/invoice.php
 
 359 // (you can get to this form after generating a report).
 
 360 'form.invoice.number' => 'Invoice number',
 
 361 'form.invoice.person' => 'Person',
 
 362 'form.invoice.invoice_to_delete' => 'Invoice to delete',
 
 363 'form.invoice.invoice_entries' => 'Invoice entries',
 
 364 'form.invoice.confirm_deleting_entries' => 'Please confirm deleting invoice entries from Time Tracker.',
 
 366 // Charts form. See example at https://timetracker.anuko.com/charts.php
 
 367 'form.charts.interval' => 'Interval',
 
 368 'form.charts.chart' => 'Chart',
 
 370 // Projects form. See example at https://timetracker.anuko.com/projects.php
 
 371 'form.projects.active_projects' => 'Active Projects',
 
 372 'form.projects.inactive_projects' => 'Inactive Projects',
 
 374 // Tasks form. See example at https://timetracker.anuko.com/tasks.php
 
 375 'form.tasks.active_tasks' => 'Active Tasks',
 
 376 'form.tasks.inactive_tasks' => 'Inactive Tasks',
 
 378 // Users form. See example at https://timetracker.anuko.com/users.php
 
 379 'form.users.active_users' => 'Active Users',
 
 380 'form.users.inactive_users' => 'Inactive Users',
 
 381 'form.users.uncompleted_entry' => 'User has an uncompleted time entry',
 
 382 'form.users.role' => 'Role',
 
 383 'form.users.manager' => 'Manager',
 
 384 'form.users.comanager' => 'Co-manager',
 
 385 'form.users.rate' => 'Rate',
 
 386 'form.users.default_rate' => 'Default hourly rate',
 
 388 // Client delete form. See example at https://timetracker.anuko.com/client_delete.php
 
 389 'form.client.client_to_delete' => 'Client to delete',
 
 390 'form.client.client_entries' => 'Client entries',
 
 392 // Clients form. See example at https://timetracker.anuko.com/clients.php
 
 393 'form.clients.active_clients' => 'Active Clients',
 
 394 'form.clients.inactive_clients' => 'Inactive Clients',
 
 396 // Strings for Exporting Team Data form. See example at https://timetracker.anuko.com/export.php
 
 397 'form.export.hint' => 'You can export all team data into an xml file. It could be useful if you are migrating data to your own server.',
 
 398 'form.export.compression' => 'Compression',
 
 399 'form.export.compression_none' => 'none',
 
 400 'form.export.compression_bzip' => 'bzip',
 
 402 // Strings for Importing Team Data form. See example at https://timetracker.anuko.com/imort.php (login as admin first).
 
 403 'form.import.hint' => 'Import team data from an xml file.',
 
 404 'form.import.file' => 'Select file',
 
 405 'form.import.success' => 'Import completed successfully.',
 
 407 // Teams form. See example at https://timetracker.anuko.com/admin_teams.php (login as admin first).
 
 408 'form.teams.hint' =>  '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).',
 
 410 // Profile form. See example at https://timetracker.anuko.com/profile_edit.php.
 
 411 'form.profile.12_hours' => '12 hours',
 
 412 'form.profile.24_hours' => '24 hours',
 
 413 'form.profile.tracking_mode' => 'Tracking mode',
 
 414 'form.profile.mode_time' => 'time',
 
 415 'form.profile.mode_projects' => 'projects',
 
 416 'form.profile.mode_projects_and_tasks' => 'projects and tasks',
 
 417 'form.profile.record_type' => 'Record type',
 
 418 'form.profile.uncompleted_indicators' => 'Uncompleted indicators',
 
 419 'form.profile.uncompleted_indicators_none' => 'do not show',
 
 420 'form.profile.uncompleted_indicators_show' => 'show',
 
 421 'form.profile.type_all' => 'all',
 
 422 'form.profile.type_start_finish' => 'start and finish',
 
 423 'form.profile.type_duration' => 'duration',
 
 424 'form.profile.plugins' => 'Plugins',
 
 426 // Mail form. See example at https://timetracker.anuko.com/report_send.php when emailing a report.
 
 427 'form.mail.from' => 'From',
 
 428 'form.mail.to' => 'To',
 
 429 'form.mail.report_subject' => 'Time Tracker Report',
 
 430 'form.mail.footer' => '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.',
 
 431 'form.mail.report_sent' => 'Report sent.',
 
 432 'form.mail.invoice_sent' => 'Invoice sent.',
 
 434 // Quotas configuration form.
 
 435 'form.quota.year' => 'Year',
 
 436 'form.quota.month' => 'Month',
 
 437 'form.quota.quota' => 'Quota',
 
 438 'form.quota.workday_hours' => 'Hours in a work day',
 
 439 'form.quota.hint' => 'If values are empty, quotas are calculated automatically based on workday hours and holidays.',