fix(i18n): Review-Findings beheben

- Version in newtab.html auf 2.0.0 aktualisieren
- dialog.js OK-Fallback auf t('dialog.ok') umstellen
- Duplikat-Keys widgets.minimize/close entfernen (widget.* wird genutzt)
This commit is contained in:
2026-03-22 18:22:55 +01:00
parent 1bbdbdef1c
commit 7900962c5a
3 changed files with 3 additions and 11 deletions
+2 -2
View File
@@ -127,7 +127,7 @@ const HellionDialog = {
return this._show({
message,
title: opts.title || t('dialog.default_title'),
confirmText: opts.confirmText || 'OK',
confirmText: opts.confirmText || t('dialog.ok'),
cancelText: '',
type: opts.type || 'info',
isConfirm: false
@@ -145,7 +145,7 @@ const HellionDialog = {
return this._show({
message,
title: opts.title || t('dialog.confirm_title'),
confirmText: opts.confirmText || 'OK',
confirmText: opts.confirmText || t('dialog.ok'),
cancelText: opts.cancelText || t('dialog.cancel'),
type: opts.type || 'info',
isConfirm: true