From fa3b4b64cba1d3f73238c8abca289cd338c41b6d Mon Sep 17 00:00:00 2001 From: mkz212 <82271669+mkz212@users.noreply.github.com> Date: Wed, 15 Nov 2023 19:15:22 +0100 Subject: [PATCH 1/4] Language translations (#1701) --- ui/src/i18n/en.json | 2 +- ui/src/i18n/pl.json | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ui/src/i18n/en.json b/ui/src/i18n/en.json index fe05fccf5..5ab6e20a1 100644 --- a/ui/src/i18n/en.json +++ b/ui/src/i18n/en.json @@ -153,7 +153,7 @@ "menu.linux.label_restart_server": "Restart OS", "menu.linux.label_shutdown_server": "Shutdown OS", "menu.linux.label_terminal": "Terminal", - "menu.restart.title": "Restart Options", + "menu.restart.title": "Restart / Shutdown", "menu.tooltip_logout": "Log out", "menu.tooltip_restart": "Restart Homebridge", "menu.tooltip_user_accounts": "User Accounts", diff --git a/ui/src/i18n/pl.json b/ui/src/i18n/pl.json index d6b846b31..a94fdbe4a 100644 --- a/ui/src/i18n/pl.json +++ b/ui/src/i18n/pl.json @@ -78,7 +78,7 @@ "backup.title_scheduled_backups": "Planowanie kopii zapasowych", "child_bridge.label_bridge_connect_to_homekit": "Połącz z HomeKit", "child_bridge.label_bridge_paired": "Mostek sparowany", - "child_bridge.label_bridge_restart_child_bridges": "Uruchom ponownie mostek podrzędny", + "child_bridge.label_bridge_restart_child_bridges": "Zrestartuj mostek", "child_bridge.label_bridge_settings": "Ustawienia mostka", "child_bridge.label_child_bridges": "Mostki podrzędne", "child_bridge.label_child_start": "Uruchom mostek", @@ -152,7 +152,7 @@ "menu.linux.label_restart_server": "Zrestartuj serwer", "menu.linux.label_shutdown_server": "Wyłącz serwer", "menu.linux.label_terminal": "Terminal", - "menu.restart.title": "Restart Options", + "menu.restart.title": "Restart / Wyłącz", "menu.tooltip_logout": "Wyloguj", "menu.tooltip_restart": "Zrestartuj Homebridge", "menu.tooltip_user_accounts": "Użytkownicy", @@ -219,8 +219,8 @@ "plugins.manage.message_uninstall_remove_plugin_config": "Usunąć również konfigurację tej wtyczki?", "plugins.manage.modal_verified_cta": "More Info", "plugins.manage.modal_verified_message": "Homebridge plugins that are marked as verified have been reviewed by the Homebridge project team to ensure they meet various requirements that encourage best practices and a trouble-free user experience.", - "plugins.manage.modal_verified_title": "Verified Plugins", - "plugins.manage.plugin_logs": "View Plugin Logs", + "plugins.manage.modal_verified_title": "Zweryfikowane wtyczki", + "plugins.manage.plugin_logs": "Logi wtyczki", "plugins.node_update.are_you_sure_you_want_to_update": "Jesteś pewny, że chcesz zaktualizować {{ pluginName }}?", "plugins.node_update.homebridge_node_version_too_low": "Homebridge v{{latestVersion}} wymaga Node.js w wersji {{minVersion}} lub nowszej. Aktualnie używasz Node.js w wersji {{ installedVersion }}.", "plugins.node_update.node_version_too_low": "Wtyczka {{ pluginName }} powinna być instalowana używając Node.js w wersji {{ minVersion }} lub nowszej. Aktualnie używasz Node.js w wersji {{ installedVersion }}.", From 5b1a911a6e69923100113105e54b48fa7bfc7a22 Mon Sep 17 00:00:00 2001 From: mkz212 <82271669+mkz212@users.noreply.github.com> Date: Wed, 15 Nov 2023 19:17:35 +0100 Subject: [PATCH 2/4] Accessories - Long click modal on Lightbulb and Window Covering (#1719) --- .../app/core/accessories/types/lightbulb/lightbulb.component.ts | 2 +- .../accessories/types/lightbulb/lightbulb.manage.component.html | 2 +- .../types/windowcovering/windowcovering.component.ts | 2 +- .../types/windowcovering/windowcovering.manage.component.html | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ui/src/app/core/accessories/types/lightbulb/lightbulb.component.ts b/ui/src/app/core/accessories/types/lightbulb/lightbulb.component.ts index 1d59eecea..a3488e03b 100644 --- a/ui/src/app/core/accessories/types/lightbulb/lightbulb.component.ts +++ b/ui/src/app/core/accessories/types/lightbulb/lightbulb.component.ts @@ -29,7 +29,7 @@ export class LightbulbComponent implements OnInit { onLongClick() { if ('Brightness' in this.service.values) { const ref = this.modalService.open(LightbulbManageComponent, { - size: 'sm', + size: 'md', }); ref.componentInstance.service = this.service; } diff --git a/ui/src/app/core/accessories/types/lightbulb/lightbulb.manage.component.html b/ui/src/app/core/accessories/types/lightbulb/lightbulb.manage.component.html index 999cd0836..c3d391da6 100644 --- a/ui/src/app/core/accessories/types/lightbulb/lightbulb.manage.component.html +++ b/ui/src/app/core/accessories/types/lightbulb/lightbulb.manage.component.html @@ -6,7 +6,7 @@