You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
new_action(mymod_menu_actions, "import_all_mymod", "Import All Open MyMods", Qt::ShortcutContext::ApplicationShortcut, QKeySequence::listFromString("Ctrl+Alt+Shift+I"), "document-import");
39
+
new_action(mymod_menu_actions, "export_all_mymod", "Export All Open MyMods", Qt::ShortcutContext::ApplicationShortcut, QKeySequence::listFromString("Ctrl+Alt+Shift+E"), "document-export");
Copy file name to clipboardExpand all lines: locale/English_en.ftl
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -103,6 +103,8 @@ mymod_new = New MyMod
103
103
mymod_delete_selected = Delete Selected MyMod
104
104
mymod_import = Import
105
105
mymod_export = Export
106
+
mymod_import_all = Import All Open MyMods
107
+
mymod_export_all = Export All Open MyMods
106
108
107
109
mymod_name = Name of the Mod:
108
110
mymod_name_default = For example: one_ring_for_me
@@ -224,6 +226,8 @@ tt_mymod_delete_selected = Delete the currently selected MyMod.
224
226
225
227
tt_mymod_import = Move all of the contents of the MyMod folder into the .pack file. If any files have been removed in the MyMod folder, they will be deleted in the .pack file.
226
228
tt_mymod_export = Move all of the contents from the .pack file into the MyMod folder. If any files have been removed from the .pack, they will be deleted in the MyMod folder.
229
+
tt_mymod_import_all = Run <i>Import</i> on every open MyMod pack.
230
+
tt_mymod_export_all = Run <i>Export</i> on every open MyMod pack.
let mymod_open_mymod_folder = add_action_to_menu(&menu_bar_mymod, shortcuts.as_ref(),"mymod_menu","open_mymod_folder","mymod_open_mymod_folder",Some(main_window.static_upcast::<qt_widgets::QWidget>()));
468
470
let mymod_new = add_action_to_menu(&menu_bar_mymod, shortcuts.as_ref(),"mymod_menu","new_mymod","mymod_new",Some(main_window.static_upcast::<qt_widgets::QWidget>()));
471
+
let mymod_import_all = add_action_to_menu(&menu_bar_mymod, shortcuts.as_ref(),"mymod_menu","import_all_mymod","mymod_import_all",Some(main_window.static_upcast::<qt_widgets::QWidget>()));
472
+
let mymod_export_all = add_action_to_menu(&menu_bar_mymod, shortcuts.as_ref(),"mymod_menu","export_all_mymod","mymod_export_all",Some(main_window.static_upcast::<qt_widgets::QWidget>()));
0 commit comments