From 762a400915c2f634bdbcca36d617bea8cca32149 Mon Sep 17 00:00:00 2001 From: Nemu-x <112378891+Nemu-x@users.noreply.github.com> Date: Fri, 27 Mar 2026 09:01:27 +0300 Subject: [PATCH] feat(installer): add Russian language to Windows installer (#6643) * feat(installer): add Russian language to Windows installer * feat(installer): add Russian to WebView2 installer configs --- src-tauri/tauri.windows.conf.json | 2 +- src-tauri/webview2.arm64.json | 2 +- src-tauri/webview2.x64.json | 2 +- src-tauri/webview2.x86.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src-tauri/tauri.windows.conf.json b/src-tauri/tauri.windows.conf.json index 5e73474fb..351939c55 100644 --- a/src-tauri/tauri.windows.conf.json +++ b/src-tauri/tauri.windows.conf.json @@ -14,7 +14,7 @@ "nsis": { "displayLanguageSelector": true, "installerIcon": "icons/icon.ico", - "languages": ["SimpChinese", "English"], + "languages": ["SimpChinese", "English", "Russian"], "installMode": "perMachine", "template": "./packages/windows/installer.nsi" } diff --git a/src-tauri/webview2.arm64.json b/src-tauri/webview2.arm64.json index 2e8811761..8d5793879 100644 --- a/src-tauri/webview2.arm64.json +++ b/src-tauri/webview2.arm64.json @@ -14,7 +14,7 @@ "nsis": { "displayLanguageSelector": true, "installerIcon": "icons/icon.ico", - "languages": ["SimpChinese", "English"], + "languages": ["SimpChinese", "English", "Russian"], "installMode": "perMachine", "template": "./packages/windows/installer.nsi" } diff --git a/src-tauri/webview2.x64.json b/src-tauri/webview2.x64.json index d3dccd78c..7a3e6b908 100644 --- a/src-tauri/webview2.x64.json +++ b/src-tauri/webview2.x64.json @@ -14,7 +14,7 @@ "nsis": { "displayLanguageSelector": true, "installerIcon": "icons/icon.ico", - "languages": ["SimpChinese", "English"], + "languages": ["SimpChinese", "English", "Russian"], "installMode": "perMachine", "template": "./packages/windows/installer.nsi" } diff --git a/src-tauri/webview2.x86.json b/src-tauri/webview2.x86.json index 8704931fb..6ac9164d3 100644 --- a/src-tauri/webview2.x86.json +++ b/src-tauri/webview2.x86.json @@ -14,7 +14,7 @@ "nsis": { "displayLanguageSelector": true, "installerIcon": "icons/icon.ico", - "languages": ["SimpChinese", "English"], + "languages": ["SimpChinese", "English", "Russian"], "installMode": "perMachine", "template": "./packages/windows/installer.nsi" }