mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-18 22:33:50 +02:00
localization update
This commit is contained in:
@@ -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: []
|
||||
|
||||
@@ -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": "코드",
|
||||
|
||||
@@ -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": "請輸入有效的行數"
|
||||
|
||||
Reference in New Issue
Block a user