Skip to content

Commit 3a1f6bb

Browse files
authored
Merge pull request #531 from wpferguson/fix_17699_lua_translation
Lua Translation remaining tasks
2 parents 4f8df88 + 21ec288 commit 3a1f6bb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+134
-100
lines changed

contrib/AutoGrouper.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ end
5454
local script_data = {}
5555

5656
script_data.metadata = {
57-
name = "AutoGrouper",
57+
name = _("auto group"),
5858
purpose = _("automatically group images by time interval"),
5959
author = "Kevin Ertel",
6060
help = "https://docs.darktable.org/lua/stable/lua.scripts.manual/scripts/contrib/AutoGrouper/"

contrib/CollectHelper.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ end
6262
local script_data = {}
6363

6464
script_data.metadata = {
65-
name = "CollectHelper",
65+
name = _("collection helper"),
6666
purpose = _("add collection helper buttons"),
6767
author = "Kevin Ertel",
6868
help = "https://docs.darktable.org/lua/stable/lua.scripts.manual/scripts/contrib/CollectHelper/"

contrib/HDRMerge.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ end
6363
local script_data = {}
6464

6565
script_data.metadata = {
66-
name = "HDRmerge",
66+
name = _("HDR merge"),
6767
purpose = _("merge bracketed images into an HDR DNG image"),
6868
author = "Kevin Ertel",
6969
help = "https://docs.darktable.org/lua/stable/lua.scripts.manual/scripts/contrib/HDRmerge"

contrib/LabelsToTags.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ end
6363
local script_data = {}
6464

6565
script_data.metadata = {
66-
name = "LabelsToTags",
66+
name = _("labels to tags"),
6767
purpose = _("allows the mass-application of tags using color labels and ratings as a guide"),
6868
author = "August Schwerdfeger ([email protected])",
6969
help = "https://docs.darktable.org/lua/stable/lua.scripts.manual/scripts/contrib/LabelsToTags"

contrib/OpenInExplorer.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ end
6565
local script_data = {}
6666

6767
script_data.metadata = {
68-
name = "OpenInExplorer",
68+
name = _("open in explorer"),
6969
purpose = _("open a selected file in the system file manager"),
7070
author = "Kevin Ertel",
7171
help = "https://docs.darktable.org/lua/stable/lua.scripts.manual/scripts/contrib/OpenInExplorer"

contrib/RL_out_sharp.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ local function _(msgid)
7777
local script_data = {}
7878

7979
script_data.metadata = {
80-
name = "RL_out_sharp",
80+
name = _("RL output sharpening"),
8181
purpose = _("Richardson-Lucy output sharpening using GMic"),
8282
author = "Marco Carrarini <[email protected]>",
8383
help = "https://docs.darktable.org/lua/stable/lua.scripts.manual/scripts/contrib/RL_out_sharp"

contrib/auto_snapshot.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ script_data.restart = nil -- how to restart the (lib) script after it'
7676
script_data.show = nil -- only required for libs since the destroy_method only hides them
7777

7878
script_data.metadata = {
79-
name = "auto_snapshot", -- name of script
79+
name = _("auto snapshot"), -- name of script
8080
purpose = _("automatically take a snapshot when an image is loaded in darkroom"), -- purpose of script
8181
author = "Bill Ferguson <[email protected]>", -- your name and optionally e-mail address
8282
help = "https://docs.darktable.org/lua/stable/lua.scripts.manual/scripts/contrib/auto_snapshot/" -- URL to help/documentation

contrib/autostyle.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ end
5454
local script_data = {}
5555

5656
script_data.metadata = {
57-
name = "autostyle",
57+
name = _("auto style"),
5858
purpose = _("automatically apply a style based on image EXIF tag"),
5959
author = "Marc Cousin <[email protected]>",
6060
help = "https://docs.darktable.org/lua/stable/lua.scripts.manual/scripts/contrib/autostyle/"

contrib/change_group_leader.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ end
5151
local script_data = {}
5252

5353
script_data.metadata = {
54-
name = "change_group_leader",
54+
name = _("change group leader"),
5555
purpose = _("automatically change the leader of raw+jpg paired image groups"),
5656
author = "Bill Ferguson <[email protected]>",
5757
help = "https://docs.darktable.org/lua/stable/lua.scripts.manual/scripts/contrib/change_group_leader"

contrib/clear_GPS.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ end
5050
local script_data = {}
5151

5252
script_data.metadata = {
53-
name = "clear_GPS",
53+
name = _("clear GPS info"),
5454
purpose = _("remove GPS data from selected image(s)"),
5555
author = "Bill Ferguson <[email protected]>",
5656
help = "https://docs.darktable.org/lua/stable/lua.scripts.manual/scripts/contrib/clear_gps/"

0 commit comments

Comments
 (0)