209 lines
10 KiB
PHP
209 lines
10 KiB
PHP
|
<?php
|
|||
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|||
|
|
|||
|
// Cäsar-Verschlüsselung
|
|||
|
$lang['encrypter_site_title'] = 'Cryptage et décryptage';
|
|||
|
$lang['encrypter_title'] = 'Chiffrement par décalage';
|
|||
|
$lang['encrypter_description'] = 'Avec mon encryptor vous pouvez chiffrer des textes avec le <a href="https://fr.wikipedia.org/wiki/Chiffrement_par_d%C3/A9calage" target="_blank">Chiffrement par décalage</a>. Ici, chaque lettre est décalée de la quantité spécifiée dans l\'alphabet.';
|
|||
|
$lang['encrypter_text'] = 'Texte unencrypted';
|
|||
|
$lang['encrypter_text2'] = 'Entrant';
|
|||
|
$lang['encrypter_shiftkey'] = 'Shift-Key (Quantité de décalage)';
|
|||
|
$lang['encrypter_shiftkey2'] = 'Shift-Key';
|
|||
|
$lang['encrypter_output'] = 'Texte chiffré';
|
|||
|
$lang['encrypter_output2'] = 'Sortie';
|
|||
|
|
|||
|
// Cäsar-Entschlüsselung
|
|||
|
$lang['decrypter_title'] = 'César décryptage';
|
|||
|
$lang['decrypter_description'] = 'Avec mon decrypter vous pouvez déchiffrer des textes avec le <a href="https://fr.wikipedia.org/wiki/Chiffrement_par_d%C3/A9calage" target="_blank">Chiffrement par décalage</a>. Ici, chaque lettre est décalée de la quantité spécifiée dans l\'alphabet.';
|
|||
|
$lang['decrypter_text'] = 'Texte chiffré';
|
|||
|
$lang['decrypter_text2'] = 'Entrant';
|
|||
|
$lang['decrypter_shiftkey'] = 'Shift-Key (Quantité de décalage)';
|
|||
|
$lang['decrypter_shiftkey2'] = 'Shift-Key';
|
|||
|
$lang['decrypter_output'] = 'Texte décodée';
|
|||
|
$lang['decrypter_output2'] = 'Sortie';
|
|||
|
|
|||
|
// URL-Encoder
|
|||
|
$lang['url_site_title'] = 'Codeur URL';
|
|||
|
$lang['url_title'] = 'Codeur URL';
|
|||
|
$lang['url_description'] = 'Encoder ou décoder facilement toutes les URL ou expressions possibles!';
|
|||
|
$lang['url_input'] = 'Entrant';
|
|||
|
$lang['url_input2'] = 'Entrée du texte uncodé';
|
|||
|
$lang['url_input3'] = 'Entrée du texte codé';
|
|||
|
$lang['url_encode'] = 'Encoder';
|
|||
|
$lang['url_decode'] = 'Décoder';
|
|||
|
$lang['url_output'] = 'Sortie';
|
|||
|
$lang['url_output2'] = 'Sortie du texte encodé';
|
|||
|
$lang['url_output3'] = 'Sortie du texte décodé';
|
|||
|
|
|||
|
// base64-Encoder
|
|||
|
$lang['base64_site_title'] = 'Codeur Base64';
|
|||
|
$lang['base64_title'] = 'Codeur Base64';
|
|||
|
$lang['base64_description'] = 'Encoder ou décoder facilement toutes les expressions, messages ou textes!';
|
|||
|
$lang['base64_input'] = 'Entrant';
|
|||
|
$lang['base64_input2'] = 'Entrée du texte uncodé';
|
|||
|
$lang['base64_input3'] = 'Entrée du texte codé';
|
|||
|
$lang['base64_encode'] = 'Encoder';
|
|||
|
$lang['base64_decode'] = 'Décoder';
|
|||
|
$lang['base64_output'] = 'Sortie';
|
|||
|
$lang['base64_output2'] = 'Sortie du texte encodé';
|
|||
|
$lang['base64_output3'] = 'Sortie du texte décodé';
|
|||
|
|
|||
|
// Passwort-Generator
|
|||
|
$lang['pass_site_title'] = 'Password Generator';
|
|||
|
$lang['pass_title'] = 'Password Generator';
|
|||
|
$lang['pass_description'] = 'Avec mon Password Generator vous pouvez complètement créer autant que vous le souhaitez un mot de passe aléatoire.';
|
|||
|
$lang['pass_error'] = 'Erreur lors de la saisie';
|
|||
|
$lang['pass_generate'] = 'Générer';
|
|||
|
$lang['pass_copy'] = 'Copier';
|
|||
|
$lang['pass_length'] = 'Longueur du mot de passe';
|
|||
|
$lang['pass_length_help'] = 'Combien de longueur si le mot de passe?';
|
|||
|
$lang['pass_components'] = 'Composants';
|
|||
|
$lang['pass_components_upper'] = 'Majuscule';
|
|||
|
$lang['pass_components_lower'] = 'Minuscules';
|
|||
|
$lang['pass_components_special'] = 'Caractère spécial';
|
|||
|
$lang['pass_components_numbers'] = 'Numéros';
|
|||
|
$lang['pass_tipps_title'] = 'Conseils pour un mot de passe sécurisé';
|
|||
|
$lang['pass_tipps1'] = 'Le mot de passe doit être d\'au moins <code>10</code> caractères.';
|
|||
|
$lang['pass_tipps2'] = 'Cependant, la longueur seule rend un mot de passe ne sais pas, il devrait donc contenir un mélange de lettres majuscules et minuscules, chiffres et caractères spéciaux. (ex. <i>#Tes2ChiensSontJol1e!</i>)';
|
|||
|
$lang['pass_tipps3'] = 'Votre mot de passe ne doit pas contenir des renseignements personnels qui pourraient être associés avec vous. (ex. nom de l\'animal, âge etc.)';
|
|||
|
$lang['pass_tipps4'] = 'Il doit être couramment utilisé des mots ou lettres des chaînes (ex. 1234, test, password, QWERTY, QWERTZ etc.) présentes dans le mot de passe.';
|
|||
|
$lang['pass_tipps5_title'] = 'Recommandation:';
|
|||
|
$lang['pass_tipps5'] = 'Il suffit de penser à une phrase et de prendre chaque mot initiales seulement. Il est un mot de passe très sécurisé. Par example: <i>Chaque 2ième lundi je vais à 100% dans le gymnase #cool 3 pâtés de maisons. Promesse!</i> ==> <i>C2iLjva100%dlg#c3pdm.P!</i>';
|
|||
|
$lang['pass_end'] = 'Bonne chance!';
|
|||
|
|
|||
|
// Nickname-Generator
|
|||
|
$lang['nick_site_title'] = 'Nickname Générateur';
|
|||
|
$lang['nick_title'] = 'Nickname Générateur';
|
|||
|
$lang['nick_description'] = 'Ce Nickname générateur fournit';
|
|||
|
$lang['nick_description2'] = 'diverses options - il y a certainement quelque chose pour vous ici!';
|
|||
|
$lang['nick_generate'] = 'Générer';
|
|||
|
$lang['nick_copy'] = 'Copier';
|
|||
|
$lang['nick_beginning'] = 'Le début du nom';
|
|||
|
$lang['nick_ending'] = 'La fin du nom';
|
|||
|
$lang['nick_history'] = 'Cours';
|
|||
|
|
|||
|
// Minecraft Player-Tools
|
|||
|
$lang['players_site_title'] = 'Minecraft Outils pour Joueurs';
|
|||
|
$lang['players_title'] = 'Minecraft Outils pour Joueurs';
|
|||
|
$lang['players_description'] = 'Découvrez le joueurs UUID et ses statistiques du serveur & de charger différents skins, avatars et renders vers le bas - tout seulement par le nom du joueur!';
|
|||
|
$lang['player_name'] = 'Minecraft Nom';
|
|||
|
$lang['players_search'] = 'On y va';
|
|||
|
$lang['player_skin'] = 'Download skin';
|
|||
|
$lang['player_skin_render'] = 'Download skin render';
|
|||
|
$lang['player_head_render'] = 'Download tête render';
|
|||
|
$lang['player_avatar'] = 'Avatar downloads';
|
|||
|
$lang['player_history_name'] = 'Nom';
|
|||
|
$lang['player_history_change'] = 'Date de modification';
|
|||
|
$lang['player_original_name'] = 'Nom d\'origine';
|
|||
|
$lang['player_on_server'] = 'sur:';
|
|||
|
|
|||
|
// Minecraft Server-Tools
|
|||
|
$lang['servers_site_title'] = 'Minecraft Outils pour Serveurs';
|
|||
|
$lang['servers_title'] = 'Minecraft Outils pour Serveurs';
|
|||
|
$lang['servers_description'] = 'Obtenez le nombre de joueurs, la version Minecraft, la ping et plus - suelement sur un serveur IP!';
|
|||
|
$lang['servers_ip'] = 'Serveur IP';
|
|||
|
$lang['servers_search'] = 'On y va';
|
|||
|
$lang['servers_error'] = 'Erreur';
|
|||
|
$lang['servers_error_ip'] = 'IP incorrectement';
|
|||
|
$lang['servers_player'] = 'Joueurs';
|
|||
|
$lang['servers_version'] = 'Version';
|
|||
|
$lang['servers_ping'] = 'Ping';
|
|||
|
|
|||
|
// Twitch Tools
|
|||
|
$lang['twitch_site_title'] = 'Twitch Outils';
|
|||
|
$lang['twitch_title'] = 'Twitch Outils';
|
|||
|
$lang['twitch_description'] = 'Entrez un nom de canal de Twitch et obtenir diverses statistiques et des informations sur ce canal!';
|
|||
|
$lang['twitch_channel'] = 'Twitch canal';
|
|||
|
$lang['twitch_search'] = 'Chercher';
|
|||
|
$lang['twitch_name'] = 'Nom';
|
|||
|
$lang['twitch_id'] = 'Account ID';
|
|||
|
$lang['twitch_follower'] = 'Suiveurs';
|
|||
|
$lang['twitch_views'] = 'Vues';
|
|||
|
$lang['twitch_partner'] = 'Twitch partenaire?';
|
|||
|
$lang['twitch_youth'] = 'Famille Coffre-fort?';
|
|||
|
$lang['twitch_language'] = 'Langue';
|
|||
|
$lang['twitch_yes'] = 'Oui';
|
|||
|
$lang['twitch_no'] = 'Non';
|
|||
|
$lang['twitch_created'] = 'Date de création';
|
|||
|
$lang['twitch_changed'] = 'Date de modification';
|
|||
|
$lang['twitch_stream'] = 'Stream information';
|
|||
|
$lang['twitch_stream_title'] = 'Titre';
|
|||
|
$lang['twitch_stream_game'] = 'Jeu';
|
|||
|
$lang['twitch_stream_language'] = 'Langue';
|
|||
|
$lang['twitch_url'] = 'URL';
|
|||
|
$lang['twitch_time'] = 'd-m-Y \à H:i \h\e\u\r\e\s';
|
|||
|
$lang['twitch_media'] = 'Médias';
|
|||
|
$lang['twitch_livestream'] = 'Live stream';
|
|||
|
|
|||
|
// YouTube Downloader
|
|||
|
$lang['ytdl_site_title'] = 'YouTube Vidéo Downloader';
|
|||
|
$lang['ytdl_title'] = 'YouTube Vidéo Downloader';
|
|||
|
$lang['ytdl_description'] = 'Télécharger simple et gratuit vidéos YoutTube!';
|
|||
|
$lang['ytdl_videoid'] = 'Vidéo ID';
|
|||
|
$lang['ytdl_download'] = 'Download';
|
|||
|
$lang['ytdl_help'] = 'Donnez une YouTube vidéo ID (dans l\'URL après ?v=). Par example: <br>https://www.youtube.com/watch?v=<code>-5h586HfAu8</code>';
|
|||
|
$lang['ytdl_close'] = 'Fermeture';
|
|||
|
$lang['ytdl_error'] = 'Erreur: ';
|
|||
|
$lang['ytdl_errors'] = ['', 'Il n\'y avait pas un YouTube vidéo ID transmis!', 'URL incorrectement!', 'Erreur dans le YouTube vidéo ID!'];
|
|||
|
$lang['ytdl_language'] = 'fr_FR';
|
|||
|
$lang['ytdl_views'] = 'Vues';
|
|||
|
$lang['ytdl_length'] = 'Longueur';
|
|||
|
$lang['ytdl_minutes'] = 'Minutes';
|
|||
|
$lang['ytdl_author'] = 'de';
|
|||
|
$lang['ytdl_watch'] = 'Voir la vidéo';
|
|||
|
$lang['ytdl_error_no_downloads'] = 'Il pourrait y avoir aucun téléchargement formats trouvés. L\'ID vidéo est correcte?';
|
|||
|
$lang['ytdl_available_formats'] = 'Formats disponibles pour cette vidéo';
|
|||
|
$lang['ytdl_format'] = 'Format';
|
|||
|
$lang['ytdl_quality'] = 'Qualité';
|
|||
|
$lang['ytdl_size'] = 'Taille';
|
|||
|
$lang['ytdl_download_link'] = 'Download';
|
|||
|
$lang['ytdl_available_until'] = 'Disponible';
|
|||
|
$lang['ytdl_not_related_youtube'] = 'Le YouTube Video Downloader est pas affilié à YouTube Inc.';
|
|||
|
$lang['ytdl_no_haftung'] = 'L\'opérateur décline toute responsabilité pour l\'utilisation de ce service.';
|
|||
|
|
|||
|
// CSGO stats
|
|||
|
$lang['csgo_navbar'] = 'CS:GO Stats';
|
|||
|
$lang['csgo_kills'] = 'Kills';
|
|||
|
$lang['csgo_time_played'] = 'Temps joué';
|
|||
|
$lang['csgo_accuracy'] = 'Exatitude';
|
|||
|
$lang['csgo_headshots'] = 'Headshots';
|
|||
|
$lang['csgo_mvp'] = 'MVPs';
|
|||
|
$lang['csgo_wins'] = 'Victoires';
|
|||
|
$lang['csgo_bombs_planted'] = 'Bombes plantées';
|
|||
|
$lang['csgo_hostages_rescued'] = 'Otages secourus';
|
|||
|
$lang['csgo_last_match'] = 'Le dernier match';
|
|||
|
$lang['csgo_rounds'] = 'Tours';
|
|||
|
$lang['csgo_bestweapon'] = 'Meilleure arme';
|
|||
|
$lang['csgo_kd'] = 'K/D';
|
|||
|
$lang['csgo_deaths'] = 'Des morts';
|
|||
|
$lang['csgo_damage'] = 'Dommage';
|
|||
|
$lang['csgo_money_spent'] = 'Argent dépensé';
|
|||
|
$lang['csgo_money_earned'] = 'L\'argent gagné';
|
|||
|
$lang['csgo_dominations'] = 'Dominations';
|
|||
|
$lang['csgo_revenges'] = 'Vengeances';
|
|||
|
$lang['csgo_score'] = 'Score';
|
|||
|
$lang['csgo_favweapons'] = 'Armes Favorite';
|
|||
|
$lang['csgo_favmaps'] = 'Cartes favorites';
|
|||
|
$lang['csgo_other_stats'] = 'D\'autres États';
|
|||
|
$lang['csgo_total_score'] = 'Score total';
|
|||
|
$lang['csgo_shots'] = 'Coups';
|
|||
|
$lang['csgo_hits'] = 'Succès';
|
|||
|
$lang['csgo_headshot_percent'] = 'Taux headshot';
|
|||
|
$lang['csgo_matches'] = 'Matchs';
|
|||
|
$lang['csgo_matches_won'] = 'Matchs gagnés';
|
|||
|
$lang['csgo_rounds_won'] = 'Rounds gagnés';
|
|||
|
$lang['csgo_pistol_rounds_won'] = 'Tours de pistolet gagné';
|
|||
|
$lang['csgo_bombs_defused'] = 'Bombes désamorcées';
|
|||
|
$lang['csgo_enemies_blinded_killed'] = 'Ennemis Flash tués';
|
|||
|
$lang['csgo_knife_fights_won'] = 'Combats au couteau gagné';
|
|||
|
$lang['csgo_aiming_snipers_killed'] = 'Snipers aiming tués';
|
|||
|
$lang['csgo_taser_kills'] = 'Taser kills';
|
|||
|
$lang['csgo_kills_enemy_weapon'] = 'Kills ennemi arme';
|
|||
|
$lang['csgo_weapon_spent'] = 'Armes dépensés';
|
|||
|
$lang['csgo_windows_broken'] = 'Fenêtres brisées';
|
|||
|
$lang['csgo_comma'] = ',';
|
|||
|
$lang['csgo_point'] = '.';
|
|||
|
$lang['csgo_2'] = 'Victoire';
|
|||
|
$lang['csgo_1'] = 'Cravate';
|
|||
|
$lang['csgo_0'] = 'Défaite';
|