firefly-iii/resources/lang/fr_FR/list.php

136 lines
6.3 KiB
PHP
Raw Normal View History

2015-12-23 02:34:23 -06:00
<?php
2016-03-13 11:19:09 -05:00
/**
* list.php
2020-02-14 01:07:45 -06:00
* Copyright (c) 2019 james@firefly-iii.org
2017-12-11 12:42:57 -06:00
*
2019-10-04 23:23:46 -05:00
* This file is part of Firefly III (https://github.com/firefly-iii).
2016-03-13 11:19:09 -05:00
*
2019-10-04 23:23:46 -05:00
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
2019-10-04 23:23:46 -05:00
* This program is distributed in the hope that it will be useful,
2017-12-11 12:42:57 -06:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2019-10-04 23:23:46 -05:00
* GNU Affero General Public License for more details.
2017-12-11 12:42:57 -06:00
*
2019-10-04 23:23:46 -05:00
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
2016-03-13 11:19:09 -05:00
*/
2018-06-01 07:20:52 -05:00
declare(strict_types=1);
2015-12-23 02:34:23 -06:00
return [
2019-09-03 10:21:45 -05:00
'buttons' => 'Boutons',
'icon' => 'Icône',
'id' => 'Identifiant',
'create_date' => 'Créé le',
'update_date' => 'Mis à jour le',
'updated_at' => 'Mis à jour le',
'balance_before' => 'Solde avant',
'balance_after' => 'Solde après',
'name' => 'Nom',
'role' => 'Rôle',
'currentBalance' => 'Solde courant',
'linked_to_rules' => 'Règles applicables',
'active' => 'Actif ?',
2019-09-06 13:26:57 -05:00
'percentage' => 'pct.',
2020-08-01 10:54:35 -05:00
'recurring_transaction' => 'Opération périodique',
2019-09-12 00:28:14 -05:00
'next_due' => 'Prochaine échéance',
2019-09-03 10:21:45 -05:00
'transaction_type' => 'Type',
'lastActivity' => 'Activité récente',
2019-12-20 09:42:23 -06:00
'balanceDiff' => 'Différence de solde',
2019-09-12 00:28:14 -05:00
'other_meta_data' => 'Autres métadonnées',
2019-09-03 10:21:45 -05:00
'account_type' => 'Type de compte',
'created_at' => 'Créé le',
'account' => 'Compte',
2020-08-01 08:31:11 -05:00
'external_uri' => 'URI externe',
2019-09-03 10:21:45 -05:00
'matchingAmount' => 'Montant',
'destination' => 'Destination',
'source' => 'Source',
'next_expected_match' => 'Prochaine association attendue',
'automatch' => 'Correspondance automatique ?',
'repeat_freq' => 'Répétitions',
'description' => 'Description',
'amount' => 'Montant',
'date' => 'Date',
2020-02-21 23:21:56 -06:00
'interest_date' => 'Date de valeur (intérêts)',
2019-09-03 10:21:45 -05:00
'book_date' => 'Date de réservation',
'process_date' => 'Date de traitement',
'due_date' => 'Échéance',
'payment_date' => 'Date de paiement',
'invoice_date' => 'Date de facturation',
2020-06-03 23:49:44 -05:00
'internal_reference' => 'Référence interne',
2019-09-03 10:21:45 -05:00
'notes' => 'Notes',
'from' => 'Depuis',
'piggy_bank' => 'Tirelire',
'to' => 'À',
'budget' => 'Budget',
'category' => 'Catégorie',
'bill' => 'Facture',
'withdrawal' => 'Retrait',
'deposit' => 'Dépôt',
'transfer' => 'Transfert',
'type' => 'Type',
'completed' => 'Terminé',
'iban' => 'Numéro IBAN',
'paid_current_period' => 'Payé cette période',
'email' => 'E-mail',
'registered_at' => 'Enregistré le',
'is_blocked' => 'Est bloqué',
'is_admin' => 'Est admin',
'has_two_factor' => 'A 2FA',
'blocked_code' => 'Code de blocage',
2020-02-21 23:21:56 -06:00
'source_account' => 'Compte source',
2017-09-24 14:20:39 -05:00
'destination_account' => 'Compte destinataire',
'accounts_count' => 'Nombre de comptes',
'journals_count' => 'Nombre d\'opérations',
'attachments_count' => 'Nombre de pièces jointes',
'bills_count' => 'Nombre de factures',
'categories_count' => 'Nombre de catégories',
'budget_count' => 'Nombre de budgets',
'rule_and_groups_count' => 'Nombre de règles et de groupes de règles',
'tags_count' => 'Nombre détiquettes',
2017-12-30 13:43:18 -06:00
'tags' => 'Tags',
2020-02-21 23:21:56 -06:00
'inward' => 'Description vers l\'opération',
'outward' => 'Description depuis l\'opération',
'number_of_transactions' => 'Nombre d\'opérations',
2017-10-04 05:01:41 -05:00
'total_amount' => 'Montant total',
'sum' => 'Somme',
'sum_excluding_transfers' => 'Somme (hors transferts)',
'sum_withdrawals' => 'Somme des retraits',
'sum_deposits' => 'Somme des dépôts',
'sum_transfers' => 'Somme des transferts',
2020-01-01 08:38:47 -06:00
'sum_reconciliations' => 'Total des rapprochements',
2017-11-24 10:06:42 -06:00
'reconcile' => 'Rapprocher',
2019-05-29 11:30:52 -05:00
'sepa_ct_id' => 'Identificateur de bout en bout SEPA',
'sepa_ct_op' => 'Identifiant de compte SEPA opposable',
'sepa_db' => 'Identifiant de mandat SEPA',
'sepa_country' => 'Pays SEPA',
'sepa_cc' => 'Code de rapprochement SEPA',
'sepa_ep' => 'Usage externe SEPA',
'sepa_ci' => 'Identifiant Créancier SEPA',
'sepa_batch_id' => 'ID de lot SEPA',
2018-06-22 23:29:14 -05:00
'external_id' => 'ID externe',
2018-04-21 13:48:18 -05:00
'account_at_bunq' => 'Compte avec bunq',
2018-06-22 23:29:14 -05:00
'file_name' => 'Nom du fichier',
'file_size' => 'Taille du fichier',
'file_type' => 'Type de fichier',
'attached_to' => 'Attaché à',
'file_exists' => 'Le fichier existe',
'spectre_bank' => 'Banque',
'spectre_last_use' => 'Dernière connexion',
'spectre_status' => 'Statut',
'bunq_payment_id' => 'ID de paiement bunq',
2018-07-12 23:39:50 -05:00
'repetitions' => 'Répétitions',
'title' => 'Titre',
'transaction_s' => 'Opération(s)',
'field' => 'Champ',
'value' => 'Valeur',
2018-08-12 02:33:56 -05:00
'interest' => 'Intérêt',
'interest_period' => 'période dintérêt',
'liability_type' => 'Type de passif',
2017-09-03 03:41:57 -05:00
];