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 // Note to translators: Use proper capitalization rules for your language.
 
  34 $i18n_language = 'Türkçe';
 
  35 $i18n_months = array('Ocak', 'Şubat', 'Mart', 'Nisan', 'Mayis', 'Haziran', 'Temmuz', 'Ağustos', 'Eylük', 'Ekim', 'Kasım', 'Aralık');
 
  36 $i18n_weekdays = array('Pazar', 'Pazartesi', 'Salı', 'Çarşamba', 'Perşembe', 'Cuma', 'Cumartesi');
 
  37 $i18n_weekdays_short = array('Pa', 'Pt', 'Sa', 'Ça', 'Pe', 'Cu', 'Ct');
 
  39 $i18n_holidays = array('01/01', '04/23', '05/01', '05/19', '08/30', '09/20', '09/21', '09/22', '10/29', '11/27', '11/28', '11/29', '11/30');
 
  41 $i18n_key_words = array(
 
  43 // Menus - short selection strings that are displayed on top of application web pages.
 
  44 // Example: https://timetracker.anuko.com (black menu on top).
 
  45 'menu.login' => 'Giriş',
 
  46 'menu.logout' => 'Çıkış',
 
  47 // TODO: translate the following.
 
  48 // 'menu.forum' => 'Forum',
 
  49 'menu.help' => 'Yardım',
 
  50 // TODO: translate the following.
 
  51 // 'menu.create_team' => 'Create Team',
 
  52 'menu.profile' => 'Profili',
 
  53 // TODO: translate the following.
 
  54 // 'menu.time' => 'Time',
 
  55 // 'menu.expenses' => 'Expenses',
 
  56 'menu.reports' => 'Raporlar',
 
  57 // TODO: translate the following.
 
  58 // 'menu.charts' => 'Charts',
 
  59 'menu.projects' => 'Projeler',
 
  60 // TODO: translate the following.
 
  61 // 'menu.tasks' => 'Tasks',
 
  62 // 'menu.users' => 'Users',
 
  63 'menu.teams' => 'Ekipler',
 
  64 // TODO: translate the following.
 
  65 // 'menu.export' => 'Export',
 
  66 'menu.clients' => 'Müşteriler',
 
  67 // TODO: translate the following.
 
  68 // 'menu.options' => 'Options',
 
  70 // Footer - strings on the bottom of most pages.
 
  71 // TODO: translate the following.
 
  72 // 'footer.contribute_msg' => 'You can contribute to Time Tracker in different ways.',
 
  73 // 'footer.credits' => 'Credits',
 
  74 // 'footer.license' => 'License',
 
  75 // 'footer.improve' => 'Contribute', // Translators: this could mean "Improve", if it makes better sense in your language.
 
  76                                      // This is a link to a webpage that describes how to contribute to the project.
 
  79 // TODO: translate the following.
 
  80 // 'error.access_denied' => 'Access denied.',
 
  81 // 'error.sys' => 'System error.',
 
  82 'error.db' => 'Veritabanı hatası.',
 
  83 'error.field' => 'Hatalı veri "{0}".',
 
  84 'error.empty' => 'Alan "{0}" boştur.',
 
  85 // TODO: confirm that error.not_equal is translated correctly.
 
  86 // Test by changing password with not equal password value fields.
 
  87 // English equivalent is:
 
  88 // 'error.not_equal' => 'Field "{0}" is not equal to field "{1}".',
 
  89 'error.not_equal' => 'Alan "{0}" "{1}" alanıyla aynı değildir.',
 
  90 // TODO: translate the following.
 
  91 // 'error.interval' => 'Field "{0}" must be greater than "{1}".',
 
  92 'error.project' => 'Proje seç.',
 
  93 // TODO: translate the following.
 
  94 // 'error.task' => 'Select task.',
 
  95 // 'error.client' => 'Select client.',
 
  96 // 'error.report' => 'Select report.',
 
  97 // 'error.record' => 'Select record.',
 
  98 'error.auth' => 'Hatalı kullanıcı adı veya parola.',
 
  99 // TODO: translate the following.
 
 100 // 'error.user_exists' => 'User with this login already exists.',
 
 101 'error.project_exists' => 'Bu isimde proje zaten vardır.',
 
 102 // TODO: translate the following.
 
 103 // 'error.task_exists' => 'Task with this name already exists.',
 
 104 // 'error.client_exists' => 'Client with this name already exists.',
 
 105 // 'error.invoice_exists' => 'Invoice with this number already exists.',
 
 106 // 'error.no_invoiceable_items' => 'There are no invoiceable items.',
 
 107 // 'error.no_login' => 'No user with this login.',
 
 108 // 'error.no_teams' => 'Your database is empty. Login as admin and create a new team.',
 
 109 'error.upload' => 'Dosya yükleme hatası.',
 
 110 // TODO: translate the following.
 
 111 // 'error.range_locked' => 'Date range is locked.',
 
 112 // 'error.mail_send' => 'Error sending mail.',
 
 113 // 'error.no_email' => 'No email associated with this login.',
 
 114 // 'error.uncompleted_exists' => 'Uncompleted entry already exists. Close or delete it.',
 
 115 // 'error.goto_uncompleted' => 'Go to uncompleted entry.',
 
 116 // 'error.overlap' => 'Time interval overlaps with existing records.',
 
 117 // 'error.future_date' => 'Date is in future.',
 
 119 // Labels for buttons.
 
 120 'button.login' => 'Giriş',
 
 121 'button.now' => 'Şimdi',
 
 122 'button.save' => 'Kaydet',
 
 123 // TODO: translate the following.
 
 124 // 'button.copy' => 'Copy',
 
 125 'button.cancel' => 'Iptal',
 
 126 'button.submit' => 'Gönder',
 
 127 'button.add_user' => 'Kullanıcı ekle',
 
 128 'button.add_project' => 'Proje ekle',
 
 129 // TODO: translate the following.
 
 130 // 'button.add_task' => 'Add task',
 
 131 'button.add_client' => 'Müşteri ekle',
 
 132 // TODO: translate the following.
 
 133 // 'button.add_invoice' => 'Add invoice',
 
 134 // 'button.add_option' => 'Add option',
 
 135 'button.add' => 'Ekle',
 
 136 'button.generate' => 'Yarat',
 
 137 // TODO: translate the following.
 
 138 // 'button.reset_password' => 'Reset password',
 
 139 'button.send' => 'Gönder',
 
 140 'button.send_by_email' => 'E-posta ile gönder',
 
 141 'button.create_team' => 'Ekip yarat',
 
 142 // TODO: translate the following.
 
 143 // 'button.export' => 'Export team',
 
 144 'button.import' => 'Ekibi içeri aktar',
 
 145 // TODO: translate the following.
 
 146 // 'button.close' => 'Close',
 
 147 // 'button.stop' => 'Stop',
 
 149 // Labels for controls on forms. Labels in this section are used on multiple forms.
 
 150 // TODO: translate the following.
 
 151 // 'label.team_name' => 'Team name',
 
 152 // 'label.address' => 'Address',
 
 153 'label.currency' => 'Para birimi',
 
 154 // TODO: translate the following.
 
 155 // 'label.manager_name' => 'Manager name',
 
 156 // 'label.manager_login' => 'Manager login',
 
 157 'label.person_name' => 'Isim',
 
 158 'label.thing_name' => 'Isim',
 
 159 // TODO: translate the following.
 
 160 // 'label.login' => 'Login',
 
 161 'label.password' => 'Parola',
 
 162 // TODO: translate the following.
 
 163 // 'label.confirm_password' => 'Confirm password',
 
 164 'label.email' => 'E-posta',
 
 165 // TODO: translate the following.
 
 166 // 'label.cc' => 'Cc',
 
 167 // 'label.bcc' => 'Bcc',
 
 168 'label.subject' => 'Konu',
 
 169 // TODO: translate the following.
 
 170 // 'label.date' => 'Date',
 
 171 // 'label.start_date' => 'Start date',
 
 172 // 'label.end_date' => 'End date',
 
 173 // 'label.user' => 'User',
 
 174 // 'label.users' => 'Users',
 
 175 // 'label.client' => 'Client',
 
 176 // 'label.clients' => 'Clients',
 
 177 // 'label.option' => 'Option',
 
 178 'label.invoice' => 'Fatura',
 
 179 // TODO: translate the following.
 
 180 // 'label.project' => 'Project',
 
 181 // 'label.projects' => 'Projects',
 
 182 // 'label.task' => 'Task',
 
 183 // 'label.tasks' => 'Tasks',
 
 184 // 'label.description' => 'Description',
 
 185 // 'label.start' => 'Start',
 
 186 // 'label.finish' => 'Finish',
 
 187 // 'label.duration' => 'Duration',
 
 188 // 'label.note' => 'Note',
 
 189 // 'label.notes' => 'Notes',
 
 190 // 'label.item' => 'Item',
 
 191 // 'label.cost' => 'Cost',
 
 192 // 'label.day_total' => 'Day total',
 
 193 'label.week_total' => 'Haftalık toplam',
 
 194 // TODO: translate the following.
 
 195 // 'label.month_total' => 'Month total',
 
 196 'label.today' => 'Bugün',
 
 197 // TODO: translate the following.
 
 198 // 'label.total_hours' => 'Total hours',
 
 199 // 'label.total_cost' => 'Total cost',
 
 200 // 'label.view' => 'View',
 
 201 'label.edit' => 'Düzenle',
 
 202 'label.delete' => 'Sil',
 
 203 // TODO: translate the following.
 
 204 // 'label.configure' => 'Configure',
 
 205 // 'label.select_all' => 'Select all',
 
 206 // 'label.select_none' => 'Deselect all',
 
 207 // 'label.day_view' => 'Day view',
 
 208 // 'label.week_view' => 'Week view',
 
 209 // 'label.id' => 'ID',
 
 210 // 'label.language' => 'Language',
 
 211 // 'label.decimal_mark' => 'Decimal mark',
 
 212 // 'label.date_format' => 'Date format',
 
 213 // 'label.time_format' => 'Time format',
 
 214 // 'label.week_start' => 'First day of week',
 
 215 // 'label.comment' => 'Comment',
 
 216 // 'label.status' => 'Status',
 
 217 // 'label.tax' => 'Tax',
 
 218 // 'label.subtotal' => 'Subtotal',
 
 219 'label.total' => 'Toplam',
 
 220 // TODO: translate the following.
 
 221 // 'label.client_name' => 'Client name',
 
 222 // 'label.client_address' => 'Client address',
 
 223 'label.or' => 'ya da',
 
 224 // TODO: translate the following.
 
 225 // 'label.error' => 'Error',
 
 226 // 'label.ldap_hint' => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
 
 227 'label.required_fields' => '* zorunlu bilgi',
 
 228 'label.on_behalf' => 'adına',
 
 229 'label.role_manager' => '(yönetici)',
 
 230 'label.role_comanager' => '(yardımcı yönetici)',
 
 231 'label.role_admin' => '(sistem yönetici)',
 
 232 // TODO: translate the following.
 
 233 // 'label.page' => 'Page',
 
 234 // 'label.condition' => 'Condition',
 
 235 // 'label.yes' => 'yes',
 
 236 // 'label.no' => 'no',
 
 237 // Labels for plugins (extensions to Time Tracker that provide additional features).
 
 238 // TODO: translate the following.
 
 239 // 'label.custom_fields' => 'Custom fields',
 
 240 // 'label.monthly_quotas' => 'Monthly quotas',
 
 241 // 'label.type' => 'Type',
 
 242 // 'label.type_dropdown' => 'dropdown',
 
 243 // 'label.type_text' => 'text',
 
 244 // 'label.required' => 'Required',
 
 245 // 'label.fav_report' => 'Favorite report',
 
 246 // 'label.cron_schedule' => 'Cron schedule',
 
 247 // 'label.what_is_it' => 'What is it?',
 
 248 // 'label.expense' => 'Expense',
 
 249 // 'label.quantity' => 'Quantity',
 
 250 // 'label.paid_status' => 'Paid status',
 
 251 // 'label.paid' => 'Paid',
 
 252 // 'label.mark_paid' => 'Mark paid',
 
 253 // 'label.week_note' => 'Week note',
 
 254 // 'label.week_list' => 'Week list',
 
 257 'title.login' => 'Giriş',
 
 258 // TODO: translate the following.
 
 259 // 'title.teams' => 'Teams',
 
 260 // 'title.create_team' => 'Creating Team',
 
 261 // 'title.edit_team' => 'Editing Team',
 
 262 // 'title.delete_team' => 'Deleting Team',
 
 263 'title.reset_password' => 'Parolayı sıfırla',
 
 264 // TODO: translate the following.
 
 265 // 'title.change_password' => 'Changing Password',
 
 266 // 'title.time' => 'Time',
 
 267 // 'title.edit_time_record' => 'Editing Time Record',
 
 268 // 'title.delete_time_record' => 'Deleting Time Record',
 
 269 // 'title.expenses' => 'Expenses',
 
 270 // 'title.edit_expense' => 'Editing Expense Item',
 
 271 // 'title.delete_expense' => 'Deleting Expense Item',
 
 272 // 'title.predefined_expenses' => 'Predefined Expenses',
 
 273 // 'title.add_predefined_expense' => 'Adding Predefined Expense',
 
 274 // 'title.edit_predefined_expense' => 'Editing Predefined Expense',
 
 275 // 'title.delete_predefined_expense' => 'Deleting Predefined Expense',
 
 276 // 'title.reports' => 'Reports',
 
 277 // 'title.report' => 'Report',
 
 278 // 'title.send_report' => 'Sending Report',
 
 279 'title.invoice' => 'Fatura',
 
 280 // TODO: translate the following.
 
 281 // 'title.send_invoice' => 'Sending Invoice',
 
 282 // 'title.charts' => 'Charts',
 
 283 // 'title.projects' => 'Projects',
 
 284 // 'title.add_project' => 'Adding Project',
 
 285 // 'title.edit_project' => 'Editing Project',
 
 286 // 'title.delete_project' => 'Deleting Project',
 
 287 // 'title.tasks' => 'Tasks',
 
 288 // 'title.add_task' => 'Adding Task',
 
 289 // 'title.edit_task' => 'Editing Task',
 
 290 // 'title.delete_task' => 'Deleting Task',
 
 291 // 'title.users' => 'Users',
 
 292 // 'title.add_user' => 'Adding User',
 
 293 // 'title.edit_user' => 'Editing User',
 
 294 // 'title.delete_user' => 'Deleting User',
 
 295 // 'title.clients' => 'Clients',
 
 296 // 'title.add_client' => 'Adding Client',
 
 297 // 'title.edit_client' => 'Editing Client',
 
 298 // 'title.delete_client' => 'Deleting Client',
 
 299 'title.invoices' => 'Faturalar',
 
 300 // TODO: translate the following.
 
 301 // 'title.add_invoice' => 'Adding Invoice',
 
 302 // 'title.view_invoice' => 'Viewing Invoice',
 
 303 // 'title.delete_invoice' => 'Deleting Invoice',
 
 304 // 'title.notifications' => 'Notifications',
 
 305 // 'title.add_notification' => 'Adding Notification',
 
 306 // 'title.edit_notification' => 'Editing Notification',
 
 307 // 'title.delete_notification' => 'Deleting Notification',
 
 308 // 'title.monthly_quotas' => 'Monthly Quotas',
 
 309 // 'title.export' => 'Exporting Team Data',
 
 310 // 'title.import' => 'Importing Team Data',
 
 311 // 'title.options' => 'Options',
 
 312 // 'title.profile' => 'Profile',
 
 313 // 'title.cf_custom_fields' => 'Custom Fields',
 
 314 // 'title.cf_add_custom_field' => 'Adding Custom Field',
 
 315 // 'title.cf_edit_custom_field' => 'Editing Custom Field',
 
 316 // 'title.cf_delete_custom_field' => 'Deleting Custom Field',
 
 317 // 'title.cf_dropdown_options' => 'Dropdown Options',
 
 318 // 'title.cf_add_dropdown_option' => 'Adding Option',
 
 319 // 'title.cf_edit_dropdown_option' => 'Editing Option',
 
 320 // 'title.cf_delete_dropdown_option' => 'Deleting Option',
 
 321 // NOTE TO TRANSLATORS: Locking is a feature to lock records from modifications (ex: weekly on Mondays we lock all previous weeks).
 
 322 // It is also a name for the Locking plugin on the Team profile page.
 
 323 // 'title.locking' => 'Locking',
 
 324 // 'title.week_view' => 'Week View',
 
 326 // Section for common strings inside combo boxes on forms. Strings shared between forms shall be placed here.
 
 327 // Strings that are used in a single form must go to the specific form section.
 
 328 // TODO: translate the following.
 
 329 // 'dropdown.all' => '--- all ---',
 
 330 // 'dropdown.no' => '--- no ---',
 
 331 // 'dropdown.current_day' => 'today',
 
 332 // 'dropdown.previous_day' => 'yesterday',
 
 333 // 'dropdown.selected_day' => 'day',
 
 334 // 'dropdown.current_week' => 'this week',
 
 335 // 'dropdown.previous_week' => 'previous week',
 
 336 // 'dropdown.selected_week' => 'week',
 
 337 // 'dropdown.current_month' => 'this month',
 
 338 // 'dropdown.previous_month' => 'previous month',
 
 339 // 'dropdown.selected_month' => 'month',
 
 340 // 'dropdown.current_year' => 'this year',
 
 341 // 'dropdown.previous_year' => 'previous year',
 
 342 // 'dropdown.selected_year' => 'year',
 
 343 // 'dropdown.all_time' => 'all time',
 
 344 // 'dropdown.projects' => 'projects',
 
 345 // 'dropdown.tasks' => 'tasks',
 
 346 // 'dropdown.clients' => 'clients',
 
 347 // 'dropdown.select' => '--- select ---',
 
 348 // 'dropdown.select_invoice' => '--- select invoice ---',
 
 349 // 'dropdown.status_active' => 'active',
 
 350 // 'dropdown.status_inactive' => 'inactive',
 
 351 // 'dropdown.delete'=>'delete',
 
 352 // 'dropdown.do_not_delete'=>'do not delete',
 
 353 // 'dropdown.paid' => 'paid',
 
 354 // 'dropdown.not_paid' => 'not paid',
 
 356 // Login form. See example at https://timetracker.anuko.com/login.php.
 
 357 // TODO: translate the following.
 
 358 // 'form.login.forgot_password' => 'Forgot password?',
 
 359 // '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.',
 
 361 // Resetting Password form. See example at https://timetracker.anuko.com/password_reset.php.
 
 362 // TODO: translate the following.
 
 363 // 'form.reset_password.message' => 'Password reset request sent by email.',
 
 364 // 'form.reset_password.email_subject' => 'Anuko Time Tracker password reset request',
 
 365 // '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",
 
 367 // Changing Password form. See example at https://timetracker.anuko.com/password_change.php?ref=1.
 
 368 // TODO: translate the following.
 
 369 // 'form.change_password.tip' => 'Type new password and click on Save.',
 
 371 // Time form. See example at https://timetracker.anuko.com/time.php.
 
 372 // TODO: translate the following.
 
 373 // 'form.time.duration_format' => '(hh:mm or 0.0h)',
 
 374 'form.time.billable' => 'Faturalandırılabilir',
 
 375 // TODO: translate the following.
 
 376 // 'form.time.uncompleted' => 'Uncompleted',
 
 377 // 'form.time.remaining_quota' => 'Remaining quota',
 
 378 // 'form.time.over_quota' => 'Over quota',
 
 380 // Editing Time Record form. See example at https://timetracker.anuko.com/time_edit.php (get there by editing an uncompleted time record).
 
 381 // TODO: translate the following.
 
 382 // 'form.time_edit.uncompleted' => 'This record was saved with only start time. It is not an error.',
 
 384 // Week view form. See example at https://timetracker.anuko.com/week.php.
 
 385 // TODO: translate the following.
 
 386 // 'form.week.new_entry' => 'New entry',
 
 388 // Reports form. See example at https://timetracker.anuko.com/reports.php
 
 389 // TODO: translate the following.
 
 390 // 'form.reports.save_as_favorite' => 'Save as favorite',
 
 391 // 'form.reports.confirm_delete' => 'Are you sure you want to delete this favorite report?',
 
 392 'form.reports.include_billable' => 'faturalandırılabilir',
 
 393 'form.reports.include_not_billable' => 'faturalandırılamaz',
 
 394 // TODO: translate the following.
 
 395 // 'form.reports.include_invoiced' => 'invoiced',
 
 396 // 'form.reports.include_not_invoiced' => 'not invoiced',
 
 397 'form.reports.select_period' => 'Zaman aralığını seç',
 
 398 'form.reports.set_period' => 'ya da tarihleri belirle',
 
 399 'form.reports.show_fields' => 'Alanları göster',
 
 400 'form.reports.group_by' => 'Gruplandırma kıstas',
 
 401 'form.reports.group_by_no' => '--- gruplama yok ---',
 
 402 // TODO: translate the following.
 
 403 // 'form.reports.group_by_date' => 'date',
 
 404 // 'form.reports.group_by_user' => 'user',
 
 405 // 'form.reports.group_by_client' => 'client',
 
 406 // 'form.reports.group_by_project' => 'project',
 
 407 // 'form.reports.group_by_task' => 'task',
 
 408 // 'form.reports.totals_only' => 'Totals only',
 
 412 // TODO: refactoring ongoing down from here.
 
 414 "form.filter.project" => 'proje',
 
 415 "form.filter.filter" => 'sık kullanılan rapor',
 
 416 "form.filter.filter_new" => 'sık kullanılan olarak kaydet',
 
 418 // password reminder form attributes
 
 419 "form.fpass.send_pass_str" => 'parola sıfırlama talebi yollandı',
 
 420 "form.fpass.send_pass_subj" => 'Anuko Time Tracker parola sıfırlama talebi',
 
 421 // Note to translators: the ending of this string needs to be translated.
 
 422 "form.fpass.send_pass_body" => "Sayın Kullanıcı,\n\nBirisi, muhtemelen siz, Anuko Time Tracker parolanızın sıfırlanmasını istedi. Parolanızı sıfırlamak isterseniz lütfen bu bağlantıyı takip edin.\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",
 
 423 "form.fpass.reset_comment" => "parolanızı sıfırlamak için lütfen parolanızı yazın ve kaydedin",
 
 425 // administrator form
 
 426 "form.admin.title" => 'yönetici',
 
 427 "form.admin.duty_text" => 'yeni bir ekip yönetimi hesabı yaratarak yeni bir ekibi yaratın.<br>ayrıca başka bir Anuko Time Tracker sunucusundan ekip bilgilerini bir xml dosyasından aktarabilirsiniz (e-posta çakışmalarına izin verilmemekte).',
 
 429 "form.admin.change_pass" => 'yönetici hesabın parolasını değiştir',
 
 430 "form.admin.profile.title" => 'ekipler',
 
 431 "form.admin.profile.noprofiles" => 'veritabanınız boş. yeni bir ekip yaratmak için yönetici olarak giriş yapın.',
 
 432 "form.admin.profile.comment" => 'ekibi sil',
 
 433 "form.admin.profile.th.id" => 'id',
 
 434 "form.admin.profile.th.active" => 'aktif',
 
 436 // my time form attributes
 
 437 "form.mytime.title" => 'zamanım',
 
 438 "form.mytime.edit_title" => 'zaman kaydını düzenliyor',
 
 439 "form.mytime.del_str" => 'zaman kaydını siliyor',
 
 440 "form.mytime.time_form" => ' (ss:dd)',
 
 441 "form.mytime.date" => 'tarih',
 
 442 "form.mytime.project" => 'proje',
 
 443 "form.mytime.start" => 'başlat',
 
 444 "form.mytime.finish" => 'tamamla',
 
 445 "form.mytime.duration" => 'süre',
 
 446 "form.mytime.note" => 'not',
 
 447 "form.mytime.daily" => 'günlük çalışma',
 
 448 "form.mytime.total" => 'toplam saat: ',
 
 449 "form.mytime.th.project" => 'proje',
 
 450 "form.mytime.th.start" => 'başlat',
 
 451 "form.mytime.th.finish" => 'tamamla',
 
 452 "form.mytime.th.duration" => 'süre',
 
 453 "form.mytime.th.note" => 'not',
 
 454 "form.mytime.del_yes" => 'zaman kaydı başarıyla silindi',
 
 455 "form.mytime.no_finished_rec" => 'bu kayıt sadece başlangıç zamanıyla silindi. bu hata değildir. gerekirse çıkış yapın.',
 
 456 "form.mytime.warn_tozero_rec" => 'bu zaman kaydı silinmeli çünkü zaman aralığı kilitli',
 
 457 // Note to translators: the string below is missing and must be translated and added
 
 458 // "form.mytime.uncompleted" => 'uncompleted',
 
 460 // profile form attributes
 
 461 // Note to translators: we need a more accurate translation of form.profile.create_title
 
 462 "form.profile.create_title" => 'yeni yönetici hesabı yarat',
 
 463 "form.profile.edit_title" => 'profili düzenliyor',
 
 465 // people form attributes
 
 466 "form.people.ppl_str" => 'insanlar',
 
 467 "form.people.createu_str" => 'yeni kullanıcı yarat',
 
 468 "form.people.edit_str" => 'kullanıcı düzenleniyor',
 
 469 "form.people.del_str" => 'kullanıcı siliniyor',
 
 470 "form.people.th.role" => 'rol',
 
 471 "form.people.th.status" => 'durum',
 
 472 "form.people.th.project" => 'proje',
 
 473 "form.people.th.rate" => 'tarife',
 
 474 "form.people.manager" => 'yönetici',
 
 475 "form.people.comanager" => 'yardımcı yönetici',
 
 476 "form.people.empl" => 'kullanıcı',
 
 478 "form.people.rate" => 'varsayılan saat ücreti',
 
 479 "form.people.comanager" => 'yardımcı yönetici',
 
 480 "form.people.projects" => 'projeler',
 
 482 // projects form attributes
 
 483 "form.project.proj_title" => 'projeler',
 
 484 "form.project.edit_str" => 'proje düzenleniyor',
 
 485 "form.project.add_str" => 'yeni proje ekleniyor',
 
 486 "form.project.del_str" => 'proje siliniyor',
 
 488 // activities form attributes
 
 489 "form.activity.act_title" => 'faaliyetler',
 
 490 "form.activity.add_title" => 'yeni faaliyetler ekleniyor',
 
 491 "form.activity.edit_str" => 'faaliyetler düzenleniyor',
 
 492 "form.activity.del_str" => 'faaliyetler siliniyor',
 
 493 "form.activity.project" => 'proje',
 
 494 "form.activity.th.project" => 'proje',
 
 497 "form.report.title" => 'raporlar',
 
 498 "form.report.from" => 'başlangıç tarihi',
 
 499 "form.report.to" => 'son tarihi',
 
 500 "form.report.groupby_user" => 'kullanıcı',
 
 501 "form.report.groupby_project" => 'proje',
 
 502 "form.report.duration" => 'süre',
 
 503 "form.report.start" => 'başlangıç',
 
 504 "form.report.finish" => 'son',
 
 505 "form.report.note" => 'not',
 
 506 "form.report.project" => 'proje',
 
 507 "form.report.totals_only" => 'sadece toplamlar',
 
 508 "form.report.total" => 'saat toplamı',
 
 509 "form.report.th.empllist" => 'kullanıcı',
 
 510 "form.report.th.date" => 'tarih',
 
 511 "form.report.th.project" => 'proje',
 
 512 "form.report.th.start" => 'başlangıç',
 
 513 "form.report.th.finish" => 'son',
 
 514 "form.report.th.duration" => 'süre',
 
 515 "form.report.th.note" => 'not',
 
 517 // mail form attributes
 
 518 "form.mail.from" => 'kimden',
 
 519 "form.mail.to" => 'kime',
 
 520 "form.mail.comment" => 'yorum',
 
 521 "form.mail.above" => 'bu raporu e-posta ile yolla',
 
 522 // Note to translators: this string needs to be translated.
 
 523 // "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.',
 
 524 "form.mail.sending_str" => '<b>ileti yollandı</b>',
 
 526 // invoice attributes
 
 527 "form.invoice.title" => 'fatura',
 
 528 "form.invoice.caption" => 'fatura',
 
 529 "form.invoice.above" => 'fatura için ek bilgi',
 
 530 "form.invoice.select_cust" => 'müşteri seç',
 
 531 "form.invoice.fillform" => 'alanları doldur',
 
 532 "form.invoice.date" => 'tarih',
 
 533 "form.invoice.number" => 'fatura numarası',
 
 534 "form.invoice.tax" => 'vergi',
 
 535 "form.invoice.comment" => 'yorum ',
 
 536 "form.invoice.th.username" => 'kişi',
 
 537 "form.invoice.th.time" => 'saatler',
 
 538 "form.invoice.th.rate" => 'tarife',
 
 539 "form.invoice.th.summ" => 'tutar',
 
 540 "form.invoice.subtotal" => 'alt toplamı',
 
 541 "form.invoice.customer" => 'müşteri',
 
 542 "form.invoice.mailinv_above" => 'bu faturayı e-posta ile yolla',
 
 543 "form.invoice.sending_str" => '<b>fatura yollandı</b>',
 
 545 "form.migration.zip" => 'sıkıştırma',
 
 546 "form.migration.file" => 'dosya seç',
 
 547 "form.migration.import.title" => 'veri içe aktar',
 
 548 "form.migration.import.success" => 'içe aktarma başarıyla tamamlandı',
 
 549 "form.migration.import.text" => 'ekip bilgileri bir xml dosyasından içe aktar',
 
 550 "form.migration.export.title" => 'dışarı aktar',
 
 551 "form.migration.export.success" => 'dışarı aktarma başarıyla tamamlandı',
 
 552 "form.migration.export.text" => 'tüm ekip bilgilerinizi bir xml dosyasına aktarabilirsiniz. bu, kendi sunucunuza bilgi aktarmak istediğinizde faydalı olabilir.',
 
 554 "form.client.title" => 'müşteriler',
 
 555 "form.client.add_title" => 'müşteri ekle',
 
 556 "form.client.edit_title" => 'müşteriyi düzenle',
 
 557 "form.client.del_title" => 'müşteriyi sil',
 
 558 "form.client.tax" => 'vergi',
 
 559 "form.client.comment" => 'yorum ',
 
 561 // miscellaneous strings
 
 562 "forward.forgot_password" => 'parolanızı unuttunuz mu?',
 
 563 "forward.tocsvfile" => 'bilgileri .csv dosyasına aktar',
 
 564 "forward.toxmlfile" => 'bilgileri .xml dosyasına aktar',
 
 565 "forward.geninvoice" => 'fatura yarat',
 
 567 "controls.select.client" => '--- müşteri seç ---',
 
 568 "controls.project_bind" => '--- tümü ---',
 
 569 "controls.all" => '--- tümü ---',
 
 570 "controls.notbind" => '--- hiç ---',
 
 571 "controls.per_tm" => 'bu ay',
 
 572 "controls.per_lm" => 'geçen ay',
 
 573 "controls.per_tw" => 'bu hafta',
 
 574 "controls.per_lw" => 'geçen hafta',
 
 575 "controls.per_td" => 'bugün',
 
 576 "controls.per_at" => 'tüm zamanlar',
 
 578 "label.group_title" => 'gruplandırma kıstası',
 
 580 "label.set_empl" => 'kullanıcıları seç',
 
 581 "label.sel_all" => 'tümünü seç',
 
 582 "label.sel_none" => 'hiçbirini seçme',
 
 583 "label.disable" => 'devre dışı bırak',
 
 584 "label.enable" => 'devreye sok',