Move foreign translations to external files

This commit is contained in:
redphx 2024-05-22 18:10:53 +07:00
parent a87b26b077
commit c4ad50906e
6 changed files with 308 additions and 3369 deletions

View File

@ -1,11 +1,10 @@
import { STATES } from "@utils/global";
import { NATIVE_FETCH, STATES } from "@utils/global";
import { escapeHtml } from "@utils/html";
import { Toast } from "@utils/toast";
import { BxEvent } from "@utils/bx-event";
import { BX_FLAGS } from "@utils/bx-flags";
import { getPref, PrefKey } from "@utils/preferences";
import { t } from "@utils/translation";
import { NATIVE_FETCH } from "@utils/network";
import { BxLogger } from "@utils/bx-logger";
const LOG_TAG = 'TouchController';

View File

@ -4,7 +4,7 @@ import { BxIcon } from "@utils/bx-icon";
import { getPreferredServerRegion } from "@utils/region";
import { UserAgent, UserAgentProfile } from "@utils/user-agent";
import { getPref, Preferences, PrefKey, setPref, toPrefElement } from "@utils/preferences";
import { t, refreshCurrentLocale } from "@utils/translation";
import { t, Translations } from "@utils/translation";
import { PatcherCache } from "../patcher";
const SETTINGS_UI = {
@ -181,7 +181,7 @@ export function setupSettingsUi() {
}
}
const onChange = (e: Event) => {
const onChange = async (e: Event) => {
// Clear PatcherCache;
PatcherCache.clear();
@ -193,7 +193,8 @@ export function setupSettingsUi() {
if ((e.target as HTMLElement).id === 'bx_setting_' + PrefKey.BETTER_XCLOUD_LOCALE) {
// Update locale
refreshCurrentLocale();
Translations.refreshCurrentLocale();
await Translations.updateTranslations();
$btnReload.textContent = t('settings-reloading');
$btnReload.click();

View File

@ -5,6 +5,8 @@ export const SCRIPT_HOME = 'https://github.com/redphx/better-xcloud';
export const AppInterface = window.AppInterface;
export const NATIVE_FETCH = window.fetch;
UserAgent.init();
const userAgent = window.navigator.userAgent.toLowerCase();

View File

@ -5,14 +5,12 @@ import { PrefKey, getPref } from "@utils/preferences";
import { RemotePlay } from "@modules/remote-play";
import { StreamBadges } from "@modules/stream/stream-badges";
import { TouchController } from "@modules/touch-controller";
import { STATES } from "@utils/global";
import { NATIVE_FETCH, STATES } from "@utils/global";
import { getPreferredServerRegion } from "@utils/region";
import { GamePassCloudGallery } from "./gamepass-gallery";
import { InputType } from "./bx-exposed";
import { UserAgent } from "./user-agent";
export const NATIVE_FETCH = window.fetch;
enum RequestType {
XCLOUD = 'xcloud',
XHOME = 'xhome',

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,7 @@
import { PrefKey, getPref, setPref } from "@utils/preferences";
import { AppInterface, SCRIPT_VERSION } from "@utils/global";
import { UserAgent } from "@utils/user-agent";
import { Translations } from "./translation";
/**
* Check for update
@ -25,6 +26,9 @@ export function checkForUpdate() {
setPref(PrefKey.LATEST_VERSION, json.tag_name.substring(1));
setPref(PrefKey.CURRENT_VERSION, SCRIPT_VERSION);
});
// Update translations
Translations.updateTranslations(true);
}