pull/119/head
Azalea 2025-03-01 01:31:46 -05:00
parent 150b9915ad
commit 3a282d29b2
2 changed files with 8 additions and 2 deletions

View File

@ -230,7 +230,7 @@ export const EN_REF_USERBOX = {
} }
export const EN_REF_MAI_PHOTO = { export const EN_REF_MAI_PHOTO = {
'maiphoto.title': 'Mai Memorial Photo', 'maiphoto.title': 'Mai Memorial Photo Gallery',
'maiphoto.url_warning': 'Note: If you want to share a photo with your friend, please save the photo. Do not copy image URL because the URL contains sensitive information.', 'maiphoto.url_warning': 'Note: If you want to share a photo with your friend, please save the photo. Do not copy image URL because the URL contains sensitive information.',
'maiphoto.none': 'No photo found. You can upload photo by clicking upload at the end of each game session.', 'maiphoto.none': 'No photo found. You can upload photo by clicking upload at the end of each game session.',
} }

View File

@ -2,6 +2,7 @@ import {
EN_REF_GENERAL, EN_REF_GENERAL,
EN_REF_HOME, EN_REF_HOME,
EN_REF_LEADERBOARD, EN_REF_LEADERBOARD,
EN_REF_MAI_PHOTO,
EN_REF_SETTINGS, EN_REF_SETTINGS,
EN_REF_USER, EN_REF_USER,
EN_REF_USERBOX, EN_REF_USERBOX,
@ -234,6 +235,11 @@ export const zhUserbox: typeof EN_REF_USERBOX = {
'userbox.new.error.invalidUrl': '输入的 URL 无效。' 'userbox.new.error.invalidUrl': '输入的 URL 无效。'
}; };
export const zhMaiPhoto: typeof EN_REF_MAI_PHOTO = {
'maiphoto.title': 'Mai 纪念照片库',
'maiphoto.url_warning': '注意:如果想与朋友分享图片的话,请先保存照片再发出去。不要复制图片 URL因为 URL 中包含 AquaDX 账号信息。',
'maiphoto.none': '还没有图片哦~ 可以在每次游戏结束的时候点击上传来上传照片。',
}
export const ZH = { ...zhUser, ...zhWelcome, ...zhGeneral, export const ZH = { ...zhUser, ...zhWelcome, ...zhGeneral,
...zhLeaderboard, ...zhHome, ...zhSettings, ...zhUserbox } ...zhLeaderboard, ...zhHome, ...zhSettings, ...zhUserbox, ...zhMaiPhoto }