Commit 196920d6 authored by Benjamin Bellamy's avatar Benjamin Bellamy 💬 Committed by Yassine Doghri
Browse files

feat: add french translation

parent 93eb9e10
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -89,7 +89,7 @@ class App extends BaseConfig
    | found, the first locale will be used.
    |
    */
    public $supportedLocales = ['en'];
    public $supportedLocales = ['en', 'fr'];

    /*
    |--------------------------------------------------------------------------
+0 −1
Original line number Diff line number Diff line
@@ -44,7 +44,6 @@ return [
        'email' => 'Email',
        'username' => 'Username',
        'password' => 'Password',
        'submit_create_superadmin' => 'Create superadmin!',
    ],
    'messages' => [
        'createSuperAdminSuccess' =>
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ return [
    'old_podcast_section_subtitle' =>
        'Make sure you own the rights for this podcast before importing it. Copying and broadcasting a podcast without the proper rights is piracy and is liable to prosecution.',
    'imported_feed_url' => 'Feed URL',
    'imported_feed_url_hint' => 'The feed must be in `.xml` format.',
    'imported_feed_url_hint' => 'The feed must be in xml or rss format.',
    'new_podcast_section_title' => 'The new podcast',
    'name' => 'Name',
    'name_hint' => 'Used for generating the podcast URL.',
+12 −0
Original line number Diff line number Diff line
<?php

/**
 * @copyright  2020 Podlibre
 * @license    https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
 * @link       https://castopod.org/
 */

return [
    'dashboard' => 'Tableau de bord',
    'welcome_message' => 'Bienvenue dans l’administration !',
];
+28 −0
Original line number Diff line number Diff line
<?php

/**
 * @copyright  2020 Podlibre
 * @license    https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
 * @link       https://castopod.org/
 */

return [
    'go_to_website' => 'Visiter le site',
    'dashboard' => 'Tableau de bord',
    'admin' => 'Accueil',
    'podcasts' => 'Podcasts',
    'podcast-list' => 'Tous les podcasts',
    'podcast-create' => 'Créer un podcast',
    'podcast-import' => 'Importer un podcast',
    'users' => 'Utilisateurs',
    'user-list' => 'Tous les utilisateurs',
    'user-create' => 'Créer un utilisateur',
    'pages' => 'Pages',
    'page-list' => 'Toutes les pages',
    'page-create' => 'Créer une page',
    'account' => [
        'my-account' => 'Mon compte',
        'change-password' => 'Modifier le mot de passe',
        'logout' => 'Déconnexion',
    ],
];
Loading