diff --git a/web/public/index.html b/web/public/index.html
index 1e9fa5d..c02874b 100644
--- a/web/public/index.html
+++ b/web/public/index.html
@@ -50,7 +50,10 @@
-
+
namae
diff --git a/web/public/locales/en/translation.json b/web/public/locales/en/translation.json
index 419bed0..73e74b3 100644
--- a/web/public/locales/en/translation.json
+++ b/web/public/locales/en/translation.json
@@ -27,7 +27,8 @@
"ocaml": "OCaml"
},
"countryCode": "us",
- "try": "suggestions",
+ "try": "How about this?",
"showMore": "show more",
- "noResult": "No Result"
+ "noResult": "No Result",
+ "exampleQueries": "Try these queries"
}
diff --git a/web/public/locales/ja/translation.json b/web/public/locales/ja/translation.json
index e59b040..97f0e0f 100644
--- a/web/public/locales/ja/translation.json
+++ b/web/public/locales/ja/translation.json
@@ -27,7 +27,8 @@
"ocaml": "OCaml"
},
"countryCode": "jp",
- "try": "全自動名前考え機",
+ "try": "これはどう?",
"showMore": "もっと見る",
- "noResult": "該当なし"
+ "noResult": "該当なし",
+ "exampleQueries": "これらのワードでお試しください"
}
diff --git a/web/src/components/Form.tsx b/web/src/components/Form.tsx
index b237e7f..4daa2bc 100644
--- a/web/src/components/Form.tsx
+++ b/web/src/components/Form.tsx
@@ -63,7 +63,7 @@ const Form: React.FC<{
return (
- namæ
+ namae
{
{t('description')}
- Try these queries
+ {t('exampleQueries')}
{queries.map((query) => (
@@ -229,5 +229,10 @@ const ListButton = styled.div`
padding: 10px;
border: 1px solid black;
border-radius: 2px;
+
+ &:hover {
+ color: white;
+ background: black;
+ }
}
`;
diff --git a/web/src/util/i18n.ts b/web/src/util/i18n.ts
index bee79b8..9d70951 100644
--- a/web/src/util/i18n.ts
+++ b/web/src/util/i18n.ts
@@ -14,7 +14,7 @@ i18n
backends: [LocalStorageBackend, XHR],
backendOptions: [
{
- versions: {en: '1.7', ja: '1.7'},
+ versions: {en: '1.8', ja: '1.8'},
},
],
},