{#if start === 'menu'}
diff --git a/src/frontend/src/lib/i18n/en.json b/src/frontend/src/lib/i18n/en.json
index c048cf5ed..74f94980f 100644
--- a/src/frontend/src/lib/i18n/en.json
+++ b/src/frontend/src/lib/i18n/en.json
@@ -126,7 +126,8 @@
"environment": "Environment",
"tags": "Tags",
"edit_details": "Edit details",
- "tags_placeholder": "Comma-separated or one per line. Leave empty for no tags."
+ "tags_placeholder": "Comma-separated or one per line. Leave empty for no tags.",
+ "maintenance": "Juno is in maintenance and not actively developed anymore."
},
"canisters": {
"top_up": "Top-up",
diff --git a/src/frontend/src/lib/i18n/zh-cn.json b/src/frontend/src/lib/i18n/zh-cn.json
index dd466002c..0ab1b360f 100644
--- a/src/frontend/src/lib/i18n/zh-cn.json
+++ b/src/frontend/src/lib/i18n/zh-cn.json
@@ -127,7 +127,8 @@
"environment": "运行环境",
"tags": "标签",
"edit_details": "编辑详情",
- "tags_placeholder": "逗号分隔或每行一个,留空则不添加标签。"
+ "tags_placeholder": "逗号分隔或每行一个,留空则不添加标签。",
+ "maintenance": "Juno 目前处于维护模式,不再积极开发。"
},
"canisters": {
"top_up": "充值",
diff --git a/src/frontend/src/lib/types/i18n.d.ts b/src/frontend/src/lib/types/i18n.d.ts
index b9d9abed9..7b53614f9 100644
--- a/src/frontend/src/lib/types/i18n.d.ts
+++ b/src/frontend/src/lib/types/i18n.d.ts
@@ -130,6 +130,7 @@ interface I18nCore {
tags: string;
edit_details: string;
tags_placeholder: string;
+ maintenance: string;
}
interface I18nCanisters {