File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 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}" ,
Original file line number Diff line number Diff line change 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}" ,
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" ,
Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments