Blame view

resources/lang/tr-TR/invoices.php 1.8 KB
b7c7a5f6   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
  <?php
  
  return [
  
      'invoice_number'    => 'Fatura Numarası',
      'invoice_date'      => 'Fatura Tarihi',
      'total_price'       => 'Toplam Tutar',
      'due_date'          => 'Vade Tarihi',
      'order_number'      => 'Sipariş Numarası',
      'bill_to'           => 'Faturalanacak Kişi/Kurum',
  
      'quantity'          => 'Adet',
      'price'             => 'Fiyat',
      'sub_total'         => 'Ara Toplam',
      'discount'          => 'İndirim',
      'tax_total'         => 'Vergi Toplamı',
      'total'             => 'Toplam',
  
      'item_name'         => 'Öğe Adı | Öğe Adları',
  
      'show_discount'     => '%:discount İndirim',
      'add_discount'      => 'İndirim Ekle',
      'discount_desc'     => 'ara toplam üzerinden',
  
      'payment_due'       => 'Son Ödeme Tarihi',
      'paid'              => 'Ödenmiş',
      'histories'         => 'Geçmiş',
      'payments'          => 'Ödemeler',
      'add_payment'       => 'Ödeme Ekle',
      'mark_paid'         => 'Ödendi İşaretle',
      'mark_sent'         => 'Gönderildi İşaretle',
      'download_pdf'      => 'PDF İndir',
      'send_mail'         => 'Email Gönder',
  
      'status' => [
          'draft'         => 'Taslak',
          'sent'          => 'Gönderilen',
          'viewed'        => 'Görüldü',
          'approved'      => 'Onaylandı',
          'partial'       => 'Kısmi',
          'paid'          => 'Ödenmiş',
      ],
  
      'messages' => [
          'email_sent'     => 'Fatura emaili başarı ile gönderildi!',
          'marked_sent'    => 'Fatura başarıyla gönderilmiş olarak işaretlendi!',
          'email_required' => 'Bu müşteri için e-posta adresi yok!',
      ],
  
      'notification' => [
          'message'       => ':amount tutarında faturayı :customer ödemediği için bu iletiyi almaktasınız.',
          'button'        => 'Şimdi Öde',
      ],
  
  ];