Skip to content
This repository was archived by the owner on Oct 20, 2025. It is now read-only.

Commit e8e692f

Browse files
fix(settings): change default language from Spanish to English
1 parent 6c3243a commit e8e692f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/main/stores/settings-store.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import { Conf } from "electron-conf"
2-
import type { AppSettings } from "@shared/types/settings"
3-
import { getAppDataPath } from "@main/services"
41
import path from "node:path"
2+
import { getAppDataPath } from "@main/services"
3+
import type { AppSettings } from "@shared/types/settings"
4+
import { Conf } from "electron-conf"
55

66
const appDataPath = getAppDataPath()
77
const defaultInstancesDir = path.join(appDataPath, "instances")
@@ -14,7 +14,7 @@ const appStore = new Conf<AppSettings>({
1414
notifications: true,
1515
autoUpdate: true,
1616
minimizeToTray: true,
17-
language: "es",
17+
language: "en",
1818
steamcmdPath: "",
1919
lastSyncDate: null,
2020
setupComplete: false,

src/renderer/src/stores/settings-store.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const defaultSettings: AppSettings = {
77
gameDirectory: "",
88
notifications: true,
99
autoUpdate: true,
10-
language: "es",
10+
language: "en",
1111
steamcmdPath: "",
1212
lastSyncDate: null,
1313
setupComplete: false,

0 commit comments

Comments
 (0)