localization update

This commit is contained in:
Natsumi
2023-02-17 01:14:49 +13:00
parent 44e936c463
commit e531a88f3c
3 changed files with 15 additions and 4 deletions

View File

@@ -412,7 +412,11 @@ speechSynthesis.getVoices();
if (response.status === 200) {
this.$throw(0, 'Invalid JSON response');
}
if (response.status === 504 || response.status === 502) {
if (
response.status === 504 ||
response.status === 502 ||
response.status === 429
) {
// ignore expected API errors
throw new Error(
`${response.status}: ${response.data} ${endpoint}`
@@ -9337,7 +9341,7 @@ speechSynthesis.getVoices();
}
break;
case 'screenshot':
if (!this.isGameRunning || !this.screenshotHelper) {
if (!this.screenshotHelper) {
break;
}
// var entry = {
@@ -9358,8 +9362,8 @@ speechSynthesis.getVoices();
displayName: API.currentUser.displayName
},
world: {
id: location.worldId,
name: this.lastLocation.name,
id: location.worldId,
instanceId: this.lastLocation.location
},
players: []

View File

@@ -163,6 +163,7 @@
"past_display_names": "이전 닉네임",
"config_json": "설정 JSON",
"current_user_json": "현재 유저 JSON",
"feedback": "피드백",
"refresh_tooltip": "새로고침",
"clear_results_tooltip": "비우기"
},
@@ -1064,6 +1065,7 @@
"otp": {
"header": "2단계 인증",
"description": "복구 코드 중 하나를 입력하세요",
"resend": "이메일 재전송",
"use_otp": "TOTP 사용",
"verify": "확인",
"input_placeholder": "코드",

View File

@@ -163,6 +163,7 @@
"past_display_names": "過去顯示名稱",
"config_json": "JSON 資料",
"current_user_json": "目前玩家的 JSON 資料",
"feedback": "反饋",
"refresh_tooltip": "重新整理",
"clear_results_tooltip": "清除結果"
},
@@ -731,6 +732,9 @@
"friends_only": "好友",
"load_more": "載入更多……"
},
"gallery": {
"header": "畫廊"
},
"json": {
"header": "原始資料"
}
@@ -1061,6 +1065,7 @@
"otp": {
"header": "雙重認證",
"description": "輸入你儲存的其中一個備份驗證碼",
"resend": "重新傳送驗證碼",
"use_otp": "使用驗證碼",
"verify": "驗證",
"input_placeholder": "備份驗證碼",
@@ -1213,7 +1218,7 @@
},
"change_table_size": {
"header": "最大表格大小",
"description": "較大的資料表大小可能會影響內存用量和預設1000",
"description": "限制從資料庫讀取紀錄到介面的數量,較大的資料表大小可能會影響內存用量和預設1000",
"cancel": "取消",
"save": "儲存",
"input_error": "請輸入有效的行數"