Merge pull request #3705 from Yokayo/staging

Update ru-ru translation
This commit is contained in:
Cohee
2025-03-18 00:01:15 +02:00
committed by GitHub
17 changed files with 206 additions and 66 deletions

View File

@ -3478,7 +3478,7 @@ async function getStatusOpen() {
let status;
if ('ai' in window) {
status = 'Valid';
status = t`Valid`;
}
else {
showWindowExtensionError();
@ -3527,7 +3527,7 @@ async function getStatusOpen() {
const canBypass = (oai_settings.chat_completion_source === chat_completion_sources.OPENAI && oai_settings.bypass_status_check) || oai_settings.chat_completion_source === chat_completion_sources.CUSTOM;
if (canBypass) {
setOnlineStatus('Status check bypassed');
setOnlineStatus(t`Status check bypassed`);
}
try {
@ -3549,7 +3549,7 @@ async function getStatusOpen() {
saveModelList(responseData.data);
}
if (!('error' in responseData)) {
setOnlineStatus('Valid');
setOnlineStatus(t`Valid`);
}
} catch (error) {
console.error(error);