From f80dcda8aa32593386d2a7e43a7aa00d19338d07 Mon Sep 17 00:00:00 2001 From: Yasuaki Uechi Date: Sat, 28 Mar 2020 17:58:11 +0900 Subject: [PATCH] fix: translation --- web/public/locales/ja/translation.json | 14 +++++++------- web/src/util/i18n.ts | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/web/public/locales/ja/translation.json b/web/public/locales/ja/translation.json index 1fcee2e..c67c426 100644 --- a/web/public/locales/ja/translation.json +++ b/web/public/locales/ja/translation.json @@ -1,7 +1,7 @@ { - "title": "唯一無二の名前を見つけましょう", - "description": "namae は、あなたのアプリやライブラリにつける最適な名前を見つけるお手伝いをします。", - "placeholder": "検索", + "title": "唯一無二の名前を見つける", + "description": "namae はあなたのアプリやライブラリに素敵な名前をつけるお手伝いをします。", + "placeholder": "調べる", "providers": { "domains": "ドメイン", "github": "Github Organization", @@ -34,10 +34,10 @@ }, "countryCode": "jp", "try": "これはどう?", - "showMore": "もっと見る", + "showMore": "さらに表示", "noResult": "該当なし", - "gettingStarted": "試してみる", + "gettingStarted": "はじめる", "pressEnterToSearch": "エンターキーで検索", - "available": "取得可能", - "unavailable": "取得済み" + "available": "取得できます", + "unavailable": "取得できません" } diff --git a/web/src/util/i18n.ts b/web/src/util/i18n.ts index f8adbef..c76379f 100644 --- a/web/src/util/i18n.ts +++ b/web/src/util/i18n.ts @@ -5,7 +5,7 @@ import XHR from 'i18next-xhr-backend'; import LanguageDetector from 'i18next-browser-languagedetector'; import {initReactI18next} from 'react-i18next'; -const TRANSLATION_VERSION = '1.14'; +const TRANSLATION_VERSION = '1.15'; i18n .use(Backend)