api/lang/fr/enums.php

70 lines
2.0 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
return [
'pace_preference' => [
'slow' => 'Lent',
'normal' => 'Normal',
'fast' => 'Rapide',
],
'physical_activity_level' => [
'sedentary' => 'Sédentaire',
'lightly_active' => 'Légèrement actif',
'moderately_active' => 'Modérément actif',
'very_active' => 'Très actif',
'athlete' => 'Athlète',
],
'user_sex' => [
'man' => 'Homme',
'woman' => 'Femme',
'other' => 'Autre',
'unknown' => 'Non renseigné',
],
'user_role' => [
'user' => 'Utilisateur',
'admin' => 'Administrateur',
'moderator' => 'Modérateur',
],
'report_reason' => [
'spam' => 'Spam',
'harassment' => 'Harcèlement',
'hate_speech' => 'Discours haineux',
'inappropriate' => 'Contenu inapproprié',
'dangerous_content' => 'Contenu dangereux',
'misleading' => 'Information trompeuse',
'other' => 'Autre',
],
'report_status' => [
'open' => 'Ouvert',
'reviewing' => 'En cours',
'resolved' => 'Résolu',
'rejected' => 'Rejeté',
],
'moderation_case_status' => [
'open' => 'Ouvert',
'reviewing' => 'En cours',
'resolved' => 'Résolu',
'rejected' => 'Rejeté',
],
'legal_document_type' => [
'privacy_policy' => 'Politique de confidentialité',
'terms' => 'Conditions dutilisation',
],
'credit_product_type' => [
'monthly' => 'Mensuel',
'one_time' => 'Pack de crédits',
],
'credit_ledger_entry_type' => [
'free_grant' => 'Crédits offerts',
'purchase' => 'Achat',
'subscription_renewal' => 'Renouvellement',
'usage' => 'Utilisation',
'refund' => 'Remboursement',
'adjustment' => 'Ajustement',
],
'weight_goal' => [
'lose_weight' => 'Perdre du poids',
'maintain_weight' => 'Maintenir le poids',
'gain_weight' => 'Prendre du poids',
],
];