Skip to content

Commit 2536498

Browse files
committed
ci fixes
1 parent 32c4c85 commit 2536498

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

src/switchcraft/assets/lang/de.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -760,6 +760,7 @@
760760
"msg_assign_success": "Erfolgreich als {intent} zugewiesen!",
761761
"msg_assigning_app": "App wird {group} zugewiesen...",
762762
"msg_check_settings_creds": "Bitte prüfen du Verbindung und Anmeldedaten.",
763+
"msg_copied": "In die Zwischenablage kopiert!",
763764
"msg_creation_done": "FERTIG! Paket erfolgreich erstellt.",
764765
"msg_creation_failed": "Erstellung fehlgeschlagen: {error}",
765766
"msg_deletion_failed": "Löschen fehlgeschlagen: {error}",

src/switchcraft/assets/lang/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -760,6 +760,7 @@
760760
"msg_assign_success": "Successfully assigned as {intent}!",
761761
"msg_assigning_app": "Assigning app to {group}...",
762762
"msg_check_settings_creds": "Please check your connection and credentials.",
763+
"msg_copied": "Copied to clipboard!",
763764
"msg_creation_done": "DONE! Package created successfully.",
764765
"msg_creation_failed": "Creation failed: {error}",
765766
"msg_deletion_failed": "Deletion failed: {error}",
@@ -913,7 +914,6 @@
913914
"publisher": "Publisher",
914915
"quick_actions": "Quick Actions",
915916
"raw_analysis_output": "Detailed Analysis Data",
916-
"no_raw_data": "No detailed data available.",
917917
"read_more": "Read more",
918918
"ready": "Ready",
919919
"received": "Received",

src/switchcraft/gui_modern/views/packaging_wizard_view.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,12 +119,12 @@ def _update_stepper(self, update=True):
119119

120120
def _build_nav_buttons(self):
121121
self.btn_prev = ft.ElevatedButton(
122-
text=i18n.get("btn_back") or "Previous",
122+
content=ft.Text(i18n.get("btn_back") or "Previous"),
123123
on_click=self._safe_event_handler(self._prev_step, "Previous step"),
124124
disabled=True
125125
)
126126
self.btn_next = ft.ElevatedButton(
127-
text=i18n.get("btn_next") or "Next",
127+
content=ft.Text(i18n.get("btn_next") or "Next"),
128128
on_click=self._safe_event_handler(self._next_step, "Next step"),
129129
style=ft.ButtonStyle(bgcolor=ft.Colors.BLUE, color=ft.Colors.WHITE)
130130
)

0 commit comments

Comments
 (0)