forked from datamweb/shield-oauth
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request datamweb#26 from l-vanel/develop
lang: create french ShieldOAuthLang file
- Loading branch information
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* This file is part of Shield OAuth. | ||
* | ||
* (c) Datamweb <pooya_parsa_dadashi@yahoo.com> | ||
* | ||
* For the full copyright and license information, please view | ||
* the LICENSE file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Datamweb\ShieldOAuth\Language\fr; | ||
|
||
// ShieldOAuthLang language file | ||
return [ | ||
// Errors List | ||
'unknown' => 'Erreur inconnue!', | ||
'Callback' => [ | ||
'oauth_class_not_set' => 'Une erreur s’est produite, il semble que la classe OAuth n’est pas définie.', | ||
'anti_forgery' => 'Votre demande a été détectée comme erronée. Nous sommes désolés!', | ||
], | ||
|
||
// ShieldOAuthButton in views | ||
'other' => 'Autre', | ||
'login_by' => 'Connectez-vous avec : ', | ||
'register_by' => 'Inscrivez-vous avec : ', | ||
|
||
// Errors List For all OAuth | ||
'Github' => [ | ||
'github' => 'Github', | ||
'not_allow' => "Vous ne pouvez pas vous connecter ou vous inscrire avec GitHub maintenant!", | ||
], | ||
'Google' => [ | ||
'google' => 'Google', | ||
'not_allow' => "Vous ne pouvez pas vous connecter ou vous inscrire avec Google maintenant!", | ||
|
||
], | ||
// 'Yahoo' => [ | ||
// 'yahoo' => 'Yahoo', | ||
// 'not_allow' => "Vous ne pouvez pas vous connecter ou vous inscrire avec Yahoo maintenant!", | ||
|
||
// ], | ||
]; |