@@ -968,19 +968,19 @@ pub fn run() {
968968 } ) ;
969969
970970 let show_item =
971- MenuItem :: with_id ( app, "show" , "Mostra Presto" , true , None :: < & str > ) ?;
971+ MenuItem :: with_id ( app, "show" , "Show Presto" , true , None :: < & str > ) ?;
972972 let start_session_item = MenuItem :: with_id (
973973 app,
974974 "start_session" ,
975- "Inizia sessione " ,
975+ "Start Session " ,
976976 false ,
977977 None :: < & str > ,
978978 ) ?;
979- let pause_item = MenuItem :: with_id ( app, "pause" , "Pausa " , false , None :: < & str > ) ?;
979+ let pause_item = MenuItem :: with_id ( app, "pause" , "Pause " , false , None :: < & str > ) ?;
980980 let skip_item =
981- MenuItem :: with_id ( app, "skip" , "Salta sessione " , false , None :: < & str > ) ?;
982- let cancel_item = MenuItem :: with_id ( app, "cancel" , "Annulla " , false , None :: < & str > ) ?;
983- let quit_item = MenuItem :: with_id ( app, "quit" , "Esci " , true , None :: < & str > ) ?;
981+ MenuItem :: with_id ( app, "skip" , "Skip Session " , false , None :: < & str > ) ?;
982+ let cancel_item = MenuItem :: with_id ( app, "cancel" , "Cancel " , false , None :: < & str > ) ?;
983+ let quit_item = MenuItem :: with_id ( app, "quit" , "Quit " , true , None :: < & str > ) ?;
984984 let menu = Menu :: with_items (
985985 app,
986986 & [
@@ -1285,43 +1285,43 @@ async fn update_tray_menu(
12851285 let tray = app. tray_by_id ( "main" ) ;
12861286
12871287 if let Some ( tray) = tray {
1288- let show_item = MenuItem :: with_id ( & app, "show" , "Mostra Presto" , true , None :: < & str > )
1288+ let show_item = MenuItem :: with_id ( & app, "show" , "Show Presto" , true , None :: < & str > )
12891289 . map_err ( |e| format ! ( "Failed to create show item: {}" , e) ) ?;
12901290
1291- // Inizia sessione: abilitato solo se non è in esecuzione
1291+ // Start Session: enabled only if not running
12921292 let start_session_item = MenuItem :: with_id (
12931293 & app,
12941294 "start_session" ,
1295- "Inizia sessione " ,
1295+ "Start Session " ,
12961296 !is_running,
12971297 None :: < & str > ,
12981298 )
12991299 . map_err ( |e| format ! ( "Failed to create start session item: {}" , e) ) ?;
13001300
1301- // Pausa: abilitata solo se è in esecuzione e non in pausa
1301+ // Pause: enabled only if running and not paused
13021302 let pause_item = MenuItem :: with_id (
13031303 & app,
13041304 "pause" ,
1305- "Pausa " ,
1305+ "Pause " ,
13061306 is_running && !is_paused,
13071307 None :: < & str > ,
13081308 )
13091309 . map_err ( |e| format ! ( "Failed to create pause item: {}" , e) ) ?;
13101310
1311- // Skip: abilitato solo se è in esecuzione
1312- let skip_item = MenuItem :: with_id ( & app, "skip" , "Salta sessione " , is_running, None :: < & str > )
1311+ // Skip: enabled only if running
1312+ let skip_item = MenuItem :: with_id ( & app, "skip" , "Skip Session " , is_running, None :: < & str > )
13131313 . map_err ( |e| format ! ( "Failed to create skip item: {}" , e) ) ?;
13141314
1315- // Annulla: abilitato se è in modalità focus, disabilitato in break/longBreak (undo)
1315+ // Cancel: enabled if in focus mode, disabled in break/longBreak (undo)
13161316 let cancel_text = if current_mode == "focus" {
1317- "Annulla "
1317+ "Cancel "
13181318 } else {
1319- "Annulla ultima "
1319+ "Cancel Last "
13201320 } ;
13211321 let cancel_item = MenuItem :: with_id ( & app, "cancel" , cancel_text, true , None :: < & str > )
13221322 . map_err ( |e| format ! ( "Failed to create cancel item: {}" , e) ) ?;
13231323
1324- let quit_item = MenuItem :: with_id ( & app, "quit" , "Esci " , true , None :: < & str > )
1324+ let quit_item = MenuItem :: with_id ( & app, "quit" , "Quit " , true , None :: < & str > )
13251325 . map_err ( |e| format ! ( "Failed to create quit item: {}" , e) ) ?;
13261326
13271327 let new_menu = Menu :: with_items (
0 commit comments