Skip to content

Commit

Permalink
Other broken translation key
Browse files Browse the repository at this point in the history
  • Loading branch information
skullysmods committed Sep 5, 2024
1 parent 44842d5 commit ad710ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/renderer/actions/format.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ export async function convertVaultToFormat(
const converted = await ipcRenderer.invoke("convert-vault-format", sourceID, format);
if (!converted) {
logWarn(`Unable to convert vault forrmat: ${sourceID} (${format})`);
showWarning(t("vault-format-upgrade-failed"));
showWarning(t("notification.error.vault-format-upgrade-failed"));
return;
}
} catch (err) {
showError(
`${t("vault-format-upgrade-failed")}: ${
`${t("notification.error.vault-format-upgrade-failed")}: ${
err?.message ?? t("notification.error.unknown-error")
}`
);
Expand Down

0 comments on commit ad710ac

Please sign in to comment.