Skip to content

Commit f0bdc89

Browse files
committed
official/apply_camera_styles - updated message to specify the camera
styles are darktable camera styles
1 parent 6ca8f00 commit f0bdc89

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

official/apply_camera_style.lua

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
along with this program. If not, see <http://www.gnu.org/licenses/>.
1919
]]
2020
--[[
21-
apply_camera_style - apply camera style to matching images
21+
apply_camera_style - apply darktable camera style to matching images
2222
2323
apply a camera style corresponding to the camera used to
2424
take the image to provide a starting point for editing that
@@ -90,7 +90,7 @@ script_data.show = nil -- only required for libs since the destroy_
9090

9191
script_data.metadata = {
9292
name = "apply_camera_style", -- name of script
93-
purpose = _("apply camera style to matching images"), -- purpose of script
93+
purpose = _("apply darktable camera style to matching images"), -- purpose of script
9494
author = "Bill Ferguson <wpferguson@gmail.com>", -- your name and optionally e-mail address
9595
help = "https://docs.darktable.org/lua/development/lua.scripts.manual/scripts/official/apply_camera_style/" -- URL to help/documentation
9696
}
@@ -466,13 +466,13 @@ script_data.destroy = destroy
466466
dt.register_event(MODULE, "shortcut",
467467
function(event, shortcut)
468468
apply_camera_style(true)
469-
end, _("apply camera styles to collection")
469+
end, _("apply darktable camera styles to collection")
470470
)
471471

472472
dt.register_event(MODULE, "shortcut",
473473
function(event, shortcut)
474474
apply_camera_style(false)
475-
end, _("apply camera styles to selection")
475+
end, _("apply darktable camera styles to selection")
476476
)
477477

478478
dt.register_event(MODULE, "post-import-image",
@@ -488,4 +488,4 @@ dt.register_event(MODULE, "post-import-film",
488488
end
489489
)
490490

491-
return script_data
491+
return script_data

0 commit comments

Comments
 (0)