diff --git a/components/UpdatesPage/index.tsx b/components/UpdatesPage/index.tsx index ee8d6f7d..7b6460d0 100644 --- a/components/UpdatesPage/index.tsx +++ b/components/UpdatesPage/index.tsx @@ -1,6 +1,5 @@ import React from 'react' -import { useRouter } from 'next/router' import { useTranslation } from 'next-i18next' import ChangelogUnit from '~components/ChangelogUnit' @@ -30,6 +29,9 @@ const UpdatesPage = () => { 'toasts', ], }, + '202302U2': { + updates: 1, + }, } function image( @@ -53,6 +55,47 @@ const UpdatesPage = () => { return (

{common('about.segmented_control.updates')}

+
+
+

{`${updates('events.date', { + year: 2023, + month: 2, + })} ${updates('events.uncap')}`}

+ +
+
+
+

{updates('labels.uncaps.characters')}

+
+ +
+
+
+

{updates('labels.uncaps.weapons')}

+
+ +
+
+
+

{updates('labels.weapons')}

+
+ +
+
+
+
+
+

{updates('labels.updates')}

+
    + {[...Array(versionUpdates['202302U2'])].map((e, i) => ( +
  • + {updates(`versions.2023-02-U2.features.${i}`)} +
  • + ))} +
+
+
+

1.1.0

diff --git a/public/locales/en/common.json b/public/locales/en/common.json index 9a92582a..c5070137 100644 --- a/public/locales/en/common.json +++ b/public/locales/en/common.json @@ -143,8 +143,8 @@ "sephira": "Sephira", "new_world": "New World Foundation", "revenant": "Revenant", - "proving": "Proving Grounds", - "disaster": "Disaster", + "proving": "Proven", + "disaster": "Revans", "illustrious": "Illustrious" }, "recency": { diff --git a/public/locales/en/updates.json b/public/locales/en/updates.json index aca0c47d..a89ca2d4 100644 --- a/public/locales/en/updates.json +++ b/public/locales/en/updates.json @@ -8,7 +8,8 @@ "weapons": "New weapon uncaps", "summons": "New summon uncaps" }, - "features": "New features" + "features": "New features", + "updates": "Other updates" }, "events": { "date": "{{month}}/{{year}}", @@ -17,6 +18,9 @@ "uncap": "Uncap" }, "versions": { + "2023-02-U2": { + "features": ["Added official names for Proven Weapons and Revans Weapons"] + }, "1.1.0": { "features": [ { diff --git a/public/locales/ja/common.json b/public/locales/ja/common.json index 3b7141bf..fb0ef587 100644 --- a/public/locales/ja/common.json +++ b/public/locales/ja/common.json @@ -143,8 +143,8 @@ "sephira": "セフィラン・オールドウェポン", "new_world": "新世界の礎", "revenant": "天星器", - "proving": "ブレイブグラウンド", - "disaster": "災害シリーズ", + "proving": "ブレイブウェポン", + "disaster": "レヴァンスウェポン", "luminous": "ルミナス" }, "recency": { diff --git a/public/locales/ja/updates.json b/public/locales/ja/updates.json index 8b1979a5..37ee75be 100644 --- a/public/locales/ja/updates.json +++ b/public/locales/ja/updates.json @@ -8,7 +8,8 @@ "weapons": "武器の新上限解放", "summons": "召喚石の新上限解放" }, - "features": "新機能" + "features": "新機能", + "updates": "その他の更新" }, "events": { "date": "{{year}}年{{month}}月", @@ -17,6 +18,9 @@ "uncap": "上限解放" }, "versions": { + "2023-02-U2": { + "features": ["ブレイブウェポンとレヴァンスウェポンの公式名を追加"] + }, "1.1.0": { "features": [ {