mirror of
https://github.com/uetchy/namae.git
synced 2025-03-16 20:20:38 +09:00
Add French language (#123)
* Add French language * Add it to the footer * fix: bump translation version Co-authored-by: Yasuaki Uechi <y@uechi.io>
This commit is contained in:
parent
e42fac28a5
commit
bc3b3241a9
52
public/locales/fr/translation.json
Normal file
52
public/locales/fr/translation.json
Normal file
@ -0,0 +1,52 @@
|
||||
{
|
||||
"title": "Trouvez un nom original pour votre nouvelle application",
|
||||
"description": "Vérifiez immédiatement la disponibilité de vos nouvelles idées de noms d'applications dans les principaux registres.",
|
||||
"placeholder": "rechercher",
|
||||
"providers": {
|
||||
"domains": "Domaines",
|
||||
"github": "Organisation GitHub",
|
||||
"gitlab": "GitLab",
|
||||
"npm": "npm",
|
||||
"pypi": "PyPI",
|
||||
"rubygems": "RubyGems",
|
||||
"rust": "Rust",
|
||||
"homebrew": "Homebrew",
|
||||
"linux": "Linux",
|
||||
"instagram": "Instagram",
|
||||
"twitter": "Twitter",
|
||||
"slack": "Slack",
|
||||
"s3": "AWS S3",
|
||||
"jsorg": "js.org",
|
||||
"githubSearch": "Dépôt GitHub",
|
||||
"appStore": "App Store",
|
||||
"google": "Recherche Google",
|
||||
"spectrum": "Spectrum",
|
||||
"heroku": "Heroku",
|
||||
"now": "Vercel",
|
||||
"netlify": "Netlify",
|
||||
"nta": "Company (JP)",
|
||||
"ocaml": "OCaml",
|
||||
"firebase": "Firebase"
|
||||
},
|
||||
"uniqueness": {
|
||||
"high": "Plutôt unique",
|
||||
"moderate": "Modérément unique",
|
||||
"low": "Typique",
|
||||
"description": "L'UNIQ indique à quel point le nom est unique (0 à 100)"
|
||||
},
|
||||
"countryCode": "fr",
|
||||
"try": "Que pensez-vous de cela ?",
|
||||
"showMore": "afficher plus",
|
||||
"noResult": "Pas de résultat",
|
||||
"gettingStarted": "Pour commencer",
|
||||
"gettingStartedWithExample": "Essayez avec namae",
|
||||
"pressEnterToSearch": "Appuyez sur la touche Entrée pour effectuer une recherche",
|
||||
"available": "Disponible",
|
||||
"unavailable": "Indisponible",
|
||||
"language": "Langue",
|
||||
"community": "Communauté",
|
||||
"about": "À propos",
|
||||
"contributors": "Contributeurs",
|
||||
"issues": "Issues",
|
||||
"blog": "Article de Blog"
|
||||
}
|
@ -32,6 +32,9 @@ const Languages = () => {
|
||||
<li>
|
||||
<a href="/?lng=de">Deutsch</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/?lng=fr">Français</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/?lng=ja">日本語</a>
|
||||
</li>
|
||||
|
@ -5,7 +5,7 @@ import XHR from 'i18next-xhr-backend';
|
||||
import LanguageDetector from 'i18next-browser-languagedetector';
|
||||
import { initReactI18next } from 'react-i18next';
|
||||
|
||||
const TRANSLATION_VERSION = '2';
|
||||
const TRANSLATION_VERSION = '3';
|
||||
|
||||
i18n
|
||||
.use(Backend)
|
||||
@ -19,6 +19,7 @@ i18n
|
||||
versions: {
|
||||
en: TRANSLATION_VERSION,
|
||||
de: TRANSLATION_VERSION,
|
||||
fr: TRANSLATION_VERSION,
|
||||
ja: TRANSLATION_VERSION,
|
||||
'zh-Hans': TRANSLATION_VERSION,
|
||||
'zh-Hant': TRANSLATION_VERSION,
|
||||
|
Loading…
x
Reference in New Issue
Block a user