@@ -54,8 +54,6 @@ du.check_min_api_version("7.0.0", "HDRmerge")
5454-- Tell gettext where to find the .mo file translating messages for a particular domain
5555local gettext = dt .gettext .gettext
5656
57- dt .gettext .bindtextdomain (" HDRMerge" , dt .configuration .config_dir .. " /lua/locale/" )
58-
5957local function _ (msgid )
6058 return gettext (msgid )
6159end
@@ -218,7 +216,7 @@ local function main()
218216 PreCall ({HDRM }) -- check if furst run then check if install OK
219217 if HDRM .install_error then
220218 dt .print_error (' HDRMerge install issue' )
221- dt .print (_ (' HDRMerge install issue, please ensure the binary path is proper ' ))
219+ dt .print (_ (' HDRMerge install issue, please ensure the binary path is correct ' ))
222220 return
223221 end
224222 images = dt .gui .selection () -- get selected images
@@ -416,14 +414,14 @@ GUI.Target.copy_tags = dt.new_widget('check_button'){
416414temp = dt .preferences .read (mod , ' active_add_tags' , ' string' )
417415if temp == ' ' then temp = nil end
418416GUI .Target .add_tags = dt .new_widget (' entry' ){
419- tooltip = _ (' additional tags to be added on import, seperate with commas, all spaces will be removed' ),
417+ tooltip = _ (' additional tags to be added on import, separate with commas, all spaces will be removed' ),
420418 text = temp ,
421- placeholder = _ (' enter tags, seperated by commas' ),
419+ placeholder = _ (' enter tags, separated by commas' ),
422420 editable = true
423421}
424422GUI .run = dt .new_widget (' button' ){
425423 label = _ (' merge' ),
426- tooltip = _ (' run HDRMerge with the above specified settings' ),
424+ tooltip = _ (' run HDRMerge with the above settings' ),
427425 clicked_callback = function () main () end
428426}
429427GUI .exes .HDRMerge = dt .new_widget (' file_chooser_button' ){
0 commit comments