mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			132 lines
		
	
	
		
			5.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			132 lines
		
	
	
		
			5.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /**
 | |
|  * list.php
 | |
|  * Copyright (c) 2018 thegrumpydictator@gmail.com
 | |
|  *
 | |
|  * This file is part of Firefly III.
 | |
|  *
 | |
|  * Firefly III is free software: you can redistribute it and/or modify
 | |
|  * it under the terms of the GNU General Public License as published by
 | |
|  * the Free Software Foundation, either version 3 of the License, or
 | |
|  * (at your option) any later version.
 | |
|  *
 | |
|  * Firefly III is distributed in the hope that it will be useful,
 | |
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
|  * GNU General Public License for more details.
 | |
|  *
 | |
|  * You should have received a copy of the GNU General Public License
 | |
|  * along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
 | |
|  */
 | |
| 
 | |
| declare(strict_types=1);
 | |
| 
 | |
| return [
 | |
|     'buttons'                 => 'Tombol',
 | |
|     'icon'                    => 'Ikon',
 | |
|     'id'                      => 'ID',
 | |
|     'create_date'             => 'Dibuat pada',
 | |
|     'update_date'             => 'Diperbarui pada',
 | |
|     'updated_at'              => 'Diperbarui pada',
 | |
|     'balance_before'          => 'Saldo Sebelumnya',
 | |
|     'balance_after'           => 'Saldo setelahnya',
 | |
|     'name'                    => 'Nama',
 | |
|     'role'                    => 'Peran',
 | |
|     'currentBalance'          => 'Saldo saat ini',
 | |
|     'linked_to_rules'         => 'Relevant rules',
 | |
|     'active'                  => 'Aktif?',
 | |
|     'lastActivity'            => 'Aktifitas terakhir',
 | |
|     'balanceDiff'             => 'Perbedaan saldo',
 | |
|     'matchesOn'               => 'Cocok di',
 | |
|     'account_type'            => 'Jenis akun',
 | |
|     'created_at'              => 'Dibuat di',
 | |
|     'account'                 => 'Akun',
 | |
|     'matchingAmount'          => 'Jumlah',
 | |
|     'split_number'            => 'Split #',
 | |
|     'destination'             => 'Tujuan',
 | |
|     'source'                  => 'Sumber',
 | |
|     'next_expected_match'     => 'Transaksi yang diharapkan berikutnya',
 | |
|     'automatch'               => 'Pencocokan otomatis?',
 | |
|     'repeat_freq'             => 'Berulang',
 | |
|     'description'             => 'Deskripsi',
 | |
|     'amount'                  => 'Jumlah',
 | |
|     'internal_reference'      => 'Referensi Internal',
 | |
|     'date'                    => 'Tanggal',
 | |
|     'interest_date'           => 'Tanggal Bunga',
 | |
|     'book_date'               => 'Tanggal Buku',
 | |
|     'process_date'            => 'Tanggal pemrosesan',
 | |
|     'due_date'                => 'Tenggat waktu',
 | |
|     'payment_date'            => 'Tanggal pembayaran',
 | |
|     'invoice_date'            => 'Tanggal Faktur',
 | |
|     'interal_reference'       => 'Referensi Internal',
 | |
|     'notes'                   => 'Catatan',
 | |
|     'from'                    => 'Dari',
 | |
|     'piggy_bank'              => 'Celengan',
 | |
|     'to'                      => 'Untuk',
 | |
|     'budget'                  => 'Anggaran',
 | |
|     'category'                => 'Kategori',
 | |
|     'bill'                    => 'Tagihan',
 | |
|     'withdrawal'              => 'Penarikan',
 | |
|     'deposit'                 => 'Simpanan',
 | |
|     'transfer'                => 'Transfer',
 | |
|     'type'                    => 'Jenis',
 | |
|     'completed'               => 'Lengkap',
 | |
|     'iban'                    => 'IBAN',
 | |
|     'paid_current_period'     => 'Membayar periode ini',
 | |
|     'email'                   => 'Email',
 | |
|     'registered_at'           => 'Terdaftar di',
 | |
|     'is_blocked'              => 'Diblokir',
 | |
|     'is_admin'                => 'Apakah admin',
 | |
|     'has_two_factor'          => 'Memiliki 2FA',
 | |
|     'blocked_code'            => 'Kode blok',
 | |
|     'source_account'          => 'Akun sumber',
 | |
|     'destination_account'     => 'Akun tujuan',
 | |
|     'accounts_count'          => 'Jumlah rekening',
 | |
|     'journals_count'          => 'Jumlah transaksi',
 | |
|     'attachments_count'       => 'Jumlah lampiran',
 | |
|     'bills_count'             => 'Jumlah tagihan',
 | |
|     'categories_count'        => 'Jumlah kategori',
 | |
|     'export_jobs_count'       => 'Jumlah pekerjaan ekspor',
 | |
|     'import_jobs_count'       => 'Jumlah pekerjaan impor',
 | |
|     'budget_count'            => 'Jumlah anggaran',
 | |
|     'rule_and_groups_count'   => 'Jumlah aturan dan kelompok aturan',
 | |
|     'tags_count'              => 'Jumlah label',
 | |
|     'tags'                    => 'Tags',
 | |
|     'inward'                  => 'Deskripsi dalam',
 | |
|     'outward'                 => 'Deskripsi luar',
 | |
|     'number_of_transactions'  => 'Jumlah transaksi',
 | |
|     'total_amount'            => 'Jumlah total',
 | |
|     'sum'                     => 'Jumlah',
 | |
|     'sum_excluding_transfers' => 'Jumlah (tidak termasuk transfer)',
 | |
|     'sum_withdrawals'         => 'Jumlah penarikan',
 | |
|     'sum_deposits'            => 'Jumlah simpanan',
 | |
|     'sum_transfers'           => 'Jumlah transfer',
 | |
|     'reconcile'               => 'Menyesuaikan',
 | |
|     'account_on_spectre'      => 'Account (Spectre)',
 | |
|     'do_import'               => 'Import from this account',
 | |
|     'sepa-ct-id'              => 'SEPA End to End Identifier',
 | |
|     'sepa-ct-op'              => 'SEPA Opposing Account Identifier',
 | |
|     'sepa-db'                 => 'SEPA Mandate Identifier',
 | |
|     'sepa-country'            => 'SEPA Country',
 | |
|     'sepa-cc'                 => 'SEPA Clearing Code',
 | |
|     'sepa-ep'                 => 'SEPA External Purpose',
 | |
|     'sepa-ci'                 => 'SEPA Creditor Identifier',
 | |
|     'external_id'             => 'External ID',
 | |
|     'account_at_bunq'         => 'Account with bunq',
 | |
|     'file_name'               => 'File name',
 | |
|     'file_size'               => 'File size',
 | |
|     'file_type'               => 'File type',
 | |
|     'attached_to'             => 'Attached to',
 | |
|     'file_exists'             => 'File exists',
 | |
|     'spectre_bank'            => 'Bank',
 | |
|     'spectre_last_use'        => 'Last login',
 | |
|     'spectre_status'          => 'Status',
 | |
|     'bunq_payment_id'         => 'bunq payment ID',
 | |
|     'repetitions'             => 'Repetitions',
 | |
|     'title'                   => 'Title',
 | |
|     'transaction_s'           => 'Transaction(s)',
 | |
|     'field'                   => 'Field',
 | |
|     'value'                   => 'Value',
 | |
| ];
 |