@@ -59,8 +59,6 @@ du.check_min_api_version("7.0.0", MODULE) -- choose the minimum version that c
5959
6060local gettext = dt .gettext .gettext
6161
62- dt .gettext .bindtextdomain (MODULE , dt .configuration .config_dir .. " /lua/locale/" )
63-
6462local function _ (msgid )
6563 return gettext (MODULE , msgid )
6664end
@@ -81,7 +79,7 @@ script_data.metadata = {
8179 name = " auto_snapshot" , -- name of script
8280 purpose = _ (" automatically take a snapshot when an image is loaded in darkroom" ), -- purpose of script
8381 author = " Bill Ferguson <wpferguson@gamil.com>" , -- your name and optionally e-mail address
84- help = " " -- URL to help/documentation
82+ help = " https://docs.darktable.org/lua/stable/lua.scripts.manual/scripts/contrib/auto_snapshot/ " -- URL to help/documentation
8583}
8684
8785
@@ -101,8 +99,8 @@ local auto_snapshot = {}
10199-- P R E F E R E N C E S
102100-- - - - - - - - - - - - - - - - - - - - - - - -
103101
104- dt .preferences .register (MODULE , " always_create_snapshot" , " bool" , " always automatically create_snapshot" ,
105- " auto_snapshot - create a snapshot even if the image is altered" , false )
102+ dt .preferences .register (MODULE , " always_create_snapshot" , " bool" , " auto_snapshot - " .. _ ( " always automatically create_snapshot" ) ,
103+ _ ( " create a snapshot even if the image is altered" ) , false )
106104
107105-- - - - - - - - - - - - - - - - - - - - - - - -
108106-- D A R K T A B L E I N T E G R A T I O N
0 commit comments