We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0bdc89 commit 36a6a54Copy full SHA for 36a6a54
1 file changed
official/apply_camera_style.lua
@@ -463,16 +463,18 @@ script_data.destroy = destroy
463
-- E V E N T S
464
-- - - - - - - - - - - - - - - - - - - - - - - -
465
466
+local shortcut_string = _("apply darktable camera styles to %s")
467
+
468
dt.register_event(MODULE, "shortcut",
469
function(event, shortcut)
470
apply_camera_style(true)
- end, _("apply darktable camera styles to collection")
471
+ end, string.format(shortcut_string, _("collection"))
472
)
473
474
475
476
apply_camera_style(false)
- end, _("apply darktable camera styles to selection")
477
+ end, string.format(shortcut_string, _("selection"))
478
479
480
dt.register_event(MODULE, "post-import-image",
0 commit comments