feat: update i18n

This commit is contained in:
Zamitto
2024-07-05 12:18:37 -03:00
parent b58330ed35
commit c24523e8e6
3 changed files with 8 additions and 7 deletions

View File

@@ -1,7 +1,7 @@
import { Notification, nativeImage } from "electron";
import { t } from "i18next";
import { parseICO } from "icojs";
import trayIcon from "@resources/tray-icon.png?asset";
import { Game } from "@main/entity";
import { gameRepository, userPreferencesRepository } from "@main/repository";
@@ -69,11 +69,12 @@ export const publishNewRepacksNotifications = async (count: number) => {
export const publishNotificationUpdateReadyToInstall = async () => {
new Notification({
title: t("new_version_available", {
title: t("new_update_available", {
ns: "notifications",
}),
body: t("restart_to_install_new_version", {
body: t("restart_to_install_update", {
ns: "notifications",
}),
icon: trayIcon,
}).show();
};