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' => 'Name',
 
 158 // 'label.thing_name' => 'Name',
 
 159 // 'label.login' => 'Login',
 
 160 'label.password' => 'Parola',
 
 161 // TODO: translate the following.
 
 162 // 'label.confirm_password' => 'Confirm password',
 
 163 'label.email' => 'E-posta',
 
 164 // TODO: translate the following.
 
 165 // 'label.cc' => 'Cc',
 
 166 // 'label.bcc' => 'Bcc',
 
 167 'label.subject' => 'Konu',
 
 168 // TODO: translate the following.
 
 169 // 'label.date' => 'Date',
 
 170 // 'label.start_date' => 'Start date',
 
 171 // 'label.end_date' => 'End date',
 
 172 // 'label.user' => 'User',
 
 173 // 'label.users' => 'Users',
 
 174 // 'label.client' => 'Client',
 
 175 // 'label.clients' => 'Clients',
 
 176 // 'label.option' => 'Option',
 
 177 // 'label.invoice' => 'Invoice',
 
 178 // 'label.project' => 'Project',
 
 179 // 'label.projects' => 'Projects',
 
 180 // 'label.task' => 'Task',
 
 181 // 'label.tasks' => 'Tasks',
 
 182 // 'label.description' => 'Description',
 
 183 // 'label.start' => 'Start',
 
 184 // 'label.finish' => 'Finish',
 
 185 // 'label.duration' => 'Duration',
 
 186 // 'label.note' => 'Note',
 
 187 // 'label.notes' => 'Notes',
 
 188 // 'label.item' => 'Item',
 
 189 // 'label.cost' => 'Cost',
 
 190 // 'label.day_total' => 'Day total',
 
 191 // 'label.week_total' => 'Week total',
 
 192 // 'label.month_total' => 'Month total',
 
 193 'label.today' => 'Bugün',
 
 194 // TODO: translate the following.
 
 195 // 'label.total_hours' => 'Total hours',
 
 196 // 'label.total_cost' => 'Total cost',
 
 197 // 'label.view' => 'View',
 
 198 // 'label.edit' => 'Edit',
 
 199 'label.delete' => 'Sil',
 
 200 // TODO: translate the following.
 
 201 // 'label.configure' => 'Configure',
 
 202 // 'label.select_all' => 'Select all',
 
 203 // 'label.select_none' => 'Deselect all',
 
 204 // 'label.day_view' => 'Day view',
 
 205 // 'label.week_view' => 'Week view',
 
 206 // 'label.id' => 'ID',
 
 207 // 'label.language' => 'Language',
 
 208 // 'label.decimal_mark' => 'Decimal mark',
 
 209 // 'label.date_format' => 'Date format',
 
 210 // 'label.time_format' => 'Time format',
 
 211 // 'label.week_start' => 'First day of week',
 
 212 // 'label.comment' => 'Comment',
 
 213 // 'label.status' => 'Status',
 
 214 // 'label.tax' => 'Tax',
 
 215 // 'label.subtotal' => 'Subtotal',
 
 216 'label.total' => 'Toplam',
 
 217 // TODO: translate the following.
 
 218 // 'label.client_name' => 'Client name',
 
 219 // 'label.client_address' => 'Client address',
 
 220 // 'label.or' => 'or',
 
 221 // 'label.error' => 'Error',
 
 222 // 'label.ldap_hint' => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
 
 223 // 'label.required_fields' => '* - required fields',
 
 224 // 'label.on_behalf' => 'on behalf of',
 
 225 'label.role_manager' => '(yönetici)',
 
 226 'label.role_comanager' => '(yardımcı yönetici)',
 
 227 'label.role_admin' => '(sistem yönetici)',
 
 228 // TODO: translate the following.
 
 229 // 'label.page' => 'Page',
 
 230 // 'label.condition' => 'Condition',
 
 231 // 'label.yes' => 'yes',
 
 232 // 'label.no' => 'no',
 
 233 // Labels for plugins (extensions to Time Tracker that provide additional features).
 
 234 // TODO: translate the following.
 
 235 // 'label.custom_fields' => 'Custom fields',
 
 236 // 'label.monthly_quotas' => 'Monthly quotas',
 
 237 // 'label.type' => 'Type',
 
 238 // 'label.type_dropdown' => 'dropdown',
 
 239 // 'label.type_text' => 'text',
 
 240 // 'label.required' => 'Required',
 
 241 // 'label.fav_report' => 'Favorite report',
 
 242 // 'label.cron_schedule' => 'Cron schedule',
 
 243 // 'label.what_is_it' => 'What is it?',
 
 244 // 'label.expense' => 'Expense',
 
 245 // 'label.quantity' => 'Quantity',
 
 246 // 'label.paid_status' => 'Paid status',
 
 247 // 'label.paid' => 'Paid',
 
 248 // 'label.mark_paid' => 'Mark paid',
 
 251 'title.login' => 'Giriş',
 
 252 // TODO: translate the following.
 
 253 // 'title.teams' => 'Teams',
 
 254 // 'title.create_team' => 'Creating Team',
 
 255 // 'title.edit_team' => 'Editing Team',
 
 256 // 'title.delete_team' => 'Deleting Team',
 
 257 'title.reset_password' => 'Parolayı sıfırla',
 
 258 // TODO: translate the following.
 
 259 // 'title.change_password' => 'Changing Password',
 
 260 // 'title.time' => 'Time',
 
 261 // 'title.edit_time_record' => 'Editing Time Record',
 
 262 // 'title.delete_time_record' => 'Deleting Time Record',
 
 263 // 'title.expenses' => 'Expenses',
 
 264 // 'title.edit_expense' => 'Editing Expense Item',
 
 265 // 'title.delete_expense' => 'Deleting Expense Item',
 
 269 // TODO: refactoring ongoing down from here.
 
 271 "form.filter.project" => 'proje',
 
 272 "form.filter.filter" => 'sık kullanılan rapor',
 
 273 "form.filter.filter_new" => 'sık kullanılan olarak kaydet',
 
 275 // password reminder form attributes
 
 276 "form.fpass.send_pass_str" => 'parola sıfırlama talebi yollandı',
 
 277 "form.fpass.send_pass_subj" => 'Anuko Time Tracker parola sıfırlama talebi',
 
 278 // Note to translators: the ending of this string needs to be translated.
 
 279 "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",
 
 280 "form.fpass.reset_comment" => "parolanızı sıfırlamak için lütfen parolanızı yazın ve kaydedin",
 
 282 // administrator form
 
 283 "form.admin.title" => 'yönetici',
 
 284 "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).',
 
 286 "form.admin.change_pass" => 'yönetici hesabın parolasını değiştir',
 
 287 "form.admin.profile.title" => 'ekipler',
 
 288 "form.admin.profile.noprofiles" => 'veritabanınız boş. yeni bir ekip yaratmak için yönetici olarak giriş yapın.',
 
 289 "form.admin.profile.comment" => 'ekibi sil',
 
 290 "form.admin.profile.th.id" => 'id',
 
 291 "form.admin.profile.th.name" => 'isim',
 
 292 "form.admin.profile.th.edit" => 'düzenle',
 
 293 "form.admin.profile.th.del" => 'sil',
 
 294 "form.admin.profile.th.active" => 'aktif',
 
 295 // Note to translators: the strings below are missing and must be translated and added
 
 296 // "form.admin.options" => 'options',
 
 297 // "form.admin.custom_date_format" => "date format",
 
 298 // "form.admin.custom_time_format" => "time format",
 
 299 // "form.admin.start_week" => "first day of week",
 
 301 // my time form attributes
 
 302 "form.mytime.title" => 'zamanım',
 
 303 "form.mytime.edit_title" => 'zaman kaydını düzenliyor',
 
 304 "form.mytime.del_str" => 'zaman kaydını siliyor',
 
 305 "form.mytime.time_form" => ' (ss:dd)',
 
 306 "form.mytime.date" => 'tarih',
 
 307 "form.mytime.project" => 'proje',
 
 308 "form.mytime.activity" => 'faaliyet',
 
 309 "form.mytime.start" => 'başlat',
 
 310 "form.mytime.finish" => 'tamamla',
 
 311 "form.mytime.duration" => 'süre',
 
 312 "form.mytime.note" => 'not',
 
 313 "form.mytime.behalf" => 'kişiye yönelik günlük çalışma',
 
 314 "form.mytime.daily" => 'günlük çalışma',
 
 315 "form.mytime.total" => 'toplam saat: ',
 
 316 "form.mytime.th.project" => 'proje',
 
 317 "form.mytime.th.activity" => 'faaliyet',
 
 318 "form.mytime.th.start" => 'başlat',
 
 319 "form.mytime.th.finish" => 'tamamla',
 
 320 "form.mytime.th.duration" => 'süre',
 
 321 "form.mytime.th.note" => 'not',
 
 322 "form.mytime.th.edit" => 'düzenle',
 
 323 "form.mytime.th.delete" => 'sil',
 
 324 "form.mytime.del_yes" => 'zaman kaydı başarıyla silindi',
 
 325 "form.mytime.no_finished_rec" => 'bu kayıt sadece başlangıç zamanıyla silindi. bu hata değildir. gerekirse çıkış yapın.',
 
 326 "form.mytime.billable" => 'faturalandırılabilir',
 
 327 "form.mytime.warn_tozero_rec" => 'bu zaman kaydı silinmeli çünkü zaman aralığı kilitli',
 
 328 // Note to translators: the string below is missing and must be translated and added
 
 329 // "form.mytime.uncompleted" => 'uncompleted',
 
 331 // profile form attributes
 
 332 // Note to translators: we need a more accurate translation of form.profile.create_title
 
 333 "form.profile.create_title" => 'yeni yönetici hesabı yarat',
 
 334 "form.profile.edit_title" => 'profili düzenliyor',
 
 335 "form.profile.name" => 'isim',
 
 336 // Note to translators: "form.profile.login" => 'e-posta', // email has been changed to login
 
 338 // Note to translators: the string below is missing and must be translated and added
 
 339 // "form.profile.showchart" => 'show pie charts',
 
 340 // "form.profile.lang" => 'language',
 
 341 // "form.profile.custom_date_format" => "date format",
 
 342 // "form.profile.custom_time_format" => "time format",
 
 343 // "form.profile.default_format" => "(default)",
 
 344 // "form.profile.start_week" => "first day of week",
 
 346 // people form attributes
 
 347 "form.people.ppl_str" => 'insanlar',
 
 348 "form.people.createu_str" => 'yeni kullanıcı yarat',
 
 349 "form.people.edit_str" => 'kullanıcı düzenleniyor',
 
 350 "form.people.del_str" => 'kullanıcı siliniyor',
 
 351 "form.people.th.name" => 'isim',
 
 352 // Note to translators: "form.people.th.login" => 'e-posta', // email has been changed to login
 
 353 "form.people.th.role" => 'rol',
 
 354 "form.people.th.edit" => 'düzenle',
 
 355 "form.people.th.del" => 'sil',
 
 356 "form.people.th.status" => 'durum',
 
 357 "form.people.th.project" => 'proje',
 
 358 "form.people.th.rate" => 'tarife',
 
 359 "form.people.manager" => 'yönetici',
 
 360 "form.people.comanager" => 'yardımcı yönetici',
 
 361 "form.people.empl" => 'kullanıcı',
 
 362 "form.people.name" => 'isim',
 
 363 // Note to translators: "form.people.login" => 'e-posta', // email has been changed to login
 
 365 "form.people.rate" => 'varsayılan saat ücreti',
 
 366 "form.people.comanager" => 'yardımcı yönetici',
 
 367 "form.people.projects" => 'projeler',
 
 369 // projects form attributes
 
 370 "form.project.proj_title" => 'projeler',
 
 371 "form.project.edit_str" => 'proje düzenleniyor',
 
 372 "form.project.add_str" => 'yeni proje ekleniyor',
 
 373 "form.project.del_str" => 'proje siliniyor',
 
 374 "form.project.th.name" => 'isim',
 
 375 "form.project.th.edit" => 'düzenle',
 
 376 "form.project.th.del" => 'sil',
 
 377 "form.project.name" => 'isim',
 
 379 // activities form attributes
 
 380 "form.activity.act_title" => 'faaliyetler',
 
 381 "form.activity.add_title" => 'yeni faaliyetler ekleniyor',
 
 382 "form.activity.edit_str" => 'faaliyetler düzenleniyor',
 
 383 "form.activity.del_str" => 'faaliyetler siliniyor',
 
 384 "form.activity.name" => 'isim',
 
 385 "form.activity.project" => 'proje',
 
 386 "form.activity.th.name" => 'isim',
 
 387 "form.activity.th.project" => 'proje',
 
 388 "form.activity.th.edit" => 'düzenle',
 
 389 "form.activity.th.del" => 'sil',
 
 392 "form.report.title" => 'raporlar',
 
 393 "form.report.from" => 'başlangıç tarihi',
 
 394 "form.report.to" => 'son tarihi',
 
 395 "form.report.groupby_user" => 'kullanıcı',
 
 396 "form.report.groupby_project" => 'proje',
 
 397 "form.report.duration" => 'süre',
 
 398 "form.report.start" => 'başlangıç',
 
 399 "form.report.finish" => 'son',
 
 400 "form.report.note" => 'not',
 
 401 "form.report.project" => 'proje',
 
 402 "form.report.totals_only" => 'sadece toplamlar',
 
 403 "form.report.total" => 'saat toplamı',
 
 404 "form.report.th.empllist" => 'kullanıcı',
 
 405 "form.report.th.date" => 'tarih',
 
 406 "form.report.th.project" => 'proje',
 
 407 "form.report.th.start" => 'başlangıç',
 
 408 "form.report.th.finish" => 'son',
 
 409 "form.report.th.duration" => 'süre',
 
 410 "form.report.th.note" => 'not',
 
 412 // mail form attributes
 
 413 "form.mail.from" => 'kimden',
 
 414 "form.mail.to" => 'kime',
 
 415 "form.mail.comment" => 'yorum',
 
 416 "form.mail.above" => 'bu raporu e-posta ile yolla',
 
 417 // Note to translators: this string needs to be translated.
 
 418 // "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.',
 
 419 "form.mail.sending_str" => '<b>ileti yollandı</b>',
 
 421 // invoice attributes
 
 422 "form.invoice.title" => 'fatura',
 
 423 "form.invoice.caption" => 'fatura',
 
 424 "form.invoice.above" => 'fatura için ek bilgi',
 
 425 "form.invoice.select_cust" => 'müşteri seç',
 
 426 "form.invoice.fillform" => 'alanları doldur',
 
 427 "form.invoice.date" => 'tarih',
 
 428 "form.invoice.number" => 'fatura numarası',
 
 429 "form.invoice.tax" => 'vergi',
 
 430 "form.invoice.comment" => 'yorum ',
 
 431 "form.invoice.th.username" => 'kişi',
 
 432 "form.invoice.th.time" => 'saatler',
 
 433 "form.invoice.th.rate" => 'tarife',
 
 434 "form.invoice.th.summ" => 'tutar',
 
 435 "form.invoice.subtotal" => 'alt toplamı',
 
 436 "form.invoice.customer" => 'müşteri',
 
 437 "form.invoice.mailinv_above" => 'bu faturayı e-posta ile yolla',
 
 438 "form.invoice.sending_str" => '<b>fatura yollandı</b>',
 
 440 "form.migration.zip" => 'sıkıştırma',
 
 441 "form.migration.file" => 'dosya seç',
 
 442 "form.migration.import.title" => 'veri içe aktar',
 
 443 "form.migration.import.success" => 'içe aktarma başarıyla tamamlandı',
 
 444 "form.migration.import.text" => 'ekip bilgileri bir xml dosyasından içe aktar',
 
 445 "form.migration.export.title" => 'dışarı aktar',
 
 446 "form.migration.export.success" => 'dışarı aktarma başarıyla tamamlandı',
 
 447 "form.migration.export.text" => 'tüm ekip bilgilerinizi bir xml dosyasına aktarabilirsiniz. bu, kendi sunucunuza bilgi aktarmak istediğinizde faydalı olabilir.',
 
 448 // Note to translators: the strings below are missing and must be added and translated
 
 449 // "form.migration.compression.none" => 'none',
 
 450 // "form.migration.compression.gzip" => 'gzip',
 
 451 // "form.migration.compression.bzip" => 'bzip',
 
 453 "form.client.title" => 'müşteriler',
 
 454 "form.client.add_title" => 'müşteri ekle',
 
 455 "form.client.edit_title" => 'müşteriyi düzenle',
 
 456 "form.client.del_title" => 'müşteriyi sil',
 
 457 "form.client.th.name" => 'isim',
 
 458 "form.client.th.edit" => 'düzenle',
 
 459 "form.client.th.del" => 'sil',
 
 460 "form.client.name" => 'isim',
 
 461 "form.client.tax" => 'vergi',
 
 462 "form.client.comment" => 'yorum ',
 
 464 // miscellaneous strings
 
 465 "forward.forgot_password" => 'parolanızı unuttunuz mu?',
 
 466 "forward.edit" => 'düzenle',
 
 467 "forward.delete" => 'sil',
 
 468 "forward.tocsvfile" => 'bilgileri .csv dosyasına aktar',
 
 469 "forward.toxmlfile" => 'bilgileri .xml dosyasına aktar',
 
 470 "forward.geninvoice" => 'fatura yarat',
 
 471 "forward.change" => 'müşterileri düzenle',
 
 473 // strings inside contols on forms
 
 474 "controls.select.project" => '--- proje seç ---',
 
 475 "controls.select.activity" => '--- faaliyet seç ---',
 
 476 "controls.select.client" => '--- müşteri seç ---',
 
 477 "controls.project_bind" => '--- tümü ---',
 
 478 "controls.all" => '--- tümü ---',
 
 479 "controls.notbind" => '--- hiç ---',
 
 480 "controls.per_tm" => 'bu ay',
 
 481 "controls.per_lm" => 'geçen ay',
 
 482 "controls.per_tw" => 'bu hafta',
 
 483 "controls.per_lw" => 'geçen hafta',
 
 484 "controls.per_td" => 'bugün',
 
 485 "controls.per_at" => 'tüm zamanlar',
 
 486 // Note to translators: the string below is missing and must be added and translated
 
 487 // "controls.per_ty" => 'this year',
 
 488 "controls.sel_period" => '--- zaman dönemi seç ---',
 
 489 "controls.sel_groupby" => '--- gruplama yok ---',
 
 490 "controls.inc_billable" => 'faturalandırılabilir',
 
 491 "controls.inc_nbillable" => 'faturalandırılamaz',
 
 492 // Note to translators: the string below is missing and must be added and translated
 
 493 // "controls.default" => '--- default ---',
 
 496 "label.chart.title1" => 'kullanıcı için faaliyetler',
 
 497 // Note to translators: the string below is missing and must be added and translated
 
 498 // "label.chart.title2" => 'projects for user',
 
 499 "label.chart.period" => 'dönem için grafik',
 
 501 "label.pbehalf_info" => '% % <b>% adına</b>',
 
 502 "label.time_noentry" => 'giriş yok',
 
 503 "label.today" => 'bugün',
 
 504 "label.req_fields" => '* zorunlu bilgi',
 
 505 "label.sel_project" => 'proje seç',
 
 506 "label.sel_activity" => 'faaliyet seç',
 
 507 "label.sel_tp" => 'zaman aralığını seç',
 
 508 "label.set_tp" => 'ya da tarihleri belirle',
 
 509 "label.fields" => 'alanları göster',
 
 510 "label.group_title" => 'gruplandırma kıstası',
 
 511 "label.include_title" => 'kayıtları dahil et',
 
 512 "label.inv_str" => 'fatura',
 
 513 "label.set_empl" => 'kullanıcıları seç',
 
 514 "label.sel_all" => 'tümünü seç',
 
 515 "label.sel_none" => 'hiçbirini seçme',
 
 516 "label.or" => 'ya da',
 
 517 "label.disable" => 'devre dışı bırak',
 
 518 "label.enable" => 'devreye sok',
 
 519 "label.filter" => 'filtre',
 
 520 "label.timeweek" => 'haftalık toplam',