8
6

More than 1 year has passed since last update.

tauriのmsiを日本語にする方法

Posted at

Tauriで生成したWindowsのインストーラを日本語にしたい

結論

bundle.windows.wix.languageにja-JPと入れる。

{
  ...いろいろ
    "bundle": {
      "active": true,
      "icon": [
        "icons/32x32.png",
        "icons/128x128.png",
        "icons/128x128@2x.png",
        "icons/icon.icns",
        "icons/icon.ico"
      ],
      "identifier": "s.tauri.dev",
      "targets": "all",
      "windows": {
        "wix": {
          "language": "ja-JP" //←こんな感じ
        }
      }
    }
  }
}
8
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
6